uxn/src/devices/ppu.c

100 lines
2.5 KiB
C
Raw Normal View History

2021-05-13 01:28:45 +00:00
#include "ppu.h"
2021-04-08 00:32:18 +00:00
/*
Copyright (c) 2021 Devine Lu Linvega
Copyright (c) 2021 Andrew Alderwick
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.
*/
void
clear(Ppu *p)
{
2021-05-30 22:15:37 +00:00
int i, sz = p->height * p->width;
for(i = 0; i < sz; ++i) {
p->fg.pixels[i] = p->fg.colors[0];
p->bg.pixels[i] = p->bg.colors[0];
}
2021-04-08 00:32:18 +00:00
}
void
2021-04-21 03:38:15 +00:00
putcolors(Ppu *p, Uint8 *addr)
2021-04-08 00:32:18 +00:00
{
2021-04-21 03:38:15 +00:00
int i;
for(i = 0; i < 4; ++i) {
Uint8
r = (*(addr + i / 2) >> (!(i % 2) << 2)) & 0x0f,
g = (*(addr + 2 + i / 2) >> (!(i % 2) << 2)) & 0x0f,
b = (*(addr + 4 + i / 2) >> (!(i % 2) << 2)) & 0x0f;
2021-05-30 22:15:37 +00:00
p->bg.colors[i] = 0xff000000 | (r << 20) | (r << 16) | (g << 12) | (g << 8) | (b << 4) | b;
p->fg.colors[i] = 0xff000000 | (r << 20) | (r << 16) | (g << 12) | (g << 8) | (b << 4) | b;
2021-04-21 03:38:15 +00:00
}
2021-05-30 22:15:37 +00:00
p->fg.colors[0] = 0;
clear(p);
2021-04-08 00:32:18 +00:00
}
void
2021-05-30 22:15:37 +00:00
putpixel(Ppu *p, Layer *layer, Uint16 x, Uint16 y, Uint8 color)
2021-04-08 00:32:18 +00:00
{
if(x >= p->width || y >= p->height)
2021-04-08 00:32:18 +00:00
return;
2021-05-30 22:15:37 +00:00
layer->pixels[y * p->width + x] = layer->colors[color];
2021-04-08 00:32:18 +00:00
}
void
2021-05-30 22:15:37 +00:00
puticn(Ppu *p, Layer *layer, Uint16 x, Uint16 y, Uint8 *sprite, Uint8 color, Uint8 flipx, Uint8 flipy)
2021-04-09 15:02:55 +00:00
{
Uint16 v, h;
for(v = 0; v < 8; v++)
for(h = 0; h < 8; h++) {
Uint8 ch1 = ((sprite[v] >> (7 - h)) & 0x1);
Uint16 px = x + (flipx ? 7 - h : h);
Uint16 py = y + (flipy ? 7 - v : v);
if(!(ch1 || color % 0x5))
continue;
if(px < p->width && py < p->height) {
Uint8 pc = ch1 ? (color & 0x3) : (color >> 0x2);
layer->pixels[py * p->width + px] = layer->colors[pc];
}
2021-04-09 15:02:55 +00:00
}
}
2021-04-09 19:15:38 +00:00
void
2021-05-30 22:15:37 +00:00
putchr(Ppu *p, Layer *layer, Uint16 x, Uint16 y, Uint8 *sprite, Uint8 color, Uint8 flipx, Uint8 flipy)
2021-04-09 19:15:38 +00:00
{
Uint16 v, h;
for(v = 0; v < 8; v++)
for(h = 0; h < 8; h++) {
Uint8 ch1 = ((sprite[v] >> (7 - h)) & 0x1) * color;
Uint8 ch2 = ((sprite[v + 8] >> (7 - h)) & 0x1) * color;
Uint16 px = x + (flipx ? 7 - h : h);
Uint16 py = y + (flipy ? 7 - v : v);
if(px < p->width && py < p->height) {
Uint8 pc = ((ch1 + ch2 * 2) + color / 4) & 0x3;
layer->pixels[py * p->width + px] = layer->colors[pc];
}
2021-04-09 19:15:38 +00:00
}
}
2021-04-21 03:38:15 +00:00
/* output */
2021-04-08 00:42:30 +00:00
int
initppu(Ppu *p, Uint8 hor, Uint8 ver)
2021-04-08 00:42:30 +00:00
{
2021-04-08 16:59:45 +00:00
p->hor = hor;
p->ver = ver;
p->width = 8 * p->hor;
p->height = 8 * p->ver;
2021-05-30 22:15:37 +00:00
if(!(p->bg.pixels = malloc(p->width * p->height * sizeof(Uint32))))
2021-04-08 16:59:45 +00:00
return 0;
2021-05-30 22:15:37 +00:00
if(!(p->fg.pixels = malloc(p->width * p->height * sizeof(Uint32))))
2021-04-08 00:42:30 +00:00
return 0;
clear(p);
return 1;
}