mirror of
https://github.com/TomHarte/CLK.git
synced 2024-12-23 20:29:42 +00:00
Retain dark yellow for composite output.
This commit is contained in:
parent
c5745f71f6
commit
e691cc8723
@ -15,41 +15,6 @@
|
|||||||
|
|
||||||
namespace PCCompatible {
|
namespace PCCompatible {
|
||||||
|
|
||||||
static constexpr uint8_t DarkCyan = 0b00'10'10;
|
|
||||||
static constexpr uint8_t DarkMagenta = 0b10'00'10;
|
|
||||||
static constexpr uint8_t DarkGrey = 0b10'10'10;
|
|
||||||
|
|
||||||
static constexpr uint8_t DarkGreen = 0b00'10'00;
|
|
||||||
static constexpr uint8_t DarkRed = 0b10'00'00;
|
|
||||||
static constexpr uint8_t DarkYellow = 0b10'10'00;
|
|
||||||
|
|
||||||
static constexpr uint8_t Brown = 0b10'01'00;
|
|
||||||
|
|
||||||
/// @returns @c Brown if @c source is @c DarkYellow; @c source otherwise.
|
|
||||||
constexpr uint8_t yellow_to_brown(uint8_t source) {
|
|
||||||
return (source == DarkYellow) ? Brown : source;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// @returns The brightened (i.e. high intensity) version of @c source.
|
|
||||||
constexpr uint8_t bright(uint8_t source) {
|
|
||||||
return source | (source >> 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Maps the RGB TTL triplet @c source to an appropriate output colour.
|
|
||||||
constexpr uint8_t rgb(uint8_t source) {
|
|
||||||
return uint8_t(
|
|
||||||
((source & 0x01) << 1) |
|
|
||||||
((source & 0x02) << 2) |
|
|
||||||
((source & 0x04) << 3)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Maps the RGBI value in @c source to an appropriate output colour, including potential yellow-to-brown conversion.
|
|
||||||
constexpr uint8_t rgbi(uint8_t source) {
|
|
||||||
const uint8_t result = rgb(source);
|
|
||||||
return (source & 0x10) ? bright(result) : yellow_to_brown(result);
|
|
||||||
}
|
|
||||||
|
|
||||||
class CGA {
|
class CGA {
|
||||||
public:
|
public:
|
||||||
CGA() : crtc_(Motorola::CRTC::Personality::HD6845S, outputter_) {}
|
CGA() : crtc_(Motorola::CRTC::Personality::HD6845S, outputter_) {}
|
||||||
@ -113,6 +78,7 @@ class CGA {
|
|||||||
|
|
||||||
void set_display_type(Outputs::Display::DisplayType display_type) {
|
void set_display_type(Outputs::Display::DisplayType display_type) {
|
||||||
outputter_.crt.set_display_type(display_type);
|
outputter_.crt.set_display_type(display_type);
|
||||||
|
outputter_.set_is_composite(Outputs::Display::is_composite(display_type));
|
||||||
}
|
}
|
||||||
Outputs::Display::DisplayType get_display_type() const {
|
Outputs::Display::DisplayType get_display_type() const {
|
||||||
return outputter_.crt.get_display_type();
|
return outputter_.crt.get_display_type();
|
||||||
@ -165,6 +131,11 @@ class CGA {
|
|||||||
update_palette();
|
update_palette();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void set_is_composite(bool is_composite) {
|
||||||
|
is_composite_ = is_composite;
|
||||||
|
update_palette();
|
||||||
|
}
|
||||||
|
|
||||||
void set_colours(uint8_t value) {
|
void set_colours(uint8_t value) {
|
||||||
colours_ = value;
|
colours_ = value;
|
||||||
update_palette();
|
update_palette();
|
||||||
@ -384,6 +355,7 @@ class CGA {
|
|||||||
int pixels_per_tick = 8;
|
int pixels_per_tick = 8;
|
||||||
uint8_t colours_ = 0;
|
uint8_t colours_ = 0;
|
||||||
uint8_t control_ = 0;
|
uint8_t control_ = 0;
|
||||||
|
bool is_composite_ = false;
|
||||||
enum class Mode {
|
enum class Mode {
|
||||||
Pixels640, Pixels320, Text,
|
Pixels640, Pixels320, Text,
|
||||||
} mode_ = Mode::Text;
|
} mode_ = Mode::Text;
|
||||||
@ -425,10 +397,48 @@ class CGA {
|
|||||||
border_colour = (mode_ != Mode::Pixels640) ? palette320[0] : 0;
|
border_colour = (mode_ != Mode::Pixels640) ? palette320[0] : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// Named colours and mapping logic.
|
||||||
|
//
|
||||||
|
static constexpr uint8_t DarkCyan = 0b00'10'10;
|
||||||
|
static constexpr uint8_t DarkMagenta = 0b10'00'10;
|
||||||
|
static constexpr uint8_t DarkGrey = 0b10'10'10;
|
||||||
|
|
||||||
|
static constexpr uint8_t DarkGreen = 0b00'10'00;
|
||||||
|
static constexpr uint8_t DarkRed = 0b10'00'00;
|
||||||
|
static constexpr uint8_t DarkYellow = 0b10'10'00;
|
||||||
|
|
||||||
|
static constexpr uint8_t Brown = 0b10'01'00;
|
||||||
|
|
||||||
|
/// @returns @c Brown if @c source is @c DarkYellow and composite output is not enabled; @c source otherwise.
|
||||||
|
constexpr uint8_t yellow_to_brown(uint8_t source) {
|
||||||
|
return (source == DarkYellow && !is_composite_) ? Brown : source;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// @returns The brightened (i.e. high intensity) version of @c source.
|
||||||
|
constexpr uint8_t bright(uint8_t source) {
|
||||||
|
return source | (source >> 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Maps the RGB TTL triplet @c source to an appropriate output colour.
|
||||||
|
constexpr uint8_t rgb(uint8_t source) {
|
||||||
|
return uint8_t(
|
||||||
|
((source & 0x01) << 1) |
|
||||||
|
((source & 0x02) << 2) |
|
||||||
|
((source & 0x04) << 3)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Maps the RGBI value in @c source to an appropriate output colour, including potential yellow-to-brown conversion.
|
||||||
|
constexpr uint8_t rgbi(uint8_t source) {
|
||||||
|
const uint8_t result = rgb(source);
|
||||||
|
return (source & 0x10) ? bright(result) : yellow_to_brown(result);
|
||||||
|
}
|
||||||
} outputter_;
|
} outputter_;
|
||||||
Motorola::CRTC::CRTC6845<CRTCOutputter, Motorola::CRTC::CursorType::MDA> crtc_;
|
Motorola::CRTC::CRTC6845<CRTCOutputter, Motorola::CRTC::CursorType::MDA> crtc_;
|
||||||
|
|
||||||
int full_clock_ = 0;
|
int full_clock_ = 0;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -1109,10 +1109,9 @@ class ConcreteMachine:
|
|||||||
|
|
||||||
void set_display_type(Outputs::Display::DisplayType display_type) override {
|
void set_display_type(Outputs::Display::DisplayType display_type) override {
|
||||||
video_.set_display_type(display_type);
|
video_.set_display_type(display_type);
|
||||||
ppi_handler_.hint_is_composite(
|
|
||||||
(display_type == Outputs::Display::DisplayType::CompositeColour) ||
|
// Give the PPI a shout-out in case it isn't too late to switch to CGA40.
|
||||||
(display_type == Outputs::Display::DisplayType::CompositeMonochrome)
|
ppi_handler_.hint_is_composite(Outputs::Display::is_composite(display_type));
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Outputs::Display::DisplayType get_display_type() const override {
|
Outputs::Display::DisplayType get_display_type() const override {
|
||||||
|
@ -51,6 +51,10 @@ enum class DisplayType {
|
|||||||
CompositeMonochrome
|
CompositeMonochrome
|
||||||
};
|
};
|
||||||
|
|
||||||
|
constexpr bool is_composite(DisplayType type) {
|
||||||
|
return type == DisplayType::CompositeColour || type == DisplayType::CompositeMonochrome;
|
||||||
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
Enumerates the potential formats of input data.
|
Enumerates the potential formats of input data.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user