uxn/src/devices/ppu.h

34 lines
1.0 KiB
C
Raw Normal View History

2021-04-07 20:32:18 -04:00
#include <stdio.h>
2021-04-07 20:42:30 -04:00
#include <stdlib.h>
2021-04-07 20:32:18 -04:00
/*
Copyright (c) 2021 Devine Lu Linvega
2021-04-10 12:32:14 -04:00
Copyright (c) 2021 Andrew Alderwick
2021-04-07 20:32:18 -04:00
Permission to use, copy, modify, and distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE.
*/
typedef unsigned char Uint8;
typedef unsigned short Uint16;
typedef unsigned int Uint32;
typedef struct Layer {
2021-05-30 18:15:37 -04:00
Uint32 *pixels, colors[4];
} Layer;
2021-04-07 20:32:18 -04:00
typedef struct Ppu {
Uint16 hor, ver, width, height;
2021-05-30 18:15:37 -04:00
Layer fg, bg;
2021-04-07 20:32:18 -04:00
} Ppu;
int initppu(Ppu *p, Uint8 hor, Uint8 ver);
2021-04-20 23:38:15 -04:00
void putcolors(Ppu *p, Uint8 *addr);
2021-05-30 18:15:37 -04:00
void putpixel(Ppu *p, Layer *layer, Uint16 x, Uint16 y, Uint8 color);
void puticn(Ppu *p, Layer *layer, Uint16 x, Uint16 y, Uint8 *sprite, Uint8 color, Uint8 flipx, Uint8 flipy);
void putchr(Ppu *p, Layer *layer, Uint16 x, Uint16 y, Uint8 *sprite, Uint8 color, Uint8 flipx, Uint8 flipy);