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-11-04 11:42:15 -04:00
|
|
|
static Uint8 font[][8] = {
|
|
|
|
{0x00, 0x7c, 0x82, 0x82, 0x82, 0x82, 0x82, 0x7c},
|
|
|
|
{0x00, 0x30, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10},
|
|
|
|
{0x00, 0x7c, 0x82, 0x02, 0x7c, 0x80, 0x80, 0xfe},
|
|
|
|
{0x00, 0x7c, 0x82, 0x02, 0x1c, 0x02, 0x82, 0x7c},
|
|
|
|
{0x00, 0x0c, 0x14, 0x24, 0x44, 0x84, 0xfe, 0x04},
|
|
|
|
{0x00, 0xfe, 0x80, 0x80, 0x7c, 0x02, 0x82, 0x7c},
|
|
|
|
{0x00, 0x7c, 0x82, 0x80, 0xfc, 0x82, 0x82, 0x7c},
|
|
|
|
{0x00, 0x7c, 0x82, 0x02, 0x1e, 0x02, 0x02, 0x02},
|
|
|
|
{0x00, 0x7c, 0x82, 0x82, 0x7c, 0x82, 0x82, 0x7c},
|
|
|
|
{0x00, 0x7c, 0x82, 0x82, 0x7e, 0x02, 0x82, 0x7c},
|
|
|
|
{0x00, 0x7c, 0x82, 0x02, 0x7e, 0x82, 0x82, 0x7e},
|
|
|
|
{0x00, 0xfc, 0x82, 0x82, 0xfc, 0x82, 0x82, 0xfc},
|
|
|
|
{0x00, 0x7c, 0x82, 0x80, 0x80, 0x80, 0x82, 0x7c},
|
|
|
|
{0x00, 0xfc, 0x82, 0x82, 0x82, 0x82, 0x82, 0xfc},
|
|
|
|
{0x00, 0x7c, 0x82, 0x80, 0xf0, 0x80, 0x82, 0x7c},
|
|
|
|
{0x00, 0x7c, 0x82, 0x80, 0xf0, 0x80, 0x80, 0x80}};
|
|
|
|
|
2021-12-24 12:39:51 -05:00
|
|
|
void
|
|
|
|
ppu_palette(Ppu *p, Uint8 *addr)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
p->palette[i] = 0xff000000 | (r << 20) | (r << 16) | (g << 12) | (g << 8) | (b << 4) | b;
|
|
|
|
}
|
|
|
|
for(i = 4; i < 16; ++i)
|
|
|
|
p->palette[i] = p->palette[i / 4];
|
2021-12-24 15:01:10 -05:00
|
|
|
p->fg.changed = p->bg.changed = 1;
|
2021-12-24 12:39:51 -05:00
|
|
|
}
|
|
|
|
|
2021-11-03 18:03:33 -04:00
|
|
|
void
|
2021-12-19 15:20:13 -05:00
|
|
|
ppu_resize(Ppu *p, Uint16 width, Uint16 height)
|
2021-09-30 13:44:40 -04:00
|
|
|
{
|
2021-12-24 15:01:10 -05:00
|
|
|
Uint8
|
|
|
|
*bg = realloc(p->bg.pixels, width * height),
|
|
|
|
*fg = realloc(p->fg.pixels, width * height);
|
2021-12-24 13:10:55 -05:00
|
|
|
if(!bg || !fg)
|
2021-12-24 12:59:18 -05:00
|
|
|
return;
|
2021-12-24 15:01:10 -05:00
|
|
|
p->bg.pixels = bg;
|
|
|
|
p->fg.pixels = fg;
|
2021-09-30 13:44:40 -04:00
|
|
|
p->width = width;
|
|
|
|
p->height = height;
|
2021-12-24 14:45:31 -05:00
|
|
|
ppu_clear(p, &p->bg);
|
|
|
|
ppu_clear(p, &p->fg);
|
2021-09-30 13:44:40 -04:00
|
|
|
}
|
|
|
|
|
2021-12-19 15:20:13 -05:00
|
|
|
void
|
2021-12-24 14:45:31 -05:00
|
|
|
ppu_clear(Ppu *p, Layer *layer)
|
2021-12-19 15:20:13 -05:00
|
|
|
{
|
2021-12-24 12:59:18 -05:00
|
|
|
Uint32 i, size = p->width * p->height;
|
2021-12-19 15:20:13 -05:00
|
|
|
for(i = 0; i < size; ++i)
|
2021-12-24 15:01:10 -05:00
|
|
|
layer->pixels[i] = 0x00;
|
2021-12-24 17:27:41 -05:00
|
|
|
layer->changed = 1;
|
2021-12-19 15:20:13 -05:00
|
|
|
}
|
|
|
|
|
2021-12-24 12:46:21 -05:00
|
|
|
void
|
|
|
|
ppu_redraw(Ppu *p, Uint32 *screen)
|
|
|
|
{
|
2021-12-24 13:10:55 -05:00
|
|
|
Uint32 i, size = p->width * p->height;
|
|
|
|
for(i = 0; i < size; ++i)
|
2021-12-24 15:01:10 -05:00
|
|
|
screen[i] = p->palette[p->fg.pixels[i] ? p->fg.pixels[i] : p->bg.pixels[i]];
|
|
|
|
p->fg.changed = p->bg.changed = 0;
|
2021-12-24 12:46:21 -05:00
|
|
|
}
|
|
|
|
|
2021-09-21 13:39:00 -04:00
|
|
|
void
|
2021-12-24 14:45:31 -05:00
|
|
|
ppu_write(Ppu *p, Layer *layer, Uint16 x, Uint16 y, Uint8 color)
|
2021-04-07 20:32:18 -04:00
|
|
|
{
|
2021-09-30 22:35:22 -04:00
|
|
|
if(x < p->width && y < p->height) {
|
2021-12-24 14:45:31 -05:00
|
|
|
Uint32 i = (x + y * p->width);
|
2021-12-24 15:01:10 -05:00
|
|
|
Uint8 prev = layer->pixels[i];
|
2021-12-24 12:59:18 -05:00
|
|
|
if(color != prev) {
|
2021-12-24 15:01:10 -05:00
|
|
|
layer->pixels[i] = color;
|
|
|
|
layer->changed = 1;
|
2021-11-02 13:18:30 -04:00
|
|
|
}
|
2021-09-30 22:35:22 -04:00
|
|
|
}
|
2021-04-07 20:32:18 -04:00
|
|
|
}
|
|
|
|
|
2021-09-21 13:39:00 -04:00
|
|
|
void
|
2021-12-24 14:45:31 -05:00
|
|
|
ppu_1bpp(Ppu *p, Layer *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-12-14 18:16:27 -05: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-29 19:01:54 -04:00
|
|
|
ppu_write(p,
|
2021-09-29 20:58:58 -04:00
|
|
|
layer,
|
2021-07-31 13:47:51 -04:00
|
|
|
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-21 13:39:00 -04:00
|
|
|
void
|
2021-12-24 14:45:31 -05:00
|
|
|
ppu_2bpp(Ppu *p, Layer *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-12-14 18:16:27 -05: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-29 19:01:54 -04:00
|
|
|
ppu_write(p,
|
2021-09-29 20:58:58 -04:00
|
|
|
layer,
|
2021-07-31 20:00:25 -04:00
|
|
|
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-11-04 11:42:15 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
ppu_debug(Ppu *p, Uint8 *stack, Uint8 wptr, Uint8 rptr, Uint8 *memory)
|
|
|
|
{
|
|
|
|
Uint8 i, x, y, b;
|
|
|
|
for(i = 0; i < 0x20; ++i) {
|
|
|
|
x = ((i % 8) * 3 + 1) * 8, y = (i / 8 + 1) * 8, b = stack[i];
|
|
|
|
/* working stack */
|
2021-12-24 14:45:31 -05:00
|
|
|
ppu_1bpp(p, &p->fg, x, y, font[(b >> 4) & 0xf], 1 + (wptr == i) * 0x7, 0, 0);
|
|
|
|
ppu_1bpp(p, &p->fg, x + 8, y, font[b & 0xf], 1 + (wptr == i) * 0x7, 0, 0);
|
2021-11-04 11:42:15 -04:00
|
|
|
y = 0x28 + (i / 8 + 1) * 8;
|
|
|
|
b = memory[i];
|
|
|
|
/* return stack */
|
2021-12-24 14:45:31 -05:00
|
|
|
ppu_1bpp(p, &p->fg, x, y, font[(b >> 4) & 0xf], 3, 0, 0);
|
|
|
|
ppu_1bpp(p, &p->fg, x + 8, y, font[b & 0xf], 3, 0, 0);
|
2021-11-04 11:42:15 -04:00
|
|
|
}
|
|
|
|
/* return pointer */
|
2021-12-24 14:45:31 -05:00
|
|
|
ppu_1bpp(p, &p->fg, 0x8, y + 0x10, font[(rptr >> 4) & 0xf], 0x2, 0, 0);
|
|
|
|
ppu_1bpp(p, &p->fg, 0x10, y + 0x10, font[rptr & 0xf], 0x2, 0, 0);
|
2021-11-04 11:42:15 -04:00
|
|
|
/* guides */
|
|
|
|
for(x = 0; x < 0x10; ++x) {
|
2021-12-24 14:45:31 -05:00
|
|
|
ppu_write(p, &p->fg, x, p->height / 2, 2);
|
|
|
|
ppu_write(p, &p->fg, p->width - x, p->height / 2, 2);
|
|
|
|
ppu_write(p, &p->fg, p->width / 2, p->height - x, 2);
|
|
|
|
ppu_write(p, &p->fg, p->width / 2, x, 2);
|
|
|
|
ppu_write(p, &p->fg, p->width / 2 - 0x10 / 2 + x, p->height / 2, 2);
|
|
|
|
ppu_write(p, &p->fg, p->width / 2, p->height / 2 - 0x10 / 2 + x, 2);
|
2021-11-04 11:42:15 -04:00
|
|
|
}
|
|
|
|
}
|