2016-03-09 01:59:16 +00:00
|
|
|
//
|
|
|
|
// CRTInputBufferBuilder.hpp
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 08/03/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef CRTInputBufferBuilder_hpp
|
|
|
|
#define CRTInputBufferBuilder_hpp
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stddef.h>
|
2016-03-19 21:07:05 +00:00
|
|
|
#include "CRTConstants.hpp"
|
2016-03-20 02:46:17 +00:00
|
|
|
#include "OpenGL.hpp"
|
2016-05-09 01:11:56 +00:00
|
|
|
#include <memory>
|
2016-03-09 01:59:16 +00:00
|
|
|
|
|
|
|
namespace Outputs {
|
|
|
|
namespace CRT {
|
|
|
|
|
|
|
|
struct CRTInputBufferBuilder {
|
2016-03-19 21:37:55 +00:00
|
|
|
CRTInputBufferBuilder(size_t bytes_per_pixel);
|
2016-03-09 01:59:16 +00:00
|
|
|
|
|
|
|
void allocate_write_area(size_t required_length);
|
2016-05-09 11:02:12 +00:00
|
|
|
void reduce_previous_allocation_to(size_t actual_length);
|
2016-05-05 01:27:10 +00:00
|
|
|
|
|
|
|
uint16_t get_and_finalise_current_line();
|
|
|
|
uint8_t *get_image_pointer();
|
|
|
|
|
|
|
|
uint8_t *get_write_target();
|
|
|
|
|
|
|
|
uint16_t get_last_write_x_position();
|
|
|
|
|
|
|
|
uint16_t get_last_write_y_position();
|
|
|
|
|
|
|
|
size_t get_bytes_per_pixel();
|
2016-05-04 00:56:47 +00:00
|
|
|
|
2016-05-09 11:02:12 +00:00
|
|
|
bool is_full();
|
|
|
|
|
2016-05-04 00:56:47 +00:00
|
|
|
private:
|
|
|
|
// where pixel data will be put to the next time a write is requested
|
|
|
|
uint16_t _next_write_x_position, _next_write_y_position;
|
|
|
|
|
|
|
|
// the most recent position returned for pixel data writing
|
|
|
|
uint16_t _write_x_position, _write_y_position;
|
|
|
|
|
|
|
|
// details of the most recent allocation
|
|
|
|
size_t _write_target_pointer;
|
|
|
|
size_t _last_allocation_amount;
|
|
|
|
|
|
|
|
// the buffer size
|
2016-05-04 11:39:45 +00:00
|
|
|
size_t _bytes_per_pixel;
|
2016-05-04 00:56:47 +00:00
|
|
|
|
2016-05-05 11:22:49 +00:00
|
|
|
// the buffer
|
2016-05-09 01:11:56 +00:00
|
|
|
std::unique_ptr<uint8_t> _image;
|
2016-03-09 01:59:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CRTInputBufferBuilder_hpp */
|