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.
|
|
|
|
//
|
|
|
|
|
2024-01-17 04:34:46 +00:00
|
|
|
#pragma once
|
2021-03-18 03:38:55 +00:00
|
|
|
|
|
|
|
#include "../../../Configurable/Configurable.hpp"
|
|
|
|
#include "../../../Configurable/StandardOptions.hpp"
|
|
|
|
#include "../../../Analyser/Static/StaticAnalyser.hpp"
|
|
|
|
#include "../../ROMMachine.hpp"
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
2023-05-10 21:02:18 +00:00
|
|
|
namespace Sinclair::ZXSpectrum {
|
2021-03-18 03:38:55 +00:00
|
|
|
|
2024-12-07 16:15:38 +00:00
|
|
|
struct Machine {
|
|
|
|
virtual ~Machine() = default;
|
|
|
|
static std::unique_ptr<Machine> ZXSpectrum(const Analyser::Static::Target *, const ROMMachine::ROMFetcher &);
|
|
|
|
|
|
|
|
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>;
|
2021-03-18 03:38:55 +00:00
|
|
|
public:
|
2024-12-07 16:15:38 +00:00
|
|
|
bool automatic_tape_motor_control = true;
|
|
|
|
|
|
|
|
Options(Configurable::OptionsType type) :
|
|
|
|
Configurable::DisplayOption<Options>(type == Configurable::OptionsType::UserFriendly ? Configurable::Display::RGB : Configurable::Display::CompositeColour),
|
|
|
|
Configurable::QuickloadOption<Options>(type == Configurable::OptionsType::UserFriendly),
|
|
|
|
automatic_tape_motor_control(type == Configurable::OptionsType::UserFriendly) {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Options() : Options(Configurable::OptionsType::UserFriendly) {}
|
|
|
|
|
|
|
|
friend Reflection::StructImpl<Options>;
|
|
|
|
void declare_fields() {
|
|
|
|
DeclareField(automatic_tape_motor_control);
|
|
|
|
declare_display_option();
|
|
|
|
declare_quickload_option();
|
|
|
|
}
|
|
|
|
};
|
2021-03-18 03:38:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|