2019-10-05 01:34:15 +00:00
|
|
|
//
|
|
|
|
// Video.cpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 04/10/2019.
|
|
|
|
// Copyright © 2019 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "Video.hpp"
|
|
|
|
|
2019-10-18 03:59:51 +00:00
|
|
|
#define NDEBUG
|
2019-10-10 03:01:11 +00:00
|
|
|
#include "../../Outputs/Log.hpp"
|
|
|
|
|
2019-10-09 01:18:08 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
2019-10-05 01:34:15 +00:00
|
|
|
using namespace Atari::ST;
|
|
|
|
|
2019-10-09 01:18:08 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
struct ModeParams {
|
|
|
|
const int lines_per_frame;
|
|
|
|
|
|
|
|
const int first_video_line;
|
|
|
|
const int final_video_line;
|
|
|
|
|
|
|
|
const int line_length;
|
|
|
|
|
|
|
|
const int end_of_blank;
|
|
|
|
|
|
|
|
const int start_of_display_enable;
|
|
|
|
const int end_of_display_enable;
|
|
|
|
|
|
|
|
const int start_of_output;
|
|
|
|
const int end_of_output;
|
|
|
|
|
|
|
|
const int start_of_blank;
|
|
|
|
|
|
|
|
const int start_of_hsync;
|
|
|
|
const int end_of_hsync;
|
|
|
|
} modes[3] = {
|
|
|
|
{313, 56, 256, 1024, 64, 116, 116+640, 116+48, 116+48+640, 904, 928, 1008 },
|
|
|
|
{},
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
const ModeParams &mode_params_for_mode() {
|
|
|
|
// TODO: rest of potential combinations, and accept mode as a paramter.
|
|
|
|
return modes[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-10-05 01:34:15 +00:00
|
|
|
Video::Video() :
|
2019-10-09 01:18:08 +00:00
|
|
|
crt_(1024, 1, Outputs::Display::Type::PAL50, Outputs::Display::InputDataType::Red4Green4Blue4) {
|
2019-10-05 01:34:15 +00:00
|
|
|
}
|
|
|
|
|
2019-10-11 02:46:58 +00:00
|
|
|
void Video::set_ram(uint16_t *ram) {
|
|
|
|
ram_ = ram;
|
|
|
|
}
|
|
|
|
|
2019-10-05 01:34:15 +00:00
|
|
|
void Video::set_scan_target(Outputs::Display::ScanTarget *scan_target) {
|
|
|
|
crt_.set_scan_target(scan_target);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Video::run_for(HalfCycles duration) {
|
2019-10-09 01:18:08 +00:00
|
|
|
int integer_duration = duration.as_int();
|
|
|
|
const auto mode_params = mode_params_for_mode();
|
|
|
|
|
|
|
|
#define Period(lower, upper, type) \
|
|
|
|
if(x >= lower && x < upper) { \
|
|
|
|
const auto target = std::min(upper, final_x); \
|
|
|
|
type(target - x); \
|
|
|
|
x = target; \
|
|
|
|
}
|
|
|
|
|
2019-10-10 03:01:11 +00:00
|
|
|
// TODO: the below is **way off**. The real hardware does what you'd expect with ongoing state and
|
|
|
|
// exact equality tests. Fixes to come.
|
|
|
|
|
2019-10-09 01:18:08 +00:00
|
|
|
while(integer_duration) {
|
|
|
|
const int final_x = std::min(x + integer_duration, mode_params.line_length);
|
|
|
|
integer_duration -= (final_x - x);
|
|
|
|
|
|
|
|
if(y >= mode_params.first_video_line && y < mode_params.final_video_line) {
|
|
|
|
// TODO: Prior to output: collect all necessary data, obeying start_of_display_enable and end_of_display_enable.
|
|
|
|
|
|
|
|
Period(0, mode_params.end_of_blank, crt_.output_blank);
|
|
|
|
Period(mode_params.end_of_blank, mode_params.start_of_output, output_border);
|
|
|
|
|
|
|
|
if(x >= mode_params.start_of_output && x < mode_params.end_of_output) {
|
2019-10-11 02:46:58 +00:00
|
|
|
if(x == mode_params.start_of_output) {
|
|
|
|
// TODO: resolutions other than 320.
|
|
|
|
pixel_pointer_ = reinterpret_cast<uint16_t *>(crt_.begin_data(320));
|
|
|
|
}
|
|
|
|
|
2019-10-09 01:18:08 +00:00
|
|
|
const auto target = std::min(mode_params.end_of_output, final_x);
|
2019-10-11 02:46:58 +00:00
|
|
|
while(x < target) {
|
|
|
|
if(!(x&31) && pixel_pointer_) {
|
2019-10-22 03:10:30 +00:00
|
|
|
// TODO: RAM sizes other than 512kb.
|
2019-10-11 02:46:58 +00:00
|
|
|
uint16_t source[4] = {
|
2019-10-22 03:10:30 +00:00
|
|
|
ram_[(current_address_ + 0) & 262143],
|
|
|
|
ram_[(current_address_ + 1) & 262143],
|
|
|
|
ram_[(current_address_ + 2) & 262143],
|
|
|
|
ram_[(current_address_ + 3) & 262143],
|
2019-10-11 02:46:58 +00:00
|
|
|
};
|
|
|
|
current_address_ += 4;
|
|
|
|
|
|
|
|
for(int c = 0; c < 16; ++c) {
|
|
|
|
*pixel_pointer_ = palette_[
|
|
|
|
((source[0] >> 12) & 0x8) |
|
|
|
|
((source[1] >> 13) & 0x4) |
|
|
|
|
((source[2] >> 14) & 0x2) |
|
|
|
|
((source[3] >> 15) & 0x1)
|
|
|
|
];
|
|
|
|
source[0] <<= 1;
|
|
|
|
source[1] <<= 1;
|
|
|
|
source[2] <<= 1;
|
|
|
|
source[3] <<= 1;
|
|
|
|
++pixel_pointer_;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++x;
|
|
|
|
}
|
2019-10-09 01:18:08 +00:00
|
|
|
|
|
|
|
if(x == mode_params.end_of_output) {
|
2019-10-11 02:46:58 +00:00
|
|
|
crt_.output_data(mode_params.end_of_output - mode_params.start_of_output, 320);
|
|
|
|
pixel_pointer_ = nullptr;
|
2019-10-09 01:18:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Period(mode_params.end_of_output, mode_params.start_of_blank, output_border);
|
|
|
|
Period(mode_params.start_of_blank, mode_params.start_of_hsync, crt_.output_blank);
|
2019-10-09 01:29:17 +00:00
|
|
|
Period(mode_params.start_of_hsync, mode_params.end_of_hsync, crt_.output_sync);
|
|
|
|
Period(mode_params.end_of_hsync, mode_params.line_length, crt_.output_blank);
|
2019-10-09 01:18:08 +00:00
|
|
|
} else {
|
|
|
|
// Hard code the first three lines as vertical sync.
|
|
|
|
if(y < 3) {
|
|
|
|
Period(0, mode_params.start_of_hsync, crt_.output_sync);
|
|
|
|
Period(mode_params.start_of_hsync, mode_params.end_of_hsync, crt_.output_blank);
|
|
|
|
Period(mode_params.end_of_hsync, mode_params.line_length, crt_.output_sync);
|
|
|
|
} else {
|
|
|
|
Period(0, mode_params.end_of_blank, crt_.output_blank);
|
|
|
|
Period(mode_params.end_of_blank, mode_params.start_of_blank, output_border);
|
|
|
|
Period(mode_params.start_of_blank, mode_params.start_of_hsync, crt_.output_blank);
|
2019-10-09 01:29:17 +00:00
|
|
|
Period(mode_params.start_of_hsync, mode_params.end_of_hsync, crt_.output_sync);
|
|
|
|
Period(mode_params.end_of_hsync, mode_params.line_length, crt_.output_blank);
|
2019-10-09 01:18:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(x == mode_params.line_length) {
|
|
|
|
x = 0;
|
|
|
|
y = (y + 1) % mode_params.lines_per_frame;
|
2019-10-22 03:10:30 +00:00
|
|
|
if(!y)
|
|
|
|
current_address_ = base_address_;
|
2019-10-09 01:18:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef Period
|
|
|
|
}
|
|
|
|
|
|
|
|
void Video::output_border(int duration) {
|
|
|
|
uint16_t *colour_pointer = reinterpret_cast<uint16_t *>(crt_.begin_data(1));
|
2019-10-10 03:01:11 +00:00
|
|
|
if(colour_pointer) *colour_pointer = palette_[0];
|
2019-10-09 01:18:08 +00:00
|
|
|
crt_.output_level(duration);
|
2019-10-05 01:34:15 +00:00
|
|
|
}
|
2019-10-09 02:29:58 +00:00
|
|
|
|
|
|
|
bool Video::hsync() {
|
|
|
|
const auto mode_params = mode_params_for_mode();
|
|
|
|
return x >= mode_params.start_of_hsync && x < mode_params.end_of_hsync;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Video::vsync() {
|
|
|
|
return y < 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Video::display_enabled() {
|
|
|
|
const auto mode_params = mode_params_for_mode();
|
|
|
|
return y >= mode_params.first_video_line && y < mode_params.final_video_line && x >= mode_params.start_of_display_enable && x < mode_params.end_of_display_enable;
|
|
|
|
}
|
|
|
|
|
|
|
|
HalfCycles Video::get_next_sequence_point() {
|
|
|
|
// The next hsync transition will occur either this line or the next.
|
|
|
|
const auto mode_params = mode_params_for_mode();
|
|
|
|
HalfCycles cycles_until_hsync;
|
|
|
|
if(x < mode_params.start_of_hsync) {
|
|
|
|
cycles_until_hsync = HalfCycles(mode_params.start_of_hsync - x);
|
|
|
|
} else if(x < mode_params.end_of_hsync) {
|
|
|
|
cycles_until_hsync = HalfCycles(mode_params.end_of_hsync - x);
|
|
|
|
} else {
|
|
|
|
cycles_until_hsync = HalfCycles(mode_params.start_of_hsync + mode_params.line_length - x);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The next vsync transition depends purely on the current y.
|
|
|
|
HalfCycles cycles_until_vsync;
|
|
|
|
if(y < 3) {
|
|
|
|
cycles_until_vsync = HalfCycles(mode_params.line_length - x + (2 - y)*mode_params.line_length);
|
|
|
|
} else {
|
|
|
|
cycles_until_vsync = HalfCycles(mode_params.line_length - x + (mode_params.lines_per_frame - 1 - y)*mode_params.line_length);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The next display enable transition will occur only in the visible area.
|
|
|
|
HalfCycles cycles_until_display_enable;
|
|
|
|
if(display_enabled()) {
|
|
|
|
cycles_until_display_enable = HalfCycles(mode_params.end_of_display_enable - x);
|
|
|
|
} else {
|
|
|
|
const auto horizontal_cycles = mode_params.start_of_display_enable - x;
|
|
|
|
int vertical_lines = 0;
|
|
|
|
if(y < mode_params.first_video_line) {
|
|
|
|
vertical_lines = mode_params.first_video_line - y;
|
|
|
|
} else if(y >= mode_params.final_video_line ) {
|
|
|
|
vertical_lines = mode_params.first_video_line + mode_params.lines_per_frame - y;
|
|
|
|
}
|
2019-10-09 03:06:50 +00:00
|
|
|
if(horizontal_cycles < 0) ++vertical_lines;
|
2019-10-09 02:29:58 +00:00
|
|
|
cycles_until_display_enable = HalfCycles(horizontal_cycles + vertical_lines * mode_params.line_length);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Determine the minimum of the three
|
|
|
|
if(cycles_until_hsync < cycles_until_vsync && cycles_until_hsync < cycles_until_display_enable) {
|
|
|
|
return cycles_until_hsync;
|
|
|
|
} else {
|
|
|
|
return (cycles_until_vsync < cycles_until_display_enable) ? cycles_until_vsync : cycles_until_display_enable;
|
|
|
|
}
|
|
|
|
}
|
2019-10-10 03:01:11 +00:00
|
|
|
|
|
|
|
// MARK: - IO dispatch
|
|
|
|
|
|
|
|
uint8_t Video::read(int address) {
|
|
|
|
LOG("[Video] read " << (address & 0x3f));
|
2019-10-11 02:46:58 +00:00
|
|
|
address &= 0x3f;
|
|
|
|
switch(address) {
|
|
|
|
case 0x00: return uint8_t(base_address_ >> 16);
|
|
|
|
case 0x01: return uint8_t(base_address_ >> 8);
|
|
|
|
case 0x02: return uint8_t(current_address_ >> 16);
|
|
|
|
case 0x03: return uint8_t(current_address_ >> 8);
|
|
|
|
case 0x04: return uint8_t(current_address_);
|
|
|
|
}
|
2019-10-10 03:01:11 +00:00
|
|
|
return 0xff;
|
|
|
|
}
|
|
|
|
|
2019-10-11 03:29:46 +00:00
|
|
|
void Video::write(int address, uint16_t value) {
|
2019-10-10 03:01:11 +00:00
|
|
|
LOG("[Video] write " << PADHEX(2) << int(value) << " to " << PADHEX(2) << (address & 0x3f));
|
|
|
|
address &= 0x3f;
|
|
|
|
switch(address) {
|
|
|
|
default: break;
|
|
|
|
|
2019-10-11 02:46:58 +00:00
|
|
|
// Start address.
|
|
|
|
case 0x00: base_address_ = (base_address_ & 0x00ffff) | (value << 16); break;
|
|
|
|
case 0x01: base_address_ = (base_address_ & 0xff00ff) | (value << 8); break;
|
|
|
|
|
2019-10-10 03:01:11 +00:00
|
|
|
// Palette.
|
|
|
|
case 0x20: case 0x21: case 0x22: case 0x23:
|
|
|
|
case 0x24: case 0x25: case 0x26: case 0x27:
|
|
|
|
case 0x28: case 0x29: case 0x2a: case 0x2b:
|
2019-10-11 03:29:46 +00:00
|
|
|
case 0x2c: case 0x2d: case 0x2e: case 0x2f: {
|
|
|
|
uint8_t *const entry = reinterpret_cast<uint8_t *>(&palette_[address - 0x20]);
|
|
|
|
entry[0] = uint8_t((value & 0x700) >> 7);
|
|
|
|
entry[1] = uint8_t((value & 0x77) << 1);
|
|
|
|
} break;
|
2019-10-10 03:01:11 +00:00
|
|
|
}
|
|
|
|
}
|