2016-09-01 00:43:29 +00:00
|
|
|
//
|
|
|
|
// CSStaticAnalyser.m
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 31/08/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "CSStaticAnalyser.h"
|
|
|
|
|
|
|
|
#import "CSMachine.h"
|
|
|
|
#import "CSMachine+Target.h"
|
|
|
|
#import "Clock_Signal-Swift.h"
|
|
|
|
#include "StaticAnalyser.hpp"
|
2016-09-01 02:03:42 +00:00
|
|
|
#import "CSMachine+Subclassing.h"
|
2016-09-01 00:43:29 +00:00
|
|
|
|
|
|
|
@implementation CSStaticAnalyser
|
|
|
|
{
|
|
|
|
StaticAnalyser::Target _target;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (instancetype)initWithFileAtURL:(NSURL *)url
|
|
|
|
{
|
|
|
|
self = [super init];
|
|
|
|
if(self)
|
|
|
|
{
|
|
|
|
std::list<StaticAnalyser::Target> targets = StaticAnalyser::GetTargets([url fileSystemRepresentation]);
|
|
|
|
if(!targets.size()) return nil;
|
|
|
|
_target = targets.front();
|
2016-09-13 02:15:38 +00:00
|
|
|
|
|
|
|
// TODO: can this better be supplied by the analyser?
|
|
|
|
_displayName = [[url pathComponents] lastObject];
|
2016-09-01 00:43:29 +00:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2016-10-02 20:31:50 +00:00
|
|
|
- (NSString *)optionsPanelNibName
|
|
|
|
{
|
|
|
|
switch(_target.machine)
|
|
|
|
{
|
|
|
|
case StaticAnalyser::Target::Electron: return nil;
|
|
|
|
case StaticAnalyser::Target::Vic20: return nil;
|
|
|
|
case StaticAnalyser::Target::Atari2600: return @"Atari2600Options";
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
2016-10-02 20:57:57 +00:00
|
|
|
- (CSMachine *)newMachine
|
|
|
|
{
|
|
|
|
switch(_target.machine)
|
|
|
|
{
|
2016-10-02 21:04:14 +00:00
|
|
|
case StaticAnalyser::Target::Electron: return [[CSElectron alloc] init];
|
|
|
|
case StaticAnalyser::Target::Vic20: return [[CSVic20 alloc] init];
|
2016-10-02 20:57:57 +00:00
|
|
|
case StaticAnalyser::Target::Atari2600: return [[CSAtari2600 alloc] init];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-02 20:31:50 +00:00
|
|
|
- (NSString *)userDefaultsPrefix
|
|
|
|
{
|
|
|
|
switch(_target.machine)
|
|
|
|
{
|
|
|
|
case StaticAnalyser::Target::Electron: return @"electron";
|
|
|
|
case StaticAnalyser::Target::Vic20: return @"vic20";
|
|
|
|
case StaticAnalyser::Target::Atari2600: return @"atari2600";
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
2016-09-01 00:43:29 +00:00
|
|
|
- (void)applyToMachine:(CSMachine *)machine
|
|
|
|
{
|
|
|
|
[machine applyTarget:_target];
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|