1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-06-02 22:41:31 +00:00
erc-c/include/vm_screen.h

100 lines
2.7 KiB
C
Raw Normal View History

2017-11-22 05:24:51 +00:00
#ifndef _VM_SCREEN_H_
#define _VM_SCREEN_H_
#include <SDL.h>
#include <stdbool.h>
#include <sys/time.h>
2018-01-08 02:05:02 +00:00
#include "vm_area.h"
#include "vm_bits.h"
2018-03-12 04:28:28 +00:00
typedef struct {
/*
* Red, green, blue
*/
vm_8bit r, g, b;
/*
* This is alpha, which would be the degree of transparency of the
* graphics. This is here only if needed--for example, the Apple II
* doesn't have any alpha channel.
*/
vm_8bit a;
} vm_color;
2017-11-22 05:24:51 +00:00
typedef struct {
/*
* This is the window in SDL that we're displaying. It's fine for a
* screen to be headless; that is, not to have a window. Screen
* functions which deal with SDL will simply not run that code if
* headless.
*/
SDL_Window *window;
/*
* In SDL, the renderer is comparable to the old SDL_Surface type
* (which is still there!). A renderer is a little more stateful; it
* contains its own color information to be used when rendering
* shapes, for example.
*/
SDL_Renderer *render;
/*
* These are the x and y coordinates of the window we're creating.
* FIXME: this should probably be renamed to width and height...
*/
int xcoords;
int ycoords;
/*
* This is the time we last refreshed the screen.
*/
struct timeval reftime;
/*
* This field is the number of microseconds we have to wait until we
* are ready to redraw the frame. It cannot be greater than 1000000,
* which is the number of microseconds within a second.
*/
int usec_until_refresh;
/*
* Hang onto the last key pressed and the status of whether a key
* is pressed right now or not.
*/
vm_8bit last_key;
bool key_pressed;
/*
* Is the screen dirty? That is to say, has something about it
* changed that now requires we redraw the screen?
*/
bool dirty;
2018-02-05 06:35:04 +00:00
/*
* Should we exit (the next chance we get)?
*/
bool should_exit;
2017-12-17 22:42:05 +00:00
} vm_screen;
2017-11-22 05:24:51 +00:00
2017-12-26 22:47:34 +00:00
extern bool vm_screen_active(vm_screen *);
extern bool vm_screen_dirty(vm_screen *);
extern bool vm_screen_key_pressed(vm_screen *);
extern bool vm_screen_needs_frame(vm_screen *);
extern char vm_screen_last_key(vm_screen *);
extern int vm_screen_add_window(vm_screen *, int, int);
2017-12-26 22:47:34 +00:00
extern int vm_screen_init();
extern int vm_screen_xcoords(vm_screen *);
extern int vm_screen_ycoords(vm_screen *);
2017-12-26 22:47:34 +00:00
extern vm_screen *vm_screen_create();
extern void vm_screen_draw_rect(vm_screen *, vm_area *);
2017-12-26 22:47:34 +00:00
extern void vm_screen_finish();
2017-12-17 22:42:05 +00:00
extern void vm_screen_free(vm_screen *);
2018-01-25 02:05:19 +00:00
extern void vm_screen_prepare(vm_screen *);
2017-12-26 22:47:34 +00:00
extern void vm_screen_refresh(vm_screen *);
2018-03-12 04:28:28 +00:00
extern void vm_screen_set_color(vm_screen *, vm_color);
2017-12-26 22:47:34 +00:00
extern void vm_screen_set_logical_coords(vm_screen *, int, int);
2017-11-22 05:24:51 +00:00
#endif