mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-02 16:04:59 +00:00
625 lines
20 KiB
C++
625 lines
20 KiB
C++
//
|
|
// Video.hpp
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 14/04/2018.
|
|
// Copyright 2018 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#ifndef Video_hpp
|
|
#define Video_hpp
|
|
|
|
#include "../../../Outputs/CRT/CRT.hpp"
|
|
#include "../../../ClockReceiver/ClockReceiver.hpp"
|
|
#include "../../../ClockReceiver/DeferredQueue.hpp"
|
|
|
|
#include <array>
|
|
#include <vector>
|
|
|
|
namespace Apple {
|
|
namespace II {
|
|
namespace Video {
|
|
|
|
class BusHandler {
|
|
public:
|
|
/*!
|
|
Requests fetching of the @c count bytes starting from @c address.
|
|
|
|
The handler should write the values from base memory to @c base_target, and those
|
|
from auxiliary memory to @c auxiliary_target. If the machine has no axiliary memory,
|
|
it needn't write anything to auxiliary_target.
|
|
*/
|
|
void perform_read([[maybe_unused]] uint16_t address, [[maybe_unused]] size_t count, [[maybe_unused]] uint8_t *base_target, [[maybe_unused]] uint8_t *auxiliary_target) {
|
|
}
|
|
};
|
|
|
|
class VideoBase {
|
|
public:
|
|
VideoBase(bool is_iie, std::function<void(Cycles)> &&target);
|
|
|
|
/// Sets the scan target.
|
|
void set_scan_target(Outputs::Display::ScanTarget *scan_target);
|
|
|
|
/// Gets the current scan status.
|
|
Outputs::Display::ScanStatus get_scaled_scan_status() const;
|
|
|
|
/// Sets the type of output.
|
|
void set_display_type(Outputs::Display::DisplayType);
|
|
|
|
/// Gets the type of output.
|
|
Outputs::Display::DisplayType get_display_type() const;
|
|
|
|
/*
|
|
Descriptions for the setters below are taken verbatim from
|
|
the Apple IIe Technical Reference. Addresses are the conventional
|
|
locations within the Apple II memory map. Only those which affect
|
|
video output are implemented here.
|
|
|
|
Those registers which don't exist on a II/II+ are marked.
|
|
*/
|
|
|
|
/*!
|
|
Setter for ALTCHAR ($C00E/$C00F; triggers on write only):
|
|
|
|
* Off: display text using primary character set.
|
|
* On: display text using alternate character set.
|
|
|
|
Doesn't exist on a II/II+.
|
|
*/
|
|
void set_alternative_character_set(bool);
|
|
bool get_alternative_character_set();
|
|
|
|
/*!
|
|
Setter for 80COL ($C00C/$C00D; triggers on write only).
|
|
|
|
* Off: display 40 columns.
|
|
* On: display 80 columns.
|
|
|
|
Doesn't exist on a II/II+.
|
|
*/
|
|
void set_80_columns(bool);
|
|
bool get_80_columns();
|
|
|
|
/*!
|
|
Setter for 80STORE ($C000/$C001; triggers on write only).
|
|
|
|
* Off: cause PAGE2 to select auxiliary RAM.
|
|
* On: cause PAGE2 to switch main RAM areas.
|
|
|
|
Doesn't exist on a II/II+.
|
|
*/
|
|
void set_80_store(bool);
|
|
bool get_80_store();
|
|
|
|
/*!
|
|
Setter for PAGE2 ($C054/$C055; triggers on read or write).
|
|
|
|
* Off: select Page 1.
|
|
* On: select Page 2 or, if 80STORE on, Page 1 in auxiliary memory.
|
|
|
|
80STORE doesn't exist on a II/II+; therefore this always selects
|
|
either Page 1 or Page 2 on those machines.
|
|
*/
|
|
void set_page2(bool);
|
|
bool get_page2();
|
|
|
|
/*!
|
|
Setter for TEXT ($C050/$C051; triggers on read or write).
|
|
|
|
* Off: display graphics or, if MIXED on, mixed.
|
|
* On: display text.
|
|
*/
|
|
void set_text(bool);
|
|
bool get_text();
|
|
|
|
/*!
|
|
Setter for MIXED ($C052/$C053; triggers on read or write).
|
|
|
|
* Off: display only text or only graphics.
|
|
* On: if TEXT off, display text and graphics.
|
|
*/
|
|
void set_mixed(bool);
|
|
bool get_mixed();
|
|
|
|
/*!
|
|
Setter for HIRES ($C056/$C057; triggers on read or write).
|
|
|
|
* Off: if TEXT off, display low-resolution graphics.
|
|
* On: if TEXT off, display high-resolution or, if DHIRES on, double high-resolution graphics.
|
|
|
|
DHIRES doesn't exist on a II/II+; therefore this always selects
|
|
either high- or low-resolution graphics on those machines.
|
|
|
|
Despite Apple's documentation, the IIe also supports double low-resolution
|
|
graphics, which are the 80-column analogue to ordinary low-resolution 40-column
|
|
low-resolution graphics.
|
|
*/
|
|
void set_high_resolution(bool);
|
|
bool get_high_resolution();
|
|
|
|
/*!
|
|
Setter for annunciator 3.
|
|
|
|
* On: turn on annunciator 3.
|
|
* Off: turn off annunciator 3.
|
|
|
|
This exists on both the II/II+ and the IIe, but has no effect on
|
|
video on the older machines. It's intended to be used on the IIe
|
|
to confirm double-high resolution mode but has side effects in
|
|
selecting mixed mode output and discarding high-resolution
|
|
delay bits.
|
|
*/
|
|
void set_annunciator_3(bool);
|
|
bool get_annunciator_3();
|
|
|
|
// Setup for text mode.
|
|
void set_character_rom(const std::vector<uint8_t> &);
|
|
|
|
protected:
|
|
Outputs::CRT::CRT crt_;
|
|
|
|
// State affecting output video stream generation.
|
|
uint8_t *pixel_pointer_ = nullptr;
|
|
|
|
// State affecting logical state.
|
|
int row_ = 0, column_ = 0, flash_ = 0;
|
|
uint8_t flash_mask() {
|
|
return uint8_t((flash_ / flash_length) * 0xff);
|
|
}
|
|
|
|
// Enumerates all Apple II and IIe display modes.
|
|
enum class GraphicsMode {
|
|
Text = 0,
|
|
DoubleText,
|
|
HighRes,
|
|
DoubleHighRes,
|
|
LowRes,
|
|
DoubleLowRes,
|
|
FatLowRes
|
|
};
|
|
bool is_text_mode(GraphicsMode m) { return m <= GraphicsMode::DoubleText; }
|
|
bool is_double_mode(GraphicsMode m) { return !!(int(m)&1); }
|
|
|
|
// Various soft-switch values.
|
|
bool alternative_character_set_ = false, set_alternative_character_set_ = false;
|
|
bool columns_80_ = false, set_columns_80_ = false;
|
|
bool store_80_ = false, set_store_80_ = false;
|
|
bool page2_ = false, set_page2_ = false;
|
|
bool text_ = true, set_text_ = true;
|
|
bool mixed_ = false, set_mixed_ = false;
|
|
bool high_resolution_ = false, set_high_resolution_ = false;
|
|
bool annunciator_3_ = false, set_annunciator_3_ = false;
|
|
|
|
// Graphics carry is the final level output in a fetch window;
|
|
// it carries on into the next if it's high resolution with
|
|
// the delay bit set.
|
|
mutable uint8_t graphics_carry_ = 0;
|
|
bool was_double_ = false;
|
|
uint8_t high_resolution_mask_ = 0xff;
|
|
|
|
// This holds a copy of the character ROM. The regular character
|
|
// set is assumed to be in the first 64*8 bytes; the alternative
|
|
// is in the 128*8 bytes after that.
|
|
std::vector<uint8_t> character_rom_;
|
|
|
|
// Memory is fetched ahead of time into this array;
|
|
// this permits the correct delay between fetching
|
|
// without having to worry about a rolling buffer.
|
|
std::array<uint8_t, 40> base_stream_;
|
|
std::array<uint8_t, 40> auxiliary_stream_;
|
|
|
|
bool is_iie_ = false;
|
|
static constexpr int flash_length = 8406;
|
|
|
|
// Describes the current text mode mapping from in-memory character index
|
|
// to output character.
|
|
struct CharacterMapping {
|
|
uint8_t address_mask;
|
|
uint8_t xor_mask;
|
|
};
|
|
CharacterMapping character_zones[4];
|
|
|
|
/*!
|
|
Outputs 40-column text to @c target, using @c length bytes from @c source.
|
|
*/
|
|
void output_text(uint8_t *target, const uint8_t *source, size_t length, size_t pixel_row) const;
|
|
|
|
/*!
|
|
Outputs 80-column text to @c target, drawing @c length columns from @c source and @c auxiliary_source.
|
|
*/
|
|
void output_double_text(uint8_t *target, const uint8_t *source, const uint8_t *auxiliary_source, size_t length, size_t pixel_row) const;
|
|
|
|
/*!
|
|
Outputs 40-column low-resolution graphics to @c target, drawing @c length columns from @c source.
|
|
*/
|
|
void output_low_resolution(uint8_t *target, const uint8_t *source, size_t length, int column, int row) const;
|
|
|
|
/*!
|
|
Outputs 80-column low-resolution graphics to @c target, drawing @c length columns from @c source and @c auxiliary_source.
|
|
*/
|
|
void output_double_low_resolution(uint8_t *target, const uint8_t *source, const uint8_t *auxiliary_source, size_t length, int column, int row) const;
|
|
|
|
/*!
|
|
Outputs 40-column high-resolution graphics to @c target, drawing @c length columns from @c source.
|
|
*/
|
|
void output_high_resolution(uint8_t *target, const uint8_t *source, size_t length) const;
|
|
|
|
/*!
|
|
Outputs 80-column double-high-resolution graphics to @c target, drawing @c length columns from @c source.
|
|
*/
|
|
void output_double_high_resolution(uint8_t *target, const uint8_t *source, const uint8_t *auxiliary_source, size_t length) const;
|
|
|
|
/*!
|
|
Outputs 40-column "fat low resolution" graphics to @c target, drawing @c length columns from @c source.
|
|
|
|
Fat low-resolution mode is like regular low-resolution mode except that data is shifted out on the 7M
|
|
clock rather than the 14M.
|
|
*/
|
|
void output_fat_low_resolution(uint8_t *target, const uint8_t *source, size_t length, int column, int row) const;
|
|
|
|
// Maintain a DeferredQueue for delayed mode switches.
|
|
DeferredQueuePerformer<Cycles> deferrer_;
|
|
};
|
|
|
|
template <class BusHandler, bool is_iie> class Video: public VideoBase {
|
|
public:
|
|
/// Constructs an instance of the video feed; a CRT is also created.
|
|
Video(BusHandler &bus_handler) :
|
|
VideoBase(is_iie, [this] (Cycles cycles) { advance(cycles); }),
|
|
bus_handler_(bus_handler) {}
|
|
|
|
/*!
|
|
Runs video for @c cycles.
|
|
*/
|
|
void run_for(Cycles cycles) {
|
|
deferrer_.run_for(cycles);
|
|
}
|
|
|
|
/*!
|
|
Obtains the last value the video read prior to time now+offset.
|
|
*/
|
|
uint8_t get_last_read_value(Cycles offset) {
|
|
// Rules of generation:
|
|
// (1) a complete sixty-five-cycle scan line consists of sixty-five consecutive bytes of
|
|
// display buffer memory that starts twenty-five bytes prior to the actual data to be displayed.
|
|
// (2) During VBL the data acts just as if it were starting a whole new frame from the beginning, but
|
|
// it never finishes this pseudo-frame. After getting one third of the way through the frame (to
|
|
// scan line $3F), it suddenly repeats the previous six scan lines ($3A through $3F) before aborting
|
|
// to begin the next true frame.
|
|
//
|
|
// Source: Have an Apple Split by Bob Bishop; http://rich12345.tripod.com/aiivideo/softalk.html
|
|
|
|
// Determine column at offset.
|
|
int mapped_column = column_ + int(offset.as_integral());
|
|
|
|
// Map that backwards from the internal pixels-at-start generation to pixels-at-end
|
|
// (so what was column 0 is now column 25).
|
|
mapped_column += 25;
|
|
|
|
// Apply carry into the row counter.
|
|
int mapped_row = row_ + (mapped_column / 65);
|
|
mapped_column %= 65;
|
|
mapped_row %= 262;
|
|
|
|
// Apple out-of-bounds row logic.
|
|
if(mapped_row >= 256) {
|
|
mapped_row = 0x3a + (mapped_row&255);
|
|
} else {
|
|
mapped_row %= 192;
|
|
}
|
|
|
|
// Calculate the address and return the value.
|
|
uint16_t read_address = uint16_t(get_row_address(mapped_row) + mapped_column - 25);
|
|
uint8_t value, aux_value;
|
|
bus_handler_.perform_read(read_address, 1, &value, &aux_value);
|
|
return value;
|
|
}
|
|
|
|
/*!
|
|
@returns @c true if the display will be within vertical blank at now + @c offset; @c false otherwise.
|
|
*/
|
|
bool get_is_vertical_blank(Cycles offset) {
|
|
// Map that backwards from the internal pixels-at-start generation to pixels-at-end
|
|
// (so what was column 0 is now column 25).
|
|
int mapped_column = column_ + int(offset.as_integral());
|
|
|
|
// Map that backwards from the internal pixels-at-start generation to pixels-at-end
|
|
// (so what was column 0 is now column 25).
|
|
mapped_column += 25;
|
|
|
|
// Apply carry into the row counter and test it for location.
|
|
int mapped_row = row_ + (mapped_column / 65);
|
|
return (mapped_row % 262) >= 192;
|
|
}
|
|
|
|
private:
|
|
/*!
|
|
Advances time by @c cycles; expects to be fed by the CPU clock.
|
|
Implicitly adds an extra half a colour clock at the end of
|
|
line.
|
|
*/
|
|
void advance(Cycles cycles) {
|
|
/*
|
|
Addressing scheme used throughout is that column 0 is the first column with pixels in it;
|
|
row 0 is the first row with pixels in it.
|
|
|
|
A frame is oriented around 65 cycles across, 262 lines down.
|
|
*/
|
|
constexpr int first_sync_line = 220; // A complete guess. Information needed.
|
|
constexpr int first_sync_column = 49; // Also a guess.
|
|
constexpr int sync_length = 4; // One of the two likely candidates.
|
|
|
|
int int_cycles = int(cycles.as_integral());
|
|
while(int_cycles) {
|
|
const int cycles_this_line = std::min(65 - column_, int_cycles);
|
|
const int ending_column = column_ + cycles_this_line;
|
|
const bool is_vertical_sync_line = (row_ >= first_sync_line && row_ < first_sync_line + 3);
|
|
|
|
if(is_vertical_sync_line) {
|
|
// In effect apply an XOR to HSYNC and VSYNC flags in order to include equalising
|
|
// pulses (and hencce keep hsync approximately where it should be during vsync).
|
|
const int blank_start = std::max(first_sync_column - sync_length, column_);
|
|
const int blank_end = std::min(first_sync_column, ending_column);
|
|
if(blank_end > blank_start) {
|
|
if(blank_start > column_) {
|
|
crt_.output_sync((blank_start - column_) * 14);
|
|
}
|
|
crt_.output_blank((blank_end - blank_start) * 14);
|
|
if(blank_end < ending_column) {
|
|
crt_.output_sync((ending_column - blank_end) * 14);
|
|
}
|
|
} else {
|
|
crt_.output_sync(cycles_this_line * 14);
|
|
}
|
|
} else {
|
|
const GraphicsMode line_mode = graphics_mode(row_);
|
|
|
|
// Determine whether there's any fetching to do. Fetching occurs during the first
|
|
// 40 columns of rows prior to 192.
|
|
if(row_ < 192 && column_ < 40) {
|
|
const int character_row = row_ >> 3;
|
|
const uint16_t row_address = uint16_t((character_row >> 3) * 40 + ((character_row&7) << 7));
|
|
|
|
// Grab the memory contents that'll be needed momentarily.
|
|
const int fetch_end = std::min(40, ending_column);
|
|
uint16_t fetch_address;
|
|
switch(line_mode) {
|
|
default:
|
|
case GraphicsMode::Text:
|
|
case GraphicsMode::DoubleText:
|
|
case GraphicsMode::LowRes:
|
|
case GraphicsMode::FatLowRes:
|
|
case GraphicsMode::DoubleLowRes: {
|
|
const uint16_t text_address = uint16_t(((video_page()+1) * 0x400) + row_address);
|
|
fetch_address = uint16_t(text_address + column_);
|
|
} break;
|
|
|
|
case GraphicsMode::HighRes:
|
|
case GraphicsMode::DoubleHighRes:
|
|
fetch_address = uint16_t(((video_page()+1) * 0x2000) + row_address + ((row_&7) << 10) + column_);
|
|
break;
|
|
}
|
|
|
|
bus_handler_.perform_read(
|
|
fetch_address,
|
|
size_t(fetch_end - column_),
|
|
&base_stream_[size_t(column_)],
|
|
&auxiliary_stream_[size_t(column_)]);
|
|
}
|
|
|
|
if(row_ < 192) {
|
|
// The pixel area is the first 40.5 columns; base contents
|
|
// remain where they would naturally be but auxiliary
|
|
// graphics appear to the left of that.
|
|
if(!column_) {
|
|
pixel_pointer_ = crt_.begin_data(568);
|
|
graphics_carry_ = 0;
|
|
was_double_ = true;
|
|
}
|
|
|
|
if(column_ < 40) {
|
|
const int pixel_start = std::max(0, column_);
|
|
const int pixel_end = std::min(40, ending_column);
|
|
const int pixel_row = row_ & 7;
|
|
|
|
const bool is_double = Video::is_double_mode(line_mode);
|
|
if(!is_double && was_double_ && pixel_pointer_) {
|
|
pixel_pointer_[pixel_start*14 + 0] =
|
|
pixel_pointer_[pixel_start*14 + 1] =
|
|
pixel_pointer_[pixel_start*14 + 2] =
|
|
pixel_pointer_[pixel_start*14 + 3] =
|
|
pixel_pointer_[pixel_start*14 + 4] =
|
|
pixel_pointer_[pixel_start*14 + 5] =
|
|
pixel_pointer_[pixel_start*14 + 6] = 0;
|
|
}
|
|
was_double_ = is_double;
|
|
|
|
if(pixel_pointer_) {
|
|
switch(line_mode) {
|
|
case GraphicsMode::Text:
|
|
output_text(
|
|
&pixel_pointer_[pixel_start * 14 + 7],
|
|
&base_stream_[size_t(pixel_start)],
|
|
size_t(pixel_end - pixel_start),
|
|
size_t(pixel_row));
|
|
break;
|
|
|
|
case GraphicsMode::DoubleText:
|
|
output_double_text(
|
|
&pixel_pointer_[pixel_start * 14],
|
|
&base_stream_[size_t(pixel_start)],
|
|
&auxiliary_stream_[size_t(pixel_start)],
|
|
size_t(pixel_end - pixel_start),
|
|
size_t(pixel_row));
|
|
break;
|
|
|
|
case GraphicsMode::LowRes:
|
|
output_low_resolution(
|
|
&pixel_pointer_[pixel_start * 14 + 7],
|
|
&base_stream_[size_t(pixel_start)],
|
|
size_t(pixel_end - pixel_start),
|
|
pixel_start,
|
|
pixel_row);
|
|
break;
|
|
|
|
case GraphicsMode::FatLowRes:
|
|
output_fat_low_resolution(
|
|
&pixel_pointer_[pixel_start * 14 + 7],
|
|
&base_stream_[size_t(pixel_start)],
|
|
size_t(pixel_end - pixel_start),
|
|
pixel_start,
|
|
pixel_row);
|
|
break;
|
|
|
|
case GraphicsMode::DoubleLowRes:
|
|
output_double_low_resolution(
|
|
&pixel_pointer_[pixel_start * 14],
|
|
&base_stream_[size_t(pixel_start)],
|
|
&auxiliary_stream_[size_t(pixel_start)],
|
|
size_t(pixel_end - pixel_start),
|
|
pixel_start,
|
|
pixel_row);
|
|
break;
|
|
|
|
case GraphicsMode::HighRes:
|
|
output_high_resolution(
|
|
&pixel_pointer_[pixel_start * 14 + 7],
|
|
&base_stream_[size_t(pixel_start)],
|
|
size_t(pixel_end - pixel_start));
|
|
break;
|
|
|
|
case GraphicsMode::DoubleHighRes:
|
|
output_double_high_resolution(
|
|
&pixel_pointer_[pixel_start * 14],
|
|
&base_stream_[size_t(pixel_start)],
|
|
&auxiliary_stream_[size_t(pixel_start)],
|
|
size_t(pixel_end - pixel_start));
|
|
break;
|
|
|
|
default: break;
|
|
}
|
|
}
|
|
|
|
if(pixel_end == 40) {
|
|
if(pixel_pointer_) {
|
|
if(was_double_) {
|
|
pixel_pointer_[560] = pixel_pointer_[561] = pixel_pointer_[562] = pixel_pointer_[563] =
|
|
pixel_pointer_[564] = pixel_pointer_[565] = pixel_pointer_[566] = pixel_pointer_[567] = 0;
|
|
} else {
|
|
if(line_mode == GraphicsMode::HighRes && base_stream_[39]&0x80)
|
|
pixel_pointer_[567] = graphics_carry_;
|
|
else
|
|
pixel_pointer_[567] = 0;
|
|
}
|
|
}
|
|
|
|
crt_.output_data(568, 568);
|
|
pixel_pointer_ = nullptr;
|
|
}
|
|
}
|
|
} else {
|
|
if(column_ < 40 && ending_column >= 40) {
|
|
crt_.output_blank(568);
|
|
}
|
|
}
|
|
|
|
/*
|
|
The left border, sync, right border pattern doesn't depend on whether
|
|
there were pixels this row and is output as soon as it is known.
|
|
*/
|
|
|
|
if(column_ < first_sync_column && ending_column >= first_sync_column) {
|
|
crt_.output_blank(first_sync_column*14 - 568);
|
|
}
|
|
|
|
if(column_ < (first_sync_column + sync_length) && ending_column >= (first_sync_column + sync_length)) {
|
|
crt_.output_sync(sync_length*14);
|
|
}
|
|
|
|
int second_blank_start;
|
|
if(!is_text_mode(graphics_mode(row_+1))) {
|
|
const int colour_burst_start = std::max(first_sync_column + sync_length + 1, column_);
|
|
const int colour_burst_end = std::min(first_sync_column + sync_length + 4, ending_column);
|
|
if(colour_burst_end > colour_burst_start) {
|
|
// UGLY HACK AHOY!
|
|
// The OpenGL scan target introduces a phase error of 1/8th of a wave. The Metal one does not.
|
|
// Supply the real phase value if this is an Apple build.
|
|
// TODO: eliminate UGLY HACK.
|
|
#ifdef __APPLE__
|
|
constexpr int phase = 224;
|
|
#else
|
|
constexpr int phase = 0;
|
|
#endif
|
|
|
|
crt_.output_colour_burst((colour_burst_end - colour_burst_start) * 14, phase);
|
|
}
|
|
|
|
second_blank_start = std::max(first_sync_column + sync_length + 3, column_);
|
|
} else {
|
|
second_blank_start = std::max(first_sync_column + sync_length, column_);
|
|
}
|
|
|
|
if(ending_column > second_blank_start) {
|
|
crt_.output_blank((ending_column - second_blank_start) * 14);
|
|
}
|
|
}
|
|
|
|
int_cycles -= cycles_this_line;
|
|
column_ = (column_ + cycles_this_line) % 65;
|
|
if(!column_) {
|
|
row_ = (row_ + 1) % 262;
|
|
flash_ = (flash_ + 1) % (2 * flash_length);
|
|
if(!alternative_character_set_) {
|
|
character_zones[1].xor_mask = flash_mask();
|
|
}
|
|
|
|
// Add an extra half a colour cycle of blank; this isn't counted in the run_for
|
|
// count explicitly but is promised. If this is a vertical sync line, output sync
|
|
// instead of blank, taking that to be the default level.
|
|
if(is_vertical_sync_line) {
|
|
crt_.output_sync(2);
|
|
} else {
|
|
crt_.output_blank(2);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
GraphicsMode graphics_mode(int row) {
|
|
if(
|
|
text_ ||
|
|
(mixed_ && row >= 160 && row < 192)
|
|
) return columns_80_ ? GraphicsMode::DoubleText : GraphicsMode::Text;
|
|
if(high_resolution_) {
|
|
return (annunciator_3_ && columns_80_) ? GraphicsMode::DoubleHighRes : GraphicsMode::HighRes;
|
|
} else {
|
|
if(columns_80_) return GraphicsMode::DoubleLowRes;
|
|
if(annunciator_3_) return GraphicsMode::FatLowRes;
|
|
return GraphicsMode::LowRes;
|
|
}
|
|
}
|
|
|
|
int video_page() {
|
|
return (store_80_ || !page2_) ? 0 : 1;
|
|
}
|
|
|
|
uint16_t get_row_address(int row) {
|
|
const int character_row = row >> 3;
|
|
const int pixel_row = row & 7;
|
|
const uint16_t row_address = uint16_t((character_row >> 3) * 40 + ((character_row&7) << 7));
|
|
|
|
const GraphicsMode pixel_mode = graphics_mode(row);
|
|
return ((pixel_mode == GraphicsMode::HighRes) || (pixel_mode == GraphicsMode::DoubleHighRes)) ?
|
|
uint16_t(((video_page()+1) * 0x2000) + row_address + ((pixel_row&7) << 10)) :
|
|
uint16_t(((video_page()+1) * 0x400) + row_address);
|
|
}
|
|
|
|
BusHandler &bus_handler_;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* Video_hpp */
|