mirror of
https://github.com/TomHarte/CLK.git
synced 2026-01-24 23:35:12 +00:00
53 lines
1.5 KiB
C++
53 lines
1.5 KiB
C++
//
|
|
// Plus4.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 06/12/2024.
|
|
// Copyright © 2024 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "Configurable/Configurable.hpp"
|
|
#include "Configurable/StandardOptions.hpp"
|
|
#include "Analyser/Static/StaticAnalyser.hpp"
|
|
#include "Machines/ROMMachine.hpp"
|
|
|
|
#include <memory>
|
|
|
|
namespace Commodore::Plus4 {
|
|
|
|
std::unique_ptr<Reflection::Struct> get_options();
|
|
|
|
struct Machine {
|
|
virtual ~Machine() = default;
|
|
|
|
static std::unique_ptr<Machine> Plus4(const Analyser::Static::Target *, const ROMMachine::ROMFetcher &);
|
|
|
|
class Options:
|
|
public Reflection::StructImpl<Options>,
|
|
public Configurable::Options::Display<Options>,
|
|
public Configurable::Options::QuickLoad<Options>
|
|
{
|
|
friend Configurable::Options::Display<Options>;
|
|
friend Configurable::Options::QuickLoad<Options>;
|
|
public:
|
|
Options(const Configurable::OptionsType type) :
|
|
Configurable::Options::Display<Options>(type == Configurable::OptionsType::UserFriendly ?
|
|
Configurable::Display::SVideo : Configurable::Display::CompositeColour),
|
|
Configurable::Options::QuickLoad<Options>(type == Configurable::OptionsType::UserFriendly) {
|
|
}
|
|
private:
|
|
Options() : Options( Configurable::OptionsType::UserFriendly) {}
|
|
|
|
friend Reflection::StructImpl<Options>;
|
|
void declare_fields() {
|
|
declare_display_option();
|
|
declare_quickload_option();
|
|
limit_enum(&output, Configurable::Display::SVideo, Configurable::Display::CompositeColour, -1);
|
|
}
|
|
};
|
|
};
|
|
|
|
}
|