diff --git a/Components/6560/6560.hpp b/Components/6560/6560.hpp index 4099659ca..c1dcf85e1 100644 --- a/Components/6560/6560.hpp +++ b/Components/6560/6560.hpp @@ -83,7 +83,8 @@ template class MOS6560 { speaker_.set_input_rate(static_cast(clock_rate / 4.0)); } - void set_scan_target(Outputs::Display::ScanTarget *scan_target) { crt_.set_scan_target(scan_target); } + void set_scan_target(Outputs::Display::ScanTarget *scan_target) { crt_.set_scan_target(scan_target); } + void set_display_type(Outputs::Display::DisplayType display_type) { crt_.set_display_type(display_type); } Outputs::Speaker::Speaker *get_speaker() { return &speaker_; } void set_high_frequency_cutoff(float cutoff) { diff --git a/Components/9918/9918.cpp b/Components/9918/9918.cpp index b5e63a1c6..6818de294 100644 --- a/Components/9918/9918.cpp +++ b/Components/9918/9918.cpp @@ -116,6 +116,10 @@ void TMS9918::set_scan_target(Outputs::Display::ScanTarget *scan_target) { crt_.set_scan_target(scan_target); } +void TMS9918::set_display_type(Outputs::Display::DisplayType display_type) { + crt_.set_display_type(display_type); +} + void Base::LineBuffer::reset_sprite_collection() { sprites_stopped = false; active_sprite_slot = 0; diff --git a/Components/9918/9918.hpp b/Components/9918/9918.hpp index d1bcae473..30d1b5b1d 100644 --- a/Components/9918/9918.hpp +++ b/Components/9918/9918.hpp @@ -41,8 +41,11 @@ class TMS9918: public Base { /*! Sets the TV standard for this TMS, if that is hard-coded in hardware. */ void set_tv_standard(TVStandard standard); - /*! Provides the CRT this TMS is connected to. */ - void set_scan_target(Outputs::Display::ScanTarget *scan_target); + /*! Sets the scan target this TMS will post content to. */ + void set_scan_target(Outputs::Display::ScanTarget *); + + /*! Sets the type of display the CRT will request. */ + void set_display_type(Outputs::Display::DisplayType); /*! Runs the VCP for the number of cycles indicate; it is an implicit assumption of the code diff --git a/Machines/AmstradCPC/AmstradCPC.cpp b/Machines/AmstradCPC/AmstradCPC.cpp index d3d833c05..d51b0ca32 100644 --- a/Machines/AmstradCPC/AmstradCPC.cpp +++ b/Machines/AmstradCPC/AmstradCPC.cpp @@ -326,11 +326,16 @@ class CRTCBusHandler { was_hsync_ = state.hsync; } - /// Constructs an appropriate CRT for video output. + /// Sets the destination for output. void set_scan_target(Outputs::Display::ScanTarget *scan_target) { crt_.set_scan_target(scan_target); } + /// Sets the type of display. + void set_display_type(Outputs::Display::DisplayType display_type) { + crt_.set_display_type(display_type); + } + /*! Sets the next video mode. Per the documentation, mode changes take effect only at the end of line, not immediately. So next means "as of the end of this line". @@ -966,11 +971,16 @@ template class ConcreteMachine: flush_fdc(); } - /// A CRTMachine function; indicates that outputs should be created now. + /// A CRTMachine function; sets the destination for video. void set_scan_target(Outputs::Display::ScanTarget *scan_target) override final { crtc_bus_handler_.set_scan_target(scan_target); } + /// A CRTMachine function; sets the output display type. + void set_display_type(Outputs::Display::DisplayType display_type) override final { + crtc_bus_handler_.set_display_type(display_type); + } + /// @returns the speaker in use. Outputs::Speaker::Speaker *get_speaker() override final { return ay_.get_speaker(); diff --git a/Machines/ColecoVision/ColecoVision.cpp b/Machines/ColecoVision/ColecoVision.cpp index 4d55fbde7..3bffc7fe1 100644 --- a/Machines/ColecoVision/ColecoVision.cpp +++ b/Machines/ColecoVision/ColecoVision.cpp @@ -174,6 +174,10 @@ class ConcreteMachine: vdp_.set_scan_target(scan_target); } + void set_display_type(Outputs::Display::DisplayType display_type) override { + vdp_.set_display_type(display_type); + } + Outputs::Speaker::Speaker *get_speaker() override { return &speaker_; } diff --git a/Machines/Commodore/Vic-20/Vic20.cpp b/Machines/Commodore/Vic-20/Vic20.cpp index ba26047a5..027b0f9b5 100644 --- a/Machines/Commodore/Vic-20/Vic20.cpp +++ b/Machines/Commodore/Vic-20/Vic20.cpp @@ -628,6 +628,10 @@ class ConcreteMachine: mos6560_.set_scan_target(scan_target); } + void set_display_type(Outputs::Display::DisplayType display_type) override final { + mos6560_.set_display_type(display_type); + } + Outputs::Speaker::Speaker *get_speaker() override final { return mos6560_.get_speaker(); } diff --git a/Machines/Electron/Electron.cpp b/Machines/Electron/Electron.cpp index 440726d65..75269411a 100644 --- a/Machines/Electron/Electron.cpp +++ b/Machines/Electron/Electron.cpp @@ -378,6 +378,10 @@ class ConcreteMachine: video_output_.set_scan_target(scan_target); } + void set_display_type(Outputs::Display::DisplayType display_type) override { + video_output_.set_display_type(display_type); + } + Outputs::Speaker::Speaker *get_speaker() override final { return &speaker_; } diff --git a/Machines/Electron/Video.cpp b/Machines/Electron/Video.cpp index 5185cbe7d..0327e2d43 100644 --- a/Machines/Electron/Video.cpp +++ b/Machines/Electron/Video.cpp @@ -56,6 +56,10 @@ void VideoOutput::set_scan_target(Outputs::Display::ScanTarget *scan_target) { crt_.set_scan_target(scan_target); } +void VideoOutput::set_display_type(Outputs::Display::DisplayType display_type) { + crt_.set_display_type(display_type); +} + // MARK: - Display update methods void VideoOutput::start_pixel_line() { diff --git a/Machines/Electron/Video.hpp b/Machines/Electron/Video.hpp index b839a7f55..7313268c7 100644 --- a/Machines/Electron/Video.hpp +++ b/Machines/Electron/Video.hpp @@ -39,6 +39,9 @@ class VideoOutput { /// Sets the destination for output. void set_scan_target(Outputs::Display::ScanTarget *scan_target); + /// Sets the type of output. + void set_display_type(Outputs::Display::DisplayType); + /*! Writes @c value to the register at @c address. May mutate the results of @c get_next_interrupt, @c get_cycles_until_next_ram_availability and @c get_memory_access_range. diff --git a/Machines/MSX/MSX.cpp b/Machines/MSX/MSX.cpp index 2bc9deadd..755675da0 100644 --- a/Machines/MSX/MSX.cpp +++ b/Machines/MSX/MSX.cpp @@ -223,6 +223,10 @@ class ConcreteMachine: vdp_.set_scan_target(scan_target); } + void set_display_type(Outputs::Display::DisplayType display_type) override { + vdp_.set_display_type(display_type); + } + Outputs::Speaker::Speaker *get_speaker() override { return &speaker_; } diff --git a/Machines/MasterSystem/MasterSystem.cpp b/Machines/MasterSystem/MasterSystem.cpp index c84e16219..5a576b831 100644 --- a/Machines/MasterSystem/MasterSystem.cpp +++ b/Machines/MasterSystem/MasterSystem.cpp @@ -171,6 +171,10 @@ class ConcreteMachine: vdp_.set_scan_target(scan_target); } + void set_display_type(Outputs::Display::DisplayType display_type) override { + vdp_.set_display_type(display_type); + } + Outputs::Speaker::Speaker *get_speaker() override { return &speaker_; } diff --git a/Machines/Oric/Oric.cpp b/Machines/Oric/Oric.cpp index 9cf344462..eab547133 100644 --- a/Machines/Oric/Oric.cpp +++ b/Machines/Oric/Oric.cpp @@ -464,6 +464,10 @@ template class Co video_output_.set_scan_target(scan_target); } + void set_display_type(Outputs::Display::DisplayType display_type) override { + video_output_.set_display_type(display_type); + } + Outputs::Speaker::Speaker *get_speaker() override final { return &speaker_; } @@ -529,10 +533,6 @@ template class Co } } - void set_display_type(Outputs::Display::DisplayType display_type) override { - video_output_.set_display_type(display_type); - } - Configurable::SelectionSet get_accurate_selections() override { Configurable::SelectionSet selection_set; Configurable::append_quick_load_tape_selection(selection_set, false); 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 f9049689f..782b17c09 100644 --- a/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme +++ b/OSBindings/Mac/Clock Signal.xcodeproj/xcshareddata/xcschemes/Clock Signal.xcscheme @@ -68,7 +68,7 @@