2016-10-12 23:20:23 +00:00
|
|
|
//
|
|
|
|
// Video.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 12/10/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2016-10-17 02:14:01 +00:00
|
|
|
#ifndef Machines_Oric_Video_hpp
|
|
|
|
#define Machines_Oric_Video_hpp
|
2016-10-12 23:20:23 +00:00
|
|
|
|
|
|
|
#include "../../Outputs/CRT/CRT.hpp"
|
2017-07-26 00:20:55 +00:00
|
|
|
#include "../../ClockReceiver/ClockReceiver.hpp"
|
2016-10-12 23:20:23 +00:00
|
|
|
|
|
|
|
namespace Oric {
|
|
|
|
|
2017-07-27 11:40:02 +00:00
|
|
|
class VideoOutput {
|
2016-10-12 23:20:23 +00:00
|
|
|
public:
|
|
|
|
VideoOutput(uint8_t *memory);
|
2017-12-18 02:26:06 +00:00
|
|
|
Outputs::CRT::CRT *get_crt();
|
2017-07-28 02:05:29 +00:00
|
|
|
void run_for(const Cycles cycles);
|
2016-12-10 03:17:10 +00:00
|
|
|
void set_colour_rom(const std::vector<uint8_t> &rom);
|
2018-04-04 23:14:42 +00:00
|
|
|
void set_video_signal(Outputs::CRT::VideoSignal output_device);
|
2016-10-12 23:20:23 +00:00
|
|
|
|
|
|
|
private:
|
2016-11-22 14:28:45 +00:00
|
|
|
uint8_t *ram_;
|
2017-12-18 02:26:06 +00:00
|
|
|
std::unique_ptr<Outputs::CRT::CRT> crt_;
|
2016-10-13 01:29:21 +00:00
|
|
|
|
2016-10-20 11:34:23 +00:00
|
|
|
// Counters and limits
|
2017-11-11 03:35:05 +00:00
|
|
|
int counter_ = 0, frame_counter_ = 0;
|
2016-11-22 14:28:45 +00:00
|
|
|
int v_sync_start_position_, v_sync_end_position_, counter_period_;
|
2016-10-13 01:29:21 +00:00
|
|
|
|
2016-12-10 18:55:56 +00:00
|
|
|
// Output target and device
|
2016-12-10 03:17:10 +00:00
|
|
|
uint16_t *pixel_target_;
|
|
|
|
uint16_t colour_forms_[8];
|
2018-04-04 23:14:42 +00:00
|
|
|
Outputs::CRT::VideoSignal video_signal_;
|
2016-10-13 01:29:21 +00:00
|
|
|
|
|
|
|
// Registers
|
2016-11-22 14:28:45 +00:00
|
|
|
uint8_t ink_, paper_;
|
2016-10-13 23:34:29 +00:00
|
|
|
|
2017-11-11 03:35:05 +00:00
|
|
|
int character_set_base_address_ = 0xb400;
|
2016-10-31 00:16:22 +00:00
|
|
|
inline void set_character_set_base_address();
|
2016-10-13 23:34:29 +00:00
|
|
|
|
2017-11-11 03:35:05 +00:00
|
|
|
bool is_graphics_mode_ = false;
|
|
|
|
bool next_frame_is_sixty_hertz_ = false;
|
2016-11-22 14:28:45 +00:00
|
|
|
bool use_alternative_character_set_;
|
|
|
|
bool use_double_height_characters_;
|
|
|
|
bool blink_text_;
|
2016-10-12 23:20:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* Video_hpp */
|