2016-10-12 23:20:23 +00:00
|
|
|
|
//
|
|
|
|
|
// Video.cpp
|
|
|
|
|
// Clock Signal
|
|
|
|
|
//
|
|
|
|
|
// Created by Thomas Harte on 12/10/2016.
|
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#include "Video.hpp"
|
|
|
|
|
|
|
|
|
|
using namespace Oric;
|
|
|
|
|
|
2016-10-20 11:34:23 +00:00
|
|
|
|
namespace {
|
|
|
|
|
const unsigned int PAL50VSyncStartPosition = 256*64;
|
|
|
|
|
const unsigned int PAL60VSyncStartPosition = 234*64;
|
|
|
|
|
const unsigned int PAL50VSyncEndPosition = 259*64;
|
|
|
|
|
const unsigned int PAL60VSyncEndPosition = 238*64;
|
|
|
|
|
const unsigned int PAL50Period = 312*64;
|
|
|
|
|
const unsigned int PAL60Period = 262*64;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-13 01:29:21 +00:00
|
|
|
|
VideoOutput::VideoOutput(uint8_t *memory) :
|
2017-03-26 18:34:47 +00:00
|
|
|
|
ram_(memory),
|
2017-11-11 03:35:05 +00:00
|
|
|
|
crt_(new Outputs::CRT::CRT(64*6, 6, Outputs::CRT::DisplayType::PAL50, 2)),
|
2017-03-26 18:34:47 +00:00
|
|
|
|
v_sync_start_position_(PAL50VSyncStartPosition), v_sync_end_position_(PAL50VSyncEndPosition),
|
2017-11-11 03:35:05 +00:00
|
|
|
|
counter_period_(PAL50Period) {
|
2016-11-22 14:28:45 +00:00
|
|
|
|
crt_->set_rgb_sampling_function(
|
2016-10-13 01:29:21 +00:00
|
|
|
|
"vec3 rgb_sample(usampler2D sampler, vec2 coordinate, vec2 icoordinate)"
|
|
|
|
|
"{"
|
|
|
|
|
"uint texValue = texture(sampler, coordinate).r;"
|
|
|
|
|
"return vec3( uvec3(texValue) & uvec3(4u, 2u, 1u));"
|
|
|
|
|
"}");
|
2016-12-10 01:01:27 +00:00
|
|
|
|
crt_->set_composite_sampling_function(
|
|
|
|
|
"float composite_sample(usampler2D sampler, vec2 coordinate, vec2 icoordinate, float phase, float amplitude)"
|
|
|
|
|
"{"
|
2016-12-10 03:17:10 +00:00
|
|
|
|
"uint texValue = uint(dot(texture(sampler, coordinate).rg, uvec2(1, 256)));"
|
2016-12-10 01:01:27 +00:00
|
|
|
|
"uint iPhase = uint((phase + 3.141592654 + 0.39269908175) * 2.0 / 3.141592654) & 3u;"
|
2016-12-10 03:17:10 +00:00
|
|
|
|
"texValue = (texValue >> (4u*(3u - iPhase))) & 15u;"
|
|
|
|
|
"return (float(texValue) - 4.0) / 20.0;"
|
2016-12-10 01:01:27 +00:00
|
|
|
|
"}"
|
|
|
|
|
);
|
2017-05-17 00:31:39 +00:00
|
|
|
|
crt_->set_composite_function_type(Outputs::CRT::CRT::CompositeSourceType::DiscreteFourSamplesPerCycle, 0.0f);
|
2016-10-15 02:39:27 +00:00
|
|
|
|
|
2017-11-12 22:17:27 +00:00
|
|
|
|
set_output_device(Outputs::CRT::OutputDevice::Television);
|
2017-09-04 21:51:02 +00:00
|
|
|
|
crt_->set_visible_area(crt_->get_rect_for_area(53, 224, 16 * 6, 40 * 6, 4.0f / 3.0f));
|
2016-10-12 23:20:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 18:34:47 +00:00
|
|
|
|
void VideoOutput::set_output_device(Outputs::CRT::OutputDevice output_device) {
|
2016-12-10 18:55:56 +00:00
|
|
|
|
output_device_ = output_device;
|
|
|
|
|
crt_->set_output_device(output_device);
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 18:34:47 +00:00
|
|
|
|
void VideoOutput::set_colour_rom(const std::vector<uint8_t> &rom) {
|
2017-11-11 20:28:40 +00:00
|
|
|
|
for(std::size_t c = 0; c < 8; c++) {
|
|
|
|
|
std::size_t index = (c << 2);
|
2017-10-22 01:50:53 +00:00
|
|
|
|
uint16_t rom_value = static_cast<uint16_t>((static_cast<uint16_t>(rom[index]) << 8) | static_cast<uint16_t>(rom[index+1]));
|
2016-12-10 03:17:10 +00:00
|
|
|
|
rom_value = (rom_value & 0xff00) | ((rom_value >> 4)&0x000f) | ((rom_value << 4)&0x00f0);
|
|
|
|
|
colour_forms_[c] = rom_value;
|
|
|
|
|
}
|
2016-12-11 00:10:33 +00:00
|
|
|
|
|
|
|
|
|
// check for big endianness and byte swap if required
|
|
|
|
|
uint16_t test_value = 0x0001;
|
2017-10-22 02:30:15 +00:00
|
|
|
|
if(*reinterpret_cast<uint8_t *>(&test_value) != 0x01) {
|
2017-11-11 20:28:40 +00:00
|
|
|
|
for(std::size_t c = 0; c < 8; c++) {
|
2017-10-22 01:50:53 +00:00
|
|
|
|
colour_forms_[c] = static_cast<uint16_t>((colour_forms_[c] >> 8) | (colour_forms_[c] << 8));
|
2016-12-11 00:10:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-12-10 03:17:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-18 02:26:06 +00:00
|
|
|
|
Outputs::CRT::CRT *VideoOutput::get_crt() {
|
|
|
|
|
return crt_.get();
|
2016-10-12 23:20:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-28 02:05:29 +00:00
|
|
|
|
void VideoOutput::run_for(const Cycles cycles) {
|
2016-10-28 01:06:31 +00:00
|
|
|
|
// Vertical: 0–39: pixels; otherwise blank; 48–53 sync, 54–56 colour burst
|
2016-10-13 01:29:21 +00:00
|
|
|
|
// Horizontal: 0–223: pixels; otherwise blank; 256–259 sync
|
|
|
|
|
|
2016-10-30 20:21:20 +00:00
|
|
|
|
#define clamp(action) \
|
|
|
|
|
if(cycles_run_for <= number_of_cycles) { action; } else cycles_run_for = number_of_cycles;
|
|
|
|
|
|
2017-07-25 00:10:05 +00:00
|
|
|
|
int number_of_cycles = cycles.as_int();
|
2017-03-26 18:34:47 +00:00
|
|
|
|
while(number_of_cycles) {
|
2016-11-22 14:28:45 +00:00
|
|
|
|
int h_counter = counter_ & 63;
|
2016-10-30 19:30:39 +00:00
|
|
|
|
int cycles_run_for = 0;
|
2016-10-13 11:59:11 +00:00
|
|
|
|
|
2017-03-26 18:34:47 +00:00
|
|
|
|
if(counter_ >= v_sync_start_position_ && counter_ < v_sync_end_position_) {
|
2016-10-30 19:30:39 +00:00
|
|
|
|
// this is a sync line
|
2016-11-22 14:28:45 +00:00
|
|
|
|
cycles_run_for = v_sync_end_position_ - counter_;
|
2017-10-21 23:49:04 +00:00
|
|
|
|
clamp(crt_->output_sync(static_cast<unsigned int>(v_sync_end_position_ - v_sync_start_position_) * 6));
|
2017-03-26 18:34:47 +00:00
|
|
|
|
} else if(counter_ < 224*64 && h_counter < 40) {
|
2016-10-30 19:30:39 +00:00
|
|
|
|
// this is a pixel line
|
2017-03-26 18:34:47 +00:00
|
|
|
|
if(!h_counter) {
|
2016-12-10 20:19:48 +00:00
|
|
|
|
ink_ = 0x7;
|
2016-12-10 19:17:46 +00:00
|
|
|
|
paper_ = 0x0;
|
2016-11-22 14:28:45 +00:00
|
|
|
|
use_alternative_character_set_ = use_double_height_characters_ = blink_text_ = false;
|
2016-10-30 19:30:39 +00:00
|
|
|
|
set_character_set_base_address();
|
2017-10-22 02:42:19 +00:00
|
|
|
|
pixel_target_ = reinterpret_cast<uint16_t *>(crt_->allocate_write_area(240));
|
2016-10-30 19:30:39 +00:00
|
|
|
|
|
2017-03-26 18:34:47 +00:00
|
|
|
|
if(!counter_) {
|
2016-11-22 14:28:45 +00:00
|
|
|
|
frame_counter_++;
|
2016-10-20 11:34:23 +00:00
|
|
|
|
|
2016-11-22 14:28:45 +00:00
|
|
|
|
v_sync_start_position_ = next_frame_is_sixty_hertz_ ? PAL60VSyncStartPosition : PAL50VSyncStartPosition;
|
|
|
|
|
v_sync_end_position_ = next_frame_is_sixty_hertz_ ? PAL60VSyncEndPosition : PAL50VSyncEndPosition;
|
|
|
|
|
counter_period_ = next_frame_is_sixty_hertz_ ? PAL60Period : PAL50Period;
|
2016-10-30 19:30:39 +00:00
|
|
|
|
}
|
2016-10-17 02:14:01 +00:00
|
|
|
|
}
|
2016-10-13 01:29:21 +00:00
|
|
|
|
|
2016-10-30 19:30:39 +00:00
|
|
|
|
cycles_run_for = std::min(40 - h_counter, number_of_cycles);
|
|
|
|
|
int columns = cycles_run_for;
|
2016-11-22 14:28:45 +00:00
|
|
|
|
int pixel_base_address = 0xa000 + (counter_ >> 6) * 40;
|
|
|
|
|
int character_base_address = 0xbb80 + (counter_ >> 9) * 40;
|
|
|
|
|
uint8_t blink_mask = (blink_text_ && (frame_counter_&32)) ? 0x00 : 0xff;
|
2016-10-28 01:06:31 +00:00
|
|
|
|
|
2017-03-26 18:34:47 +00:00
|
|
|
|
while(columns--) {
|
2016-10-30 19:30:39 +00:00
|
|
|
|
uint8_t pixels, control_byte;
|
2016-10-13 01:29:21 +00:00
|
|
|
|
|
2017-03-26 18:34:47 +00:00
|
|
|
|
if(is_graphics_mode_ && counter_ < 200*64) {
|
2016-11-22 14:28:45 +00:00
|
|
|
|
control_byte = pixels = ram_[pixel_base_address + h_counter];
|
2017-03-26 18:34:47 +00:00
|
|
|
|
} else {
|
2016-10-30 20:21:20 +00:00
|
|
|
|
int address = character_base_address + h_counter;
|
2016-11-22 14:28:45 +00:00
|
|
|
|
control_byte = ram_[address];
|
|
|
|
|
int line = use_double_height_characters_ ? ((counter_ >> 7) & 7) : ((counter_ >> 6) & 7);
|
|
|
|
|
pixels = ram_[character_set_base_address_ + (control_byte&127) * 8 + line];
|
2016-10-30 19:30:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-12-10 19:17:46 +00:00
|
|
|
|
uint8_t inverse_mask = (control_byte & 0x80) ? 0x7 : 0x0;
|
2016-10-30 20:21:20 +00:00
|
|
|
|
pixels &= blink_mask;
|
2016-10-30 19:30:39 +00:00
|
|
|
|
|
2017-03-26 18:34:47 +00:00
|
|
|
|
if(control_byte & 0x60) {
|
|
|
|
|
if(pixel_target_) {
|
2016-12-10 18:55:56 +00:00
|
|
|
|
uint16_t colours[2];
|
2017-11-12 22:17:27 +00:00
|
|
|
|
if(output_device_ == Outputs::CRT::OutputDevice::Monitor) {
|
2017-10-22 01:50:53 +00:00
|
|
|
|
colours[0] = static_cast<uint8_t>(paper_ ^ inverse_mask);
|
|
|
|
|
colours[1] = static_cast<uint8_t>(ink_ ^ inverse_mask);
|
2017-03-26 18:34:47 +00:00
|
|
|
|
} else {
|
2016-12-10 19:17:46 +00:00
|
|
|
|
colours[0] = colour_forms_[paper_ ^ inverse_mask];
|
|
|
|
|
colours[1] = colour_forms_[ink_ ^ inverse_mask];
|
2016-12-10 18:55:56 +00:00
|
|
|
|
}
|
2016-12-10 03:17:10 +00:00
|
|
|
|
pixel_target_[0] = colours[(pixels >> 5)&1];
|
|
|
|
|
pixel_target_[1] = colours[(pixels >> 4)&1];
|
|
|
|
|
pixel_target_[2] = colours[(pixels >> 3)&1];
|
|
|
|
|
pixel_target_[3] = colours[(pixels >> 2)&1];
|
|
|
|
|
pixel_target_[4] = colours[(pixels >> 1)&1];
|
|
|
|
|
pixel_target_[5] = colours[(pixels >> 0)&1];
|
2016-10-30 19:30:39 +00:00
|
|
|
|
}
|
2017-03-26 18:34:47 +00:00
|
|
|
|
} else {
|
|
|
|
|
switch(control_byte & 0x1f) {
|
2016-12-10 19:17:46 +00:00
|
|
|
|
case 0x00: ink_ = 0x0; break;
|
|
|
|
|
case 0x01: ink_ = 0x4; break;
|
|
|
|
|
case 0x02: ink_ = 0x2; break;
|
|
|
|
|
case 0x03: ink_ = 0x6; break;
|
|
|
|
|
case 0x04: ink_ = 0x1; break;
|
|
|
|
|
case 0x05: ink_ = 0x5; break;
|
|
|
|
|
case 0x06: ink_ = 0x3; break;
|
|
|
|
|
case 0x07: ink_ = 0x7; break;
|
2016-10-30 19:30:39 +00:00
|
|
|
|
|
|
|
|
|
case 0x08: case 0x09: case 0x0a: case 0x0b:
|
|
|
|
|
case 0x0c: case 0x0d: case 0x0e: case 0x0f:
|
2016-11-22 14:28:45 +00:00
|
|
|
|
use_alternative_character_set_ = (control_byte&1);
|
|
|
|
|
use_double_height_characters_ = (control_byte&2);
|
|
|
|
|
blink_text_ = (control_byte&4);
|
2016-10-30 19:30:39 +00:00
|
|
|
|
set_character_set_base_address();
|
|
|
|
|
break;
|
|
|
|
|
|
2016-12-10 19:17:46 +00:00
|
|
|
|
case 0x10: paper_ = 0x0; break;
|
|
|
|
|
case 0x11: paper_ = 0x4; break;
|
|
|
|
|
case 0x12: paper_ = 0x2; break;
|
|
|
|
|
case 0x13: paper_ = 0x6; break;
|
|
|
|
|
case 0x14: paper_ = 0x1; break;
|
|
|
|
|
case 0x15: paper_ = 0x5; break;
|
|
|
|
|
case 0x16: paper_ = 0x3; break;
|
|
|
|
|
case 0x17: paper_ = 0x7; break;
|
2016-10-30 19:30:39 +00:00
|
|
|
|
|
|
|
|
|
case 0x18: case 0x19: case 0x1a: case 0x1b:
|
|
|
|
|
case 0x1c: case 0x1d: case 0x1e: case 0x1f:
|
2016-11-22 14:28:45 +00:00
|
|
|
|
is_graphics_mode_ = (control_byte & 4);
|
|
|
|
|
next_frame_is_sixty_hertz_ = !(control_byte & 2);
|
2016-10-30 19:30:39 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default: break;
|
|
|
|
|
}
|
2017-03-26 18:34:47 +00:00
|
|
|
|
if(pixel_target_) {
|
2016-12-10 18:55:56 +00:00
|
|
|
|
pixel_target_[0] = pixel_target_[1] =
|
|
|
|
|
pixel_target_[2] = pixel_target_[3] =
|
|
|
|
|
pixel_target_[4] = pixel_target_[5] =
|
2017-11-12 22:17:27 +00:00
|
|
|
|
(output_device_ == Outputs::CRT::OutputDevice::Monitor) ? paper_ ^ inverse_mask : colour_forms_[paper_ ^ inverse_mask];
|
2016-12-10 18:55:56 +00:00
|
|
|
|
}
|
2016-10-30 19:30:39 +00:00
|
|
|
|
}
|
2016-12-10 03:17:10 +00:00
|
|
|
|
if(pixel_target_) pixel_target_ += 6;
|
2016-10-30 19:30:39 +00:00
|
|
|
|
h_counter++;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 18:34:47 +00:00
|
|
|
|
if(h_counter == 40) {
|
2016-12-10 03:17:10 +00:00
|
|
|
|
crt_->output_data(40 * 6, 1);
|
2016-10-13 01:29:21 +00:00
|
|
|
|
}
|
2017-03-26 18:34:47 +00:00
|
|
|
|
} else {
|
2016-10-30 19:30:39 +00:00
|
|
|
|
// this is a blank line (or the equivalent part of a pixel line)
|
2017-03-26 18:34:47 +00:00
|
|
|
|
if(h_counter < 48) {
|
2016-10-30 20:21:20 +00:00
|
|
|
|
cycles_run_for = 48 - h_counter;
|
|
|
|
|
clamp(
|
2016-11-22 14:28:45 +00:00
|
|
|
|
int period = (counter_ < 224*64) ? 8 : 48;
|
2017-10-21 23:49:04 +00:00
|
|
|
|
crt_->output_blank(static_cast<unsigned int>(period) * 6);
|
2016-10-30 20:21:20 +00:00
|
|
|
|
);
|
2017-03-26 18:34:47 +00:00
|
|
|
|
} else if(h_counter < 54) {
|
2016-10-30 20:21:20 +00:00
|
|
|
|
cycles_run_for = 54 - h_counter;
|
2016-11-22 14:28:45 +00:00
|
|
|
|
clamp(crt_->output_sync(6 * 6));
|
2017-03-26 18:34:47 +00:00
|
|
|
|
} else if(h_counter < 56) {
|
2016-10-30 20:21:20 +00:00
|
|
|
|
cycles_run_for = 56 - h_counter;
|
2016-12-10 18:42:34 +00:00
|
|
|
|
clamp(crt_->output_default_colour_burst(2 * 6));
|
2017-03-26 18:34:47 +00:00
|
|
|
|
} else {
|
2016-10-30 20:21:20 +00:00
|
|
|
|
cycles_run_for = 64 - h_counter;
|
2016-11-22 14:28:45 +00:00
|
|
|
|
clamp(crt_->output_blank(8 * 6));
|
2016-10-13 01:52:47 +00:00
|
|
|
|
}
|
2016-10-13 01:29:21 +00:00
|
|
|
|
}
|
2016-10-30 19:30:39 +00:00
|
|
|
|
|
2016-11-22 14:28:45 +00:00
|
|
|
|
counter_ = (counter_ + cycles_run_for)%counter_period_;
|
2016-10-30 19:30:39 +00:00
|
|
|
|
number_of_cycles -= cycles_run_for;
|
2016-10-13 01:29:21 +00:00
|
|
|
|
}
|
2016-10-12 23:20:23 +00:00
|
|
|
|
}
|
2016-10-31 00:16:22 +00:00
|
|
|
|
|
2017-03-26 18:34:47 +00:00
|
|
|
|
void VideoOutput::set_character_set_base_address() {
|
2016-11-22 14:28:45 +00:00
|
|
|
|
if(is_graphics_mode_) character_set_base_address_ = use_alternative_character_set_ ? 0x9c00 : 0x9800;
|
|
|
|
|
else character_set_base_address_ = use_alternative_character_set_ ? 0xb800 : 0xb400;
|
2016-10-31 00:16:22 +00:00
|
|
|
|
}
|