From 294e09f27543725ba26cf3c2a7e0e535c239f0f7 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 23 Jan 2020 22:57:51 -0500 Subject: [PATCH] All these 'override's can be 'final's. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit At least for the purpose of being communicative. I doubt there's much to gain in terms of compiler output — the DiskImageHolder can avoid some virtual lookups but nothing else leaps out. --- Analyser/Dynamic/ConfidenceCounter.hpp | 2 +- Analyser/Dynamic/ConfidenceSummary.hpp | 2 +- .../Implementation/MultiCRTMachine.hpp | 10 ++--- .../Implementation/MultiConfigurable.hpp | 8 ++-- .../Implementation/MultiJoystickMachine.cpp | 8 ++-- .../Implementation/MultiJoystickMachine.hpp | 2 +- .../Implementation/MultiKeyboardMachine.hpp | 16 ++++---- .../Implementation/MultiMediaTarget.hpp | 2 +- .../Implementation/MultiSpeaker.hpp | 10 ++--- .../Dynamic/MultiMachine/MultiMachine.hpp | 18 ++++----- Components/8272/i8272.hpp | 2 +- Components/DiskII/DiskII.hpp | 6 +-- Components/DiskII/IWM.hpp | 4 +- .../DiskII/MacintoshDoubleDensityDrive.hpp | 12 +++--- Inputs/QuadratureMouse/QuadratureMouse.hpp | 8 ++-- Machines/AmstradCPC/AmstradCPC.cpp | 16 ++++---- Machines/Apple/AppleII/AppleII.cpp | 36 ++++++++--------- Machines/Apple/AppleII/DiskIICard.hpp | 8 ++-- Machines/Apple/Macintosh/Macintosh.cpp | 30 +++++++------- Machines/Atari/2600/Atari2600.cpp | 18 ++++----- Machines/Atari/ST/AtariST.cpp | 2 +- Machines/Atari/ST/IntelligentKeyboard.hpp | 2 +- Machines/ColecoVision/ColecoVision.cpp | 22 +++++----- Machines/Commodore/Vic-20/Vic20.cpp | 18 ++++----- Machines/Electron/Electron.cpp | 14 +++---- Machines/Electron/Keyboard.hpp | 2 +- Machines/MSX/Cartridges/ASCII16kb.hpp | 4 +- Machines/MSX/Cartridges/ASCII8kb.hpp | 4 +- Machines/MSX/Cartridges/Konami.hpp | 4 +- Machines/MSX/Cartridges/KonamiWithSCC.hpp | 6 +-- Machines/MSX/DiskROM.hpp | 8 ++-- Machines/MSX/MSX.cpp | 40 +++++++++---------- Machines/MasterSystem/MasterSystem.cpp | 26 ++++++------ Machines/Oric/Oric.cpp | 14 +++---- Machines/Utility/TypedDynamicMachine.hpp | 16 ++++---- Machines/ZX8081/ZX8081.cpp | 10 ++--- .../xcschemes/Clock Signal.xcscheme | 2 +- .../Mac/Clock Signal/Machine/CSMachine.mm | 10 ++--- .../Mac/Clock SignalTests/EmuTOSTests.mm | 2 +- OSBindings/Mac/Clock SignalTests/QLTests.mm | 2 +- OSBindings/SDL/main.cpp | 14 +++---- Outputs/OpenGL/ScanTarget.hpp | 18 ++++----- Storage/Disk/Controller/DiskController.hpp | 6 +-- Storage/Disk/DiskImage/Formats/AcornADF.hpp | 6 +-- Storage/Disk/DiskImage/Formats/AppleDSK.hpp | 8 ++-- Storage/Disk/DiskImage/Formats/CPCDSK.hpp | 10 ++--- Storage/Disk/DiskImage/Formats/D64.hpp | 4 +- Storage/Disk/DiskImage/Formats/DMK.hpp | 8 ++-- Storage/Disk/DiskImage/Formats/G64.hpp | 4 +- Storage/Disk/DiskImage/Formats/HFE.hpp | 10 ++--- .../Disk/DiskImage/Formats/MFMSectorDump.hpp | 6 +-- Storage/Disk/DiskImage/Formats/MSA.hpp | 8 ++-- Storage/Disk/DiskImage/Formats/MSXDSK.hpp | 6 +-- .../Disk/DiskImage/Formats/MacintoshIMG.hpp | 10 ++--- Storage/Disk/DiskImage/Formats/NIB.hpp | 8 ++-- Storage/Disk/DiskImage/Formats/OricMFMDSK.hpp | 10 ++--- Storage/Disk/DiskImage/Formats/SSD.hpp | 6 +-- Storage/Disk/DiskImage/Formats/ST.hpp | 6 +-- Storage/Disk/DiskImage/Formats/WOZ.hpp | 10 ++--- Storage/Disk/Track/PCMTrack.hpp | 6 +-- Storage/Disk/Track/UnformattedTrack.hpp | 6 +-- Storage/Tape/Tape.hpp | 2 +- 62 files changed, 299 insertions(+), 299 deletions(-) diff --git a/Analyser/Dynamic/ConfidenceCounter.hpp b/Analyser/Dynamic/ConfidenceCounter.hpp index 352f674d1..9e409592f 100644 --- a/Analyser/Dynamic/ConfidenceCounter.hpp +++ b/Analyser/Dynamic/ConfidenceCounter.hpp @@ -22,7 +22,7 @@ namespace Dynamic { class ConfidenceCounter: public ConfidenceSource { public: /*! @returns The computed probability, based on the history of events. */ - float get_confidence() override; + float get_confidence() final; /*! Records an event that implies this is the appropriate class: pushes probability up towards 1.0. */ void add_hit(); diff --git a/Analyser/Dynamic/ConfidenceSummary.hpp b/Analyser/Dynamic/ConfidenceSummary.hpp index e478bb606..a43d3be27 100644 --- a/Analyser/Dynamic/ConfidenceSummary.hpp +++ b/Analyser/Dynamic/ConfidenceSummary.hpp @@ -32,7 +32,7 @@ class ConfidenceSummary: public ConfidenceSource { const std::vector &weights); /*! @returns The weighted sum of all sources. */ - float get_confidence() override; + float get_confidence() final; private: std::vector sources_; diff --git a/Analyser/Dynamic/MultiMachine/Implementation/MultiCRTMachine.hpp b/Analyser/Dynamic/MultiMachine/Implementation/MultiCRTMachine.hpp index 974e2ebe2..7e3535e53 100644 --- a/Analyser/Dynamic/MultiMachine/Implementation/MultiCRTMachine.hpp +++ b/Analyser/Dynamic/MultiMachine/Implementation/MultiCRTMachine.hpp @@ -53,13 +53,13 @@ class MultiCRTMachine: public CRTMachine::Machine { } // Below is the standard CRTMachine::Machine interface; see there for documentation. - void set_scan_target(Outputs::Display::ScanTarget *scan_target) override; - Outputs::Display::ScanStatus get_scan_status() const override; - Outputs::Speaker::Speaker *get_speaker() override; - void run_for(Time::Seconds duration) override; + void set_scan_target(Outputs::Display::ScanTarget *scan_target) final; + Outputs::Display::ScanStatus get_scan_status() const final; + Outputs::Speaker::Speaker *get_speaker() final; + void run_for(Time::Seconds duration) final; private: - void run_for(const Cycles cycles) override {} + void run_for(const Cycles cycles) final {} const std::vector> &machines_; std::recursive_mutex &machines_mutex_; std::vector queues_; diff --git a/Analyser/Dynamic/MultiMachine/Implementation/MultiConfigurable.hpp b/Analyser/Dynamic/MultiMachine/Implementation/MultiConfigurable.hpp index 88c70eb65..ac4aecae9 100644 --- a/Analyser/Dynamic/MultiMachine/Implementation/MultiConfigurable.hpp +++ b/Analyser/Dynamic/MultiMachine/Implementation/MultiConfigurable.hpp @@ -28,10 +28,10 @@ class MultiConfigurable: public Configurable::Device { MultiConfigurable(const std::vector> &machines); // Below is the standard Configurable::Device interface; see there for documentation. - std::vector> get_options() override; - void set_selections(const Configurable::SelectionSet &selection_by_option) override; - Configurable::SelectionSet get_accurate_selections() override; - Configurable::SelectionSet get_user_friendly_selections() override; + std::vector> get_options() final; + void set_selections(const Configurable::SelectionSet &selection_by_option) final; + Configurable::SelectionSet get_accurate_selections() final; + Configurable::SelectionSet get_user_friendly_selections() final; private: std::vector devices_; diff --git a/Analyser/Dynamic/MultiMachine/Implementation/MultiJoystickMachine.cpp b/Analyser/Dynamic/MultiMachine/Implementation/MultiJoystickMachine.cpp index 70255b13e..2749cae44 100644 --- a/Analyser/Dynamic/MultiMachine/Implementation/MultiJoystickMachine.cpp +++ b/Analyser/Dynamic/MultiMachine/Implementation/MultiJoystickMachine.cpp @@ -25,7 +25,7 @@ class MultiJoystick: public Inputs::Joystick { } } - std::vector &get_inputs() override { + std::vector &get_inputs() final { if(inputs.empty()) { for(const auto &joystick: joysticks_) { std::vector joystick_inputs = joystick->get_inputs(); @@ -40,19 +40,19 @@ class MultiJoystick: public Inputs::Joystick { return inputs; } - void set_input(const Input &digital_input, bool is_active) override { + void set_input(const Input &digital_input, bool is_active) final { for(const auto &joystick: joysticks_) { joystick->set_input(digital_input, is_active); } } - void set_input(const Input &digital_input, float value) override { + void set_input(const Input &digital_input, float value) final { for(const auto &joystick: joysticks_) { joystick->set_input(digital_input, value); } } - void reset_all_inputs() override { + void reset_all_inputs() final { for(const auto &joystick: joysticks_) { joystick->reset_all_inputs(); } diff --git a/Analyser/Dynamic/MultiMachine/Implementation/MultiJoystickMachine.hpp b/Analyser/Dynamic/MultiMachine/Implementation/MultiJoystickMachine.hpp index 6425a9a0a..7daf1a7da 100644 --- a/Analyser/Dynamic/MultiMachine/Implementation/MultiJoystickMachine.hpp +++ b/Analyser/Dynamic/MultiMachine/Implementation/MultiJoystickMachine.hpp @@ -28,7 +28,7 @@ class MultiJoystickMachine: public JoystickMachine::Machine { MultiJoystickMachine(const std::vector> &machines); // Below is the standard JoystickMachine::Machine interface; see there for documentation. - const std::vector> &get_joysticks() override; + const std::vector> &get_joysticks() final; private: std::vector> joysticks_; diff --git a/Analyser/Dynamic/MultiMachine/Implementation/MultiKeyboardMachine.hpp b/Analyser/Dynamic/MultiMachine/Implementation/MultiKeyboardMachine.hpp index 6675d21de..274380002 100644 --- a/Analyser/Dynamic/MultiMachine/Implementation/MultiKeyboardMachine.hpp +++ b/Analyser/Dynamic/MultiMachine/Implementation/MultiKeyboardMachine.hpp @@ -32,10 +32,10 @@ class MultiKeyboardMachine: public KeyboardMachine::Machine { public: MultiKeyboard(const std::vector<::KeyboardMachine::Machine *> &machines); - void set_key_pressed(Key key, char value, bool is_pressed) override; - void reset_all_keys() override; - const std::set &observed_keys() override; - bool is_exclusive() override; + void set_key_pressed(Key key, char value, bool is_pressed) final; + void reset_all_keys() final; + const std::set &observed_keys() final; + bool is_exclusive() final; private: const std::vector<::KeyboardMachine::Machine *> &machines_; @@ -48,10 +48,10 @@ class MultiKeyboardMachine: public KeyboardMachine::Machine { MultiKeyboardMachine(const std::vector> &machines); // Below is the standard KeyboardMachine::Machine interface; see there for documentation. - void clear_all_keys() override; - void set_key_state(uint16_t key, bool is_pressed) override; - void type_string(const std::string &) override; - Inputs::Keyboard &get_keyboard() override; + void clear_all_keys() final; + void set_key_state(uint16_t key, bool is_pressed) final; + void type_string(const std::string &) final; + Inputs::Keyboard &get_keyboard() final; }; } diff --git a/Analyser/Dynamic/MultiMachine/Implementation/MultiMediaTarget.hpp b/Analyser/Dynamic/MultiMachine/Implementation/MultiMediaTarget.hpp index 46bf3129e..14dd5afc1 100644 --- a/Analyser/Dynamic/MultiMachine/Implementation/MultiMediaTarget.hpp +++ b/Analyser/Dynamic/MultiMachine/Implementation/MultiMediaTarget.hpp @@ -29,7 +29,7 @@ struct MultiMediaTarget: public MediaTarget::Machine { MultiMediaTarget(const std::vector> &machines); // Below is the standard MediaTarget::Machine interface; see there for documentation. - bool insert_media(const Analyser::Static::Media &media) override; + bool insert_media(const Analyser::Static::Media &media) final; private: std::vector targets_; diff --git a/Analyser/Dynamic/MultiMachine/Implementation/MultiSpeaker.hpp b/Analyser/Dynamic/MultiMachine/Implementation/MultiSpeaker.hpp index a6f882fd0..db660dd26 100644 --- a/Analyser/Dynamic/MultiMachine/Implementation/MultiSpeaker.hpp +++ b/Analyser/Dynamic/MultiMachine/Implementation/MultiSpeaker.hpp @@ -38,13 +38,13 @@ class MultiSpeaker: public Outputs::Speaker::Speaker, Outputs::Speaker::Speaker: void set_new_front_machine(::Machine::DynamicMachine *machine); // Below is the standard Outputs::Speaker::Speaker interface; see there for documentation. - float get_ideal_clock_rate_in_range(float minimum, float maximum) override; - void set_output_rate(float cycles_per_second, int buffer_size) override; - void set_delegate(Outputs::Speaker::Speaker::Delegate *delegate) override; + float get_ideal_clock_rate_in_range(float minimum, float maximum) final; + void set_output_rate(float cycles_per_second, int buffer_size) final; + void set_delegate(Outputs::Speaker::Speaker::Delegate *delegate) final; private: - void speaker_did_complete_samples(Speaker *speaker, const std::vector &buffer) override; - void speaker_did_change_input_clock(Speaker *speaker) override; + void speaker_did_complete_samples(Speaker *speaker, const std::vector &buffer) final; + void speaker_did_change_input_clock(Speaker *speaker) final; MultiSpeaker(const std::vector &speakers); std::vector speakers_; diff --git a/Analyser/Dynamic/MultiMachine/MultiMachine.hpp b/Analyser/Dynamic/MultiMachine/MultiMachine.hpp index 464c80b0d..4968cbdd5 100644 --- a/Analyser/Dynamic/MultiMachine/MultiMachine.hpp +++ b/Analyser/Dynamic/MultiMachine/MultiMachine.hpp @@ -50,17 +50,17 @@ class MultiMachine: public ::Machine::DynamicMachine, public MultiCRTMachine::De static bool would_collapse(const std::vector> &machines); MultiMachine(std::vector> &&machines); - Activity::Source *activity_source() override; - Configurable::Device *configurable_device() override; - CRTMachine::Machine *crt_machine() override; - JoystickMachine::Machine *joystick_machine() override; - MouseMachine::Machine *mouse_machine() override; - KeyboardMachine::Machine *keyboard_machine() override; - MediaTarget::Machine *media_target() override; - void *raw_pointer() override; + Activity::Source *activity_source() final; + Configurable::Device *configurable_device() final; + CRTMachine::Machine *crt_machine() final; + JoystickMachine::Machine *joystick_machine() final; + MouseMachine::Machine *mouse_machine() final; + KeyboardMachine::Machine *keyboard_machine() final; + MediaTarget::Machine *media_target() final; + void *raw_pointer() final; private: - void multi_crt_did_run_machines() override; + void multi_crt_did_run_machines() final; std::vector> machines_; std::recursive_mutex machines_mutex_; diff --git a/Components/8272/i8272.hpp b/Components/8272/i8272.hpp index 010565c6f..69ee18232 100644 --- a/Components/8272/i8272.hpp +++ b/Components/8272/i8272.hpp @@ -67,7 +67,7 @@ class i8272 : public Storage::Disk::MFMController { ResultEmpty = (1 << 5), NoLongerReady = (1 << 6) }; - void posit_event(int type) override; + void posit_event(int type) final; int interesting_event_mask_ = static_cast(Event8272::CommandByte); int resume_point_ = 0; bool is_access_command_ = false; diff --git a/Components/DiskII/DiskII.hpp b/Components/DiskII/DiskII.hpp index edc1d0789..b168364a7 100644 --- a/Components/DiskII/DiskII.hpp +++ b/Components/DiskII/DiskII.hpp @@ -26,7 +26,7 @@ namespace Apple { /*! Provides an emulation of the Apple Disk II. */ -class DiskII final: +class DiskII : public Storage::Disk::Drive::EventDelegate, public ClockingHint::Source, public ClockingHint::Observer { @@ -98,8 +98,8 @@ class DiskII final: void select_drive(int drive); uint8_t trigger_address(int address, uint8_t value); - void process_event(const Storage::Disk::Drive::Event &event) override; - void set_component_prefers_clocking(ClockingHint::Source *component, ClockingHint::Preference preference) override; + void process_event(const Storage::Disk::Drive::Event &event) final; + void set_component_prefers_clocking(ClockingHint::Source *component, ClockingHint::Preference preference) final; const Cycles::IntType clock_rate_ = 0; diff --git a/Components/DiskII/IWM.hpp b/Components/DiskII/IWM.hpp index 04c1d5739..b3c7ec82e 100644 --- a/Components/DiskII/IWM.hpp +++ b/Components/DiskII/IWM.hpp @@ -76,7 +76,7 @@ class IWM: private: // Storage::Disk::Drive::EventDelegate. - void process_event(const Storage::Disk::Drive::Event &event) override; + void process_event(const Storage::Disk::Drive::Event &event) final; const int clock_rate_; @@ -91,7 +91,7 @@ class IWM: IWMDrive *drives_[2] = {nullptr, nullptr}; bool drive_is_rotating_[2] = {false, false}; - void set_component_prefers_clocking(ClockingHint::Source *component, ClockingHint::Preference clocking) override; + void set_component_prefers_clocking(ClockingHint::Source *component, ClockingHint::Preference clocking) final; Cycles cycles_until_disable_; uint8_t write_handshake_ = 0x80; diff --git a/Components/DiskII/MacintoshDoubleDensityDrive.hpp b/Components/DiskII/MacintoshDoubleDensityDrive.hpp index c1ac8803f..eb439603f 100644 --- a/Components/DiskII/MacintoshDoubleDensityDrive.hpp +++ b/Components/DiskII/MacintoshDoubleDensityDrive.hpp @@ -32,14 +32,14 @@ class DoubleDensityDrive: public IWMDrive { */ void set_rotation_speed(float revolutions_per_minute); - void set_enabled(bool) override; - void set_control_lines(int) override; - bool read() override; - private: + void set_enabled(bool) final; + void set_control_lines(int) final; + bool read() final; + // To receive the proper notifications from Storage::Disk::Drive. - void did_step(Storage::Disk::HeadPosition to_position) override; - void did_set_disk() override; + void did_step(Storage::Disk::HeadPosition to_position) final; + void did_set_disk() final; const bool is_800k_; bool has_new_disk_ = false; diff --git a/Inputs/QuadratureMouse/QuadratureMouse.hpp b/Inputs/QuadratureMouse/QuadratureMouse.hpp index d9e048d11..3edf8197b 100644 --- a/Inputs/QuadratureMouse/QuadratureMouse.hpp +++ b/Inputs/QuadratureMouse/QuadratureMouse.hpp @@ -34,24 +34,24 @@ class QuadratureMouse: public Mouse { /* Inputs, to satisfy the Mouse interface. */ - void move(int x, int y) override { + void move(int x, int y) final { // Accumulate all provided motion. axes_[0] += x; axes_[1] += y; } - int get_number_of_buttons() override { + int get_number_of_buttons() final { return number_of_buttons_; } - void set_button_pressed(int index, bool is_pressed) override { + void set_button_pressed(int index, bool is_pressed) final { if(is_pressed) button_flags_ |= (1 << index); else button_flags_ &= ~(1 << index); } - void reset_all_buttons() override { + void reset_all_buttons() final { button_flags_ = 0; } diff --git a/Machines/AmstradCPC/AmstradCPC.cpp b/Machines/AmstradCPC/AmstradCPC.cpp index a3c6de730..80b74343a 100644 --- a/Machines/AmstradCPC/AmstradCPC.cpp +++ b/Machines/AmstradCPC/AmstradCPC.cpp @@ -632,7 +632,7 @@ class KeyboardState: public GI::AY38910::PortHandler { }), state_(state) {} - void did_set_input(const Input &input, bool is_active) override { + void did_set_input(const Input &input, bool is_active) final { uint8_t mask = 0; switch(input.type) { default: return; @@ -1077,41 +1077,41 @@ template class ConcreteMachine: key_state_.clear_all_keys(); } - KeyboardMapper *get_keyboard_mapper() override { + KeyboardMapper *get_keyboard_mapper() final { return &keyboard_mapper_; } // MARK: - Activity Source - void set_activity_observer(Activity::Observer *observer) override { + void set_activity_observer(Activity::Observer *observer) final { if constexpr (has_fdc) fdc_.set_activity_observer(observer); } // MARK: - Configuration options. - std::vector> get_options() override { + std::vector> get_options() final { return AmstradCPC::get_options(); } - void set_selections(const Configurable::SelectionSet &selections_by_option) override { + void set_selections(const Configurable::SelectionSet &selections_by_option) final { Configurable::Display display; if(Configurable::get_display(selections_by_option, display)) { set_video_signal_configurable(display); } } - Configurable::SelectionSet get_accurate_selections() override { + Configurable::SelectionSet get_accurate_selections() final { Configurable::SelectionSet selection_set; Configurable::append_display_selection(selection_set, Configurable::Display::RGB); return selection_set; } - Configurable::SelectionSet get_user_friendly_selections() override { + Configurable::SelectionSet get_user_friendly_selections() final { Configurable::SelectionSet selection_set; Configurable::append_display_selection(selection_set, Configurable::Display::RGB); return selection_set; } // MARK: - Joysticks - const std::vector> &get_joysticks() override { + const std::vector> &get_joysticks() final { return key_state_.get_joysticks(); } diff --git a/Machines/Apple/AppleII/AppleII.cpp b/Machines/Apple/AppleII/AppleII.cpp index 036b71b37..90f53048a 100644 --- a/Machines/Apple/AppleII/AppleII.cpp +++ b/Machines/Apple/AppleII/AppleII.cpp @@ -147,7 +147,7 @@ template class ConcreteMachine: card_became_just_in_time_ |= !is_every_cycle; } - void card_did_change_select_constraints(Apple::II::Card *card) override { + void card_did_change_select_constraints(Apple::II::Card *card) final { pick_card_messaging_group(card); } @@ -283,12 +283,12 @@ template class ConcreteMachine: Input(Input::Fire, 2), }) {} - void did_set_input(const Input &input, float value) override { + void did_set_input(const Input &input, float value) final { if(!input.info.control.index && (input.type == Input::Type::Horizontal || input.type == Input::Type::Vertical)) axes[(input.type == Input::Type::Horizontal) ? 0 : 1] = 1.0f - value; } - void did_set_input(const Input &input, bool value) override { + void did_set_input(const Input &input, bool value) final { if(input.type == Input::Type::Fire && input.info.control.index < 3) { buttons[input.info.control.index] = value; } @@ -417,7 +417,7 @@ template class ConcreteMachine: audio_queue_.flush(); } - void set_scan_target(Outputs::Display::ScanTarget *scan_target) override { + void set_scan_target(Outputs::Display::ScanTarget *scan_target) final { video_.set_scan_target(scan_target); } @@ -426,11 +426,11 @@ template class ConcreteMachine: } /// Sets the type of display. - void set_display_type(Outputs::Display::DisplayType display_type) override { + void set_display_type(Outputs::Display::DisplayType display_type) final { video_.set_display_type(display_type); } - Outputs::Speaker::Speaker *get_speaker() override { + Outputs::Speaker::Speaker *get_speaker() final { return &speaker_; } @@ -803,15 +803,15 @@ template class ConcreteMachine: audio_queue_.perform(); } - void run_for(const Cycles cycles) override { + void run_for(const Cycles cycles) final { m6502_.run_for(cycles); } - void reset_all_keys() override { + void reset_all_keys() final { open_apple_is_pressed_ = closed_apple_is_pressed_ = key_is_down_ = false; } - void set_key_pressed(Key key, char value, bool is_pressed) override { + void set_key_pressed(Key key, char value, bool is_pressed) final { switch(key) { default: break; case Key::F12: @@ -850,38 +850,38 @@ template class ConcreteMachine: } } - Inputs::Keyboard &get_keyboard() override { + Inputs::Keyboard &get_keyboard() final { return *this; } - void type_string(const std::string &string) override { + void type_string(const std::string &string) final { string_serialiser_ = std::make_unique(string, true); } // MARK:: Configuration options. - std::vector> get_options() override { + std::vector> get_options() final { return Apple::II::get_options(); } - void set_selections(const Configurable::SelectionSet &selections_by_option) override { + void set_selections(const Configurable::SelectionSet &selections_by_option) final { Configurable::Display display; if(Configurable::get_display(selections_by_option, display)) { set_video_signal_configurable(display); } } - Configurable::SelectionSet get_accurate_selections() override { + Configurable::SelectionSet get_accurate_selections() final { Configurable::SelectionSet selection_set; Configurable::append_display_selection(selection_set, Configurable::Display::CompositeColour); return selection_set; } - Configurable::SelectionSet get_user_friendly_selections() override { + Configurable::SelectionSet get_user_friendly_selections() final { return get_accurate_selections(); } // MARK: MediaTarget - bool insert_media(const Analyser::Static::Media &media) override { + bool insert_media(const Analyser::Static::Media &media) final { if(!media.disks.empty()) { auto diskii = diskii_card(); if(diskii) diskii->set_disk(media.disks[0], 0); @@ -890,14 +890,14 @@ template class ConcreteMachine: } // MARK: Activity::Source - void set_activity_observer(Activity::Observer *observer) override { + void set_activity_observer(Activity::Observer *observer) final { for(const auto &card: cards_) { if(card) card->set_activity_observer(observer); } } // MARK: JoystickMachine - const std::vector> &get_joysticks() override { + const std::vector> &get_joysticks() final { return joysticks_; } }; diff --git a/Machines/Apple/AppleII/DiskIICard.hpp b/Machines/Apple/AppleII/DiskIICard.hpp index 3e8d3b962..76815f0cf 100644 --- a/Machines/Apple/AppleII/DiskIICard.hpp +++ b/Machines/Apple/AppleII/DiskIICard.hpp @@ -27,16 +27,16 @@ class DiskIICard: public Card, public ClockingHint::Observer { public: DiskIICard(const ROMMachine::ROMFetcher &rom_fetcher, bool is_16_sector); - void perform_bus_operation(Select select, bool is_read, uint16_t address, uint8_t *value) override; - void run_for(Cycles cycles, int stretches) override; + void perform_bus_operation(Select select, bool is_read, uint16_t address, uint8_t *value) final; + void run_for(Cycles cycles, int stretches) final; - void set_activity_observer(Activity::Observer *observer) override; + void set_activity_observer(Activity::Observer *observer) final; void set_disk(const std::shared_ptr &disk, int drive); Storage::Disk::Drive &get_drive(int drive); private: - void set_component_prefers_clocking(ClockingHint::Source *component, ClockingHint::Preference clocking) override; + void set_component_prefers_clocking(ClockingHint::Source *component, ClockingHint::Preference clocking) final; std::vector boot_; Apple::DiskII diskii_; ClockingHint::Preference diskii_clocking_preference_ = ClockingHint::Preference::RealTime; diff --git a/Machines/Apple/Macintosh/Macintosh.cpp b/Machines/Apple/Macintosh/Macintosh.cpp index 75e57e65e..be72fb477 100644 --- a/Machines/Apple/Macintosh/Macintosh.cpp +++ b/Machines/Apple/Macintosh/Macintosh.cpp @@ -171,7 +171,7 @@ template class ConcreteMachin audio_.queue.flush(); } - void set_scan_target(Outputs::Display::ScanTarget *scan_target) override { + void set_scan_target(Outputs::Display::ScanTarget *scan_target) final { video_.set_scan_target(scan_target); } @@ -179,11 +179,11 @@ template class ConcreteMachin return video_.get_scaled_scan_status(); } - Outputs::Speaker::Speaker *get_speaker() override { + Outputs::Speaker::Speaker *get_speaker() final { return &audio_.speaker; } - void run_for(const Cycles cycles) override { + void run_for(const Cycles cycles) final { mc68000_.run_for(cycles); } @@ -458,7 +458,7 @@ template class ConcreteMachin video_.set_use_alternate_buffers(use_alternate_screen_buffer, use_alternate_audio_buffer); } - bool insert_media(const Analyser::Static::Media &media) override { + bool insert_media(const Analyser::Static::Media &media) final { if(media.disks.empty() && media.mass_storage_devices.empty()) return false; @@ -486,11 +486,11 @@ template class ConcreteMachin // MARK: Keyboard input. - KeyboardMapper *get_keyboard_mapper() override { + KeyboardMapper *get_keyboard_mapper() final { return &keyboard_mapper_; } - void set_key_state(uint16_t key, bool is_pressed) override { + void set_key_state(uint16_t key, bool is_pressed) final { keyboard_.enqueue_key_state(key, is_pressed); } @@ -498,7 +498,7 @@ template class ConcreteMachin // MARK: Interrupt updates. - void did_change_interrupt_status(Zilog::SCC::z8530 *sender, bool new_status) override { + void did_change_interrupt_status(Zilog::SCC::z8530 *sender, bool new_status) final { update_interrupt_input(); } @@ -515,7 +515,7 @@ template class ConcreteMachin } // MARK: - Activity Source - void set_activity_observer(Activity::Observer *observer) override { + void set_activity_observer(Activity::Observer *observer) final { iwm_->set_activity_observer(observer); if constexpr (model == Analyser::Static::Macintosh::Target::Model::MacPlus) { @@ -524,11 +524,11 @@ template class ConcreteMachin } // MARK: - Configuration options. - std::vector> get_options() override { + std::vector> get_options() final { return Apple::Macintosh::get_options(); } - void set_selections(const Configurable::SelectionSet &selections_by_option) override { + void set_selections(const Configurable::SelectionSet &selections_by_option) final { bool quick_boot; if(Configurable::get_quick_boot(selections_by_option, quick_boot)) { if(quick_boot) { @@ -540,24 +540,24 @@ template class ConcreteMachin } } - Configurable::SelectionSet get_accurate_selections() override { + Configurable::SelectionSet get_accurate_selections() final { Configurable::SelectionSet selection_set; Configurable::append_quick_boot_selection(selection_set, false); return selection_set; } - Configurable::SelectionSet get_user_friendly_selections() override { + Configurable::SelectionSet get_user_friendly_selections() final { Configurable::SelectionSet selection_set; Configurable::append_quick_boot_selection(selection_set, true); return selection_set; } private: - void set_component_prefers_clocking(ClockingHint::Source *component, ClockingHint::Preference clocking) override { + void set_component_prefers_clocking(ClockingHint::Source *component, ClockingHint::Preference clocking) final { scsi_bus_is_clocked_ = scsi_bus_.preferred_clocking() != ClockingHint::Preference::None; } - void drive_speed_accumulator_set_drive_speed(DriveSpeedAccumulator *, float speed) override { + void drive_speed_accumulator_set_drive_speed(DriveSpeedAccumulator *, float speed) final { iwm_.flush(); drives_[0].set_rotation_speed(speed); drives_[1].set_rotation_speed(speed); @@ -656,7 +656,7 @@ template class ConcreteMachin time_until_video_event_ = video_.get_next_sequence_point(); } - Inputs::Mouse &get_mouse() override { + Inputs::Mouse &get_mouse() final { return mouse_; } diff --git a/Machines/Atari/2600/Atari2600.cpp b/Machines/Atari/2600/Atari2600.cpp index f1e4c540f..7497a4bd6 100644 --- a/Machines/Atari/2600/Atari2600.cpp +++ b/Machines/Atari/2600/Atari2600.cpp @@ -48,7 +48,7 @@ class Joystick: public Inputs::ConcreteJoystick { }), bus_(bus), shift_(shift), fire_tia_input_(fire_tia_input) {} - void did_set_input(const Input &digital_input, bool is_active) override { + void did_set_input(const Input &digital_input, bool is_active) final { switch(digital_input.type) { case Input::Up: bus_->mos6532_.update_port_input(0, 0x10 >> shift_, is_active); break; case Input::Down: bus_->mos6532_.update_port_input(0, 0x20 >> shift_, is_active); break; @@ -123,11 +123,11 @@ class ConcreteMachine: set_is_ntsc(is_ntsc_); } - const std::vector> &get_joysticks() override { + const std::vector> &get_joysticks() final { return joysticks_; } - void set_switch_is_enabled(Atari2600Switch input, bool state) override { + void set_switch_is_enabled(Atari2600Switch input, bool state) final { switch(input) { case Atari2600SwitchReset: bus_->mos6532_.update_port_input(1, 0x01, state); break; case Atari2600SwitchSelect: bus_->mos6532_.update_port_input(1, 0x02, state); break; @@ -137,7 +137,7 @@ class ConcreteMachine: } } - bool get_switch_is_enabled(Atari2600Switch input) override { + bool get_switch_is_enabled(Atari2600Switch input) final { uint8_t port_input = bus_->mos6532_.get_port_input(1); switch(input) { case Atari2600SwitchReset: return !!(port_input & 0x01); @@ -149,12 +149,12 @@ class ConcreteMachine: } } - void set_reset_switch(bool state) override { + void set_reset_switch(bool state) final { bus_->set_reset_line(state); } // to satisfy CRTMachine::Machine - void set_scan_target(Outputs::Display::ScanTarget *scan_target) override { + void set_scan_target(Outputs::Display::ScanTarget *scan_target) final { bus_->speaker_.set_input_rate(static_cast(get_clock_rate() / static_cast(CPUTicksPerAudioTick))); bus_->tia_.set_crt_delegate(&frequency_mismatch_warner_); bus_->tia_.set_scan_target(scan_target); @@ -164,11 +164,11 @@ class ConcreteMachine: return bus_->tia_.get_scaled_scan_status() / 3.0f; } - Outputs::Speaker::Speaker *get_speaker() override { + Outputs::Speaker::Speaker *get_speaker() final { return &bus_->speaker_; } - void run_for(const Cycles cycles) override { + void run_for(const Cycles cycles) final { bus_->run_for(cycles); bus_->apply_confidence(confidence_counter_); } @@ -182,7 +182,7 @@ class ConcreteMachine: set_is_ntsc(is_ntsc_); } - float get_confidence() override { + float get_confidence() final { return confidence_counter_.get_confidence(); } diff --git a/Machines/Atari/ST/AtariST.cpp b/Machines/Atari/ST/AtariST.cpp index 6a45e6854..c7e9a1a05 100644 --- a/Machines/Atari/ST/AtariST.cpp +++ b/Machines/Atari/ST/AtariST.cpp @@ -662,7 +662,7 @@ class ConcreteMachine: } // MARK: - Activity Source - void set_activity_observer(Activity::Observer *observer) override { + void set_activity_observer(Activity::Observer *observer) final { dma_->set_activity_observer(observer); } diff --git a/Machines/Atari/ST/IntelligentKeyboard.hpp b/Machines/Atari/ST/IntelligentKeyboard.hpp index 7cb0068d5..ec02ff23d 100644 --- a/Machines/Atari/ST/IntelligentKeyboard.hpp +++ b/Machines/Atari/ST/IntelligentKeyboard.hpp @@ -162,7 +162,7 @@ class IntelligentKeyboard: Input(Input::Fire, 0), }) {} - void did_set_input(const Input &input, bool is_active) override { + void did_set_input(const Input &input, bool is_active) final { uint8_t mask = 0; switch(input.type) { default: return; diff --git a/Machines/ColecoVision/ColecoVision.cpp b/Machines/ColecoVision/ColecoVision.cpp index 631dc74f3..1a641d479 100644 --- a/Machines/ColecoVision/ColecoVision.cpp +++ b/Machines/ColecoVision/ColecoVision.cpp @@ -57,7 +57,7 @@ class Joystick: public Inputs::ConcreteJoystick { Input('9'), Input('*'), Input('#'), }) {} - void did_set_input(const Input &digital_input, bool is_active) override { + void did_set_input(const Input &digital_input, bool is_active) final { switch(digital_input.type) { default: return; @@ -177,11 +177,11 @@ class ConcreteMachine: audio_queue_.flush(); } - const std::vector> &get_joysticks() override { + const std::vector> &get_joysticks() final { return joysticks_; } - void set_scan_target(Outputs::Display::ScanTarget *scan_target) override { + void set_scan_target(Outputs::Display::ScanTarget *scan_target) final { vdp_->set_scan_target(scan_target); } @@ -189,15 +189,15 @@ class ConcreteMachine: return vdp_->get_scaled_scan_status(); } - void set_display_type(Outputs::Display::DisplayType display_type) override { + void set_display_type(Outputs::Display::DisplayType display_type) final { vdp_->set_display_type(display_type); } - Outputs::Speaker::Speaker *get_speaker() override { + Outputs::Speaker::Speaker *get_speaker() final { return &speaker_; } - void run_for(const Cycles cycles) override { + void run_for(const Cycles cycles) final { z80_.run_for(cycles); } @@ -362,30 +362,30 @@ class ConcreteMachine: audio_queue_.perform(); } - float get_confidence() override { + float get_confidence() final { if(pc_zero_accesses_ > 1) return 0.0f; return confidence_counter_.get_confidence(); } // MARK: - Configuration options. - std::vector> get_options() override { + std::vector> get_options() final { return Coleco::Vision::get_options(); } - void set_selections(const Configurable::SelectionSet &selections_by_option) override { + void set_selections(const Configurable::SelectionSet &selections_by_option) final { Configurable::Display display; if(Configurable::get_display(selections_by_option, display)) { set_video_signal_configurable(display); } } - Configurable::SelectionSet get_accurate_selections() override { + Configurable::SelectionSet get_accurate_selections() final { Configurable::SelectionSet selection_set; Configurable::append_display_selection(selection_set, Configurable::Display::CompositeColour); return selection_set; } - Configurable::SelectionSet get_user_friendly_selections() override { + Configurable::SelectionSet get_user_friendly_selections() final { Configurable::SelectionSet selection_set; Configurable::append_display_selection(selection_set, Configurable::Display::SVideo); return selection_set; diff --git a/Machines/Commodore/Vic-20/Vic20.cpp b/Machines/Commodore/Vic-20/Vic20.cpp index 4804c682c..71a989a10 100644 --- a/Machines/Commodore/Vic-20/Vic20.cpp +++ b/Machines/Commodore/Vic-20/Vic20.cpp @@ -259,7 +259,7 @@ class Joystick: public Inputs::ConcreteJoystick { user_port_via_port_handler_(user_port_via_port_handler), keyboard_via_port_handler_(keyboard_via_port_handler) {} - void did_set_input(const Input &digital_input, bool is_active) override { + void did_set_input(const Input &digital_input, bool is_active) final { JoystickInput mapped_input; switch(digital_input.type) { default: return; @@ -488,7 +488,7 @@ class ConcreteMachine: keyboard_via_port_handler_->clear_all_keys(); } - const std::vector> &get_joysticks() override { + const std::vector> &get_joysticks() final { return joysticks_; } @@ -651,16 +651,16 @@ class ConcreteMachine: keyboard_via_.set_control_line_input(MOS::MOS6522::Port::A, MOS::MOS6522::Line::One, !tape->get_input()); } - KeyboardMapper *get_keyboard_mapper() override { + KeyboardMapper *get_keyboard_mapper() final { return &keyboard_mapper_; } // MARK: - Configuration options. - std::vector> get_options() override { + std::vector> get_options() final { return Commodore::Vic20::get_options(); } - void set_selections(const Configurable::SelectionSet &selections_by_option) override { + void set_selections(const Configurable::SelectionSet &selections_by_option) final { bool quickload; if(Configurable::get_quick_load_tape(selections_by_option, quickload)) { allow_fast_tape_hack_ = quickload; @@ -673,27 +673,27 @@ class ConcreteMachine: } } - Configurable::SelectionSet get_accurate_selections() override { + Configurable::SelectionSet get_accurate_selections() final { Configurable::SelectionSet selection_set; Configurable::append_quick_load_tape_selection(selection_set, false); Configurable::append_display_selection(selection_set, Configurable::Display::CompositeColour); return selection_set; } - Configurable::SelectionSet get_user_friendly_selections() override { + Configurable::SelectionSet get_user_friendly_selections() final { Configurable::SelectionSet selection_set; Configurable::append_quick_load_tape_selection(selection_set, true); Configurable::append_display_selection(selection_set, Configurable::Display::SVideo); return selection_set; } - void set_component_prefers_clocking(ClockingHint::Source *component, ClockingHint::Preference clocking) override { + void set_component_prefers_clocking(ClockingHint::Source *component, ClockingHint::Preference clocking) final { tape_is_sleeping_ = clocking == ClockingHint::Preference::None; set_use_fast_tape(); } // MARK: - Activity Source - void set_activity_observer(Activity::Observer *observer) override { + void set_activity_observer(Activity::Observer *observer) final { if(c1540_) c1540_->set_activity_observer(observer); } diff --git a/Machines/Electron/Electron.cpp b/Machines/Electron/Electron.cpp index 1624f14a2..a5c890207 100644 --- a/Machines/Electron/Electron.cpp +++ b/Machines/Electron/Electron.cpp @@ -387,7 +387,7 @@ class ConcreteMachine: return video_output_.get_scaled_scan_status(); } - void set_display_type(Outputs::Display::DisplayType display_type) override { + void set_display_type(Outputs::Display::DisplayType display_type) final { video_output_.set_display_type(display_type); } @@ -416,16 +416,16 @@ class ConcreteMachine: Utility::TypeRecipient::add_typer(string, std::make_unique()); } - KeyboardMapper *get_keyboard_mapper() override { + KeyboardMapper *get_keyboard_mapper() final { return &keyboard_mapper_; } // MARK: - Configuration options. - std::vector> get_options() override { + std::vector> get_options() final { return Electron::get_options(); } - void set_selections(const Configurable::SelectionSet &selections_by_option) override { + void set_selections(const Configurable::SelectionSet &selections_by_option) final { bool quickload; if(Configurable::get_quick_load_tape(selections_by_option, quickload)) { allow_fast_tape_hack_ = quickload; @@ -438,14 +438,14 @@ class ConcreteMachine: } } - Configurable::SelectionSet get_accurate_selections() override { + Configurable::SelectionSet get_accurate_selections() final { Configurable::SelectionSet selection_set; Configurable::append_quick_load_tape_selection(selection_set, false); Configurable::append_display_selection(selection_set, Configurable::Display::CompositeColour); return selection_set; } - Configurable::SelectionSet get_user_friendly_selections() override { + Configurable::SelectionSet get_user_friendly_selections() final { Configurable::SelectionSet selection_set; Configurable::append_quick_load_tape_selection(selection_set, true); Configurable::append_display_selection(selection_set, Configurable::Display::RGB); @@ -453,7 +453,7 @@ class ConcreteMachine: } // MARK: - Activity Source - void set_activity_observer(Activity::Observer *observer) override { + void set_activity_observer(Activity::Observer *observer) final { activity_observer_ = observer; if(activity_observer_) { activity_observer_->register_led(caps_led); diff --git a/Machines/Electron/Keyboard.hpp b/Machines/Electron/Keyboard.hpp index ee1ae0588..04a3b76cd 100644 --- a/Machines/Electron/Keyboard.hpp +++ b/Machines/Electron/Keyboard.hpp @@ -34,7 +34,7 @@ enum Key: uint16_t { }; struct KeyboardMapper: public KeyboardMachine::MappedMachine::KeyboardMapper { - uint16_t mapped_key_for_key(Inputs::Keyboard::Key key) override; + uint16_t mapped_key_for_key(Inputs::Keyboard::Key key) final; }; struct CharacterMapper: public ::Utility::CharacterMapper { diff --git a/Machines/MSX/Cartridges/ASCII16kb.hpp b/Machines/MSX/Cartridges/ASCII16kb.hpp index d97de2370..848402708 100644 --- a/Machines/MSX/Cartridges/ASCII16kb.hpp +++ b/Machines/MSX/Cartridges/ASCII16kb.hpp @@ -19,7 +19,7 @@ class ASCII16kbROMSlotHandler: public ROMSlotHandler { ASCII16kbROMSlotHandler(MSX::MemoryMap &map, int slot) : map_(map), slot_(slot) {} - void write(uint16_t address, uint8_t value, bool pc_is_outside_bios) override { + void write(uint16_t address, uint8_t value, bool pc_is_outside_bios) final { switch(address >> 11) { default: if(pc_is_outside_bios) confidence_counter_.add_miss(); @@ -39,7 +39,7 @@ class ASCII16kbROMSlotHandler: public ROMSlotHandler { } } - virtual std::string debug_type() override { + virtual std::string debug_type() final { return "A16"; } diff --git a/Machines/MSX/Cartridges/ASCII8kb.hpp b/Machines/MSX/Cartridges/ASCII8kb.hpp index 125235e74..6a851d5f8 100644 --- a/Machines/MSX/Cartridges/ASCII8kb.hpp +++ b/Machines/MSX/Cartridges/ASCII8kb.hpp @@ -19,7 +19,7 @@ class ASCII8kbROMSlotHandler: public ROMSlotHandler { ASCII8kbROMSlotHandler(MSX::MemoryMap &map, int slot) : map_(map), slot_(slot) {} - void write(uint16_t address, uint8_t value, bool pc_is_outside_bios) override { + void write(uint16_t address, uint8_t value, bool pc_is_outside_bios) final { switch(address >> 11) { default: if(pc_is_outside_bios) confidence_counter_.add_miss(); @@ -51,7 +51,7 @@ class ASCII8kbROMSlotHandler: public ROMSlotHandler { } } - virtual std::string debug_type() override { + virtual std::string debug_type() final { return "A8"; } diff --git a/Machines/MSX/Cartridges/Konami.hpp b/Machines/MSX/Cartridges/Konami.hpp index c738d1622..1a6dbbc18 100644 --- a/Machines/MSX/Cartridges/Konami.hpp +++ b/Machines/MSX/Cartridges/Konami.hpp @@ -19,7 +19,7 @@ class KonamiROMSlotHandler: public ROMSlotHandler { KonamiROMSlotHandler(MSX::MemoryMap &map, int slot) : map_(map), slot_(slot) {} - void write(uint16_t address, uint8_t value, bool pc_is_outside_bios) override { + void write(uint16_t address, uint8_t value, bool pc_is_outside_bios) final { switch(address >> 13) { default: if(pc_is_outside_bios) confidence_counter_.add_miss(); @@ -45,7 +45,7 @@ class KonamiROMSlotHandler: public ROMSlotHandler { } } - virtual std::string debug_type() override { + virtual std::string debug_type() final { return "K"; } private: diff --git a/Machines/MSX/Cartridges/KonamiWithSCC.hpp b/Machines/MSX/Cartridges/KonamiWithSCC.hpp index 1387c0116..6a0e1b8c3 100644 --- a/Machines/MSX/Cartridges/KonamiWithSCC.hpp +++ b/Machines/MSX/Cartridges/KonamiWithSCC.hpp @@ -20,7 +20,7 @@ class KonamiWithSCCROMSlotHandler: public ROMSlotHandler { KonamiWithSCCROMSlotHandler(MSX::MemoryMap &map, int slot, Konami::SCC &scc) : map_(map), slot_(slot), scc_(scc) {} - void write(uint16_t address, uint8_t value, bool pc_is_outside_bios) override { + void write(uint16_t address, uint8_t value, bool pc_is_outside_bios) final { switch(address >> 11) { default: if(pc_is_outside_bios) confidence_counter_.add_miss(); @@ -66,7 +66,7 @@ class KonamiWithSCCROMSlotHandler: public ROMSlotHandler { } } - uint8_t read(uint16_t address) override { + uint8_t read(uint16_t address) final { if(scc_is_visible_ && address >= 0x9800 && address < 0xa000) { confidence_counter_.add_hit(); return scc_.read(address); @@ -75,7 +75,7 @@ class KonamiWithSCCROMSlotHandler: public ROMSlotHandler { return 0xff; } - virtual std::string debug_type() override { + virtual std::string debug_type() final { return "KSCC"; } diff --git a/Machines/MSX/DiskROM.hpp b/Machines/MSX/DiskROM.hpp index 316c63ccc..5710a7f9e 100644 --- a/Machines/MSX/DiskROM.hpp +++ b/Machines/MSX/DiskROM.hpp @@ -25,9 +25,9 @@ class DiskROM: public ROMSlotHandler, public WD::WD1770 { public: DiskROM(const std::vector &rom); - void write(uint16_t address, uint8_t value, bool pc_is_outside_bios) override; - uint8_t read(uint16_t address) override; - void run_for(HalfCycles half_cycles) override; + void write(uint16_t address, uint8_t value, bool pc_is_outside_bios) final; + uint8_t read(uint16_t address) final; + void run_for(HalfCycles half_cycles) final; void set_disk(std::shared_ptr disk, size_t drive); void set_activity_observer(Activity::Observer *observer); @@ -40,7 +40,7 @@ class DiskROM: public ROMSlotHandler, public WD::WD1770 { int selected_head_ = 0; std::array, 2> drives_; - void set_head_load_request(bool head_load) override; + void set_head_load_request(bool head_load) final; }; } diff --git a/Machines/MSX/MSX.cpp b/Machines/MSX/MSX.cpp index 03388e484..79f8c532e 100644 --- a/Machines/MSX/MSX.cpp +++ b/Machines/MSX/MSX.cpp @@ -110,7 +110,7 @@ class AYPortHandler: public GI::AY38910::PortHandler { Input(Input::Fire, 1), }) {} - void did_set_input(const Input &input, bool is_active) override { + void did_set_input(const Input &input, bool is_active) final { uint8_t mask = 0; switch(input.type) { default: return; @@ -278,7 +278,7 @@ class ConcreteMachine: audio_queue_.flush(); } - void set_scan_target(Outputs::Display::ScanTarget *scan_target) override { + void set_scan_target(Outputs::Display::ScanTarget *scan_target) final { vdp_->set_scan_target(scan_target); } @@ -286,19 +286,19 @@ class ConcreteMachine: return vdp_->get_scaled_scan_status(); } - void set_display_type(Outputs::Display::DisplayType display_type) override { + void set_display_type(Outputs::Display::DisplayType display_type) final { vdp_->set_display_type(display_type); } - Outputs::Speaker::Speaker *get_speaker() override { + Outputs::Speaker::Speaker *get_speaker() final { return &speaker_; } - void run_for(const Cycles cycles) override { + void run_for(const Cycles cycles) final { z80_.run_for(cycles); } - float get_confidence() override { + float get_confidence() final { if(performed_unmapped_access_ || pc_zero_accesses_ > 1) return 0.0f; if(memory_slots_[1].handler) { return memory_slots_[1].handler->get_confidence(); @@ -306,14 +306,14 @@ class ConcreteMachine: return 0.5f; } - std::string debug_type() override { + std::string debug_type() final { if(memory_slots_[1].handler) { return "MSX:" + memory_slots_[1].handler->debug_type(); } return "MSX"; } - bool insert_media(const Analyser::Static::Media &media) override { + bool insert_media(const Analyser::Static::Media &media) final { if(!media.cartridges.empty()) { const auto &segment = media.cartridges.front()->get_segments().front(); memory_slots_[1].source = segment.data; @@ -370,7 +370,7 @@ class ConcreteMachine: } // MARK: MSX::MemoryMap - void map(int slot, std::size_t source_address, uint16_t destination_address, std::size_t length) override { + void map(int slot, std::size_t source_address, uint16_t destination_address, std::size_t length) final { assert(!(destination_address & 8191)); assert(!(length & 8191)); assert(static_cast(destination_address) + length <= 65536); @@ -385,7 +385,7 @@ class ConcreteMachine: page_memory(paged_memory_); } - void unmap(int slot, uint16_t destination_address, std::size_t length) override { + void unmap(int slot, uint16_t destination_address, std::size_t length) final { assert(!(destination_address & 8191)); assert(!(length & 8191)); assert(static_cast(destination_address) + length <= 65536); @@ -628,26 +628,26 @@ class ConcreteMachine: return key_states_[selected_key_line_]; } - void clear_all_keys() override { + void clear_all_keys() final { std::memset(key_states_, 0xff, sizeof(key_states_)); } - void set_key_state(uint16_t key, bool is_pressed) override { + void set_key_state(uint16_t key, bool is_pressed) final { int mask = 1 << (key & 7); int line = key >> 4; if(is_pressed) key_states_[line] &= ~mask; else key_states_[line] |= mask; } - KeyboardMapper *get_keyboard_mapper() override { + KeyboardMapper *get_keyboard_mapper() final { return &keyboard_mapper_; } // MARK: - Configuration options. - std::vector> get_options() override { + std::vector> get_options() final { return MSX::get_options(); } - void set_selections(const Configurable::SelectionSet &selections_by_option) override { + void set_selections(const Configurable::SelectionSet &selections_by_option) final { bool quickload; if(Configurable::get_quick_load_tape(selections_by_option, quickload)) { allow_fast_tape_ = quickload; @@ -660,14 +660,14 @@ class ConcreteMachine: } } - Configurable::SelectionSet get_accurate_selections() override { + Configurable::SelectionSet get_accurate_selections() final { Configurable::SelectionSet selection_set; Configurable::append_quick_load_tape_selection(selection_set, false); Configurable::append_display_selection(selection_set, Configurable::Display::CompositeColour); return selection_set; } - Configurable::SelectionSet get_user_friendly_selections() override { + Configurable::SelectionSet get_user_friendly_selections() final { Configurable::SelectionSet selection_set; Configurable::append_quick_load_tape_selection(selection_set, true); Configurable::append_display_selection(selection_set, Configurable::Display::RGB); @@ -675,13 +675,13 @@ class ConcreteMachine: } // MARK: - Sleeper - void set_component_prefers_clocking(ClockingHint::Source *component, ClockingHint::Preference clocking) override { + void set_component_prefers_clocking(ClockingHint::Source *component, ClockingHint::Preference clocking) final { tape_player_is_sleeping_ = tape_player_.preferred_clocking() == ClockingHint::Preference::None; set_use_fast_tape(); } // MARK: - Activity::Source - void set_activity_observer(Activity::Observer *observer) override { + void set_activity_observer(Activity::Observer *observer) final { DiskROM *disk_rom = get_disk_rom(); if(disk_rom) { disk_rom->set_activity_observer(observer); @@ -690,7 +690,7 @@ class ConcreteMachine: } // MARK: - Joysticks - const std::vector> &get_joysticks() override { + const std::vector> &get_joysticks() final { return ay_port_handler_.get_joysticks(); } diff --git a/Machines/MasterSystem/MasterSystem.cpp b/Machines/MasterSystem/MasterSystem.cpp index 11a9a13c0..1810f2eb3 100644 --- a/Machines/MasterSystem/MasterSystem.cpp +++ b/Machines/MasterSystem/MasterSystem.cpp @@ -54,7 +54,7 @@ class Joystick: public Inputs::ConcreteJoystick { Input(Input::Fire, 1) }) {} - void did_set_input(const Input &digital_input, bool is_active) override { + void did_set_input(const Input &digital_input, bool is_active) final { switch(digital_input.type) { default: return; @@ -168,7 +168,7 @@ class ConcreteMachine: audio_queue_.flush(); } - void set_scan_target(Outputs::Display::ScanTarget *scan_target) override { + void set_scan_target(Outputs::Display::ScanTarget *scan_target) final { vdp_->set_tv_standard( (region_ == Target::Region::Europe) ? TI::TMS::TVStandard::PAL : TI::TMS::TVStandard::NTSC); @@ -181,15 +181,15 @@ class ConcreteMachine: return vdp_->get_scaled_scan_status(); } - void set_display_type(Outputs::Display::DisplayType display_type) override { + void set_display_type(Outputs::Display::DisplayType display_type) final { vdp_->set_display_type(display_type); } - Outputs::Speaker::Speaker *get_speaker() override { + Outputs::Speaker::Speaker *get_speaker() final { return &speaker_; } - void run_for(const Cycles cycles) override { + void run_for(const Cycles cycles) final { z80_.run_for(cycles); } @@ -344,16 +344,16 @@ class ConcreteMachine: audio_queue_.perform(); } - const std::vector> &get_joysticks() override { + const std::vector> &get_joysticks() final { return joysticks_; } // MARK: - Keyboard (i.e. the pause and reset buttons). - Inputs::Keyboard &get_keyboard() override { + Inputs::Keyboard &get_keyboard() final { return keyboard_; } - void keyboard_did_change_key(Inputs::Keyboard *, Inputs::Keyboard::Key key, bool is_pressed) override { + void keyboard_did_change_key(Inputs::Keyboard *, Inputs::Keyboard::Key key, bool is_pressed) final { if(key == Inputs::Keyboard::Key::Enter) { pause_is_pressed_ = is_pressed; } else if(key == Inputs::Keyboard::Key::Escape) { @@ -361,28 +361,28 @@ class ConcreteMachine: } } - void reset_all_keys(Inputs::Keyboard *) override { + void reset_all_keys(Inputs::Keyboard *) final { } // MARK: - Configuration options. - std::vector> get_options() override { + std::vector> get_options() final { return Sega::MasterSystem::get_options(); } - void set_selections(const Configurable::SelectionSet &selections_by_option) override { + void set_selections(const Configurable::SelectionSet &selections_by_option) final { Configurable::Display display; if(Configurable::get_display(selections_by_option, display)) { set_video_signal_configurable(display); } } - Configurable::SelectionSet get_accurate_selections() override { + Configurable::SelectionSet get_accurate_selections() final { Configurable::SelectionSet selection_set; Configurable::append_display_selection(selection_set, Configurable::Display::CompositeColour); return selection_set; } - Configurable::SelectionSet get_user_friendly_selections() override { + Configurable::SelectionSet get_user_friendly_selections() final { Configurable::SelectionSet selection_set; Configurable::append_display_selection(selection_set, Configurable::Display::RGB); return selection_set; diff --git a/Machines/Oric/Oric.cpp b/Machines/Oric/Oric.cpp index 2d99a9eb3..a7273d20f 100644 --- a/Machines/Oric/Oric.cpp +++ b/Machines/Oric/Oric.cpp @@ -612,16 +612,16 @@ template class Co set_interrupt_line(); } - KeyboardMapper *get_keyboard_mapper() override { + KeyboardMapper *get_keyboard_mapper() final { return &keyboard_mapper_; } // MARK: - Configuration options. - std::vector> get_options() override { + std::vector> get_options() final { return Oric::get_options(); } - void set_selections(const Configurable::SelectionSet &selections_by_option) override { + void set_selections(const Configurable::SelectionSet &selections_by_option) final { bool quickload; if(Configurable::get_quick_load_tape(selections_by_option, quickload)) { set_use_fast_tape_hack(quickload); @@ -633,21 +633,21 @@ template class Co } } - Configurable::SelectionSet get_accurate_selections() override { + Configurable::SelectionSet get_accurate_selections() final { Configurable::SelectionSet selection_set; Configurable::append_quick_load_tape_selection(selection_set, false); Configurable::append_display_selection(selection_set, Configurable::Display::CompositeColour); return selection_set; } - Configurable::SelectionSet get_user_friendly_selections() override { + Configurable::SelectionSet get_user_friendly_selections() final { Configurable::SelectionSet selection_set; Configurable::append_quick_load_tape_selection(selection_set, true); Configurable::append_display_selection(selection_set, Configurable::Display::RGB); return selection_set; } - void set_activity_observer(Activity::Observer *observer) override { + void set_activity_observer(Activity::Observer *observer) final { switch(disk_interface) { default: break; case DiskInterface::BD500: @@ -747,7 +747,7 @@ template class Co } // Keys that aren't read by polling. - void perform_special_key(Oric::Key key) override { + void perform_special_key(Oric::Key key) final { switch(key) { default: break; diff --git a/Machines/Utility/TypedDynamicMachine.hpp b/Machines/Utility/TypedDynamicMachine.hpp index e9f3382a2..4c1341245 100644 --- a/Machines/Utility/TypedDynamicMachine.hpp +++ b/Machines/Utility/TypedDynamicMachine.hpp @@ -25,35 +25,35 @@ template class TypedDynamicMachine: public ::Machine::DynamicMachine return *this; } - Activity::Source *activity_source() override { + Activity::Source *activity_source() final { return get(); } - MediaTarget::Machine *media_target() override { + MediaTarget::Machine *media_target() final { return get(); } - CRTMachine::Machine *crt_machine() override { + CRTMachine::Machine *crt_machine() final { return get(); } - JoystickMachine::Machine *joystick_machine() override { + JoystickMachine::Machine *joystick_machine() final { return get(); } - KeyboardMachine::Machine *keyboard_machine() override { + KeyboardMachine::Machine *keyboard_machine() final { return get(); } - MouseMachine::Machine *mouse_machine() override { + MouseMachine::Machine *mouse_machine() final { return get(); } - Configurable::Device *configurable_device() override { + Configurable::Device *configurable_device() final { return get(); } - void *raw_pointer() override { + void *raw_pointer() final { return get(); } diff --git a/Machines/ZX8081/ZX8081.cpp b/Machines/ZX8081/ZX8081.cpp index 4e2e1fe34..8ea7a0781 100644 --- a/Machines/ZX8081/ZX8081.cpp +++ b/Machines/ZX8081/ZX8081.cpp @@ -376,16 +376,16 @@ template class ConcreteMachine: HalfCycles get_typer_delay() final { return Cycles(7000000); } HalfCycles get_typer_frequency() final { return Cycles(390000); } - KeyboardMapper *get_keyboard_mapper() override { + KeyboardMapper *get_keyboard_mapper() final { return &keyboard_mapper_; } // MARK: - Configuration options. - std::vector> get_options() override { + std::vector> get_options() final { return ZX8081::get_options(); } - void set_selections(const Configurable::SelectionSet &selections_by_option) override { + void set_selections(const Configurable::SelectionSet &selections_by_option) final { bool quickload; if(Configurable::get_quick_load_tape(selections_by_option, quickload)) { allow_fast_tape_hack_ = quickload; @@ -398,14 +398,14 @@ template class ConcreteMachine: } } - Configurable::SelectionSet get_accurate_selections() override { + Configurable::SelectionSet get_accurate_selections() final { Configurable::SelectionSet selection_set; Configurable::append_quick_load_tape_selection(selection_set, false); Configurable::append_automatic_tape_motor_control_selection(selection_set, false); return selection_set; } - Configurable::SelectionSet get_user_friendly_selections() override { + Configurable::SelectionSet get_user_friendly_selections() final { Configurable::SelectionSet selection_set; Configurable::append_quick_load_tape_selection(selection_set, true); Configurable::append_automatic_tape_motor_control_selection(selection_set, true); diff --git a/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme b/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme index 47f9c7286..1465a4f62 100644 --- a/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme +++ b/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme @@ -67,7 +67,7 @@ &buffer) override { + void speaker_did_complete_samples(Outputs::Speaker::Speaker *speaker, const std::vector &buffer) final { [machineAccessLock lock]; [machine speaker:speaker didCompleteSamples:buffer.data() length:(int)buffer.size()]; [machineAccessLock unlock]; } - void speaker_did_change_input_clock(Outputs::Speaker::Speaker *speaker) override { + void speaker_did_change_input_clock(Outputs::Speaker::Speaker *speaker) final { [machineAccessLock lock]; [machine speakerDidChangeInputClock:speaker]; [machineAccessLock unlock]; @@ -59,15 +59,15 @@ struct SpeakerDelegate: public Outputs::Speaker::Speaker::Delegate, public LockP }; struct ActivityObserver: public Activity::Observer { - void register_led(const std::string &name) override { + void register_led(const std::string &name) final { [machine addLED:[NSString stringWithUTF8String:name.c_str()]]; } - void set_led_status(const std::string &name, bool lit) override { + void set_led_status(const std::string &name, bool lit) final { [machine.delegate machine:machine led:[NSString stringWithUTF8String:name.c_str()] didChangeToLit:lit]; } - void announce_drive_event(const std::string &name, DriveEvent event) override { + void announce_drive_event(const std::string &name, DriveEvent event) final { [machine.delegate machine:machine ledShouldBlink:[NSString stringWithUTF8String:name.c_str()]]; } diff --git a/OSBindings/Mac/Clock SignalTests/EmuTOSTests.mm b/OSBindings/Mac/Clock SignalTests/EmuTOSTests.mm index 478a682d7..e2157d8ea 100644 --- a/OSBindings/Mac/Clock SignalTests/EmuTOSTests.mm +++ b/OSBindings/Mac/Clock SignalTests/EmuTOSTests.mm @@ -32,7 +32,7 @@ class EmuTOS: public ComparativeBusHandler { m68000_.run_for(cycles); } - CPU::MC68000::ProcessorState get_state() override { + CPU::MC68000::ProcessorState get_state() final { return m68000_.get_state(); } diff --git a/OSBindings/Mac/Clock SignalTests/QLTests.mm b/OSBindings/Mac/Clock SignalTests/QLTests.mm index 26949aa66..505016cef 100644 --- a/OSBindings/Mac/Clock SignalTests/QLTests.mm +++ b/OSBindings/Mac/Clock SignalTests/QLTests.mm @@ -35,7 +35,7 @@ class QL: public ComparativeBusHandler { m68000_.run_for(cycles); } - CPU::MC68000::ProcessorState get_state() override { + CPU::MC68000::ProcessorState get_state() final { return m68000_.get_state(); } diff --git a/OSBindings/SDL/main.cpp b/OSBindings/SDL/main.cpp index 6a70d98dd..cf6bd79a5 100644 --- a/OSBindings/SDL/main.cpp +++ b/OSBindings/SDL/main.cpp @@ -34,7 +34,7 @@ namespace { struct BestEffortUpdaterDelegate: public Concurrency::BestEffortUpdater::Delegate { - Time::Seconds update(Concurrency::BestEffortUpdater *updater, Time::Seconds duration, bool did_skip_previous_update, int flags) override { + Time::Seconds update(Concurrency::BestEffortUpdater *updater, Time::Seconds duration, bool did_skip_previous_update, int flags) final { return machine->crt_machine()->run_until(duration, flags); } @@ -45,7 +45,7 @@ struct SpeakerDelegate: public Outputs::Speaker::Speaker::Delegate { // This is set to a relatively large number for now. static constexpr int buffer_size = 1024; - void speaker_did_complete_samples(Outputs::Speaker::Speaker *speaker, const std::vector &buffer) override { + void speaker_did_complete_samples(Outputs::Speaker::Speaker *speaker, const std::vector &buffer) final { std::lock_guard lock_guard(audio_buffer_mutex_); if(audio_buffer_.size() > buffer_size) { audio_buffer_.erase(audio_buffer_.begin(), audio_buffer_.end() - buffer_size); @@ -138,21 +138,21 @@ class ActivityObserver: public Activity::Observer { private: std::vector leds_; - void register_led(const std::string &name) override { + void register_led(const std::string &name) final { leds_.push_back(name); } std::vector drives_; - void register_drive(const std::string &name) override { + void register_drive(const std::string &name) final { drives_.push_back(name); } - void set_led_status(const std::string &name, bool lit) override { + void set_led_status(const std::string &name, bool lit) final { if(lit) lit_leds_.insert(name); else lit_leds_.erase(name); } - void announce_drive_event(const std::string &name, DriveEvent event) override { + void announce_drive_event(const std::string &name, DriveEvent event) final { blinking_leds_.insert(name); } @@ -551,7 +551,7 @@ int main(int argc, char *argv[]) { } } - // Apply the user's actual selections to override the defaults. + // Apply the user's actual selections to final the defaults. configurable_device->set_selections(arguments.selections); } diff --git a/Outputs/OpenGL/ScanTarget.hpp b/Outputs/OpenGL/ScanTarget.hpp index cfe415ed3..a3531cdda 100644 --- a/Outputs/OpenGL/ScanTarget.hpp +++ b/Outputs/OpenGL/ScanTarget.hpp @@ -71,15 +71,15 @@ class ScanTarget: public Outputs::Display::ScanTarget { GLuint target_framebuffer_; const float output_gamma_; - // Outputs::Display::ScanTarget overrides. - void set_modals(Modals) override; - Scan *begin_scan() override; - void end_scan() override; - uint8_t *begin_data(size_t required_length, size_t required_alignment) override; - void end_data(size_t actual_length) override; - void submit() override; - void announce(Event event, bool is_visible, const Outputs::Display::ScanTarget::Scan::EndPoint &location, uint8_t colour_burst_amplitude) override; - void will_change_owner() override; + // Outputs::Display::ScanTarget finals. + void set_modals(Modals) final; + Scan *begin_scan() final; + void end_scan() final; + uint8_t *begin_data(size_t required_length, size_t required_alignment) final; + void end_data(size_t actual_length) final; + void submit() final; + void announce(Event event, bool is_visible, const Outputs::Display::ScanTarget::Scan::EndPoint &location, uint8_t colour_burst_amplitude) final; + void will_change_owner() final; bool output_is_visible_ = false; diff --git a/Storage/Disk/Controller/DiskController.hpp b/Storage/Disk/Controller/DiskController.hpp index fa876ea6e..c7d922dd1 100644 --- a/Storage/Disk/Controller/DiskController.hpp +++ b/Storage/Disk/Controller/DiskController.hpp @@ -118,11 +118,11 @@ class Controller: std::shared_ptr empty_drive_; // ClockingHint::Observer. - void set_component_prefers_clocking(ClockingHint::Source *component, ClockingHint::Preference clocking) override; + void set_component_prefers_clocking(ClockingHint::Source *component, ClockingHint::Preference clocking) final; // for Drive::EventDelegate - void process_event(const Drive::Event &event) override; - void advance(const Cycles cycles) override ; + void process_event(const Drive::Event &event) final; + void advance(const Cycles cycles) final; // to satisfy DigitalPhaseLockedLoop::Delegate void digital_phase_locked_loop_output_bit(int value); diff --git a/Storage/Disk/DiskImage/Formats/AcornADF.hpp b/Storage/Disk/DiskImage/Formats/AcornADF.hpp index b70800876..c0d040d56 100644 --- a/Storage/Disk/DiskImage/Formats/AcornADF.hpp +++ b/Storage/Disk/DiskImage/Formats/AcornADF.hpp @@ -29,11 +29,11 @@ class AcornADF: public MFMSectorDump { */ AcornADF(const std::string &file_name); - HeadPosition get_maximum_head_position() override; - int get_head_count() override; + HeadPosition get_maximum_head_position() final; + int get_head_count() final; private: - long get_file_offset_for_position(Track::Address address) override; + long get_file_offset_for_position(Track::Address address) final; }; } diff --git a/Storage/Disk/DiskImage/Formats/AppleDSK.hpp b/Storage/Disk/DiskImage/Formats/AppleDSK.hpp index 420ef8a38..5a4f73062 100644 --- a/Storage/Disk/DiskImage/Formats/AppleDSK.hpp +++ b/Storage/Disk/DiskImage/Formats/AppleDSK.hpp @@ -32,10 +32,10 @@ class AppleDSK: public DiskImage { AppleDSK(const std::string &file_name); // Implemented to satisfy @c DiskImage. - HeadPosition get_maximum_head_position() override; - std::shared_ptr get_track_at_position(Track::Address address) override; - void set_tracks(const std::map> &tracks) override; - bool get_is_read_only() override; + HeadPosition get_maximum_head_position() final; + std::shared_ptr get_track_at_position(Track::Address address) final; + void set_tracks(const std::map> &tracks) final; + bool get_is_read_only() final; private: Storage::FileHolder file_; diff --git a/Storage/Disk/DiskImage/Formats/CPCDSK.hpp b/Storage/Disk/DiskImage/Formats/CPCDSK.hpp index 42486b5be..15129dd86 100644 --- a/Storage/Disk/DiskImage/Formats/CPCDSK.hpp +++ b/Storage/Disk/DiskImage/Formats/CPCDSK.hpp @@ -33,12 +33,12 @@ class CPCDSK: public DiskImage { CPCDSK(const std::string &file_name); // implemented to satisfy @c Disk - HeadPosition get_maximum_head_position() override; - int get_head_count() override; - bool get_is_read_only() override; + HeadPosition get_maximum_head_position() final; + int get_head_count() final; + bool get_is_read_only() final; - void set_tracks(const std::map> &tracks) override; - std::shared_ptr<::Storage::Disk::Track> get_track_at_position(::Storage::Disk::Track::Address address) override; + void set_tracks(const std::map> &tracks) final; + std::shared_ptr<::Storage::Disk::Track> get_track_at_position(::Storage::Disk::Track::Address address) final; private: struct Track { diff --git a/Storage/Disk/DiskImage/Formats/D64.hpp b/Storage/Disk/DiskImage/Formats/D64.hpp index 6f05bf2b1..25a4718f2 100644 --- a/Storage/Disk/DiskImage/Formats/D64.hpp +++ b/Storage/Disk/DiskImage/Formats/D64.hpp @@ -29,9 +29,9 @@ class D64: public DiskImage { D64(const std::string &file_name); // implemented to satisfy @c Disk - HeadPosition get_maximum_head_position() override; + HeadPosition get_maximum_head_position() final; using DiskImage::get_is_read_only; - std::shared_ptr get_track_at_position(Track::Address address) override; + std::shared_ptr get_track_at_position(Track::Address address) final; private: Storage::FileHolder file_; diff --git a/Storage/Disk/DiskImage/Formats/DMK.hpp b/Storage/Disk/DiskImage/Formats/DMK.hpp index 35e4b3f67..c1962e03c 100644 --- a/Storage/Disk/DiskImage/Formats/DMK.hpp +++ b/Storage/Disk/DiskImage/Formats/DMK.hpp @@ -31,11 +31,11 @@ class DMK: public DiskImage { DMK(const std::string &file_name); // implemented to satisfy @c Disk - HeadPosition get_maximum_head_position() override; - int get_head_count() override; - bool get_is_read_only() override; + HeadPosition get_maximum_head_position() final; + int get_head_count() final; + bool get_is_read_only() final; - std::shared_ptr<::Storage::Disk::Track> get_track_at_position(::Storage::Disk::Track::Address address) override; + std::shared_ptr<::Storage::Disk::Track> get_track_at_position(::Storage::Disk::Track::Address address) final; private: FileHolder file_; diff --git a/Storage/Disk/DiskImage/Formats/G64.hpp b/Storage/Disk/DiskImage/Formats/G64.hpp index c8e2ce598..b1d6ea978 100644 --- a/Storage/Disk/DiskImage/Formats/G64.hpp +++ b/Storage/Disk/DiskImage/Formats/G64.hpp @@ -32,8 +32,8 @@ class G64: public DiskImage { G64(const std::string &file_name); // implemented to satisfy @c Disk - HeadPosition get_maximum_head_position() override; - std::shared_ptr get_track_at_position(Track::Address address) override; + HeadPosition get_maximum_head_position() final; + std::shared_ptr get_track_at_position(Track::Address address) final; using DiskImage::get_is_read_only; private: diff --git a/Storage/Disk/DiskImage/Formats/HFE.hpp b/Storage/Disk/DiskImage/Formats/HFE.hpp index 0b35f0400..7fcbc25e7 100644 --- a/Storage/Disk/DiskImage/Formats/HFE.hpp +++ b/Storage/Disk/DiskImage/Formats/HFE.hpp @@ -32,11 +32,11 @@ class HFE: public DiskImage { HFE(const std::string &file_name); // implemented to satisfy @c Disk - HeadPosition get_maximum_head_position() override; - int get_head_count() override; - bool get_is_read_only() override; - void set_tracks(const std::map> &tracks) override; - std::shared_ptr get_track_at_position(Track::Address address) override; + HeadPosition get_maximum_head_position() final; + int get_head_count() final; + bool get_is_read_only() final; + void set_tracks(const std::map> &tracks) final; + std::shared_ptr get_track_at_position(Track::Address address) final; private: Storage::FileHolder file_; diff --git a/Storage/Disk/DiskImage/Formats/MFMSectorDump.hpp b/Storage/Disk/DiskImage/Formats/MFMSectorDump.hpp index dded6fd8c..c8914614f 100644 --- a/Storage/Disk/DiskImage/Formats/MFMSectorDump.hpp +++ b/Storage/Disk/DiskImage/Formats/MFMSectorDump.hpp @@ -25,9 +25,9 @@ class MFMSectorDump: public DiskImage { MFMSectorDump(const std::string &file_name); void set_geometry(int sectors_per_track, uint8_t sector_size, uint8_t first_sector, bool is_double_density); - bool get_is_read_only() override; - void set_tracks(const std::map> &tracks) override; - std::shared_ptr get_track_at_position(Track::Address address) override; + bool get_is_read_only() final; + void set_tracks(const std::map> &tracks) final; + std::shared_ptr get_track_at_position(Track::Address address) final; protected: Storage::FileHolder file_; diff --git a/Storage/Disk/DiskImage/Formats/MSA.hpp b/Storage/Disk/DiskImage/Formats/MSA.hpp index b79ecfe41..eb28fc9fb 100644 --- a/Storage/Disk/DiskImage/Formats/MSA.hpp +++ b/Storage/Disk/DiskImage/Formats/MSA.hpp @@ -26,10 +26,10 @@ class MSA final: public DiskImage { MSA(const std::string &file_name); // Implemented to satisfy @c DiskImage. - HeadPosition get_maximum_head_position() override; - int get_head_count() override; - std::shared_ptr<::Storage::Disk::Track> get_track_at_position(::Storage::Disk::Track::Address address) override; - bool get_is_read_only() override { return false; } + HeadPosition get_maximum_head_position() final; + int get_head_count() final; + std::shared_ptr<::Storage::Disk::Track> get_track_at_position(::Storage::Disk::Track::Address address) final; + bool get_is_read_only() final { return false; } private: FileHolder file_; diff --git a/Storage/Disk/DiskImage/Formats/MSXDSK.hpp b/Storage/Disk/DiskImage/Formats/MSXDSK.hpp index 672841eee..23975a11e 100644 --- a/Storage/Disk/DiskImage/Formats/MSXDSK.hpp +++ b/Storage/Disk/DiskImage/Formats/MSXDSK.hpp @@ -23,11 +23,11 @@ namespace Disk { class MSXDSK: public MFMSectorDump { public: MSXDSK(const std::string &file_name); - HeadPosition get_maximum_head_position() override; - int get_head_count() override; + HeadPosition get_maximum_head_position() final; + int get_head_count() final; private: - long get_file_offset_for_position(Track::Address address) override; + long get_file_offset_for_position(Track::Address address) final; int head_count_; int track_count_; diff --git a/Storage/Disk/DiskImage/Formats/MacintoshIMG.hpp b/Storage/Disk/DiskImage/Formats/MacintoshIMG.hpp index fc5acf780..51d0cac63 100644 --- a/Storage/Disk/DiskImage/Formats/MacintoshIMG.hpp +++ b/Storage/Disk/DiskImage/Formats/MacintoshIMG.hpp @@ -32,12 +32,12 @@ class MacintoshIMG: public DiskImage { MacintoshIMG(const std::string &file_name); // implemented to satisfy @c Disk - HeadPosition get_maximum_head_position() override; - int get_head_count() override; - bool get_is_read_only() override; + HeadPosition get_maximum_head_position() final; + int get_head_count() final; + bool get_is_read_only() final; - std::shared_ptr<::Storage::Disk::Track> get_track_at_position(::Storage::Disk::Track::Address address) override; - void set_tracks(const std::map> &tracks) override; + std::shared_ptr<::Storage::Disk::Track> get_track_at_position(::Storage::Disk::Track::Address address) final; + void set_tracks(const std::map> &tracks) final; private: Storage::FileHolder file_; diff --git a/Storage/Disk/DiskImage/Formats/NIB.hpp b/Storage/Disk/DiskImage/Formats/NIB.hpp index f8ef04ef8..8f4f71d9c 100644 --- a/Storage/Disk/DiskImage/Formats/NIB.hpp +++ b/Storage/Disk/DiskImage/Formats/NIB.hpp @@ -25,10 +25,10 @@ class NIB: public DiskImage { NIB(const std::string &file_name); // Implemented to satisfy @c DiskImage. - HeadPosition get_maximum_head_position() override; - std::shared_ptr<::Storage::Disk::Track> get_track_at_position(::Storage::Disk::Track::Address address) override; - void set_tracks(const std::map> &tracks) override; - bool get_is_read_only() override; + HeadPosition get_maximum_head_position() final; + std::shared_ptr<::Storage::Disk::Track> get_track_at_position(::Storage::Disk::Track::Address address) final; + void set_tracks(const std::map> &tracks) final; + bool get_is_read_only() final; private: FileHolder file_; diff --git a/Storage/Disk/DiskImage/Formats/OricMFMDSK.hpp b/Storage/Disk/DiskImage/Formats/OricMFMDSK.hpp index 2d0722ab2..7bbd1f01d 100644 --- a/Storage/Disk/DiskImage/Formats/OricMFMDSK.hpp +++ b/Storage/Disk/DiskImage/Formats/OricMFMDSK.hpp @@ -30,12 +30,12 @@ class OricMFMDSK: public DiskImage { OricMFMDSK(const std::string &file_name); // implemented to satisfy @c DiskImage - HeadPosition get_maximum_head_position() override; - int get_head_count() override; - bool get_is_read_only() override; + HeadPosition get_maximum_head_position() final; + int get_head_count() final; + bool get_is_read_only() final; - void set_tracks(const std::map> &tracks) override; - std::shared_ptr get_track_at_position(Track::Address address) override; + void set_tracks(const std::map> &tracks) final; + std::shared_ptr get_track_at_position(Track::Address address) final; private: Storage::FileHolder file_; diff --git a/Storage/Disk/DiskImage/Formats/SSD.hpp b/Storage/Disk/DiskImage/Formats/SSD.hpp index bc2b0e8db..d3df2abc8 100644 --- a/Storage/Disk/DiskImage/Formats/SSD.hpp +++ b/Storage/Disk/DiskImage/Formats/SSD.hpp @@ -27,11 +27,11 @@ class SSD: public MFMSectorDump { */ SSD(const std::string &file_name); - HeadPosition get_maximum_head_position() override; - int get_head_count() override; + HeadPosition get_maximum_head_position() final; + int get_head_count() final; private: - long get_file_offset_for_position(Track::Address address) override; + long get_file_offset_for_position(Track::Address address) final; int head_count_; int track_count_; diff --git a/Storage/Disk/DiskImage/Formats/ST.hpp b/Storage/Disk/DiskImage/Formats/ST.hpp index 2b34d33b1..de1218264 100644 --- a/Storage/Disk/DiskImage/Formats/ST.hpp +++ b/Storage/Disk/DiskImage/Formats/ST.hpp @@ -27,11 +27,11 @@ class ST: public MFMSectorDump { */ ST(const std::string &file_name); - HeadPosition get_maximum_head_position() override; - int get_head_count() override; + HeadPosition get_maximum_head_position() final; + int get_head_count() final; private: - long get_file_offset_for_position(Track::Address address) override; + long get_file_offset_for_position(Track::Address address) final; int head_count_; int track_count_; diff --git a/Storage/Disk/DiskImage/Formats/WOZ.hpp b/Storage/Disk/DiskImage/Formats/WOZ.hpp index 2e5703802..de1821d9b 100644 --- a/Storage/Disk/DiskImage/Formats/WOZ.hpp +++ b/Storage/Disk/DiskImage/Formats/WOZ.hpp @@ -26,11 +26,11 @@ class WOZ: public DiskImage { WOZ(const std::string &file_name); // Implemented to satisfy @c DiskImage. - HeadPosition get_maximum_head_position() override; - int get_head_count() override; - std::shared_ptr get_track_at_position(Track::Address address) override; - void set_tracks(const std::map> &tracks) override; - bool get_is_read_only() override; + HeadPosition get_maximum_head_position() final; + int get_head_count() final; + std::shared_ptr get_track_at_position(Track::Address address) final; + void set_tracks(const std::map> &tracks) final; + bool get_is_read_only() final; private: Storage::FileHolder file_; diff --git a/Storage/Disk/Track/PCMTrack.hpp b/Storage/Disk/Track/PCMTrack.hpp index b80ef4f99..5012820a3 100644 --- a/Storage/Disk/Track/PCMTrack.hpp +++ b/Storage/Disk/Track/PCMTrack.hpp @@ -49,9 +49,9 @@ class PCMTrack: public Track { static PCMTrack *resampled_clone(Track *original, size_t bits_per_track); // as per @c Track - Event get_next_event() override; - Time seek_to(const Time &time_since_index_hole) override; - Track *clone() const override; + Event get_next_event() final; + Time seek_to(const Time &time_since_index_hole) final; + Track *clone() const final; // Obtains a copy of this track, flattened to a single PCMSegment, which // consists of @c bits_per_track potential flux transition points. diff --git a/Storage/Disk/Track/UnformattedTrack.hpp b/Storage/Disk/Track/UnformattedTrack.hpp index 6d66dc82b..7498fe58a 100644 --- a/Storage/Disk/Track/UnformattedTrack.hpp +++ b/Storage/Disk/Track/UnformattedTrack.hpp @@ -19,9 +19,9 @@ namespace Disk { */ class UnformattedTrack: public Track { public: - Event get_next_event() override; - Time seek_to(const Time &time_since_index_hole) override; - Track *clone() const override; + Event get_next_event() final; + Time seek_to(const Time &time_since_index_hole) final; + Track *clone() const final; }; } diff --git a/Storage/Tape/Tape.hpp b/Storage/Tape/Tape.hpp index b476237f0..e236f6cdd 100644 --- a/Storage/Tape/Tape.hpp +++ b/Storage/Tape/Tape.hpp @@ -149,7 +149,7 @@ class BinaryTapePlayer : public TapePlayer { protected: Delegate *delegate_ = nullptr; - void process_input_pulse(const Storage::Tape::Tape::Pulse &pulse) override; + void process_input_pulse(const Storage::Tape::Tape::Pulse &pulse) final; bool input_level_ = false; bool motor_is_running_ = false; };