2021-02-08 17:18:01 -05:00
|
|
|
#include <stdio.h>
|
2021-06-26 18:52:44 -04:00
|
|
|
#include <unistd.h>
|
2021-03-26 17:01:51 -04:00
|
|
|
#include <time.h>
|
2021-05-12 21:28:45 -04:00
|
|
|
#include "uxn.h"
|
2021-06-27 13:53:54 -04:00
|
|
|
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wpedantic"
|
|
|
|
#include <SDL.h>
|
2021-05-12 21:28:45 -04:00
|
|
|
#include "devices/ppu.h"
|
|
|
|
#include "devices/apu.h"
|
2021-06-27 13:53:54 -04:00
|
|
|
#pragma GCC diagnostic pop
|
2021-02-08 17:18:01 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
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-08-04 23:30:57 -04:00
|
|
|
#define PAD 4
|
|
|
|
#define POLYPHONY 4
|
|
|
|
#define BENCH 0
|
|
|
|
|
2021-04-08 16:14:40 -04:00
|
|
|
static SDL_AudioDeviceID audio_id;
|
2021-03-16 12:01:47 -04:00
|
|
|
static SDL_Window *gWindow;
|
2021-07-31 14:46:27 -04:00
|
|
|
static SDL_Surface *winSurface, *idxSurface, *rgbaSurface;
|
2021-05-19 18:17:58 -04:00
|
|
|
static SDL_Rect gRect;
|
2021-04-07 23:30:10 -04:00
|
|
|
static Ppu ppu;
|
2021-04-25 10:12:45 -04:00
|
|
|
static Apu apu[POLYPHONY];
|
2021-07-28 23:20:57 -04:00
|
|
|
static Device *devsystem, *devscreen, *devmouse, *devctrl, *devaudio0, *devconsole;
|
2021-08-20 17:45:39 -04:00
|
|
|
static Uint32 stdin_event, audio0_event;
|
2021-02-18 21:16:39 -05:00
|
|
|
|
2021-08-04 23:30:57 -04:00
|
|
|
static Uint8 zoom = 1, reqdraw = 0;
|
2021-04-09 10:30:45 -04:00
|
|
|
|
2021-07-30 17:38:08 -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-06-28 17:42:36 -04:00
|
|
|
static int
|
2021-04-08 19:47:38 -04:00
|
|
|
clamp(int val, int min, int max)
|
|
|
|
{
|
|
|
|
return (val >= min) ? (val <= max) ? val : max : min;
|
|
|
|
}
|
2021-02-14 13:22:42 -05:00
|
|
|
|
2021-06-28 17:42:36 -04:00
|
|
|
static int
|
2021-02-14 13:22:42 -05:00
|
|
|
error(char *msg, const char *err)
|
|
|
|
{
|
2021-07-24 20:09:46 -04:00
|
|
|
fprintf(stderr, "%s: %s\n", msg, err);
|
2021-02-14 13:22:42 -05:00
|
|
|
return 0;
|
2021-02-09 13:58:06 -05:00
|
|
|
}
|
|
|
|
|
2021-04-08 16:14:40 -04:00
|
|
|
static void
|
|
|
|
audio_callback(void *u, Uint8 *stream, int len)
|
|
|
|
{
|
2021-07-17 05:13:21 -04:00
|
|
|
int i, running = 0;
|
2021-04-25 10:12:45 -04:00
|
|
|
Sint16 *samples = (Sint16 *)stream;
|
|
|
|
SDL_memset(stream, 0, len);
|
|
|
|
for(i = 0; i < POLYPHONY; ++i)
|
2021-07-17 05:13:21 -04:00
|
|
|
running += apu_render(&apu[i], samples, samples + len / 2);
|
|
|
|
if(!running)
|
|
|
|
SDL_PauseAudioDevice(audio_id, 1);
|
2021-04-25 10:12:45 -04:00
|
|
|
(void)u;
|
2021-04-08 16:14:40 -04:00
|
|
|
}
|
|
|
|
|
2021-07-30 17:38:08 -04:00
|
|
|
static void
|
|
|
|
inspect(Ppu *p, Uint8 *stack, Uint8 wptr, Uint8 rptr, Uint8 *memory)
|
|
|
|
{
|
|
|
|
Uint8 i, x, y, b;
|
|
|
|
for(i = 0; i < 0x20; ++i) { /* stack */
|
|
|
|
x = ((i % 8) * 3 + 1) * 8, y = (i / 8 + 1) * 8, b = stack[i];
|
2021-08-01 14:33:43 -04:00
|
|
|
ppu_1bpp(p, 1, x, y, font[(b >> 4) & 0xf], 1 + (wptr == i) * 0x7, 0, 0);
|
|
|
|
ppu_1bpp(p, 1, x + 8, y, font[b & 0xf], 1 + (wptr == i) * 0x7, 0, 0);
|
2021-07-30 17:38:08 -04:00
|
|
|
}
|
|
|
|
/* return pointer */
|
2021-08-01 14:33:43 -04:00
|
|
|
ppu_1bpp(p, 1, 0x8, y + 0x10, font[(rptr >> 4) & 0xf], 0x2, 0, 0);
|
|
|
|
ppu_1bpp(p, 1, 0x10, y + 0x10, font[rptr & 0xf], 0x2, 0, 0);
|
2021-07-30 17:38:08 -04:00
|
|
|
for(i = 0; i < 0x20; ++i) { /* memory */
|
|
|
|
x = ((i % 8) * 3 + 1) * 8, y = 0x38 + (i / 8 + 1) * 8, b = memory[i];
|
2021-08-01 14:33:43 -04:00
|
|
|
ppu_1bpp(p, 1, x, y, font[(b >> 4) & 0xf], 3, 0, 0);
|
|
|
|
ppu_1bpp(p, 1, x + 8, y, font[b & 0xf], 3, 0, 0);
|
2021-07-30 17:38:08 -04:00
|
|
|
}
|
|
|
|
for(x = 0; x < 0x10; ++x) { /* guides */
|
2021-08-01 14:33:43 -04:00
|
|
|
ppu_pixel(p, 1, x, p->height / 2, 2);
|
|
|
|
ppu_pixel(p, 1, p->width - x, p->height / 2, 2);
|
|
|
|
ppu_pixel(p, 1, p->width / 2, p->height - x, 2);
|
|
|
|
ppu_pixel(p, 1, p->width / 2, x, 2);
|
|
|
|
ppu_pixel(p, 1, p->width / 2 - 0x10 / 2 + x, p->height / 2, 2);
|
|
|
|
ppu_pixel(p, 1, p->width / 2, p->height / 2 - 0x10 / 2 + x, 2);
|
2021-07-30 17:38:08 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-28 17:42:36 -04:00
|
|
|
static void
|
2021-05-19 18:17:58 -04:00
|
|
|
redraw(Uxn *u)
|
2021-02-08 18:46:52 -05:00
|
|
|
{
|
2021-07-28 23:20:57 -04:00
|
|
|
if(devsystem->dat[0xe])
|
2021-07-05 12:06:32 -04:00
|
|
|
inspect(&ppu, u->wst.dat, u->wst.ptr, u->rst.ptr, u->ram.dat);
|
2021-08-28 16:44:53 -04:00
|
|
|
if(rgbaSurface == NULL)
|
|
|
|
SDL_BlitScaled(idxSurface, NULL, winSurface, &gRect);
|
|
|
|
else if(zoom == 1)
|
|
|
|
SDL_BlitSurface(idxSurface, NULL, winSurface, &gRect);
|
|
|
|
else {
|
|
|
|
SDL_BlitSurface(idxSurface, NULL, rgbaSurface, NULL);
|
|
|
|
SDL_BlitScaled(rgbaSurface, NULL, winSurface, &gRect);
|
|
|
|
}
|
2021-07-31 14:46:27 -04:00
|
|
|
SDL_UpdateWindowSurface(gWindow);
|
2021-04-09 10:30:45 -04:00
|
|
|
reqdraw = 0;
|
2021-02-08 18:46:52 -05:00
|
|
|
}
|
|
|
|
|
2021-06-28 17:42:36 -04:00
|
|
|
static void
|
2021-03-24 12:39:19 -04:00
|
|
|
toggledebug(Uxn *u)
|
|
|
|
{
|
2021-07-28 23:20:57 -04:00
|
|
|
devsystem->dat[0xe] = !devsystem->dat[0xe];
|
2021-05-19 18:17:58 -04:00
|
|
|
redraw(u);
|
2021-03-24 12:39:19 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 17:42:36 -04:00
|
|
|
static void
|
2021-03-24 12:39:19 -04:00
|
|
|
togglezoom(Uxn *u)
|
|
|
|
{
|
2021-04-09 10:30:45 -04:00
|
|
|
zoom = zoom == 3 ? 1 : zoom + 1;
|
2021-05-19 18:17:58 -04:00
|
|
|
SDL_SetWindowSize(gWindow, (ppu.width + PAD * 2) * zoom, (ppu.height + PAD * 2) * zoom);
|
2021-07-31 14:46:27 -04:00
|
|
|
winSurface = SDL_GetWindowSurface(gWindow);
|
|
|
|
gRect.x = zoom * PAD;
|
|
|
|
gRect.y = zoom * PAD;
|
|
|
|
gRect.w = zoom * ppu.width;
|
|
|
|
gRect.h = zoom * ppu.height;
|
2021-05-19 18:17:58 -04:00
|
|
|
redraw(u);
|
2021-03-24 12:39:19 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 17:42:36 -04:00
|
|
|
static void
|
2021-06-11 10:03:48 -04:00
|
|
|
screencapture(void)
|
2021-06-11 04:18:52 -04:00
|
|
|
{
|
2021-06-29 02:11:59 -04:00
|
|
|
time_t t = time(NULL);
|
|
|
|
char fname[64];
|
|
|
|
strftime(fname, sizeof(fname), "screenshot-%Y%m%d-%H%M%S.bmp", localtime(&t));
|
2021-07-31 14:46:27 -04:00
|
|
|
SDL_SaveBMP(winSurface, fname);
|
2021-06-29 02:11:59 -04:00
|
|
|
fprintf(stderr, "Saved %s\n", fname);
|
2021-06-11 04:18:52 -04:00
|
|
|
}
|
|
|
|
|
2021-06-28 17:42:36 -04:00
|
|
|
static void
|
2021-02-08 18:46:52 -05:00
|
|
|
quit(void)
|
|
|
|
{
|
2021-04-08 19:30:44 -04:00
|
|
|
SDL_UnlockAudioDevice(audio_id);
|
2021-07-31 14:46:27 -04:00
|
|
|
SDL_FreeSurface(winSurface);
|
|
|
|
SDL_FreeSurface(idxSurface);
|
|
|
|
if(rgbaSurface) SDL_FreeSurface(rgbaSurface);
|
2021-02-08 18:46:52 -05:00
|
|
|
SDL_DestroyWindow(gWindow);
|
|
|
|
SDL_Quit();
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2021-06-28 17:42:36 -04:00
|
|
|
static int
|
2021-04-25 10:12:45 -04:00
|
|
|
init(void)
|
2021-02-08 18:46:52 -05:00
|
|
|
{
|
2021-04-08 16:14:40 -04:00
|
|
|
SDL_AudioSpec as;
|
2021-08-03 18:25:13 -04:00
|
|
|
SDL_zero(as);
|
|
|
|
as.freq = SAMPLE_FREQUENCY;
|
|
|
|
as.format = AUDIO_S16;
|
|
|
|
as.channels = 2;
|
|
|
|
as.callback = audio_callback;
|
|
|
|
as.samples = 512;
|
|
|
|
as.userdata = NULL;
|
2021-08-01 14:33:43 -04:00
|
|
|
if(!ppu_init(&ppu, 64, 40))
|
2021-07-24 20:09:46 -04:00
|
|
|
return error("ppu", "Init failure");
|
2021-08-03 18:25:13 -04:00
|
|
|
if(SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) < 0) {
|
|
|
|
error("sdl", SDL_GetError());
|
|
|
|
if(SDL_Init(SDL_INIT_VIDEO) < 0)
|
|
|
|
return error("sdl", SDL_GetError());
|
|
|
|
} else {
|
|
|
|
audio_id = SDL_OpenAudioDevice(NULL, 0, &as, NULL, 0);
|
|
|
|
if(!audio_id)
|
|
|
|
error("sdl_audio", SDL_GetError());
|
|
|
|
}
|
2021-05-19 18:17:58 -04:00
|
|
|
gWindow = SDL_CreateWindow("Uxn", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, (ppu.width + PAD * 2) * zoom, (ppu.height + PAD * 2) * zoom, SDL_WINDOW_SHOWN);
|
2021-02-08 18:46:52 -05:00
|
|
|
if(gWindow == NULL)
|
2021-07-24 20:09:46 -04:00
|
|
|
return error("sdl_window", SDL_GetError());
|
2021-07-31 14:46:27 -04:00
|
|
|
winSurface = SDL_GetWindowSurface(gWindow);
|
|
|
|
if(winSurface == NULL)
|
|
|
|
return error("sdl_surface win", SDL_GetError());
|
|
|
|
idxSurface = SDL_CreateRGBSurfaceWithFormat(0, ppu.width, ppu.height, 8, SDL_PIXELFORMAT_INDEX8);
|
|
|
|
if(idxSurface == NULL || SDL_SetSurfaceBlendMode(idxSurface, SDL_BLENDMODE_NONE))
|
|
|
|
return error("sdl_surface idx", SDL_GetError());
|
|
|
|
if(SDL_MUSTLOCK(idxSurface) == SDL_TRUE)
|
|
|
|
return error("sdl_surface idx", "demands locking");
|
|
|
|
gRect.x = zoom * PAD;
|
|
|
|
gRect.y = zoom * PAD;
|
|
|
|
gRect.w = zoom * ppu.width;
|
|
|
|
gRect.h = 2 * ppu.height; /* force non-1:1 scaling for BlitScaled test */
|
|
|
|
if(SDL_BlitScaled(idxSurface, NULL, winSurface, &gRect) < 0) {
|
|
|
|
rgbaSurface = SDL_CreateRGBSurfaceWithFormat(0, ppu.width, ppu.height, 32, SDL_PIXELFORMAT_RGB24);
|
|
|
|
if(rgbaSurface == NULL || SDL_SetSurfaceBlendMode(rgbaSurface, SDL_BLENDMODE_NONE))
|
|
|
|
return error("sdl_surface rgba", SDL_GetError());
|
|
|
|
}
|
|
|
|
gRect.h = zoom * ppu.height;
|
|
|
|
ppu.pixels = idxSurface->pixels;
|
2021-06-20 17:14:06 -04:00
|
|
|
SDL_StartTextInput();
|
2021-02-18 18:11:02 -05:00
|
|
|
SDL_ShowCursor(SDL_DISABLE);
|
2021-02-08 18:46:52 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-06-28 17:42:36 -04:00
|
|
|
static void
|
2021-04-20 17:30:26 -04:00
|
|
|
domouse(SDL_Event *event)
|
2021-02-08 18:46:52 -05:00
|
|
|
{
|
2021-02-24 14:11:19 -05:00
|
|
|
Uint8 flag = 0x00;
|
2021-08-02 00:51:43 -04:00
|
|
|
Uint16 x = clamp(event->motion.x / zoom - PAD, 0, ppu.width - 1);
|
|
|
|
Uint16 y = clamp(event->motion.y / zoom - PAD, 0, ppu.height - 1);
|
2021-08-29 17:41:05 -04:00
|
|
|
poke16(devmouse->dat, 0x2, x);
|
|
|
|
poke16(devmouse->dat, 0x4, y);
|
2021-04-10 14:24:38 -04:00
|
|
|
switch(event->button.button) {
|
|
|
|
case SDL_BUTTON_LEFT: flag = 0x01; break;
|
|
|
|
case SDL_BUTTON_RIGHT: flag = 0x10; break;
|
|
|
|
}
|
2021-02-09 20:22:52 -05:00
|
|
|
switch(event->type) {
|
2021-02-20 17:07:20 -05:00
|
|
|
case SDL_MOUSEBUTTONDOWN:
|
2021-04-20 17:30:26 -04:00
|
|
|
devmouse->dat[6] |= flag;
|
2021-05-29 18:05:43 -04:00
|
|
|
break;
|
2021-04-08 19:30:44 -04:00
|
|
|
case SDL_MOUSEBUTTONUP:
|
2021-04-20 17:30:26 -04:00
|
|
|
devmouse->dat[6] &= (~flag);
|
2021-04-08 19:30:44 -04:00
|
|
|
break;
|
2021-02-09 20:22:52 -05:00
|
|
|
}
|
2021-02-08 18:46:52 -05:00
|
|
|
}
|
|
|
|
|
2021-06-28 17:42:36 -04:00
|
|
|
static void
|
2021-02-26 19:53:09 -05:00
|
|
|
doctrl(Uxn *u, SDL_Event *event, int z)
|
2021-02-14 14:51:36 -05:00
|
|
|
{
|
|
|
|
Uint8 flag = 0x00;
|
2021-06-19 08:56:55 -04:00
|
|
|
SDL_Keymod mods = SDL_GetModState();
|
|
|
|
devctrl->dat[2] &= 0xf8;
|
2021-06-25 12:21:11 -04:00
|
|
|
if(mods & KMOD_CTRL) devctrl->dat[2] |= 0x01;
|
2021-06-19 08:56:55 -04:00
|
|
|
if(mods & KMOD_ALT) devctrl->dat[2] |= 0x02;
|
|
|
|
if(mods & KMOD_SHIFT) devctrl->dat[2] |= 0x04;
|
2021-06-25 11:57:25 -04:00
|
|
|
/* clang-format off */
|
2021-02-14 14:51:36 -05:00
|
|
|
switch(event->key.keysym.sym) {
|
2021-04-10 23:55:31 -04:00
|
|
|
case SDLK_ESCAPE: flag = 0x08; break;
|
2021-02-14 14:51:36 -05: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-06-25 11:57:25 -04:00
|
|
|
case SDLK_F1: if(z) togglezoom(u); break;
|
|
|
|
case SDLK_F2: if(z) toggledebug(u); break;
|
|
|
|
case SDLK_F3: if(z) screencapture(); break;
|
2021-02-14 14:51:36 -05:00
|
|
|
}
|
2021-06-25 11:57:25 -04:00
|
|
|
/* clang-format on */
|
2021-06-20 17:38:45 -04:00
|
|
|
if(z) {
|
2021-04-20 17:30:26 -04:00
|
|
|
devctrl->dat[2] |= flag;
|
2021-06-20 17:38:45 -04:00
|
|
|
if(event->key.keysym.sym < 0x20 || event->key.keysym.sym == SDLK_DELETE)
|
|
|
|
devctrl->dat[3] = event->key.keysym.sym;
|
2021-06-25 12:21:11 -04:00
|
|
|
else if((mods & KMOD_CTRL) && event->key.keysym.sym >= SDLK_a && event->key.keysym.sym <= SDLK_z)
|
|
|
|
devctrl->dat[3] = event->key.keysym.sym - (mods & KMOD_SHIFT) * 0x20;
|
2021-06-20 17:38:45 -04:00
|
|
|
} else
|
2021-06-19 08:56:55 -04:00
|
|
|
devctrl->dat[2] &= ~flag;
|
2021-02-09 00:59:46 -05:00
|
|
|
}
|
2021-08-29 13:36:23 -04:00
|
|
|
|
2021-08-15 20:48:15 -04:00
|
|
|
static void
|
|
|
|
docolors(Device *d)
|
|
|
|
{
|
|
|
|
SDL_Color pal[16];
|
|
|
|
int i;
|
|
|
|
for(i = 0; i < 4; ++i) {
|
|
|
|
pal[i].r = ((d->dat[0x8 + i / 2] >> (!(i % 2) << 2)) & 0x0f) * 0x11;
|
|
|
|
pal[i].g = ((d->dat[0xa + i / 2] >> (!(i % 2) << 2)) & 0x0f) * 0x11;
|
|
|
|
pal[i].b = ((d->dat[0xc + i / 2] >> (!(i % 2) << 2)) & 0x0f) * 0x11;
|
|
|
|
}
|
|
|
|
for(i = 4; i < 16; ++i) {
|
|
|
|
pal[i].r = pal[i / 4].r;
|
|
|
|
pal[i].g = pal[i / 4].g;
|
|
|
|
pal[i].b = pal[i / 4].b;
|
|
|
|
}
|
|
|
|
SDL_SetPaletteColors(idxSurface->format->palette, pal, 0, 16);
|
|
|
|
reqdraw = 1;
|
|
|
|
}
|
2021-02-09 00:59:46 -05:00
|
|
|
|
|
|
|
#pragma mark - Devices
|
|
|
|
|
2021-09-07 17:11:52 -04:00
|
|
|
static int
|
2021-04-24 13:15:47 -04:00
|
|
|
system_talk(Device *d, Uint8 b0, Uint8 w)
|
2021-04-20 13:31:50 -04:00
|
|
|
{
|
2021-08-15 20:48:15 -04:00
|
|
|
if(!w) { /* read */
|
|
|
|
switch(b0) {
|
|
|
|
case 0x2: d->dat[0x2] = d->u->wst.ptr; break;
|
|
|
|
case 0x3: d->dat[0x3] = d->u->rst.ptr; break;
|
2021-07-31 14:46:27 -04:00
|
|
|
}
|
2021-08-15 20:48:15 -04:00
|
|
|
} else { /* write */
|
|
|
|
switch(b0) {
|
|
|
|
case 0x2: d->u->wst.ptr = d->dat[0x2]; break;
|
|
|
|
case 0x3: d->u->rst.ptr = d->dat[0x3]; break;
|
2021-09-07 17:11:52 -04:00
|
|
|
case 0xf: return 0;
|
2021-07-31 14:46:27 -04:00
|
|
|
}
|
2021-08-15 20:48:15 -04:00
|
|
|
if(b0 > 0x7 && b0 < 0xe)
|
|
|
|
docolors(d);
|
|
|
|
}
|
2021-09-08 20:51:23 -04:00
|
|
|
return 1;
|
2021-04-20 13:31:50 -04:00
|
|
|
}
|
|
|
|
|
2021-09-07 17:11:52 -04:00
|
|
|
static int
|
2021-04-24 13:15:47 -04:00
|
|
|
console_talk(Device *d, Uint8 b0, Uint8 w)
|
2021-02-26 17:36:48 -05:00
|
|
|
{
|
2021-07-11 12:51:11 -04:00
|
|
|
if(w && b0 > 0x7)
|
|
|
|
write(b0 - 0x7, (char *)&d->dat[b0], 1);
|
2021-09-08 20:51:23 -04:00
|
|
|
return 1;
|
2021-02-26 17:36:48 -05:00
|
|
|
}
|
|
|
|
|
2021-09-07 17:11:52 -04:00
|
|
|
static int
|
2021-04-24 13:15:47 -04:00
|
|
|
screen_talk(Device *d, Uint8 b0, Uint8 w)
|
2021-02-26 17:36:48 -05:00
|
|
|
{
|
2021-04-24 13:15:47 -04:00
|
|
|
if(w && b0 == 0xe) {
|
2021-08-29 17:41:05 -04:00
|
|
|
Uint16 x = peek16(d->dat, 0x8);
|
|
|
|
Uint16 y = peek16(d->dat, 0xa);
|
2021-07-31 14:46:27 -04:00
|
|
|
Uint8 layer = d->dat[0xe] >> 4 & 0x1;
|
2021-08-08 12:26:20 -04:00
|
|
|
ppu_pixel(&ppu, layer, x, y, d->dat[0xe] & 0x3);
|
2021-04-09 10:30:45 -04:00
|
|
|
reqdraw = 1;
|
2021-07-30 22:23:02 -04:00
|
|
|
} else if(w && b0 == 0xf) {
|
2021-08-29 17:41:05 -04:00
|
|
|
Uint16 x = peek16(d->dat, 0x8);
|
|
|
|
Uint16 y = peek16(d->dat, 0xa);
|
2021-07-31 14:46:27 -04:00
|
|
|
Uint8 layer = d->dat[0xf] >> 0x6 & 0x1;
|
2021-08-29 17:41:05 -04:00
|
|
|
Uint8 *addr = &d->mem[peek16(d->dat, 0xc)];
|
2021-07-30 22:23:02 -04:00
|
|
|
if(d->dat[0xf] >> 0x7 & 0x1)
|
2021-08-01 14:33:43 -04:00
|
|
|
ppu_2bpp(&ppu, layer, x, y, addr, d->dat[0xf] & 0xf, d->dat[0xf] >> 0x4 & 0x1, d->dat[0xf] >> 0x5 & 0x1);
|
2021-07-30 22:23:02 -04:00
|
|
|
else
|
2021-08-01 14:33:43 -04:00
|
|
|
ppu_1bpp(&ppu, layer, x, y, addr, d->dat[0xf] & 0xf, d->dat[0xf] >> 0x4 & 0x1, d->dat[0xf] >> 0x5 & 0x1);
|
2021-07-30 22:23:02 -04:00
|
|
|
reqdraw = 1;
|
2021-02-26 19:38:20 -05:00
|
|
|
}
|
2021-09-08 20:51:23 -04:00
|
|
|
return 1;
|
2021-02-26 17:36:48 -05:00
|
|
|
}
|
|
|
|
|
2021-09-07 17:11:52 -04:00
|
|
|
static int
|
2021-04-24 13:15:47 -04:00
|
|
|
file_talk(Device *d, Uint8 b0, Uint8 w)
|
2021-03-04 23:15:01 -05:00
|
|
|
{
|
2021-04-20 17:30:26 -04:00
|
|
|
Uint8 read = b0 == 0xd;
|
2021-04-24 13:15:47 -04:00
|
|
|
if(w && (read || b0 == 0xf)) {
|
2021-08-29 17:41:05 -04:00
|
|
|
char *name = (char *)&d->mem[peek16(d->dat, 0x8)];
|
|
|
|
Uint16 result = 0, length = peek16(d->dat, 0xa);
|
|
|
|
long offset = (peek16(d->dat, 0x4) << 16) + peek16(d->dat, 0x6);
|
|
|
|
Uint16 addr = peek16(d->dat, b0 - 1);
|
2021-08-31 14:30:46 -04:00
|
|
|
FILE *f = fopen(name, read ? "rb" : (offset ? "ab" : "wb"));
|
2021-04-14 16:56:50 -04:00
|
|
|
if(f) {
|
2021-09-04 12:11:43 -04:00
|
|
|
/* fprintf(stderr, "%s %s %s #%04x, ", read ? "Loading" : "Saving", name, read ? "to" : "from", addr); */
|
2021-05-17 16:48:04 -04:00
|
|
|
if(fseek(f, offset, SEEK_SET) != -1)
|
|
|
|
result = read ? fread(&d->mem[addr], 1, length, f) : fwrite(&d->mem[addr], 1, length, f);
|
2021-09-04 12:11:43 -04:00
|
|
|
/* fprintf(stderr, "%04x bytes\n", result); */
|
2021-03-05 13:06:09 -05:00
|
|
|
fclose(f);
|
2021-04-14 16:56:50 -04:00
|
|
|
}
|
2021-08-29 17:41:05 -04:00
|
|
|
poke16(d->dat, 0x2, result);
|
2021-03-04 23:15:01 -05:00
|
|
|
}
|
2021-09-08 20:51:23 -04:00
|
|
|
return 1;
|
2021-03-04 23:15:01 -05:00
|
|
|
}
|
|
|
|
|
2021-09-07 17:11:52 -04:00
|
|
|
static int
|
2021-04-24 13:15:47 -04:00
|
|
|
audio_talk(Device *d, Uint8 b0, Uint8 w)
|
2021-04-08 16:14:40 -04:00
|
|
|
{
|
2021-04-26 14:49:34 -04:00
|
|
|
Apu *c = &apu[d - devaudio0];
|
2021-09-07 17:11:52 -04:00
|
|
|
if(!audio_id) return 1;
|
2021-04-27 16:03:38 -04:00
|
|
|
if(!w) {
|
|
|
|
if(b0 == 0x2)
|
2021-08-29 17:41:05 -04:00
|
|
|
poke16(d->dat, 0x2, c->i);
|
2021-04-27 16:03:38 -04:00
|
|
|
else if(b0 == 0x4)
|
|
|
|
d->dat[0x4] = apu_get_vu(c);
|
|
|
|
} else if(b0 == 0xf) {
|
2021-04-26 14:49:34 -04:00
|
|
|
SDL_LockAudioDevice(audio_id);
|
2021-08-29 17:41:05 -04:00
|
|
|
c->len = peek16(d->dat, 0xa);
|
|
|
|
c->addr = &d->mem[peek16(d->dat, 0xc)];
|
2021-04-26 14:49:34 -04:00
|
|
|
c->volume[0] = d->dat[0xe] >> 4;
|
|
|
|
c->volume[1] = d->dat[0xe] & 0xf;
|
2021-04-25 10:12:45 -04:00
|
|
|
c->repeat = !(d->dat[0xf] & 0x80);
|
2021-08-29 17:41:05 -04:00
|
|
|
apu_start(c, peek16(d->dat, 0x8), d->dat[0xf] & 0x7f);
|
2021-04-26 14:49:34 -04:00
|
|
|
SDL_UnlockAudioDevice(audio_id);
|
2021-07-17 05:13:21 -04:00
|
|
|
SDL_PauseAudioDevice(audio_id, 0);
|
2021-04-25 10:12:45 -04:00
|
|
|
}
|
2021-09-08 20:51:23 -04:00
|
|
|
return 1;
|
2021-03-24 19:30:52 -04:00
|
|
|
}
|
|
|
|
|
2021-09-07 17:11:52 -04:00
|
|
|
static int
|
2021-04-24 13:15:47 -04:00
|
|
|
datetime_talk(Device *d, Uint8 b0, Uint8 w)
|
2021-03-26 17:01:51 -04:00
|
|
|
{
|
|
|
|
time_t seconds = time(NULL);
|
|
|
|
struct tm *t = localtime(&seconds);
|
2021-03-27 18:32:47 -04:00
|
|
|
t->tm_year += 1900;
|
2021-08-29 17:41:05 -04:00
|
|
|
poke16(d->dat, 0x0, t->tm_year);
|
2021-04-21 00:29:18 -04:00
|
|
|
d->dat[0x2] = t->tm_mon;
|
|
|
|
d->dat[0x3] = t->tm_mday;
|
|
|
|
d->dat[0x4] = t->tm_hour;
|
|
|
|
d->dat[0x5] = t->tm_min;
|
|
|
|
d->dat[0x6] = t->tm_sec;
|
|
|
|
d->dat[0x7] = t->tm_wday;
|
2021-08-29 17:41:05 -04:00
|
|
|
poke16(d->dat, 0x08, t->tm_yday);
|
2021-04-21 00:29:18 -04:00
|
|
|
d->dat[0xa] = t->tm_isdst;
|
2021-03-28 13:20:24 -04:00
|
|
|
(void)b0;
|
2021-04-24 13:15:47 -04:00
|
|
|
(void)w;
|
2021-09-08 20:51:23 -04:00
|
|
|
return 1;
|
2021-03-26 17:01:51 -04:00
|
|
|
}
|
|
|
|
|
2021-09-07 17:11:52 -04:00
|
|
|
static int
|
2021-04-24 13:15:47 -04:00
|
|
|
nil_talk(Device *d, Uint8 b0, Uint8 w)
|
2021-02-26 17:36:48 -05:00
|
|
|
{
|
2021-04-21 00:21:31 -04:00
|
|
|
(void)d;
|
2021-02-26 19:38:20 -05:00
|
|
|
(void)b0;
|
2021-04-24 13:15:47 -04:00
|
|
|
(void)w;
|
2021-09-08 20:51:23 -04:00
|
|
|
return 1;
|
2021-02-26 17:36:48 -05:00
|
|
|
}
|
|
|
|
|
2021-02-09 20:22:52 -05:00
|
|
|
#pragma mark - Generics
|
|
|
|
|
2021-08-20 17:45:39 -04:00
|
|
|
void
|
|
|
|
apu_finished_handler(Apu *c)
|
|
|
|
{
|
|
|
|
SDL_Event event;
|
|
|
|
event.type = audio0_event + (c - apu);
|
|
|
|
SDL_PushEvent(&event);
|
|
|
|
}
|
|
|
|
|
2021-06-28 16:46:50 -04:00
|
|
|
static int
|
2021-06-28 16:57:30 -04:00
|
|
|
stdin_handler(void *p)
|
2021-06-28 16:46:50 -04:00
|
|
|
{
|
|
|
|
SDL_Event event;
|
|
|
|
event.type = stdin_event;
|
|
|
|
while(read(0, &event.cbutton.button, 1) > 0)
|
|
|
|
SDL_PushEvent(&event);
|
|
|
|
return 0;
|
|
|
|
(void)p;
|
|
|
|
}
|
|
|
|
|
2021-08-01 16:35:46 -04:00
|
|
|
static const char *errors[] = {"underflow", "overflow", "division by zero"};
|
|
|
|
|
|
|
|
int
|
2021-08-01 17:46:43 -04:00
|
|
|
uxn_halt(Uxn *u, Uint8 error, char *name, int id)
|
2021-08-01 16:35:46 -04:00
|
|
|
{
|
|
|
|
fprintf(stderr, "Halted: %s %s#%04x, at 0x%04x\n", name, errors[error - 1], id, u->ram.ptr);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-06-29 09:43:28 -04:00
|
|
|
static void
|
|
|
|
run(Uxn *u)
|
2021-02-08 17:18:01 -05:00
|
|
|
{
|
2021-08-15 20:48:15 -04:00
|
|
|
uxn_eval(u, PAGE_PROGRAM);
|
2021-05-19 18:17:58 -04:00
|
|
|
redraw(u);
|
2021-02-08 18:46:52 -05:00
|
|
|
while(1) {
|
2021-04-04 23:58:47 -04:00
|
|
|
SDL_Event event;
|
2021-05-19 18:17:58 -04:00
|
|
|
double elapsed, start = 0;
|
2021-08-04 23:30:57 -04:00
|
|
|
if(!BENCH)
|
2021-05-19 03:29:00 -04:00
|
|
|
start = SDL_GetPerformanceCounter();
|
2021-04-04 23:58:47 -04:00
|
|
|
while(SDL_PollEvent(&event) != 0) {
|
|
|
|
switch(event.type) {
|
2021-04-07 16:50:35 -04:00
|
|
|
case SDL_QUIT:
|
2021-06-29 09:43:28 -04:00
|
|
|
return;
|
2021-06-20 17:14:06 -04:00
|
|
|
case SDL_TEXTINPUT:
|
2021-06-20 17:38:45 -04:00
|
|
|
devctrl->dat[3] = event.text.text[0]; /* fall-thru */
|
2021-04-08 19:30:44 -04:00
|
|
|
case SDL_KEYDOWN:
|
|
|
|
case SDL_KEYUP:
|
|
|
|
doctrl(u, &event, event.type == SDL_KEYDOWN);
|
2021-08-29 17:41:05 -04:00
|
|
|
uxn_eval(u, peek16(devctrl->dat, 0));
|
2021-06-20 17:14:06 -04:00
|
|
|
devctrl->dat[3] = 0;
|
2021-04-10 23:55:31 -04:00
|
|
|
break;
|
2021-05-29 18:01:19 -04:00
|
|
|
case SDL_MOUSEWHEEL:
|
|
|
|
devmouse->dat[7] = event.wheel.y;
|
2021-08-29 17:41:05 -04:00
|
|
|
uxn_eval(u, peek16(devmouse->dat, 0));
|
2021-05-29 18:05:43 -04:00
|
|
|
devmouse->dat[7] = 0;
|
2021-05-29 18:01:19 -04:00
|
|
|
break;
|
2021-04-04 23:58:47 -04:00
|
|
|
case SDL_MOUSEBUTTONUP:
|
|
|
|
case SDL_MOUSEBUTTONDOWN:
|
2021-04-05 16:00:55 -04:00
|
|
|
case SDL_MOUSEMOTION:
|
2021-04-20 17:30:26 -04:00
|
|
|
domouse(&event);
|
2021-08-29 17:41:05 -04:00
|
|
|
uxn_eval(u, peek16(devmouse->dat, 0));
|
2021-04-05 16:00:55 -04:00
|
|
|
break;
|
2021-04-04 23:58:47 -04:00
|
|
|
case SDL_WINDOWEVENT:
|
|
|
|
if(event.window.event == SDL_WINDOWEVENT_EXPOSED)
|
2021-05-19 18:17:58 -04:00
|
|
|
redraw(u);
|
2021-08-08 15:47:01 -04:00
|
|
|
else if(event.window.event == SDL_WINDOWEVENT_RESIZED)
|
|
|
|
winSurface = SDL_GetWindowSurface(gWindow);
|
2021-04-04 23:58:47 -04:00
|
|
|
break;
|
2021-06-28 16:46:50 -04:00
|
|
|
default:
|
|
|
|
if(event.type == stdin_event) {
|
|
|
|
devconsole->dat[0x2] = event.cbutton.button;
|
2021-08-29 17:41:05 -04:00
|
|
|
uxn_eval(u, peek16(devconsole->dat, 0));
|
2021-08-29 13:36:23 -04:00
|
|
|
} else if(event.type >= audio0_event && event.type < audio0_event + POLYPHONY)
|
2021-08-29 17:41:05 -04:00
|
|
|
uxn_eval(u, peek16((devaudio0 + (event.type - audio0_event))->dat, 0));
|
2021-04-04 23:58:47 -04:00
|
|
|
}
|
|
|
|
}
|
2021-08-29 17:41:05 -04:00
|
|
|
uxn_eval(u, peek16(devscreen->dat, 0));
|
2021-07-28 23:20:57 -04:00
|
|
|
if(reqdraw || devsystem->dat[0xe])
|
2021-05-19 18:17:58 -04:00
|
|
|
redraw(u);
|
2021-08-04 23:30:57 -04:00
|
|
|
if(!BENCH) {
|
2021-05-19 03:29:00 -04:00
|
|
|
elapsed = (SDL_GetPerformanceCounter() - start) / (double)SDL_GetPerformanceFrequency() * 1000.0f;
|
|
|
|
SDL_Delay(clamp(16.666f - elapsed, 0, 1000));
|
|
|
|
}
|
2021-02-08 18:46:52 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-01 16:35:46 -04:00
|
|
|
static int
|
2021-08-01 17:56:12 -04:00
|
|
|
load(Uxn *u, char *filepath)
|
2021-08-01 16:35:46 -04:00
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
if(!(f = fopen(filepath, "rb")))
|
|
|
|
return 0;
|
|
|
|
fread(u->ram.dat + PAGE_PROGRAM, sizeof(u->ram.dat) - PAGE_PROGRAM, 1, f);
|
2021-08-01 18:04:51 -04:00
|
|
|
fprintf(stderr, "Loaded %s\n", filepath);
|
2021-08-01 16:35:46 -04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-02-08 18:46:52 -05:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
2021-02-09 13:58:06 -05:00
|
|
|
Uxn u;
|
|
|
|
|
2021-06-28 16:46:50 -04:00
|
|
|
stdin_event = SDL_RegisterEvents(1);
|
2021-08-20 17:45:39 -04:00
|
|
|
audio0_event = SDL_RegisterEvents(POLYPHONY);
|
2021-06-28 16:57:30 -04:00
|
|
|
SDL_CreateThread(stdin_handler, "stdin", NULL);
|
2021-06-27 16:45:50 -04:00
|
|
|
|
2021-02-08 17:18:01 -05:00
|
|
|
if(argc < 2)
|
2021-07-24 20:09:46 -04:00
|
|
|
return error("usage", "uxnemu file.rom");
|
2021-08-01 17:46:43 -04:00
|
|
|
if(!uxn_boot(&u))
|
2021-07-28 12:24:26 -04:00
|
|
|
return error("Boot", "Failed to start uxn.");
|
2021-08-01 17:56:12 -04:00
|
|
|
if(!load(&u, argv[1]))
|
2021-07-24 20:09:46 -04:00
|
|
|
return error("Load", "Failed to open rom.");
|
2021-04-25 10:12:45 -04:00
|
|
|
if(!init())
|
2021-07-24 20:09:46 -04:00
|
|
|
return error("Init", "Failed to initialize emulator.");
|
2021-02-08 18:46:52 -05:00
|
|
|
|
2021-08-29 22:52:12 -04:00
|
|
|
/* system */ devsystem = uxn_port(&u, 0x0, system_talk);
|
|
|
|
/* console */ devconsole = uxn_port(&u, 0x1, console_talk);
|
|
|
|
/* screen */ devscreen = uxn_port(&u, 0x2, screen_talk);
|
|
|
|
/* audio0 */ devaudio0 = uxn_port(&u, 0x3, audio_talk);
|
|
|
|
/* audio1 */ uxn_port(&u, 0x4, audio_talk);
|
|
|
|
/* audio2 */ uxn_port(&u, 0x5, audio_talk);
|
|
|
|
/* audio3 */ uxn_port(&u, 0x6, audio_talk);
|
|
|
|
/* unused */ uxn_port(&u, 0x7, nil_talk);
|
|
|
|
/* control */ devctrl = uxn_port(&u, 0x8, nil_talk);
|
|
|
|
/* mouse */ devmouse = uxn_port(&u, 0x9, nil_talk);
|
|
|
|
/* file */ uxn_port(&u, 0xa, file_talk);
|
|
|
|
/* datetime */ uxn_port(&u, 0xb, datetime_talk);
|
|
|
|
/* unused */ uxn_port(&u, 0xc, nil_talk);
|
|
|
|
/* unused */ uxn_port(&u, 0xd, nil_talk);
|
|
|
|
/* unused */ uxn_port(&u, 0xe, nil_talk);
|
|
|
|
/* unused */ uxn_port(&u, 0xf, nil_talk);
|
|
|
|
|
|
|
|
/* Write screen size */
|
2021-08-29 17:41:05 -04:00
|
|
|
poke16(devscreen->dat, 2, ppu.width);
|
|
|
|
poke16(devscreen->dat, 4, ppu.height);
|
2021-02-09 00:59:46 -05:00
|
|
|
|
2021-06-29 09:43:28 -04:00
|
|
|
run(&u);
|
2021-02-08 18:46:52 -05:00
|
|
|
quit();
|
2021-02-08 17:18:01 -05:00
|
|
|
return 0;
|
|
|
|
}
|