2021-05-12 21:28:45 -04:00
|
|
|
#include "ppu.h"
|
|
|
|
|
2021-04-07 20:32:18 -04: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.
|
|
|
|
*/
|
|
|
|
|
2021-08-01 14:16:29 -04:00
|
|
|
static Uint8 blending[5][16] = {
|
2021-08-01 14:00:07 -04:00
|
|
|
{0, 0, 0, 0, 1, 0, 1, 1, 2, 2, 0, 2, 3, 3, 3, 0},
|
|
|
|
{0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3, 0, 1, 2, 3},
|
|
|
|
{1, 2, 3, 1, 1, 2, 3, 1, 1, 2, 3, 1, 1, 2, 3, 1},
|
2021-08-01 14:16:29 -04:00
|
|
|
{2, 3, 1, 2, 2, 3, 1, 2, 2, 3, 1, 2, 2, 3, 1, 2},
|
|
|
|
{1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0}};
|
2021-08-01 14:00:07 -04:00
|
|
|
|
2021-09-18 20:18:20 -04:00
|
|
|
static void
|
|
|
|
ppu_clear(Ppu *p)
|
|
|
|
{
|
|
|
|
int x, y;
|
|
|
|
for(y = 0; y < p->height; ++y) {
|
|
|
|
for(x = 0; x < p->width; ++x) {
|
|
|
|
ppu_pixel(p, p->bg, x, y, 0);
|
|
|
|
ppu_pixel(p, p->fg, x, y, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-19 17:30:53 -04:00
|
|
|
int
|
2021-09-16 22:48:00 -04:00
|
|
|
ppu_pixel(Ppu *p, Uint8 *layer, Uint16 x, Uint16 y, Uint8 color)
|
2021-04-07 20:32:18 -04:00
|
|
|
{
|
2021-09-19 17:30:53 -04:00
|
|
|
int row = (y % 8) + ((x / 8 + y / 8 * p->width / 8) * 16), col = x % 8, ret;
|
|
|
|
Uint8 w;
|
2021-09-16 22:48:00 -04:00
|
|
|
if(x >= p->width || y >= p->height)
|
2021-09-19 17:30:53 -04:00
|
|
|
return 0;
|
|
|
|
w = layer[row];
|
2021-09-16 22:48:00 -04:00
|
|
|
if(color == 0 || color == 2)
|
|
|
|
layer[row] &= ~(1UL << (7 - col));
|
|
|
|
else
|
|
|
|
layer[row] |= 1UL << (7 - col);
|
2021-09-19 17:30:53 -04:00
|
|
|
ret = w ^ layer[row];
|
|
|
|
w = layer[row + 8];
|
2021-09-16 22:48:00 -04:00
|
|
|
if(color == 0 || color == 1)
|
|
|
|
layer[row + 8] &= ~(1UL << (7 - col));
|
|
|
|
else
|
|
|
|
layer[row + 8] |= 1UL << (7 - col);
|
2021-09-19 17:30:53 -04:00
|
|
|
return ret | (w ^ layer[row + 8]);
|
2021-04-07 20:32:18 -04:00
|
|
|
}
|
|
|
|
|
2021-09-19 17:30:53 -04:00
|
|
|
int
|
2021-09-16 22:48:00 -04:00
|
|
|
ppu_1bpp(Ppu *p, Uint8 *layer, Uint16 x, Uint16 y, Uint8 *sprite, Uint8 color, Uint8 flipx, Uint8 flipy)
|
2021-04-09 11:02:55 -04:00
|
|
|
{
|
|
|
|
Uint16 v, h;
|
2021-09-19 17:30:53 -04:00
|
|
|
int ret = 0;
|
2021-04-09 11:02:55 -04:00
|
|
|
for(v = 0; v < 8; v++)
|
|
|
|
for(h = 0; h < 8; h++) {
|
2021-07-31 13:47:51 -04:00
|
|
|
Uint8 ch1 = (sprite[v] >> (7 - h)) & 0x1;
|
2021-08-01 14:16:29 -04:00
|
|
|
if(ch1 || blending[4][color])
|
2021-09-19 17:30:53 -04:00
|
|
|
ret |= ppu_pixel(p,
|
2021-07-31 13:47:51 -04:00
|
|
|
layer,
|
|
|
|
x + (flipx ? 7 - h : h),
|
|
|
|
y + (flipy ? 7 - v : v),
|
2021-08-01 14:08:02 -04:00
|
|
|
blending[ch1][color]);
|
2021-04-09 11:02:55 -04:00
|
|
|
}
|
2021-09-19 17:30:53 -04:00
|
|
|
return ret;
|
2021-04-09 11:02:55 -04:00
|
|
|
}
|
|
|
|
|
2021-09-19 17:30:53 -04:00
|
|
|
int
|
2021-09-16 22:48:00 -04:00
|
|
|
ppu_2bpp(Ppu *p, Uint8 *layer, Uint16 x, Uint16 y, Uint8 *sprite, Uint8 color, Uint8 flipx, Uint8 flipy)
|
2021-04-09 15:15:38 -04:00
|
|
|
{
|
|
|
|
Uint16 v, h;
|
2021-09-19 17:30:53 -04:00
|
|
|
int ret = 0;
|
2021-04-09 15:15:38 -04:00
|
|
|
for(v = 0; v < 8; v++)
|
|
|
|
for(h = 0; h < 8; h++) {
|
2021-08-01 00:29:40 -04:00
|
|
|
Uint8 ch1 = ((sprite[v] >> (7 - h)) & 0x1);
|
|
|
|
Uint8 ch2 = ((sprite[v + 8] >> (7 - h)) & 0x1);
|
2021-08-01 14:00:07 -04:00
|
|
|
Uint8 ch = ch1 + ch2 * 2;
|
2021-08-01 14:16:29 -04:00
|
|
|
if(ch || blending[4][color])
|
2021-09-19 17:30:53 -04:00
|
|
|
ret |= ppu_pixel(p,
|
2021-07-31 20:00:25 -04:00
|
|
|
layer,
|
|
|
|
x + (flipx ? 7 - h : h),
|
|
|
|
y + (flipy ? 7 - v : v),
|
2021-08-01 14:08:02 -04:00
|
|
|
blending[ch][color]);
|
2021-04-09 15:15:38 -04:00
|
|
|
}
|
2021-09-19 17:30:53 -04:00
|
|
|
return ret;
|
2021-04-09 15:15:38 -04:00
|
|
|
}
|
|
|
|
|
2021-04-20 23:38:15 -04:00
|
|
|
/* output */
|
|
|
|
|
2021-04-07 20:42:30 -04:00
|
|
|
int
|
2021-08-01 14:33:43 -04:00
|
|
|
ppu_init(Ppu *p, Uint8 hor, Uint8 ver)
|
2021-04-07 20:42:30 -04:00
|
|
|
{
|
2021-08-01 14:38:04 -04:00
|
|
|
p->width = 8 * hor;
|
|
|
|
p->height = 8 * ver;
|
2021-09-17 14:24:50 -04:00
|
|
|
p->bg = calloc(1, p->width / 4 * p->height * sizeof(Uint8));
|
|
|
|
p->fg = calloc(1, p->width / 4 * p->height * sizeof(Uint8));
|
2021-09-18 20:18:20 -04:00
|
|
|
ppu_clear(p);
|
2021-09-18 19:51:20 -04:00
|
|
|
return p->bg && p->fg;
|
2021-04-22 14:04:06 -04:00
|
|
|
}
|
2021-09-18 19:51:20 -04:00
|
|
|
|
|
|
|
int
|
|
|
|
ppu_resize(Ppu *p, Uint8 hor, Uint8 ver)
|
|
|
|
{
|
2021-09-18 20:18:20 -04:00
|
|
|
ppu_clear(p);
|
2021-09-18 19:51:20 -04:00
|
|
|
p->width = 8 * hor;
|
|
|
|
p->height = 8 * ver;
|
|
|
|
p->bg = realloc(p->bg, p->width / 4 * p->height * sizeof(Uint8));
|
|
|
|
p->fg = realloc(p->fg, p->width / 4 * p->height * sizeof(Uint8));
|
2021-09-18 20:18:20 -04:00
|
|
|
ppu_clear(p);
|
2021-09-18 19:51:20 -04:00
|
|
|
return p->bg && p->fg;
|
|
|
|
}
|