2021-03-18 03:38:55 +00:00
|
|
|
//
|
|
|
|
// ZXSpectrum.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 17/03/2021.
|
|
|
|
// Copyright © 2021 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ZXSpectrum_hpp
|
|
|
|
#define ZXSpectrum_hpp
|
|
|
|
|
|
|
|
#include "../../../Configurable/Configurable.hpp"
|
|
|
|
#include "../../../Configurable/StandardOptions.hpp"
|
|
|
|
#include "../../../Analyser/Static/StaticAnalyser.hpp"
|
|
|
|
#include "../../ROMMachine.hpp"
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace Sinclair {
|
|
|
|
namespace ZXSpectrum {
|
|
|
|
|
|
|
|
class Machine {
|
|
|
|
public:
|
|
|
|
virtual ~Machine();
|
|
|
|
static Machine *ZXSpectrum(const Analyser::Static::Target *target, const ROMMachine::ROMFetcher &rom_fetcher);
|
2021-03-20 02:17:20 +00:00
|
|
|
|
|
|
|
virtual void set_tape_is_playing(bool is_playing) = 0;
|
|
|
|
virtual bool get_tape_is_playing() = 0;
|
|
|
|
|
|
|
|
class Options: public Reflection::StructImpl<Options>, public Configurable::DisplayOption<Options>, public Configurable::QuickloadOption<Options> {
|
|
|
|
friend Configurable::DisplayOption<Options>;
|
|
|
|
friend Configurable::QuickloadOption<Options>;
|
|
|
|
public:
|
2021-04-18 15:56:22 +00:00
|
|
|
bool automatic_tape_motor_control = true;
|
2021-03-20 02:17:20 +00:00
|
|
|
|
|
|
|
Options(Configurable::OptionsType type) :
|
|
|
|
Configurable::DisplayOption<Options>(type == Configurable::OptionsType::UserFriendly ? Configurable::Display::RGB : Configurable::Display::CompositeColour),
|
2021-03-20 02:43:48 +00:00
|
|
|
Configurable::QuickloadOption<Options>(type == Configurable::OptionsType::UserFriendly),
|
|
|
|
automatic_tape_motor_control(type == Configurable::OptionsType::UserFriendly)
|
2021-03-20 02:17:20 +00:00
|
|
|
{
|
|
|
|
if(needs_declare()) {
|
|
|
|
DeclareField(automatic_tape_motor_control);
|
|
|
|
declare_display_option();
|
|
|
|
declare_quickload_option();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2021-03-18 03:38:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ZXSpectrum_hpp */
|