X-Git-Url: https://git.yukkurigames.com/?p=enjoyable.git;a=blobdiff_plain;f=Config.m;h=046ccc2c6fa22980952d76ab84f0b59c76bea1a6;hp=de3c1cc970c278ed428591054175f3acd89815f6;hb=0238d141f06420e1a73eccd14ca73a7e29ad2a69;hpb=530009447c5bbd360ac5023979cffc6d32a28df3 diff --git a/Config.m b/Config.m index de3c1cc..046ccc2 100644 --- a/Config.m +++ b/Config.m @@ -5,22 +5,41 @@ // Created by Sam McCall on 4/05/09. // +#import "Config.h" + +#import "JSAction.h" + @implementation Config --(id) init { - if(self=[super init]) { - entries = [[NSMutableDictionary alloc] init]; - } - return self; +- (id)initWithName:(NSString *)name { + if ((self = [super init])) { + self.name = name ? name : @"Untitled"; + _entries = [[NSMutableDictionary alloc] init]; + } + return self; } -@synthesize protect, name, entries; +- (Target *)objectForKeyedSubscript:(JSAction *)action { + return action ? _entries[action.uid] : nil; +} --(void) setTarget:(Target*)target forAction:(id)jsa { - [entries setValue:target forKey: [jsa stringify]]; +- (void)setObject:(Target *)target forKeyedSubscript:(JSAction *)action { + if (action) { + if (target) + _entries[action.uid] = target; + else + [_entries removeObjectForKey:action.uid]; + } } --(Target*) getTargetForAction: (id) jsa { - return [entries objectForKey: [jsa stringify]]; + +- (NSDictionary *)serialize { + NSMutableDictionary* cfgEntries = [[NSMutableDictionary alloc] initWithCapacity:_entries.count]; + for (id key in _entries) { + id serialized = [_entries[key] serialize]; + if (serialized) + cfgEntries[key] = serialized; + } + return @{ @"name": _name, @"entries": cfgEntries }; } @end