oolite/src/Core/Scripting/EntityOOJavaScriptExtensions.m
cim bc97187a11 Add read-only representation for wormholes (issue #34)
wormhole.arrivalTime
wormhole.expiryTime
wormhole.destination
wormhole.origin
entity.isWormhole
2013-06-30 10:22:15 +01:00

165 lines
3.6 KiB
Objective-C

/*
EntityOOJavaScriptExtensions.m
Oolite
Copyright (C) 2004-2013 Giles C Williams and contributors
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
*/
#import "EntityOOJavaScriptExtensions.h"
#import "OOJSEntity.h"
#import "OOJSShip.h"
#import "OOJSStation.h"
#import "StationEntity.h"
#import "OOJSDock.h"
#import "DockEntity.h"
#import "OOPlanetEntity.h"
#import "OOVisualEffectEntity.h"
#import "OOJSVisualEffect.h"
#import "WormholeEntity.h"
#import "OOJSWormhole.h"
@implementation Entity (OOJavaScriptExtensions)
- (BOOL) isVisibleToScripts
{
return NO;
}
- (NSString *) oo_jsClassName
{
return @"Entity";
}
- (jsval) oo_jsValueInContext:(JSContext *)context
{
JSClass *class = NULL;
JSObject *prototype = NULL;
jsval result = JSVAL_NULL;
if (_jsSelf == NULL && [self isVisibleToScripts])
{
// Create JS object
[self getJSClass:&class andPrototype:&prototype];
_jsSelf = JS_NewObject(context, class, prototype, NULL);
if (_jsSelf != NULL)
{
if (!JS_SetPrivate(context, _jsSelf, OOConsumeReference([self weakRetain]))) _jsSelf = NULL;
}
if (_jsSelf != NULL)
{
OOJSAddGCObjectRoot(context, &_jsSelf, "Entity jsSelf");
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(deleteJSSelf)
name:kOOJavaScriptEngineWillResetNotification
object:[OOJavaScriptEngine sharedEngine]];
}
}
if (_jsSelf != NULL) result = OBJECT_TO_JSVAL(_jsSelf);
return result;
// Analyzer: object leaked. [Expected, object is retained by JS object.]
}
- (void) getJSClass:(JSClass **)outClass andPrototype:(JSObject **)outPrototype
{
*outClass = JSEntityClass();
*outPrototype = JSEntityPrototype();
}
- (void) deleteJSSelf
{
if (_jsSelf != NULL)
{
_jsSelf = NULL;
JSContext *context = OOJSAcquireContext();
JS_RemoveObjectRoot(context, &_jsSelf);
OOJSRelinquishContext(context);
[[NSNotificationCenter defaultCenter] removeObserver:self
name:kOOJavaScriptEngineWillResetNotification
object:[OOJavaScriptEngine sharedEngine]];
}
}
@end
@implementation ShipEntity (OOJavaScriptExtensions)
- (BOOL) isVisibleToScripts
{
return YES;
}
- (void) getJSClass:(JSClass **)outClass andPrototype:(JSObject **)outPrototype
{
*outClass = JSShipClass();
*outPrototype = JSShipPrototype();
}
- (NSString *) oo_jsClassName
{
return @"Ship";
}
- (NSArray *) subEntitiesForScript
{
return [[self shipSubEntityEnumerator] allObjects];
}
- (void) setTargetForScript:(ShipEntity *)target
{
ShipEntity *me = self;
// Ensure coherence by not fiddling with subentities.
while ([me isSubEntity])
{
if (me == [me owner] || [me owner] == nil) break;
me = (ShipEntity *)[me owner];
}
while ([target isSubEntity])
{
if (target == [target owner] || [target owner] == nil) break;
target = (ShipEntity *)[target owner];
}
if (![me isKindOfClass:[ShipEntity class]]) return;
if (target != nil)
{
[me addTarget:target];
}
else [me removeTarget:[me primaryTarget]];
}
@end