uxn/emulator.c

459 lines
11 KiB
C
Raw Normal View History

2021-02-08 23:46:52 +00:00
#include <SDL2/SDL.h>
2021-02-08 22:18:01 +00:00
#include <stdio.h>
/*
Copyright (c) 2021 Devine Lu Linvega
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-02-08 23:46:52 +00:00
#include "uxn.h"
2021-02-24 20:20:28 +00:00
#define MODE 2
#define HOR 64 / MODE
#define VER 48 / MODE
2021-02-08 23:46:52 +00:00
#define PAD 2
2021-02-18 23:11:02 +00:00
#define RES (HOR * VER * 16)
2021-02-08 23:46:52 +00:00
2021-02-26 00:03:45 +00:00
typedef struct {
Uint16 x1, y1, x2, y2;
} Rect2d;
2021-02-18 23:11:02 +00:00
typedef struct {
2021-02-19 02:16:39 +00:00
Uint8 reqdraw;
2021-02-18 23:11:02 +00:00
Uint8 bg[RES], fg[RES];
2021-02-26 00:03:45 +00:00
Rect2d bounds;
2021-02-18 23:11:02 +00:00
} Screen;
2021-02-08 23:46:52 +00:00
int WIDTH = 8 * HOR + 8 * PAD * 2;
2021-02-18 23:11:02 +00:00
int HEIGHT = 8 * VER + 8 * PAD * 2;
2021-02-24 20:20:28 +00:00
int FPS = 30, GUIDES = 1, ZOOM = MODE;
2021-02-08 23:46:52 +00:00
Uint32 theme[] = {
0x000000,
0xFFFFFF,
0x72DEC2,
0x666666,
0x222222};
2021-02-15 18:12:44 +00:00
Uint8 icons[][8] = {
{0x00, 0x3c, 0x46, 0x4a, 0x52, 0x62, 0x3c, 0x00},
{0x00, 0x18, 0x28, 0x08, 0x08, 0x08, 0x3e, 0x00},
{0x00, 0x3c, 0x42, 0x02, 0x3c, 0x40, 0x7e, 0x00},
{0x00, 0x3c, 0x42, 0x1c, 0x02, 0x42, 0x3c, 0x00},
{0x00, 0x08, 0x18, 0x28, 0x48, 0x7e, 0x08, 0x00},
{0x00, 0x7e, 0x40, 0x7c, 0x02, 0x42, 0x3c, 0x00},
{0x00, 0x3c, 0x40, 0x7c, 0x42, 0x42, 0x3c, 0x00},
{0x00, 0x7e, 0x02, 0x04, 0x08, 0x10, 0x10, 0x00},
{0x00, 0x3c, 0x42, 0x3c, 0x42, 0x42, 0x3c, 0x00},
{0x00, 0x3c, 0x42, 0x42, 0x3e, 0x02, 0x3c, 0x00},
{0x00, 0x3c, 0x42, 0x42, 0x7e, 0x42, 0x42, 0x00},
{0x00, 0x7c, 0x42, 0x7c, 0x42, 0x42, 0x7c, 0x00},
{0x00, 0x3c, 0x42, 0x40, 0x40, 0x42, 0x3c, 0x00},
{0x00, 0x78, 0x44, 0x42, 0x42, 0x44, 0x78, 0x00},
{0x00, 0x7e, 0x40, 0x7c, 0x40, 0x40, 0x7e, 0x00},
{0x00, 0x7e, 0x40, 0x40, 0x7c, 0x40, 0x40, 0x00}};
2021-02-08 23:46:52 +00:00
SDL_Window *gWindow;
SDL_Renderer *gRenderer;
SDL_Texture *gTexture;
Uint32 *pixels;
2021-02-18 23:11:02 +00:00
Screen screen;
2021-02-19 02:16:39 +00:00
Device *devconsole, *devscreen, *devmouse, *devkey, *devsprite, *devcontroller;
#pragma mark - Helpers
int
clamp(int val, int min, int max)
{
return (val >= min) ? (val <= max) ? val : max : min;
}
2021-02-18 23:11:02 +00:00
#pragma mark - Paint
void
paintpixel(Uint8 *dst, Uint16 x, Uint16 y, Uint8 color)
{
2021-02-26 00:03:45 +00:00
Uint16 row = (y % 8) + ((x / 8 + y / 8 * HOR) * 16), col = 7 - (x % 8);
2021-02-18 23:11:02 +00:00
if(x >= HOR * 8 || y >= VER * 8 || row > RES - 8)
return;
if(color == 0 || color == 2)
2021-02-26 00:03:45 +00:00
dst[row] &= ~(1UL << col);
2021-02-18 23:11:02 +00:00
else
2021-02-26 00:03:45 +00:00
dst[row] |= 1UL << col;
2021-02-18 23:11:02 +00:00
if(color == 0 || color == 1)
2021-02-26 00:03:45 +00:00
dst[row + 8] &= ~(1UL << col);
2021-02-18 23:11:02 +00:00
else
2021-02-26 00:03:45 +00:00
dst[row + 8] |= 1UL << col;
2021-02-18 23:11:02 +00:00
}
void
2021-02-19 02:16:39 +00:00
paintchr(Uint8 *dst, Uint16 x, Uint16 y, Uint8 *sprite)
{
Uint16 v, h;
for(v = 0; v < 8; v++)
for(h = 0; h < 8; h++) {
2021-02-20 22:07:20 +00:00
Uint8 ch1 = ((sprite[v] >> (7 - h)) & 0x1);
Uint8 ch2 = (((sprite[v + 8] >> (7 - h)) & 0x1) << 1);
2021-02-19 02:16:39 +00:00
paintpixel(dst, x + h, y + v, ch1 + ch2);
}
}
void
2021-02-22 00:52:51 +00:00
painticn(Uint8 *dst, Uint16 x, Uint16 y, Uint8 *sprite, Uint8 blend)
2021-02-18 23:11:02 +00:00
{
Uint16 v, h;
for(v = 0; v < 8; v++)
2021-02-19 02:16:39 +00:00
for(h = 0; h < 8; h++) {
Uint8 ch1 = ((sprite[v] >> (7 - h)) & 0x1);
2021-02-24 00:27:20 +00:00
if(ch1 == 0 && (blend == 0x05 || blend == 0x0a || blend == 0x0f))
continue;
2021-02-22 00:52:51 +00:00
paintpixel(dst, x + h, y + v, ch1 ? blend % 4 : blend / 4);
2021-02-19 02:16:39 +00:00
}
2021-02-18 23:11:02 +00:00
}
2021-02-10 01:22:52 +00:00
2021-02-14 18:22:42 +00:00
#pragma mark - Helpers
2021-02-08 23:46:52 +00:00
void
clear(Uint32 *dst)
{
int v, h;
for(v = 0; v < HEIGHT; v++)
for(h = 0; h < WIDTH; h++)
dst[v * WIDTH + h] = theme[0];
}
2021-02-09 18:58:06 +00:00
void
2021-02-26 00:03:45 +00:00
drawpixel(Uint32 *dst, Uint16 x, Uint16 y, Uint8 color)
2021-02-09 18:58:06 +00:00
{
2021-02-26 00:03:45 +00:00
if(x >= screen.bounds.x1 && x <= screen.bounds.x2 && y >= screen.bounds.x1 && y <= screen.bounds.y2)
2021-02-15 01:00:17 +00:00
dst[y * WIDTH + x] = theme[color];
2021-02-14 18:22:42 +00:00
}
void
2021-02-26 00:03:45 +00:00
drawchr(Uint32 *dst, Uint16 x, Uint16 y, Uint8 *sprite, Uint8 alpha)
2021-02-14 18:22:42 +00:00
{
2021-02-26 00:03:45 +00:00
Uint8 v, h;
2021-02-14 18:22:42 +00:00
for(v = 0; v < 8; v++)
for(h = 0; h < 8; h++) {
2021-02-18 23:11:02 +00:00
Uint8 ch1 = ((sprite[v] >> h) & 0x1);
Uint8 ch2 = (((sprite[v + 8] >> h) & 0x1) << 1);
if(!alpha || (alpha && ch1 + ch2 != 0))
2021-02-26 00:03:45 +00:00
drawpixel(dst, x + 7 - h, y + v, ch1 + ch2);
2021-02-14 18:22:42 +00:00
}
}
void
2021-02-26 00:03:45 +00:00
drawicn(Uint32 *dst, Uint16 x, Uint16 y, Uint8 *sprite, Uint8 fg, Uint8 bg)
2021-02-14 18:22:42 +00:00
{
2021-02-26 00:03:45 +00:00
Uint8 v, h;
2021-02-14 18:22:42 +00:00
for(v = 0; v < 8; v++)
for(h = 0; h < 8; h++) {
2021-02-26 00:03:45 +00:00
Uint8 ch1 = (sprite[v] >> (7 - h)) & 0x1;
drawpixel(dst, x + h, y + v, ch1 ? fg : bg);
2021-02-14 18:22:42 +00:00
}
}
#pragma mark - Core
int
error(char *msg, const char *err)
{
printf("Error %s: %s\n", msg, err);
return 0;
2021-02-09 18:58:06 +00:00
}
2021-02-19 19:48:40 +00:00
void
loadtheme(Uint8 *addr)
{
Uint8 r, g, b;
r = *(addr + 0) >> 4 & 0xf, g = *(addr + 2) >> 4 & 0xf, b = *(addr + 4) >> 4 & 0xf;
theme[0] = ((r + (r << 4)) << 16) + ((g + (g << 4)) << 8) + (b + (b << 4));
r = *(addr + 0) & 0xf, g = *(addr + 2) & 0xf, b = *(addr + 4) & 0xf;
theme[1] = ((r + (r << 4)) << 16) + ((g + (g << 4)) << 8) + (b + (b << 4));
r = *(addr + 1) >> 4 & 0xf, g = *(addr + 3) >> 4 & 0xf, b = *(addr + 5) >> 4 & 0xf;
theme[2] = ((r + (r << 4)) << 16) + ((g + (g << 4)) << 8) + (b + (b << 4));
r = *(addr + 1) & 0xf, g = *(addr + 3) & 0xf, b = *(addr + 5) & 0xf;
theme[3] = ((r + (r << 4)) << 16) + ((g + (g << 4)) << 8) + (b + (b << 4));
}
2021-02-08 23:46:52 +00:00
void
2021-02-15 18:12:44 +00:00
drawdebugger(Uint32 *dst, Uxn *u)
{
2021-02-26 00:03:45 +00:00
Uint8 i, x, y, b;
2021-02-18 23:11:02 +00:00
for(i = 0; i < 0x10; ++i) { /* memory */
2021-02-26 00:03:45 +00:00
x = ((i % 8) * 3 + 3) * 8, y = screen.bounds.x1 + 8 + i / 8 * 8, b = u->wst.dat[i];
drawicn(dst, x, y, icons[(b >> 4) & 0xf], 1 + (u->wst.ptr == i), 0);
drawicn(dst, x + 8, y, icons[b & 0xf], 1 + (u->wst.ptr == i), 0);
2021-02-15 18:12:44 +00:00
}
}
void
redraw(Uint32 *dst, Uxn *u)
2021-02-08 23:46:52 +00:00
{
2021-02-18 23:11:02 +00:00
int x, y;
for(y = 0; y < VER; ++y)
for(x = 0; x < HOR; ++x) {
int key = (y * HOR + x) * 16;
drawchr(dst, (x + PAD) * 8, (y + PAD) * 8, &screen.bg[key], 0);
drawchr(dst, (x + PAD) * 8, (y + PAD) * 8, &screen.fg[key], 1);
}
2021-02-15 18:12:44 +00:00
if(GUIDES)
drawdebugger(dst, u);
2021-02-08 23:46:52 +00:00
SDL_UpdateTexture(gTexture, NULL, dst, WIDTH * sizeof(Uint32));
SDL_RenderClear(gRenderer);
SDL_RenderCopy(gRenderer, gTexture, NULL, NULL);
SDL_RenderPresent(gRenderer);
2021-02-19 02:16:39 +00:00
screen.reqdraw = 0;
2021-02-08 23:46:52 +00:00
}
void
quit(void)
{
free(pixels);
SDL_DestroyTexture(gTexture);
gTexture = NULL;
SDL_DestroyRenderer(gRenderer);
gRenderer = NULL;
SDL_DestroyWindow(gWindow);
gWindow = NULL;
SDL_Quit();
exit(0);
}
int
init(void)
{
if(SDL_Init(SDL_INIT_VIDEO) < 0)
return error("Init", SDL_GetError());
gWindow = SDL_CreateWindow("Uxn", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, WIDTH * ZOOM, HEIGHT * ZOOM, SDL_WINDOW_SHOWN);
if(gWindow == NULL)
return error("Window", SDL_GetError());
gRenderer = SDL_CreateRenderer(gWindow, -1, 0);
if(gRenderer == NULL)
return error("Renderer", SDL_GetError());
gTexture = SDL_CreateTexture(gRenderer, SDL_PIXELFORMAT_ARGB8888, SDL_TEXTUREACCESS_STATIC, WIDTH, HEIGHT);
if(gTexture == NULL)
return error("Texture", SDL_GetError());
if(!(pixels = (Uint32 *)malloc(WIDTH * HEIGHT * sizeof(Uint32))))
return error("Pixels", "Failed to allocate memory");
clear(pixels);
2021-02-18 23:11:02 +00:00
SDL_ShowCursor(SDL_DISABLE);
2021-02-26 00:03:45 +00:00
screen.bounds.x1 = PAD * 8;
screen.bounds.x2 = WIDTH - PAD * 8 - 1;
screen.bounds.y1 = PAD * 8;
screen.bounds.y2 = HEIGHT - PAD * 8 - 1;
2021-02-08 23:46:52 +00:00
return 1;
}
void
domouse(SDL_Event *event)
{
2021-02-24 19:11:19 +00:00
Uint8 flag = 0x00;
2021-02-26 00:03:45 +00:00
Uint16 x = clamp(event->motion.x / ZOOM - PAD * 8, 0, HOR * 8 - 1);
Uint16 y = clamp(event->motion.y / ZOOM - PAD * 8, 0, VER * 8 - 1);
2021-02-24 20:20:28 +00:00
devmouse->mem[0] = (x >> 8) & 0xff;
2021-02-10 19:06:36 +00:00
devmouse->mem[1] = x & 0xff;
devmouse->mem[2] = (y >> 8) & 0xff;
devmouse->mem[3] = y & 0xff;
2021-02-16 23:34:55 +00:00
devmouse->mem[5] = 0x00;
2021-02-24 19:11:19 +00:00
switch(event->button.button) {
case SDL_BUTTON_LEFT: flag = 0x01; break;
case SDL_BUTTON_RIGHT: flag = 0x10; break;
}
2021-02-10 01:22:52 +00:00
switch(event->type) {
2021-02-20 22:07:20 +00:00
case SDL_MOUSEBUTTONUP:
2021-02-24 19:11:19 +00:00
setflag(&devmouse->mem[4], flag, 0);
2021-02-20 22:07:20 +00:00
break;
case SDL_MOUSEBUTTONDOWN:
2021-02-24 19:11:19 +00:00
setflag(&devmouse->mem[4], flag, 1);
if(flag == 0x01 && getflag(&devmouse->mem[4], 0x10))
devmouse->mem[5] = 0x01;
if(flag == 0x10 && getflag(&devmouse->mem[4], 0x01))
devmouse->mem[5] = 0x10;
2021-02-20 22:07:20 +00:00
break;
2021-02-10 01:22:52 +00:00
}
2021-02-08 23:46:52 +00:00
}
2021-02-25 00:40:42 +00:00
void
dotext(SDL_Event *event)
{
int i;
if(SDL_GetModState() & KMOD_LCTRL || SDL_GetModState() & KMOD_RCTRL)
return;
for(i = 0; i < SDL_TEXTINPUTEVENT_TEXT_SIZE; ++i) {
char c = event->text.text[i];
if(c < ' ' || c > '~')
break;
devkey->mem[0] = c;
}
}
2021-02-14 19:51:36 +00:00
void
doctrl(SDL_Event *event, int z)
{
Uint8 flag = 0x00;
2021-02-19 02:34:26 +00:00
if(z && event->key.keysym.sym == SDLK_h)
GUIDES = !GUIDES;
2021-02-14 19:51:36 +00:00
if(SDL_GetModState() & KMOD_LCTRL || SDL_GetModState() & KMOD_RCTRL)
flag = 0x01;
if(SDL_GetModState() & KMOD_LALT || SDL_GetModState() & KMOD_RALT)
flag = 0x02;
switch(event->key.keysym.sym) {
2021-02-26 00:03:45 +00:00
case SDLK_BACKSPACE:
flag = 0x04;
if(z) devkey->mem[0] = 0x08;
break;
case SDLK_RETURN:
flag = 0x08;
if(z) devkey->mem[0] = 0x0d;
break;
2021-02-14 19:51:36 +00:00
case SDLK_UP: flag = 0x10; break;
case SDLK_DOWN: flag = 0x20; break;
case SDLK_LEFT: flag = 0x40; break;
case SDLK_RIGHT: flag = 0x80; break;
}
2021-02-15 03:43:33 +00:00
setflag(&devcontroller->mem[0], flag, z);
2021-02-09 05:59:46 +00:00
}
#pragma mark - Devices
2021-02-09 18:58:06 +00:00
Uint8
2021-02-15 03:43:33 +00:00
defaultrw(Device *d, Memory *m, Uint8 b)
2021-02-09 05:59:46 +00:00
{
2021-02-15 01:00:17 +00:00
(void)m;
2021-02-15 03:43:33 +00:00
return d->mem[b];
2021-02-09 05:59:46 +00:00
}
2021-02-09 18:58:06 +00:00
Uint8
2021-02-14 18:22:42 +00:00
consolew(Device *d, Memory *m, Uint8 b)
2021-02-09 05:59:46 +00:00
{
2021-02-09 18:58:06 +00:00
if(b)
printf("%c", b);
fflush(stdout);
2021-02-15 01:00:17 +00:00
(void)d;
(void)m;
2021-02-09 18:58:06 +00:00
return 0;
2021-02-09 18:06:55 +00:00
}
2021-02-09 18:58:06 +00:00
Uint8
2021-02-15 03:43:33 +00:00
screenr(Device *d, Memory *m, Uint8 b)
2021-02-09 18:06:55 +00:00
{
2021-02-22 20:07:36 +00:00
loadtheme(m->dat + 0xfff0);
2021-02-12 02:48:45 +00:00
switch(b) {
2021-02-20 23:00:34 +00:00
case 0: return (HOR * 8 >> 8) & 0xff;
case 1: return HOR * 8 & 0xff;
case 2: return (VER * 8 >> 8) & 0xff;
case 3: return VER * 8 & 0xff;
2021-02-12 02:48:45 +00:00
}
2021-02-15 03:43:33 +00:00
(void)m;
2021-02-10 19:06:36 +00:00
return d->mem[b];
2021-02-09 18:06:55 +00:00
}
2021-02-09 18:58:06 +00:00
Uint8
2021-02-15 03:43:33 +00:00
screenw(Device *d, Memory *m, Uint8 b)
2021-02-09 18:06:55 +00:00
{
2021-02-15 18:12:44 +00:00
d->mem[d->ptr++] = b;
2021-02-20 23:00:34 +00:00
if(d->ptr > 4) {
Uint16 x = (d->mem[2] << 8) + d->mem[3];
Uint16 y = (d->mem[0] << 8) + d->mem[1];
Uint8 clr = d->mem[4] & 0xf;
Uint8 layer = d->mem[4] >> 4 & 0xf;
paintpixel(layer ? screen.fg : screen.bg, x, y, clr);
screen.reqdraw = 1;
2021-02-15 18:12:44 +00:00
d->ptr = 0;
2021-02-09 18:58:06 +00:00
}
2021-02-15 03:43:33 +00:00
(void)m;
2021-02-09 18:58:06 +00:00
return 0;
2021-02-08 23:46:52 +00:00
}
2021-02-10 01:22:52 +00:00
Uint8
2021-02-15 03:43:33 +00:00
spritew(Device *d, Memory *m, Uint8 b)
2021-02-18 23:11:02 +00:00
{
d->mem[d->ptr++] = b;
if(d->ptr == 7) {
Uint16 x = (d->mem[2] << 8) + d->mem[3];
Uint16 y = (d->mem[0] << 8) + d->mem[1];
Uint16 a = (d->mem[4] << 8) + d->mem[5];
2021-02-22 00:52:51 +00:00
Uint8 source = d->mem[6] >> 4 & 0xf;
Uint8 *layer = source % 2 ? screen.fg : screen.bg;
if(source / 2)
paintchr(layer, x, y, &m->dat[a]);
2021-02-19 02:16:39 +00:00
else
2021-02-22 00:52:51 +00:00
painticn(layer, x, y, &m->dat[a], d->mem[6] & 0xf);
2021-02-19 02:16:39 +00:00
screen.reqdraw = 1;
2021-02-15 18:12:44 +00:00
d->ptr = 0;
2021-02-14 18:22:42 +00:00
}
return 0;
}
2021-02-10 01:22:52 +00:00
#pragma mark - Generics
2021-02-08 22:18:01 +00:00
int
2021-02-08 23:46:52 +00:00
start(Uxn *u)
2021-02-08 22:18:01 +00:00
{
2021-02-08 23:46:52 +00:00
int ticknext = 0;
evaluxn(u, u->vreset);
2021-02-19 19:48:40 +00:00
loadtheme(u->ram.dat + 0xfff0);
2021-02-19 02:16:39 +00:00
if(screen.reqdraw)
2021-02-16 23:34:55 +00:00
redraw(pixels, u);
2021-02-08 23:46:52 +00:00
while(1) {
int tick = SDL_GetTicks();
SDL_Event event;
if(tick < ticknext)
SDL_Delay(ticknext - tick);
ticknext = tick + (1000 / FPS);
2021-02-25 00:40:42 +00:00
devkey->mem[0] = 0x00; /* TODO: cleanup */
2021-02-08 23:46:52 +00:00
while(SDL_PollEvent(&event) != 0) {
switch(event.type) {
case SDL_QUIT: quit(); break;
case SDL_MOUSEBUTTONUP:
case SDL_MOUSEBUTTONDOWN:
case SDL_MOUSEMOTION: domouse(&event); break;
2021-02-25 00:40:42 +00:00
case SDL_TEXTINPUT: dotext(&event); break;
2021-02-14 19:51:36 +00:00
case SDL_KEYDOWN: doctrl(&event, 1); break;
case SDL_KEYUP: doctrl(&event, 0); break;
2021-02-08 23:46:52 +00:00
case SDL_WINDOWEVENT:
if(event.window.event == SDL_WINDOWEVENT_EXPOSED)
2021-02-15 18:12:44 +00:00
redraw(pixels, u);
2021-02-08 23:46:52 +00:00
break;
}
}
2021-02-14 19:51:36 +00:00
evaluxn(u, u->vframe);
2021-02-19 02:16:39 +00:00
if(screen.reqdraw)
2021-02-15 18:12:44 +00:00
redraw(pixels, u);
2021-02-08 23:46:52 +00:00
}
}
int
main(int argc, char **argv)
{
2021-02-09 18:58:06 +00:00
Uxn u;
2021-02-08 22:18:01 +00:00
if(argc < 2)
2021-02-08 23:46:52 +00:00
return error("Input", "Missing");
if(!bootuxn(&u))
return error("Boot", "Failed");
if(!loaduxn(&u, argv[1]))
return error("Load", "Failed");
if(!init())
return error("Init", "Failed");
2021-02-15 03:43:33 +00:00
devconsole = portuxn(&u, "console", defaultrw, consolew);
devscreen = portuxn(&u, "screen", screenr, screenw);
2021-02-19 02:34:26 +00:00
devsprite = portuxn(&u, "sprite", screenr, spritew);
2021-02-15 03:43:33 +00:00
devcontroller = portuxn(&u, "controller", defaultrw, defaultrw);
devkey = portuxn(&u, "key", defaultrw, consolew);
devmouse = portuxn(&u, "mouse", defaultrw, defaultrw);
2021-02-09 05:59:46 +00:00
2021-02-08 23:46:52 +00:00
start(&u);
quit();
2021-02-08 22:18:01 +00:00
return 0;
}