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"
|
|
|
|
|
|
|
|
namespace Oric {
|
|
|
|
|
|
|
|
class VideoOutput {
|
|
|
|
public:
|
|
|
|
VideoOutput(uint8_t *memory);
|
2016-10-13 01:29:21 +00:00
|
|
|
std::shared_ptr<Outputs::CRT::CRT> get_crt();
|
2016-10-12 23:20:23 +00:00
|
|
|
void run_for_cycles(int number_of_cycles);
|
|
|
|
|
|
|
|
private:
|
|
|
|
uint8_t *_ram;
|
2016-10-13 01:29:21 +00:00
|
|
|
std::shared_ptr<Outputs::CRT::CRT> _crt;
|
|
|
|
|
2016-10-20 11:34:23 +00:00
|
|
|
// Counters and limits
|
2016-10-13 01:29:21 +00:00
|
|
|
int _counter, _frame_counter;
|
2016-10-20 11:34:23 +00:00
|
|
|
int _v_sync_start_position, _v_sync_end_position, _counter_period;
|
2016-10-13 01:29:21 +00:00
|
|
|
|
2016-10-31 00:15:47 +00:00
|
|
|
// Output target
|
2016-10-13 01:29:21 +00:00
|
|
|
uint8_t *_pixel_target;
|
|
|
|
|
|
|
|
// Registers
|
2016-10-13 23:34:29 +00:00
|
|
|
uint8_t _ink, _paper;
|
|
|
|
|
2016-10-13 11:59:11 +00:00
|
|
|
int _character_set_base_address;
|
2016-10-31 00:16:22 +00:00
|
|
|
inline void set_character_set_base_address();
|
2016-10-13 23:34:29 +00:00
|
|
|
|
2016-10-13 01:52:47 +00:00
|
|
|
bool _is_graphics_mode;
|
2016-10-20 11:34:23 +00:00
|
|
|
bool _next_frame_is_sixty_hertz;
|
2016-10-13 23:34:29 +00:00
|
|
|
bool _use_alternative_character_set;
|
|
|
|
bool _use_double_height_characters;
|
|
|
|
bool _blink_text;
|
2016-10-15 02:39:27 +00:00
|
|
|
|
|
|
|
uint8_t _phase;
|
2016-10-12 23:20:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* Video_hpp */
|