// // MachineForTarget.cpp // Clock Signal // // Created by Thomas Harte on 04/11/2017. // Copyright © 2017 Thomas Harte. All rights reserved. // #include "MachineForTarget.hpp" #include "../AmstradCPC/AmstradCPC.hpp" #include "../Atari2600/Atari2600.hpp" #include "../Commodore/Vic-20/Vic20.hpp" #include "../Electron/Electron.hpp" #include "../MSX/MSX.hpp" #include "../Oric/Oric.hpp" #include "../ZX8081/ZX8081.hpp" #include "TypedDynamicMachine.hpp" ::Machine::DynamicMachine *::Machine::MachineForTargets(const std::vector> &targets, const ROMMachine::ROMFetcher &rom_fetcher, Error &error) { // TODO: deal with target lists containing more than one machine. error = Error::None; ::Machine::DynamicMachine *machine = nullptr; switch(targets.front()->machine) { case Analyser::Machine::AmstradCPC: machine = new TypedDynamicMachine(AmstradCPC::Machine::AmstradCPC()); break; case Analyser::Machine::Atari2600: machine = new TypedDynamicMachine(Atari2600::Machine::Atari2600()); break; case Analyser::Machine::Electron: machine = new TypedDynamicMachine(Electron::Machine::Electron()); break; case Analyser::Machine::MSX: machine = new TypedDynamicMachine(MSX::Machine::MSX()); break; case Analyser::Machine::Oric: machine = new TypedDynamicMachine(Oric::Machine::Oric()); break; case Analyser::Machine::Vic20: machine = new TypedDynamicMachine(Commodore::Vic20::Machine::Vic20()); break; case Analyser::Machine::ZX8081: machine = new TypedDynamicMachine(ZX8081::Machine::ZX8081(*targets.front())); break; default: error = Error::UnknownMachine; return nullptr; } // TODO: this shouldn't depend on CRT machine's inclusion of ROM machine. CRTMachine::Machine *crt_machine = machine->crt_machine(); if(crt_machine) { if(!machine->crt_machine()->set_rom_fetcher(rom_fetcher)) { delete machine; error = Error::MissingROM; return nullptr; } } ConfigurationTarget::Machine *configuration_target = machine->configuration_target(); if(configuration_target) { machine->configuration_target()->configure_as_target(*targets.front()); } return machine; } std::string Machine::ShortNameForTargetMachine(const Analyser::Machine machine) { switch(machine) { case Analyser::Machine::AmstradCPC: return "AmstradCPC"; case Analyser::Machine::Atari2600: return "Atari2600"; case Analyser::Machine::Electron: return "Electron"; case Analyser::Machine::MSX: return "MSX"; case Analyser::Machine::Oric: return "Oric"; case Analyser::Machine::Vic20: return "Vic20"; case Analyser::Machine::ZX8081: return "ZX8081"; default: return ""; } } std::string Machine::LongNameForTargetMachine(Analyser::Machine machine) { switch(machine) { case Analyser::Machine::AmstradCPC: return "Amstrad CPC"; case Analyser::Machine::Atari2600: return "Atari 2600"; case Analyser::Machine::Electron: return "Acorn Electron"; case Analyser::Machine::MSX: return "MSX"; case Analyser::Machine::Oric: return "Oric"; case Analyser::Machine::Vic20: return "Vic 20"; case Analyser::Machine::ZX8081: return "ZX80/81"; default: return ""; } } std::map>> Machine::AllOptionsByMachineName() { std::map>> options; options.emplace(std::make_pair(LongNameForTargetMachine(Analyser::Machine::Electron), Electron::get_options())); options.emplace(std::make_pair(LongNameForTargetMachine(Analyser::Machine::MSX), MSX::get_options())); options.emplace(std::make_pair(LongNameForTargetMachine(Analyser::Machine::Oric), Oric::get_options())); options.emplace(std::make_pair(LongNameForTargetMachine(Analyser::Machine::Vic20), Commodore::Vic20::get_options())); options.emplace(std::make_pair(LongNameForTargetMachine(Analyser::Machine::ZX8081), ZX8081::get_options())); return options; }