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
|
2021-12-25 15:27:23 -05:00
|
|
|
#pragma clang diagnostic push
|
2021-06-27 13:53:54 -04:00
|
|
|
#pragma GCC diagnostic ignored "-Wpedantic"
|
2021-12-25 15:27:23 -05:00
|
|
|
#pragma clang diagnostic ignored "-Wtypedef-redefinition"
|
2021-06-27 13:53:54 -04:00
|
|
|
#include <SDL.h>
|
2021-05-12 21:28:45 -04:00
|
|
|
#include "devices/ppu.h"
|
|
|
|
#include "devices/apu.h"
|
2021-11-05 17:32:45 -04:00
|
|
|
#include "devices/file.h"
|
2021-12-27 12:24:43 -05:00
|
|
|
#include "devices/controller.h"
|
2021-12-27 00:02:24 -05:00
|
|
|
#include "devices/mouse.h"
|
2021-06-27 13:53:54 -04:00
|
|
|
#pragma GCC diagnostic pop
|
2021-12-25 15:27:23 -05:00
|
|
|
#pragma clang 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-09-21 18:41:59 -04:00
|
|
|
#define WIDTH 64 * 8
|
|
|
|
#define HEIGHT 40 * 8
|
2021-08-04 23:30:57 -04:00
|
|
|
#define PAD 4
|
2021-09-19 17:58:23 -04:00
|
|
|
#define FIXED_SIZE 0
|
2021-08-04 23:30:57 -04:00
|
|
|
#define POLYPHONY 4
|
|
|
|
#define BENCH 0
|
|
|
|
|
2021-03-16 12:01:47 -04:00
|
|
|
static SDL_Window *gWindow;
|
2021-09-16 22:48:00 -04:00
|
|
|
static SDL_Texture *gTexture;
|
|
|
|
static SDL_Renderer *gRenderer;
|
|
|
|
static SDL_AudioDeviceID audio_id;
|
2021-05-19 18:17:58 -04:00
|
|
|
static SDL_Rect gRect;
|
2021-09-16 22:48:00 -04:00
|
|
|
/* devices */
|
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-09-29 20:58:58 -04:00
|
|
|
static Uint8 zoom = 1;
|
2021-12-24 12:39:51 -05:00
|
|
|
static Uint32 *ppu_screen, stdin_event, audio0_event;
|
2021-02-18 21:16:39 -05:00
|
|
|
|
2021-12-26 16:13:29 -05:00
|
|
|
static int
|
|
|
|
clamp(int val, int min, int max)
|
|
|
|
{
|
|
|
|
return (val >= min) ? (val <= max) ? val : max : min;
|
|
|
|
}
|
|
|
|
|
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-09-21 18:41:59 -04:00
|
|
|
#pragma mark - Generics
|
|
|
|
|
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-09-21 18:41:59 -04:00
|
|
|
void
|
|
|
|
apu_finished_handler(Apu *c)
|
|
|
|
{
|
|
|
|
SDL_Event event;
|
|
|
|
event.type = audio0_event + (c - apu);
|
|
|
|
SDL_PushEvent(&event);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
stdin_handler(void *p)
|
|
|
|
{
|
|
|
|
SDL_Event event;
|
|
|
|
event.type = stdin_event;
|
|
|
|
while(read(0, &event.cbutton.button, 1) > 0)
|
|
|
|
SDL_PushEvent(&event);
|
|
|
|
return 0;
|
|
|
|
(void)p;
|
|
|
|
}
|
|
|
|
|
2021-09-21 16:21:48 -04:00
|
|
|
static void
|
|
|
|
set_window_size(SDL_Window *window, int w, int h)
|
|
|
|
{
|
2021-09-22 13:57:43 -04:00
|
|
|
SDL_Point win, win_old;
|
2021-09-21 18:56:42 -04:00
|
|
|
SDL_GetWindowPosition(window, &win.x, &win.y);
|
|
|
|
SDL_GetWindowSize(window, &win_old.x, &win_old.y);
|
2021-09-22 13:57:43 -04:00
|
|
|
SDL_SetWindowPosition(window, (win.x + win_old.x / 2) - w / 2, (win.y + win_old.y / 2) - h / 2);
|
2021-09-21 16:21:48 -04:00
|
|
|
SDL_SetWindowSize(window, w, h);
|
|
|
|
}
|
|
|
|
|
2021-07-30 17:38:08 -04:00
|
|
|
static void
|
2021-09-22 13:57:43 -04:00
|
|
|
set_zoom(Uint8 scale)
|
|
|
|
{
|
2021-12-26 16:13:29 -05:00
|
|
|
zoom = clamp(scale, 1, 3);
|
2021-09-29 19:08:36 -04:00
|
|
|
set_window_size(gWindow, (ppu.width + PAD * 2) * zoom, (ppu.height + PAD * 2) * zoom);
|
2021-09-22 13:57:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
set_size(Uint16 width, Uint16 height, int is_resize)
|
|
|
|
{
|
2021-12-19 15:20:13 -05:00
|
|
|
ppu_resize(&ppu, width, height);
|
2021-09-22 13:57:43 -04:00
|
|
|
gRect.x = PAD;
|
|
|
|
gRect.y = PAD;
|
|
|
|
gRect.w = ppu.width;
|
|
|
|
gRect.h = ppu.height;
|
|
|
|
if(!(ppu_screen = realloc(ppu_screen, ppu.width * ppu.height * sizeof(Uint32))))
|
|
|
|
return error("ppu_screen", "Memory failure");
|
|
|
|
memset(ppu_screen, 0, ppu.width * ppu.height * sizeof(Uint32));
|
|
|
|
if(gTexture != NULL) SDL_DestroyTexture(gTexture);
|
|
|
|
SDL_RenderSetLogicalSize(gRenderer, ppu.width + PAD * 2, ppu.height + PAD * 2);
|
|
|
|
gTexture = SDL_CreateTexture(gRenderer, SDL_PIXELFORMAT_ARGB8888, SDL_TEXTUREACCESS_STATIC, ppu.width + PAD * 2, ppu.height + PAD * 2);
|
|
|
|
if(gTexture == NULL || SDL_SetTextureBlendMode(gTexture, SDL_BLENDMODE_NONE))
|
2021-10-24 15:48:56 -04:00
|
|
|
return error("gTexture", SDL_GetError());
|
|
|
|
if(SDL_UpdateTexture(gTexture, NULL, ppu_screen, sizeof(Uint32)) != 0)
|
|
|
|
return error("SDL_UpdateTexture", SDL_GetError());
|
2021-09-22 13:57:43 -04:00
|
|
|
if(is_resize)
|
|
|
|
set_window_size(gWindow, (ppu.width + PAD * 2) * zoom, (ppu.height + PAD * 2) * zoom);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
capture_screen(void)
|
|
|
|
{
|
|
|
|
const Uint32 format = SDL_PIXELFORMAT_RGB24;
|
|
|
|
time_t t = time(NULL);
|
|
|
|
char fname[64];
|
|
|
|
int w, h;
|
|
|
|
SDL_Surface *surface;
|
|
|
|
SDL_GetRendererOutputSize(gRenderer, &w, &h);
|
|
|
|
surface = SDL_CreateRGBSurfaceWithFormat(0, w, h, 24, format);
|
|
|
|
SDL_RenderReadPixels(gRenderer, NULL, format, surface->pixels, surface->pitch);
|
|
|
|
strftime(fname, sizeof(fname), "screenshot-%Y%m%d-%H%M%S.bmp", localtime(&t));
|
|
|
|
SDL_SaveBMP(surface, fname);
|
|
|
|
SDL_FreeSurface(surface);
|
|
|
|
fprintf(stderr, "Saved %s\n", fname);
|
|
|
|
}
|
|
|
|
|
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-11-04 11:42:15 -04:00
|
|
|
ppu_debug(&ppu, u->wst.dat, u->wst.ptr, u->rst.ptr, u->ram.dat);
|
2021-12-24 12:46:21 -05:00
|
|
|
ppu_redraw(&ppu, ppu_screen);
|
2021-10-24 15:48:56 -04:00
|
|
|
if(SDL_UpdateTexture(gTexture, &gRect, ppu_screen, ppu.width * sizeof(Uint32)) != 0)
|
|
|
|
error("SDL_UpdateTexture", SDL_GetError());
|
2021-09-16 22:48:00 -04:00
|
|
|
SDL_RenderClear(gRenderer);
|
|
|
|
SDL_RenderCopy(gRenderer, gTexture, NULL, NULL);
|
|
|
|
SDL_RenderPresent(gRenderer);
|
2021-02-08 18:46:52 -05:00
|
|
|
}
|
|
|
|
|
2021-06-28 17:42:36 -04:00
|
|
|
static int
|
2021-11-08 10:51:09 -05: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;
|
|
|
|
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-11-08 10:51:09 -05:00
|
|
|
gWindow = SDL_CreateWindow("Uxn", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, (WIDTH + PAD * 2) * zoom, (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-09-16 22:48:00 -04:00
|
|
|
gRenderer = SDL_CreateRenderer(gWindow, -1, 0);
|
|
|
|
if(gRenderer == NULL)
|
|
|
|
return error("sdl_renderer", SDL_GetError());
|
2021-09-21 18:41:59 -04:00
|
|
|
stdin_event = SDL_RegisterEvents(1);
|
|
|
|
audio0_event = SDL_RegisterEvents(POLYPHONY);
|
|
|
|
SDL_CreateThread(stdin_handler, "stdin", NULL);
|
2021-06-20 17:14:06 -04:00
|
|
|
SDL_StartTextInput();
|
2021-02-18 18:11:02 -05:00
|
|
|
SDL_ShowCursor(SDL_DISABLE);
|
2021-12-16 11:29:09 -05:00
|
|
|
SDL_EventState(SDL_DROPFILE, SDL_ENABLE);
|
2021-02-08 18:46:52 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-02-09 00:59:46 -05:00
|
|
|
#pragma mark - Devices
|
|
|
|
|
2021-11-04 12:38:32 -04:00
|
|
|
static Uint8
|
2021-11-04 13:13:01 -04:00
|
|
|
system_dei(Device *d, Uint8 port)
|
2021-04-20 13:31:50 -04:00
|
|
|
{
|
2021-11-04 13:13:01 -04:00
|
|
|
switch(port) {
|
2021-11-04 12:38:32 -04:00
|
|
|
case 0x2: return d->u->wst.ptr;
|
|
|
|
case 0x3: return d->u->rst.ptr;
|
2021-11-04 13:13:01 -04:00
|
|
|
default: return d->dat[port];
|
2021-08-15 20:48:15 -04:00
|
|
|
}
|
2021-04-20 13:31:50 -04:00
|
|
|
}
|
|
|
|
|
2021-11-04 12:38:32 -04:00
|
|
|
static void
|
2021-11-04 13:13:01 -04:00
|
|
|
system_deo(Device *d, Uint8 port)
|
2021-02-26 17:36:48 -05:00
|
|
|
{
|
2021-11-04 13:13:01 -04:00
|
|
|
switch(port) {
|
|
|
|
case 0x2: d->u->wst.ptr = d->dat[port]; break;
|
|
|
|
case 0x3: d->u->rst.ptr = d->dat[port]; break;
|
2021-09-22 15:16:16 -04:00
|
|
|
}
|
2021-11-04 13:13:01 -04:00
|
|
|
if(port > 0x7 && port < 0xe)
|
2021-12-24 12:39:51 -05:00
|
|
|
ppu_palette(&ppu, &d->dat[0x8]);
|
2021-02-26 17:36:48 -05:00
|
|
|
}
|
|
|
|
|
2021-11-04 12:38:32 -04:00
|
|
|
static void
|
2021-11-04 13:13:01 -04:00
|
|
|
console_deo(Device *d, Uint8 port)
|
2021-02-26 17:36:48 -05:00
|
|
|
{
|
2021-11-04 13:13:01 -04:00
|
|
|
if(port == 0x1)
|
2021-11-04 12:38:32 -04:00
|
|
|
d->vector = peek16(d->dat, 0x0);
|
2021-11-04 13:13:01 -04:00
|
|
|
if(port > 0x7)
|
|
|
|
write(port - 0x7, (char *)&d->dat[port], 1);
|
2021-11-04 12:38:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static Uint8
|
2021-11-04 13:13:01 -04:00
|
|
|
screen_dei(Device *d, Uint8 port)
|
2021-11-04 12:38:32 -04:00
|
|
|
{
|
2021-11-04 13:13:01 -04:00
|
|
|
switch(port) {
|
2021-11-04 12:38:32 -04:00
|
|
|
case 0x2: return ppu.width >> 8;
|
|
|
|
case 0x3: return ppu.width;
|
|
|
|
case 0x4: return ppu.height >> 8;
|
|
|
|
case 0x5: return ppu.height;
|
2021-11-04 13:13:01 -04:00
|
|
|
default: return d->dat[port];
|
2021-11-04 12:38:32 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-11-04 13:13:01 -04:00
|
|
|
screen_deo(Device *d, Uint8 port)
|
2021-11-04 12:38:32 -04:00
|
|
|
{
|
2021-11-04 13:13:01 -04:00
|
|
|
switch(port) {
|
2021-11-04 12:38:32 -04:00
|
|
|
case 0x1: d->vector = peek16(d->dat, 0x0); break;
|
|
|
|
case 0x5:
|
|
|
|
if(!FIXED_SIZE) set_size(peek16(d->dat, 0x2), peek16(d->dat, 0x4), 1);
|
|
|
|
break;
|
|
|
|
case 0xe: {
|
|
|
|
Uint16 x = peek16(d->dat, 0x8);
|
|
|
|
Uint16 y = peek16(d->dat, 0xa);
|
|
|
|
Uint8 layer = d->dat[0xe] & 0x40;
|
2021-12-24 14:45:31 -05:00
|
|
|
ppu_write(&ppu, layer ? &ppu.fg : &ppu.bg, x, y, d->dat[0xe] & 0x3);
|
2021-11-04 12:38:32 -04:00
|
|
|
if(d->dat[0x6] & 0x01) poke16(d->dat, 0x8, x + 1); /* auto x+1 */
|
|
|
|
if(d->dat[0x6] & 0x02) poke16(d->dat, 0xa, y + 1); /* auto y+1 */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 0xf: {
|
|
|
|
Uint16 x = peek16(d->dat, 0x8);
|
|
|
|
Uint16 y = peek16(d->dat, 0xa);
|
2021-12-25 07:50:34 -05:00
|
|
|
Layer *layer = (d->dat[0xf] & 0x40) ? &ppu.fg : &ppu.bg;
|
2021-11-04 12:38:32 -04:00
|
|
|
Uint8 *addr = &d->mem[peek16(d->dat, 0xc)];
|
2021-12-25 07:50:34 -05:00
|
|
|
Uint8 twobpp = !!(d->dat[0xf] & 0x80);
|
|
|
|
ppu_blit(&ppu, layer, x, y, addr, d->dat[0xf] & 0xf, d->dat[0xf] & 0x10, d->dat[0xf] & 0x20, twobpp);
|
2021-12-26 23:26:27 -05:00
|
|
|
if(d->dat[0x6] & 0x04) poke16(d->dat, 0xc, peek16(d->dat, 0xc) + 8 + twobpp * 8); /* auto addr+8 / auto addr+16 */
|
|
|
|
if(d->dat[0x6] & 0x01) poke16(d->dat, 0x8, x + 8); /* auto x+8 */
|
|
|
|
if(d->dat[0x6] & 0x02) poke16(d->dat, 0xa, y + 8); /* auto y+8 */
|
2021-11-04 12:38:32 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-02-26 17:36:48 -05:00
|
|
|
}
|
|
|
|
|
2021-11-04 12:38:32 -04:00
|
|
|
static Uint8
|
2021-11-04 13:13:01 -04:00
|
|
|
audio_dei(Device *d, Uint8 port)
|
2021-04-08 16:14:40 -04:00
|
|
|
{
|
2021-04-26 14:49:34 -04:00
|
|
|
Apu *c = &apu[d - devaudio0];
|
2021-11-04 13:13:01 -04:00
|
|
|
if(!audio_id) return d->dat[port];
|
|
|
|
switch(port) {
|
2021-11-04 12:38:32 -04:00
|
|
|
case 0x4: return apu_get_vu(c);
|
|
|
|
case 0x2: poke16(d->dat, 0x2, c->i); /* fall through */
|
2021-11-04 13:13:01 -04:00
|
|
|
default: return d->dat[port];
|
2021-11-04 12:38:32 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-11-04 13:13:01 -04:00
|
|
|
audio_deo(Device *d, Uint8 port)
|
2021-11-04 12:38:32 -04:00
|
|
|
{
|
|
|
|
Apu *c = &apu[d - devaudio0];
|
|
|
|
if(!audio_id) return;
|
2021-11-04 13:13:01 -04:00
|
|
|
if(port == 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-03-24 19:30:52 -04:00
|
|
|
}
|
|
|
|
|
2021-11-04 12:38:32 -04:00
|
|
|
static Uint8
|
2021-11-04 13:13:01 -04:00
|
|
|
datetime_dei(Device *d, Uint8 port)
|
2021-03-26 17:01:51 -04:00
|
|
|
{
|
|
|
|
time_t seconds = time(NULL);
|
2021-11-17 08:14:38 -05:00
|
|
|
struct tm zt = {0};
|
2021-03-26 17:01:51 -04:00
|
|
|
struct tm *t = localtime(&seconds);
|
2021-11-17 08:14:38 -05:00
|
|
|
if(t == NULL)
|
|
|
|
t = &zt;
|
2021-11-04 13:13:01 -04:00
|
|
|
switch(port) {
|
2021-11-04 12:38:32 -04:00
|
|
|
case 0x0: return (t->tm_year + 1900) >> 8;
|
|
|
|
case 0x1: return (t->tm_year + 1900);
|
|
|
|
case 0x2: return t->tm_mon;
|
|
|
|
case 0x3: return t->tm_mday;
|
|
|
|
case 0x4: return t->tm_hour;
|
|
|
|
case 0x5: return t->tm_min;
|
|
|
|
case 0x6: return t->tm_sec;
|
|
|
|
case 0x7: return t->tm_wday;
|
|
|
|
case 0x8: return t->tm_yday >> 8;
|
|
|
|
case 0x9: return t->tm_yday;
|
|
|
|
case 0xa: return t->tm_isdst;
|
2021-11-04 13:13:01 -04:00
|
|
|
default: return d->dat[port];
|
2021-11-04 12:38:32 -04:00
|
|
|
}
|
2021-03-26 17:01:51 -04:00
|
|
|
}
|
|
|
|
|
2021-11-04 12:38:32 -04:00
|
|
|
static Uint8
|
2021-11-04 13:13:01 -04:00
|
|
|
nil_dei(Device *d, Uint8 port)
|
2021-02-26 17:36:48 -05:00
|
|
|
{
|
2021-11-04 13:13:01 -04:00
|
|
|
return d->dat[port];
|
2021-11-04 12:38:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-11-04 13:13:01 -04:00
|
|
|
nil_deo(Device *d, Uint8 port)
|
2021-11-04 12:38:32 -04:00
|
|
|
{
|
2021-11-04 13:13:01 -04:00
|
|
|
if(port == 0x1) d->vector = peek16(d->dat, 0x0);
|
2021-02-26 17:36:48 -05:00
|
|
|
}
|
|
|
|
|
2021-11-08 10:51:09 -05:00
|
|
|
/* Boot */
|
|
|
|
|
|
|
|
static int
|
|
|
|
load(Uxn *u, char *rom)
|
|
|
|
{
|
2021-12-15 17:54:44 -05:00
|
|
|
SDL_RWops *f;
|
2021-11-17 08:21:27 -05:00
|
|
|
int r;
|
2021-12-15 17:54:44 -05:00
|
|
|
if(!(f = SDL_RWFromFile(rom, "rb"))) return 0;
|
|
|
|
r = f->read(f, u->ram.dat + PAGE_PROGRAM, 1, sizeof(u->ram.dat) - PAGE_PROGRAM);
|
|
|
|
f->close(f);
|
2021-11-17 08:21:27 -05:00
|
|
|
if(r < 1) return 0;
|
2021-11-08 10:51:09 -05:00
|
|
|
fprintf(stderr, "Loaded %s\n", rom);
|
|
|
|
SDL_SetWindowTitle(gWindow, rom);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2021-11-08 12:12:17 -05:00
|
|
|
start(Uxn *u, char *rom)
|
2021-11-08 10:51:09 -05:00
|
|
|
{
|
|
|
|
if(!uxn_boot(u))
|
|
|
|
return error("Boot", "Failed to start uxn.");
|
|
|
|
if(!load(u, rom))
|
|
|
|
return error("Boot", "Failed to load rom.");
|
|
|
|
|
|
|
|
/* system */ devsystem = uxn_port(u, 0x0, system_dei, system_deo);
|
|
|
|
/* console */ devconsole = uxn_port(u, 0x1, nil_dei, console_deo);
|
|
|
|
/* screen */ devscreen = uxn_port(u, 0x2, screen_dei, screen_deo);
|
|
|
|
/* audio0 */ devaudio0 = uxn_port(u, 0x3, audio_dei, audio_deo);
|
|
|
|
/* audio1 */ uxn_port(u, 0x4, audio_dei, audio_deo);
|
|
|
|
/* audio2 */ uxn_port(u, 0x5, audio_dei, audio_deo);
|
|
|
|
/* audio3 */ uxn_port(u, 0x6, audio_dei, audio_deo);
|
|
|
|
/* unused */ uxn_port(u, 0x7, nil_dei, nil_deo);
|
|
|
|
/* control */ devctrl = uxn_port(u, 0x8, nil_dei, nil_deo);
|
|
|
|
/* mouse */ devmouse = uxn_port(u, 0x9, nil_dei, nil_deo);
|
|
|
|
/* file */ uxn_port(u, 0xa, nil_dei, file_deo);
|
|
|
|
/* datetime */ uxn_port(u, 0xb, datetime_dei, nil_deo);
|
|
|
|
/* unused */ uxn_port(u, 0xc, nil_dei, nil_deo);
|
|
|
|
/* unused */ uxn_port(u, 0xd, nil_dei, nil_deo);
|
|
|
|
/* unused */ uxn_port(u, 0xe, nil_dei, nil_deo);
|
|
|
|
/* unused */ uxn_port(u, 0xf, nil_dei, nil_deo);
|
|
|
|
|
|
|
|
if(!uxn_eval(u, PAGE_PROGRAM))
|
|
|
|
return error("Boot", "Failed to start rom.");
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-11-08 12:13:43 -05:00
|
|
|
static void
|
2021-11-08 12:12:17 -05:00
|
|
|
restart(Uxn *u)
|
2021-11-08 10:51:09 -05:00
|
|
|
{
|
|
|
|
set_size(WIDTH, HEIGHT, 1);
|
2021-11-08 12:12:17 -05:00
|
|
|
start(u, "boot.rom");
|
2021-11-08 10:51:09 -05:00
|
|
|
}
|
|
|
|
|
2021-12-27 00:33:23 -05:00
|
|
|
Uint8
|
2021-12-27 09:24:22 -05:00
|
|
|
get_button(SDL_Event *event)
|
2021-12-27 00:33:23 -05:00
|
|
|
{
|
2021-12-27 09:24:22 -05:00
|
|
|
switch(event->key.keysym.sym) {
|
2021-12-27 00:33:23 -05:00
|
|
|
case SDLK_LCTRL: return 0x01;
|
|
|
|
case SDLK_LALT: return 0x02;
|
|
|
|
case SDLK_LSHIFT: return 0x04;
|
|
|
|
case SDLK_ESCAPE: return 0x08;
|
|
|
|
case SDLK_UP: return 0x10;
|
|
|
|
case SDLK_DOWN: return 0x20;
|
|
|
|
case SDLK_LEFT: return 0x40;
|
|
|
|
case SDLK_RIGHT: return 0x80;
|
|
|
|
}
|
|
|
|
return 0x00;
|
|
|
|
}
|
|
|
|
|
2021-12-27 12:24:43 -05:00
|
|
|
Uint8
|
|
|
|
get_key(SDL_Event *event)
|
2021-12-27 00:33:23 -05:00
|
|
|
{
|
2021-12-27 12:24:43 -05:00
|
|
|
SDL_Keymod mods = SDL_GetModState();
|
|
|
|
if(event->key.keysym.sym < 0x20 || event->key.keysym.sym == SDLK_DELETE)
|
|
|
|
return event->key.keysym.sym;
|
|
|
|
if((mods & KMOD_CTRL) && event->key.keysym.sym >= SDLK_a && event->key.keysym.sym <= SDLK_z)
|
|
|
|
return event->key.keysym.sym - (mods & KMOD_SHIFT) * 0x20;
|
|
|
|
return 0x00;
|
2021-12-27 00:33:23 -05:00
|
|
|
}
|
|
|
|
|
2021-11-08 10:51:09 -05:00
|
|
|
static void
|
2021-12-27 12:24:43 -05:00
|
|
|
do_shortcut(Uxn *u, SDL_Event *event)
|
2021-11-08 10:51:09 -05:00
|
|
|
{
|
2021-12-27 12:24:43 -05:00
|
|
|
if(event->key.keysym.sym == SDLK_F1)
|
|
|
|
set_zoom(zoom > 2 ? 1 : zoom + 1);
|
|
|
|
else if(event->key.keysym.sym == SDLK_F2) {
|
|
|
|
devsystem->dat[0xe] = !devsystem->dat[0xe];
|
|
|
|
ppu_clear(&ppu, &ppu.fg);
|
|
|
|
} else if(event->key.keysym.sym == SDLK_F3)
|
|
|
|
capture_screen();
|
|
|
|
else if(event->key.keysym.sym == SDLK_F4)
|
|
|
|
restart(u);
|
2021-11-08 10:51:09 -05:00
|
|
|
}
|
|
|
|
|
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-10-13 17:56:38 -04:00
|
|
|
static int
|
|
|
|
console_input(Uxn *u, char c)
|
|
|
|
{
|
|
|
|
devconsole->dat[0x2] = c;
|
|
|
|
return uxn_eval(u, devconsole->vector);
|
|
|
|
}
|
|
|
|
|
2021-09-21 18:41:59 -04:00
|
|
|
static int
|
2021-06-29 09:43:28 -04:00
|
|
|
run(Uxn *u)
|
2021-02-08 17:18:01 -05:00
|
|
|
{
|
2021-05-19 18:17:58 -04:00
|
|
|
redraw(u);
|
2021-10-02 15:06:50 -04:00
|
|
|
while(!devsystem->dat[0xf]) {
|
2021-04-04 23:58:47 -04:00
|
|
|
SDL_Event event;
|
2021-12-16 11:29:09 -05:00
|
|
|
double elapsed, begin = 0;
|
2021-08-04 23:30:57 -04:00
|
|
|
if(!BENCH)
|
2021-12-16 11:29:09 -05:00
|
|
|
begin = SDL_GetPerformanceCounter();
|
2021-04-04 23:58:47 -04:00
|
|
|
while(SDL_PollEvent(&event) != 0) {
|
2021-12-27 12:24:43 -05:00
|
|
|
/* Window */
|
|
|
|
if(event.type == SDL_QUIT)
|
|
|
|
return error("Run", "Quit.");
|
|
|
|
else if(event.type == SDL_WINDOWEVENT && event.window.event == SDL_WINDOWEVENT_EXPOSED)
|
|
|
|
redraw(u);
|
|
|
|
else if(event.type == SDL_DROPFILE) {
|
|
|
|
set_size(WIDTH, HEIGHT, 0);
|
|
|
|
start(u, event.drop.file);
|
|
|
|
SDL_free(event.drop.file);
|
|
|
|
}
|
|
|
|
/* Audio */
|
|
|
|
else if(event.type >= audio0_event && event.type < audio0_event + POLYPHONY)
|
|
|
|
uxn_eval(u, peek16((devaudio0 + (event.type - audio0_event))->dat, 0));
|
|
|
|
/* Mouse */
|
|
|
|
else if(event.type == SDL_MOUSEWHEEL)
|
2021-12-27 00:33:23 -05:00
|
|
|
mouse_z(devmouse, event.wheel.y);
|
|
|
|
else if(event.type == SDL_MOUSEBUTTONUP)
|
|
|
|
mouse_up(devmouse, 0x1 << (event.button.button - 1));
|
|
|
|
else if(event.type == SDL_MOUSEBUTTONDOWN)
|
|
|
|
mouse_down(devmouse, 0x1 << (event.button.button - 1));
|
|
|
|
else if(event.type == SDL_MOUSEMOTION)
|
|
|
|
mouse_xy(devmouse,
|
|
|
|
clamp(event.motion.x - PAD, 0, ppu.width - 1),
|
|
|
|
clamp(event.motion.y - PAD, 0, ppu.height - 1));
|
2021-12-27 12:24:43 -05:00
|
|
|
/* Controller */
|
|
|
|
else if(event.type == SDL_KEYDOWN) {
|
2021-12-27 09:24:22 -05:00
|
|
|
controller_down(devctrl, get_button(&event));
|
2021-12-27 12:24:43 -05:00
|
|
|
controller_key(devctrl, get_key(&event));
|
|
|
|
do_shortcut(u, &event);
|
|
|
|
} else if(event.type == SDL_KEYUP)
|
2021-12-27 09:24:22 -05:00
|
|
|
controller_up(devctrl, get_button(&event));
|
2021-12-27 12:24:43 -05:00
|
|
|
else if(event.type == SDL_TEXTINPUT)
|
|
|
|
controller_key(devctrl, event.text.text[0]);
|
|
|
|
/* Console */
|
|
|
|
else if(event.type == stdin_event)
|
|
|
|
console_input(u, event.cbutton.button);
|
2021-04-04 23:58:47 -04:00
|
|
|
}
|
2021-09-22 15:16:16 -04:00
|
|
|
uxn_eval(u, devscreen->vector);
|
2021-12-24 15:01:10 -05:00
|
|
|
if(ppu.fg.changed || ppu.bg.changed || devsystem->dat[0xe])
|
2021-05-19 18:17:58 -04:00
|
|
|
redraw(u);
|
2021-08-04 23:30:57 -04:00
|
|
|
if(!BENCH) {
|
2021-12-16 11:29:09 -05:00
|
|
|
elapsed = (SDL_GetPerformanceCounter() - begin) / (double)SDL_GetPerformanceFrequency() * 1000.0f;
|
2021-12-26 16:13:29 -05:00
|
|
|
SDL_Delay(clamp(16.666f - elapsed, 0, 1000));
|
2021-05-19 03:29:00 -04:00
|
|
|
}
|
2021-02-08 18:46:52 -05:00
|
|
|
}
|
2021-09-21 18:41:59 -04:00
|
|
|
return error("Run", "Ended.");
|
2021-02-08 18:46:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
2021-09-22 13:42:17 -04:00
|
|
|
SDL_DisplayMode DM;
|
2021-02-09 13:58:06 -05:00
|
|
|
Uxn u;
|
2021-10-13 17:56:38 -04:00
|
|
|
int i, loaded = 0;
|
2021-06-27 16:45:50 -04:00
|
|
|
|
2021-11-08 10:51:09 -05:00
|
|
|
if(!init())
|
|
|
|
return error("Init", "Failed to initialize emulator.");
|
|
|
|
if(!set_size(WIDTH, HEIGHT, 0))
|
|
|
|
return error("Window", "Failed to set window size.");
|
2021-08-29 22:52:12 -04:00
|
|
|
|
2021-09-22 14:21:57 -04:00
|
|
|
/* set default zoom */
|
2021-10-24 15:31:25 -04:00
|
|
|
if(SDL_GetCurrentDisplayMode(0, &DM) == 0)
|
|
|
|
set_zoom(DM.w / 1280);
|
2021-10-13 17:56:38 -04:00
|
|
|
for(i = 1; i < argc; ++i) {
|
|
|
|
/* get default zoom from flags */
|
2021-09-21 18:56:42 -04:00
|
|
|
if(strcmp(argv[i], "-s") == 0) {
|
2021-10-13 17:56:38 -04:00
|
|
|
if(i < argc - 1)
|
2021-09-29 21:03:56 -04:00
|
|
|
set_zoom(atoi(argv[++i]));
|
2021-09-21 18:56:42 -04:00
|
|
|
else
|
|
|
|
return error("Opt", "-s No scale provided.");
|
2021-10-13 17:56:38 -04:00
|
|
|
} else if(!loaded++) {
|
2021-11-08 12:12:17 -05:00
|
|
|
if(!start(&u, argv[i]))
|
2021-11-08 10:51:09 -05:00
|
|
|
return error("Boot", "Failed to boot.");
|
2021-10-13 17:56:38 -04:00
|
|
|
} else {
|
|
|
|
char *p = argv[i];
|
|
|
|
while(*p) console_input(&u, *p++);
|
|
|
|
console_input(&u, '\n');
|
2021-09-21 18:56:42 -04:00
|
|
|
}
|
|
|
|
}
|
2021-11-09 10:34:10 -05:00
|
|
|
if(!loaded && !start(&u, "boot.rom"))
|
2021-11-02 23:15:25 -04:00
|
|
|
return error("usage", "uxnemu [-s scale] file.rom");
|
2021-06-29 09:43:28 -04:00
|
|
|
run(&u);
|
2021-12-25 15:44:19 -05:00
|
|
|
SDL_Quit();
|
2021-02-08 17:18:01 -05:00
|
|
|
return 0;
|
|
|
|
}
|