2022-01-09 03:38:53 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2021-12-28 21:37:26 +00:00
|
|
|
#include "../uxn.h"
|
|
|
|
#include "screen.h"
|
2021-05-13 01:28:45 +00:00
|
|
|
|
2021-04-08 00:32:18 +00:00
|
|
|
/*
|
2023-01-02 14:40:23 +00:00
|
|
|
Copyright (c) 2021-2023 Devine Lu Linvega, Andrew Alderwick
|
2021-04-08 00:32:18 +00: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.
|
|
|
|
*/
|
|
|
|
|
2021-12-29 17:11:03 +00:00
|
|
|
UxnScreen uxn_screen;
|
2021-12-28 21:37:26 +00:00
|
|
|
|
2023-04-13 16:53:05 +00:00
|
|
|
/* c = !ch ? (color % 5 ? color >> 2 : 0) : color % 4 + ch == 1 ? 0 : (ch - 2 + (color & 3)) % 3 + 1; */
|
|
|
|
|
2023-03-01 19:23:13 +00:00
|
|
|
static Uint8 blending[4][16] = {
|
2021-08-01 18:00:07 +00: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},
|
2023-03-01 01:00:21 +00:00
|
|
|
{2, 3, 1, 2, 2, 3, 1, 2, 2, 3, 1, 2, 2, 3, 1, 2}};
|
2021-08-01 18:00:07 +00:00
|
|
|
|
2021-12-28 21:37:26 +00:00
|
|
|
static void
|
2023-04-13 16:42:59 +00:00
|
|
|
screen_pixel(UxnScreen *p, Layer *layer, Uint16 x, Uint16 y, Uint8 color)
|
2021-12-28 21:37:26 +00:00
|
|
|
{
|
2023-04-13 16:42:59 +00:00
|
|
|
if(x >= p->width || y >= p->height)
|
|
|
|
return;
|
|
|
|
layer->pixels[x + y * p->width] = color;
|
2021-12-28 21:37:26 +00:00
|
|
|
}
|
|
|
|
|
2023-03-01 04:54:32 +00:00
|
|
|
static void
|
2023-04-11 18:11:12 +00:00
|
|
|
screen_fill(UxnScreen *p, Layer *layer, Uint16 x1, Uint16 y1, Uint16 x2, Uint16 y2, Uint8 color)
|
2023-03-01 04:54:32 +00:00
|
|
|
{
|
2023-04-13 16:42:59 +00:00
|
|
|
int x, y;
|
|
|
|
if(x2 >= p->width) x2 = p->width;
|
|
|
|
if(y2 >= p->height) y2 = p->height;
|
|
|
|
if(x1 >= x2 || y1 >= y2)
|
|
|
|
return;
|
|
|
|
for(y = y1; y < y2; y++)
|
|
|
|
for(x = x1; x < x2; x++)
|
|
|
|
layer->pixels[x + y * p->width] = color;
|
|
|
|
layer->changed = 1;
|
2023-04-11 18:11:12 +00:00
|
|
|
}
|
|
|
|
|
2021-12-28 21:37:26 +00:00
|
|
|
static void
|
2021-12-29 17:11:03 +00:00
|
|
|
screen_blit(UxnScreen *p, Layer *layer, Uint16 x, Uint16 y, Uint8 *sprite, Uint8 color, Uint8 flipx, Uint8 flipy, Uint8 twobpp)
|
2021-12-28 21:37:26 +00:00
|
|
|
{
|
2023-03-01 01:00:21 +00:00
|
|
|
int v, h, opaque = (color % 5) || !color;
|
2022-01-04 02:04:09 +00:00
|
|
|
for(v = 0; v < 8; v++) {
|
2023-03-01 03:34:13 +00:00
|
|
|
Uint16 c = sprite[v] | (twobpp ? (sprite[v + 8] << 8) : 0);
|
2021-12-28 21:37:26 +00:00
|
|
|
for(h = 7; h >= 0; --h, c >>= 1) {
|
|
|
|
Uint8 ch = (c & 1) | ((c >> 7) & 2);
|
|
|
|
if(opaque || ch)
|
2023-04-13 16:42:59 +00:00
|
|
|
screen_pixel(p,
|
2021-12-28 21:37:26 +00:00
|
|
|
layer,
|
|
|
|
x + (flipx ? 7 - h : h),
|
|
|
|
y + (flipy ? 7 - v : v),
|
|
|
|
blending[ch][color]);
|
|
|
|
}
|
|
|
|
}
|
2023-04-13 16:42:59 +00:00
|
|
|
layer->changed = 1;
|
2021-12-28 21:37:26 +00:00
|
|
|
}
|
|
|
|
|
2021-12-24 17:39:51 +00:00
|
|
|
void
|
2021-12-29 17:11:03 +00:00
|
|
|
screen_palette(UxnScreen *p, Uint8 *addr)
|
2021-12-24 17:39:51 +00:00
|
|
|
{
|
2021-12-25 21:42:34 +00:00
|
|
|
int i, shift;
|
|
|
|
for(i = 0, shift = 4; i < 4; ++i, shift ^= 4) {
|
2021-12-24 17:39:51 +00:00
|
|
|
Uint8
|
2023-04-12 21:35:48 +00:00
|
|
|
r = (addr[0 + i / 2] >> shift) & 0xf,
|
|
|
|
g = (addr[2 + i / 2] >> shift) & 0xf,
|
|
|
|
b = (addr[4 + i / 2] >> shift) & 0xf;
|
2021-12-25 21:42:34 +00:00
|
|
|
p->palette[i] = 0x0f000000 | r << 16 | g << 8 | b;
|
|
|
|
p->palette[i] |= p->palette[i] << 4;
|
2021-12-24 17:39:51 +00:00
|
|
|
}
|
2021-12-24 20:01:10 +00:00
|
|
|
p->fg.changed = p->bg.changed = 1;
|
2021-12-24 17:39:51 +00:00
|
|
|
}
|
|
|
|
|
2021-11-03 22:03:33 +00:00
|
|
|
void
|
2021-12-29 17:11:03 +00:00
|
|
|
screen_resize(UxnScreen *p, Uint16 width, Uint16 height)
|
2021-09-30 17:44:40 +00:00
|
|
|
{
|
2023-04-13 02:20:11 +00:00
|
|
|
Uint8 *bg, *fg;
|
|
|
|
Uint32 *pixels;
|
|
|
|
if(width < 0x20 || height < 0x20 || width >= 0x400 || height >= 0x400)
|
|
|
|
return;
|
|
|
|
bg = realloc(p->bg.pixels, width * height),
|
|
|
|
fg = realloc(p->fg.pixels, width * height);
|
|
|
|
pixels = realloc(p->pixels, width * height * sizeof(Uint32));
|
2023-04-13 03:00:17 +00:00
|
|
|
if(!bg || !fg || !pixels)
|
|
|
|
return;
|
|
|
|
p->bg.pixels = bg;
|
|
|
|
p->fg.pixels = fg;
|
|
|
|
p->pixels = pixels;
|
|
|
|
p->width = width;
|
|
|
|
p->height = height;
|
|
|
|
screen_fill(p, &p->bg, 0, 0, p->width, p->height, 0);
|
|
|
|
screen_fill(p, &p->fg, 0, 0, p->width, p->height, 0);
|
2021-09-30 17:44:40 +00:00
|
|
|
}
|
|
|
|
|
2021-12-24 17:46:21 +00:00
|
|
|
void
|
2023-03-27 15:38:54 +00:00
|
|
|
screen_redraw(UxnScreen *p)
|
2021-12-24 17:46:21 +00:00
|
|
|
{
|
2021-12-25 14:57:43 +00:00
|
|
|
Uint32 i, size = p->width * p->height, palette[16];
|
2022-01-04 02:04:09 +00:00
|
|
|
for(i = 0; i < 16; i++)
|
2021-12-25 14:57:43 +00:00
|
|
|
palette[i] = p->palette[(i >> 2) ? (i >> 2) : (i & 3)];
|
2023-04-12 18:58:32 +00:00
|
|
|
for(i = 0; i < size; i++)
|
|
|
|
p->pixels[i] = palette[p->fg.pixels[i] << 2 | p->bg.pixels[i]];
|
2021-12-24 20:01:10 +00:00
|
|
|
p->fg.changed = p->bg.changed = 0;
|
2021-12-24 17:46:21 +00:00
|
|
|
}
|
|
|
|
|
2021-12-28 21:37:26 +00:00
|
|
|
Uint8
|
2023-03-01 19:28:14 +00:00
|
|
|
screen_dei(Uxn *u, Uint8 addr)
|
2021-12-28 21:37:26 +00:00
|
|
|
{
|
2023-03-01 19:28:14 +00:00
|
|
|
switch(addr) {
|
|
|
|
case 0x22: return uxn_screen.width >> 8;
|
|
|
|
case 0x23: return uxn_screen.width;
|
|
|
|
case 0x24: return uxn_screen.height >> 8;
|
|
|
|
case 0x25: return uxn_screen.height;
|
|
|
|
default: return u->dev[addr];
|
2021-11-04 15:42:15 +00:00
|
|
|
}
|
|
|
|
}
|
2021-12-28 21:37:26 +00:00
|
|
|
|
|
|
|
void
|
2023-01-01 21:34:20 +00:00
|
|
|
screen_deo(Uint8 *ram, Uint8 *d, Uint8 port)
|
2021-12-28 21:37:26 +00:00
|
|
|
{
|
|
|
|
switch(port) {
|
2022-01-20 01:24:22 +00:00
|
|
|
case 0x3:
|
2023-04-13 02:20:11 +00:00
|
|
|
screen_resize(&uxn_screen, PEEK2(d + 2), uxn_screen.height);
|
2022-01-20 01:34:44 +00:00
|
|
|
break;
|
|
|
|
case 0x5:
|
2023-04-13 02:20:11 +00:00
|
|
|
screen_resize(&uxn_screen, uxn_screen.width, PEEK2(d + 4));
|
2021-12-28 21:37:26 +00:00
|
|
|
break;
|
|
|
|
case 0xe: {
|
2023-03-12 22:25:52 +00:00
|
|
|
Uint16 x = PEEK2(d + 0x8), y = PEEK2(d + 0xa);
|
2023-04-13 16:58:09 +00:00
|
|
|
Layer *layer = (d[0xe] & 0x40) ? &uxn_screen.fg : &uxn_screen.bg;
|
2023-04-12 21:35:48 +00:00
|
|
|
if(d[0xe] & 0x80) {
|
|
|
|
Uint8 xflip = d[0xe] & 0x10, yflip = d[0xe] & 0x20;
|
|
|
|
screen_fill(&uxn_screen, layer, xflip ? 0 : x, yflip ? 0 : y, xflip ? x : uxn_screen.width, yflip ? y : uxn_screen.height, d[0xe] & 0x3);
|
|
|
|
} else {
|
2023-04-13 16:42:59 +00:00
|
|
|
screen_pixel(&uxn_screen, layer, x, y, d[0xe] & 0x3);
|
|
|
|
layer->changed = 1;
|
2023-04-12 19:22:17 +00:00
|
|
|
if(d[0x6] & 0x1) POKE2(d + 0x8, x + 1); /* auto x+1 */
|
|
|
|
if(d[0x6] & 0x2) POKE2(d + 0xa, y + 1); /* auto y+1 */
|
2023-04-11 18:11:12 +00:00
|
|
|
}
|
2021-12-28 21:37:26 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 0xf: {
|
2023-03-12 22:25:52 +00:00
|
|
|
Uint16 x = PEEK2(d + 0x8), y = PEEK2(d + 0xa), dx, dy, addr = PEEK2(d + 0xc);
|
2023-04-12 21:35:48 +00:00
|
|
|
Uint8 i, n = d[0x6] >> 4, twobpp = !!(d[0xf] & 0x80);
|
2023-01-01 21:34:20 +00:00
|
|
|
Layer *layer = (d[0xf] & 0x40) ? &uxn_screen.fg : &uxn_screen.bg;
|
|
|
|
dx = (d[0x6] & 0x01) << 3;
|
|
|
|
dy = (d[0x6] & 0x02) << 2;
|
2023-03-01 05:54:52 +00:00
|
|
|
if(addr > 0x10000 - ((n + 1) << (3 + twobpp)))
|
2022-01-23 23:09:25 +00:00
|
|
|
return;
|
2022-03-06 16:20:16 +00:00
|
|
|
for(i = 0; i <= n; i++) {
|
2023-04-12 21:35:48 +00:00
|
|
|
if(!(d[0xf] & 0xf)) {
|
|
|
|
Uint16 ex = x + dy * i, ey = y + dx * i;
|
|
|
|
screen_fill(&uxn_screen, layer, ex, ey, ex + 8, ey + 8, 0);
|
|
|
|
} else {
|
2023-03-01 04:54:32 +00:00
|
|
|
screen_blit(&uxn_screen, layer, x + dy * i, y + dx * i, &ram[addr], d[0xf] & 0xf, d[0xf] & 0x10, d[0xf] & 0x20, twobpp);
|
|
|
|
addr += (d[0x6] & 0x04) << (1 + twobpp);
|
|
|
|
}
|
2022-03-06 13:36:47 +00:00
|
|
|
}
|
2023-04-12 19:22:17 +00:00
|
|
|
if(d[0x6] & 0x1) POKE2(d + 0x8, x + dx); /* auto x+8 */
|
|
|
|
if(d[0x6] & 0x2) POKE2(d + 0xa, y + dy); /* auto y+8 */
|
|
|
|
if(d[0x6] & 0x4) POKE2(d + 0xc, addr); /* auto addr+length */
|
2021-12-28 21:37:26 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2022-01-07 22:46:39 +00:00
|
|
|
}
|