1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-02 20:30:00 +00:00
CLK/StaticAnalyser/StaticAnalyser.hpp

76 lines
1.5 KiB
C++
Raw Normal View History

//
// StaticAnalyser.hpp
// Clock Signal
//
// Created by Thomas Harte on 23/08/2016.
// Copyright © 2016 Thomas Harte. All rights reserved.
//
#ifndef StaticAnalyser_hpp
#define StaticAnalyser_hpp
#include "../Storage/Tape/Tape.hpp"
2016-08-27 17:42:51 +00:00
#include "../Storage/Disk/Disk.hpp"
#include "../Storage/Cartridge/Cartridge.hpp"
#include <string>
#include <list>
#include <vector>
namespace StaticAnalyser {
enum class Vic20MemoryModel {
Unexpanded,
EightKB,
ThirtyTwoKB
};
/*!
A list of disks, tapes and cartridges plus information about the machine to which to attach them and its configuration,
and instructions on how to launch the software attached, plus a measure of confidence in this target's correctness.
*/
struct Target {
enum {
Atari2600,
Electron,
Vic20,
Oric
} machine;
float probability;
union {
struct {
Vic20MemoryModel memory_model;
bool has_c1540;
} vic20;
struct {
bool has_adfs;
bool has_dfs;
bool should_shift_restart;
} acorn;
struct {
bool use_atmos_rom;
bool has_microdisc;
} oric;
};
std::string loadingCommand;
2016-08-27 17:42:51 +00:00
2016-08-27 21:15:09 +00:00
std::list<std::shared_ptr<Storage::Disk::Disk>> disks;
2016-08-27 21:09:45 +00:00
std::list<std::shared_ptr<Storage::Tape::Tape>> tapes;
std::list<std::shared_ptr<Storage::Cartridge::Cartridge>> cartridges;
};
/*!
Attempts, through any available means, to return a list of potential targets for the file with the given name.
@returns The list of potential targets, sorted from most to least probable.
*/
2016-08-27 17:42:51 +00:00
std::list<Target> GetTargets(const char *file_name);
}
#endif /* StaticAnalyser_hpp */