2020-11-01 00:39:32 +00:00
|
|
|
//
|
|
|
|
// Video.cpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 31/10/2020.
|
|
|
|
// Copyright © 2020 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "Video.hpp"
|
|
|
|
|
|
|
|
using namespace Apple::IIgs::Video;
|
|
|
|
|
2020-11-05 22:56:20 +00:00
|
|
|
namespace {
|
|
|
|
|
2020-11-08 01:42:34 +00:00
|
|
|
constexpr int CyclesPerTick = 7; // One 'tick' being the non-stretched length of a cycle on the old Apple II 1Mhz clock.
|
|
|
|
constexpr int CyclesPerLine = 456; // Each of the Mega II's cycles lasts 7 cycles, making 455/line except for the
|
|
|
|
// final on on a line which lasts an additional 1 (i.e. is 1/7th longer).
|
2020-11-05 22:56:20 +00:00
|
|
|
constexpr int Lines = 263;
|
|
|
|
constexpr int FinalPixelLine = 192;
|
|
|
|
|
2020-11-08 01:42:34 +00:00
|
|
|
constexpr auto FinalColumn = CyclesPerLine / CyclesPerTick;
|
|
|
|
|
2020-11-08 03:03:05 +00:00
|
|
|
// Converts from Apple's RGB ordering to this emulator's.
|
|
|
|
#define PaletteConvulve(x) ((x&0xf00) >> 8) | ((x&0x00f) << 8) | (x&0x0f0)
|
|
|
|
|
|
|
|
// The 12-bit values used by the Apple IIgs to approximate Apple II colours,
|
|
|
|
// as implied by tech note #63's use of them as border colours.
|
|
|
|
// http://www.1000bit.it/support/manuali/apple/technotes/iigs/tn.iigs.063.html
|
|
|
|
constexpr uint16_t appleii_palette[16] = {
|
|
|
|
PaletteConvulve(0x0000), // Black.
|
|
|
|
PaletteConvulve(0x0d03), // Deep Red.
|
|
|
|
PaletteConvulve(0x0009), // Dark Blue.
|
|
|
|
PaletteConvulve(0x0d2d), // Purple.
|
|
|
|
PaletteConvulve(0x0072), // Dark Green.
|
|
|
|
PaletteConvulve(0x0555), // Dark Gray.
|
|
|
|
PaletteConvulve(0x022f), // Medium Blue.
|
|
|
|
PaletteConvulve(0x06af), // Light Blue.
|
|
|
|
PaletteConvulve(0x0850), // Brown.
|
|
|
|
PaletteConvulve(0x0f60), // Orange.
|
|
|
|
PaletteConvulve(0x0aaa), // Light Grey.
|
|
|
|
PaletteConvulve(0x0f98), // Pink.
|
|
|
|
PaletteConvulve(0x01d0), // Light Green.
|
|
|
|
PaletteConvulve(0x0ff0), // Yellow.
|
|
|
|
PaletteConvulve(0x04f9), // Aquamarine.
|
|
|
|
PaletteConvulve(0x0fff), // White.
|
|
|
|
};
|
|
|
|
|
2020-11-05 22:56:20 +00:00
|
|
|
}
|
|
|
|
|
2020-11-01 00:39:32 +00:00
|
|
|
VideoBase::VideoBase() :
|
2020-11-08 01:42:34 +00:00
|
|
|
VideoSwitches<Cycles>(true, Cycles(2), [this] (Cycles cycles) { advance(cycles); }),
|
2020-11-08 02:10:05 +00:00
|
|
|
crt_(CyclesPerLine - 1, 1, Outputs::Display::Type::NTSC60, Outputs::Display::InputDataType::Red4Green4Blue4) {
|
2020-11-08 03:03:05 +00:00
|
|
|
crt_.set_display_type(Outputs::Display::DisplayType::RGB);
|
2020-11-10 23:50:23 +00:00
|
|
|
crt_.set_visible_area(Outputs::Display::Rect(0.097f, 0.085f, 0.85f, 0.85f));
|
2020-11-08 01:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void VideoBase::set_scan_target(Outputs::Display::ScanTarget *scan_target) {
|
|
|
|
crt_.set_scan_target(scan_target);
|
|
|
|
}
|
|
|
|
|
|
|
|
Outputs::Display::ScanStatus VideoBase::get_scaled_scan_status() const {
|
|
|
|
return crt_.get_scaled_scan_status();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VideoBase::set_display_type(Outputs::Display::DisplayType display_type) {
|
|
|
|
crt_.set_display_type(display_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
Outputs::Display::DisplayType VideoBase::get_display_type() const {
|
|
|
|
return crt_.get_display_type();
|
2020-11-01 00:39:32 +00:00
|
|
|
}
|
|
|
|
|
2020-11-05 23:17:21 +00:00
|
|
|
void VideoBase::set_internal_ram(const uint8_t *ram) {
|
|
|
|
ram_ = ram;
|
|
|
|
}
|
|
|
|
|
2020-11-07 22:45:03 +00:00
|
|
|
void VideoBase::advance(Cycles cycles) {
|
2020-11-08 01:42:34 +00:00
|
|
|
const int column_start = (cycles_into_frame_ % CyclesPerLine) / CyclesPerTick;
|
|
|
|
const int row_start = cycles_into_frame_ / CyclesPerLine;
|
|
|
|
|
2020-11-05 22:56:20 +00:00
|
|
|
cycles_into_frame_ = (cycles_into_frame_ + cycles.as<int>()) % (CyclesPerLine * Lines);
|
2020-11-05 23:17:21 +00:00
|
|
|
|
2020-11-08 01:42:34 +00:00
|
|
|
const int column_end = (cycles_into_frame_ % CyclesPerLine) / CyclesPerTick;
|
|
|
|
const int row_end = cycles_into_frame_ / CyclesPerLine;
|
|
|
|
|
|
|
|
if(row_end == row_start) {
|
2020-11-08 02:28:08 +00:00
|
|
|
if(column_end != column_start) {
|
|
|
|
output_row(row_start, column_start, column_end);
|
|
|
|
}
|
2020-11-08 01:42:34 +00:00
|
|
|
} else {
|
2020-11-08 02:28:08 +00:00
|
|
|
if(column_start != FinalColumn) {
|
|
|
|
output_row(row_start, column_start, FinalColumn);
|
|
|
|
}
|
2020-11-08 01:42:34 +00:00
|
|
|
for(int row = row_start+1; row < row_end; row++) {
|
|
|
|
output_row(row, 0, FinalColumn);
|
|
|
|
}
|
|
|
|
if(column_end) {
|
|
|
|
output_row(row_end, 0, column_end);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VideoBase::output_row(int row, int start, int end) {
|
|
|
|
// Reasoned guesswork ahoy!
|
|
|
|
//
|
|
|
|
// The IIgs VGC can fetch four bytes per column — I'm unclear physically how, but that's definitely true
|
|
|
|
// since the IIgs modes packs 160 bytes work of graphics into the Apple II's usual 40-cycle fetch area;
|
|
|
|
// it's possible that if I understood the meaning of the linear video bit in the new video flag I'd know more.
|
|
|
|
//
|
|
|
|
// Super Hi-Res also fetches 16*2 = 32 bytes of palette and a control byte sometime before each row.
|
|
|
|
// So it needs five windows for that.
|
|
|
|
//
|
|
|
|
// Guessing four cycles of sync, I've chosen to arrange one output row for this emulator as:
|
|
|
|
//
|
2020-11-08 22:01:23 +00:00
|
|
|
// 5 cycles of back porch; [TODO: include a colour burst]
|
2020-11-08 01:42:34 +00:00
|
|
|
// 8 windows left border, the final five of which fetch palette and control if in IIgs mode;
|
|
|
|
// 40 windows of pixel output;
|
|
|
|
// 8 cycles of right border;
|
|
|
|
// 4 cycles of sync (including the extra 1/7th window, as it has to go _somewhere_).
|
|
|
|
//
|
|
|
|
// Otherwise, the first 200 rows may be pixels and the 192 in the middle of those are the II set.
|
|
|
|
constexpr int first_sync_line = 220; // A complete guess. Information needed.
|
|
|
|
|
|
|
|
constexpr int blank_ticks = 5;
|
|
|
|
constexpr int left_border_ticks = 8;
|
|
|
|
constexpr int pixel_ticks = 40;
|
|
|
|
constexpr int right_border_ticks = 8;
|
|
|
|
|
|
|
|
constexpr int start_of_left_border = blank_ticks;
|
|
|
|
constexpr int start_of_pixels = start_of_left_border + left_border_ticks;
|
|
|
|
constexpr int start_of_right_border = start_of_pixels + pixel_ticks;
|
|
|
|
constexpr int start_of_sync = start_of_right_border + right_border_ticks;
|
|
|
|
constexpr int sync_period = CyclesPerLine - start_of_sync*CyclesPerTick;
|
|
|
|
|
|
|
|
// Deal with vertical sync.
|
|
|
|
if(row >= first_sync_line && row < first_sync_line + 3) {
|
|
|
|
// Simplification: just output the whole line at line's end.
|
|
|
|
if(end == FinalColumn) {
|
|
|
|
crt_.output_sync(CyclesPerLine - sync_period);
|
|
|
|
crt_.output_blank(sync_period);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-11-08 03:23:48 +00:00
|
|
|
// Pixel or pure border => blank as usual.
|
2020-11-08 01:42:34 +00:00
|
|
|
|
2020-11-08 03:23:48 +00:00
|
|
|
// Output blank only at the end of its window.
|
|
|
|
if(start < blank_ticks && end >= blank_ticks) {
|
|
|
|
crt_.output_blank(blank_ticks * CyclesPerTick);
|
|
|
|
start = blank_ticks;
|
|
|
|
if(start == end) return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Possibly output border, pixels, border, if this is a pixel line.
|
2020-11-08 04:14:50 +00:00
|
|
|
if(row < 192 + ((new_video_&0x80) >> 4)) { // i.e. 192 lines for classic Apple II video, 200 for IIgs video.
|
2020-11-08 01:42:34 +00:00
|
|
|
|
|
|
|
// Output left border as far as currently known.
|
|
|
|
if(start >= start_of_left_border && start < start_of_pixels) {
|
2020-11-08 02:10:05 +00:00
|
|
|
const int end_of_period = std::min(start_of_pixels, end);
|
2020-11-08 01:42:34 +00:00
|
|
|
|
2020-11-08 03:03:05 +00:00
|
|
|
uint16_t *const pixel = reinterpret_cast<uint16_t *>(crt_.begin_data(2, 2));
|
|
|
|
if(pixel) *pixel = border_colour_;
|
|
|
|
crt_.output_data((end_of_period - start) * CyclesPerTick, 1);
|
2020-11-08 02:10:05 +00:00
|
|
|
|
|
|
|
start = end_of_period;
|
|
|
|
if(start == end) return;
|
2020-11-08 01:42:34 +00:00
|
|
|
}
|
|
|
|
|
2020-11-08 22:01:23 +00:00
|
|
|
// Fetch and output such pixels as it is time for.
|
2020-11-08 01:42:34 +00:00
|
|
|
if(start >= start_of_pixels && start < start_of_right_border) {
|
2020-11-08 02:10:05 +00:00
|
|
|
const int end_of_period = std::min(start_of_right_border, end);
|
2020-11-08 01:42:34 +00:00
|
|
|
|
2020-11-08 22:01:23 +00:00
|
|
|
if(start == start_of_pixels) {
|
|
|
|
// 640 is the absolute most number of pixels that might be generated
|
|
|
|
next_pixel_ = pixels_ = reinterpret_cast<uint16_t *>(crt_.begin_data(640, 2));
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: support modes other than 40-column text.
|
|
|
|
if(next_pixel_) {
|
|
|
|
uint16_t row_address = get_row_address(row);
|
|
|
|
for(int c = start; c < end_of_period; c++) {
|
2020-11-08 22:04:04 +00:00
|
|
|
const uint8_t source = ram_[row_address + c - start_of_pixels];
|
2020-11-08 22:01:23 +00:00
|
|
|
const int character = source & character_zones_[source >> 6].address_mask;
|
|
|
|
const uint8_t xor_mask = character_zones_[source >> 6].xor_mask;
|
|
|
|
const std::size_t character_address = size_t(character << 3) + (row & 7);
|
|
|
|
const uint8_t character_pattern = character_rom_[character_address] ^ xor_mask;
|
|
|
|
const uint16_t colours[2] = {background_colour_, text_colour_};
|
|
|
|
|
|
|
|
next_pixel_[0] = colours[(character_pattern & 0x40) >> 6];
|
|
|
|
next_pixel_[1] = colours[(character_pattern & 0x20) >> 5];
|
|
|
|
next_pixel_[2] = colours[(character_pattern & 0x10) >> 4];
|
|
|
|
next_pixel_[3] = colours[(character_pattern & 0x08) >> 3];
|
|
|
|
next_pixel_[4] = colours[(character_pattern & 0x04) >> 2];
|
|
|
|
next_pixel_[5] = colours[(character_pattern & 0x02) >> 1];
|
|
|
|
next_pixel_[6] = colours[(character_pattern & 0x01) >> 0];
|
|
|
|
next_pixel_ += 7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(end_of_period == start_of_right_border) {
|
|
|
|
crt_.output_data((start_of_right_border - start_of_pixels) * CyclesPerTick, next_pixel_ ? size_t(next_pixel_ - pixels_) : 1);
|
|
|
|
next_pixel_ = pixels_ = nullptr;
|
|
|
|
}
|
2020-11-08 02:10:05 +00:00
|
|
|
|
|
|
|
start = end_of_period;
|
|
|
|
if(start == end) return;
|
2020-11-08 01:42:34 +00:00
|
|
|
}
|
|
|
|
|
2020-11-08 22:01:23 +00:00
|
|
|
// Output right border as far as currently known.
|
2020-11-08 01:42:34 +00:00
|
|
|
if(start >= start_of_right_border && start < start_of_sync) {
|
2020-11-08 02:10:05 +00:00
|
|
|
const int end_of_period = std::min(start_of_sync, end);
|
2020-11-08 01:42:34 +00:00
|
|
|
|
2020-11-08 03:03:05 +00:00
|
|
|
uint16_t *const pixel = reinterpret_cast<uint16_t *>(crt_.begin_data(2, 2));
|
|
|
|
if(pixel) *pixel = border_colour_;
|
|
|
|
crt_.output_data((end_of_period - start) * CyclesPerTick, 1);
|
2020-11-08 02:10:05 +00:00
|
|
|
|
2020-11-08 02:28:08 +00:00
|
|
|
// There's no point updating start here; just fall
|
|
|
|
// through to the end == FinalColumn test.
|
2020-11-08 01:42:34 +00:00
|
|
|
}
|
2020-11-08 03:23:48 +00:00
|
|
|
} else {
|
|
|
|
// This line is all border, all the time.
|
|
|
|
if(start >= start_of_left_border && start < start_of_sync) {
|
|
|
|
const int end_of_period = std::min(start_of_sync, end);
|
2020-11-08 01:42:34 +00:00
|
|
|
|
2020-11-08 03:23:48 +00:00
|
|
|
uint16_t *const pixel = reinterpret_cast<uint16_t *>(crt_.begin_data(2, 2));
|
|
|
|
if(pixel) *pixel = border_colour_;
|
|
|
|
crt_.output_data((end_of_period - start) * CyclesPerTick, 1);
|
2020-11-08 02:10:05 +00:00
|
|
|
|
2020-11-08 03:23:48 +00:00
|
|
|
start = end_of_period;
|
|
|
|
if(start == end) return;
|
|
|
|
}
|
2020-11-05 23:17:21 +00:00
|
|
|
}
|
2020-11-08 02:10:05 +00:00
|
|
|
|
2020-11-08 03:23:48 +00:00
|
|
|
// Output sync if the moment has arrived.
|
|
|
|
if(end == FinalColumn) {
|
|
|
|
crt_.output_sync(sync_period);
|
|
|
|
}
|
2020-11-05 22:56:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool VideoBase::get_is_vertical_blank() {
|
2020-11-08 04:14:50 +00:00
|
|
|
// Cf. http://www.1000bit.it/support/manuali/apple/technotes/iigs/tn.iigs.040.html ;
|
|
|
|
// this bit covers the entire vertical border area, not just the NTSC-sense vertical blank.
|
2020-11-05 22:56:20 +00:00
|
|
|
return cycles_into_frame_ >= FinalPixelLine * CyclesPerLine;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VideoBase::set_new_video(uint8_t new_video) {
|
|
|
|
new_video_ = new_video;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t VideoBase::get_new_video() {
|
|
|
|
return new_video_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VideoBase::clear_interrupts(uint8_t mask) {
|
|
|
|
set_interrupts(interrupts_ & ~(mask & 0x60));
|
|
|
|
}
|
|
|
|
|
|
|
|
void VideoBase::set_interrupt_register(uint8_t mask) {
|
|
|
|
set_interrupts(interrupts_ | (mask & 0x6));
|
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t VideoBase::get_interrupt_register() {
|
|
|
|
return interrupts_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void VideoBase::notify_clock_tick() {
|
|
|
|
set_interrupts(interrupts_ | 0x40);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VideoBase::set_interrupts(uint8_t new_value) {
|
|
|
|
interrupts_ = new_value & 0x7f;
|
2020-11-06 01:51:00 +00:00
|
|
|
if((interrupts_ >> 4) & interrupts_ & 0x6)
|
2020-11-05 22:56:20 +00:00
|
|
|
interrupts_ |= 0x80;
|
|
|
|
}
|
2020-11-08 03:03:05 +00:00
|
|
|
|
|
|
|
void VideoBase::set_border_colour(uint8_t colour) {
|
2020-11-08 04:14:50 +00:00
|
|
|
border_colour_ = appleii_palette[colour & 0xf];
|
|
|
|
}
|
|
|
|
|
|
|
|
void VideoBase::set_text_colour(uint8_t colour) {
|
|
|
|
text_colour_ = appleii_palette[colour >> 4];
|
|
|
|
background_colour_ = appleii_palette[colour & 0xf];
|
2020-11-08 03:03:05 +00:00
|
|
|
}
|
2020-11-10 02:54:25 +00:00
|
|
|
|
|
|
|
void VideoBase::set_composite_is_colour(bool) {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool VideoBase::get_composite_is_colour() {
|
|
|
|
return true;
|
|
|
|
}
|