2021-02-08 18:46:52 -05:00
|
|
|
#include <SDL2/SDL.h>
|
2021-02-08 17:18:01 -05:00
|
|
|
#include <stdio.h>
|
2021-03-26 17:01:51 -04:00
|
|
|
#include <time.h>
|
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-02-08 18:46:52 -05:00
|
|
|
#include "uxn.h"
|
2021-04-07 20:32:18 -04:00
|
|
|
#include "ppu.h"
|
2021-02-08 18:46:52 -05:00
|
|
|
|
2021-04-07 16:50:35 -04:00
|
|
|
int initapu(Uxn *u, Uint8 id);
|
|
|
|
|
2021-04-07 23:30:10 -04:00
|
|
|
SDL_AudioDeviceID audio_id;
|
2021-03-16 12:01:47 -04:00
|
|
|
static SDL_Window *gWindow;
|
|
|
|
static SDL_Renderer *gRenderer;
|
|
|
|
static SDL_Texture *gTexture;
|
2021-04-07 23:30:10 -04:00
|
|
|
static Ppu ppu;
|
2021-04-07 16:50:35 -04:00
|
|
|
static Device *devsystem, *devscreen, *devmouse, *devkey, *devctrl;
|
2021-02-18 21:16:39 -05:00
|
|
|
|
|
|
|
#pragma mark - Helpers
|
|
|
|
|
2021-04-07 23:30:10 -04:00
|
|
|
/* clang-format off */
|
|
|
|
int clamp(int val, int min, int max) { return (val >= min) ? (val <= max) ? val : max : min; }
|
|
|
|
void setflag(Uint8 *a, char flag, int b) { if(b) *a |= flag; else *a &= (~flag); }
|
|
|
|
/* clang-format on */
|
2021-04-04 23:35:52 -04:00
|
|
|
|
2021-02-14 13:22:42 -05:00
|
|
|
#pragma mark - Core
|
|
|
|
|
|
|
|
int
|
|
|
|
error(char *msg, const char *err)
|
|
|
|
{
|
|
|
|
printf("Error %s: %s\n", msg, err);
|
|
|
|
return 0;
|
2021-02-09 13:58:06 -05:00
|
|
|
}
|
|
|
|
|
2021-02-15 13:12:44 -05:00
|
|
|
void
|
|
|
|
redraw(Uint32 *dst, Uxn *u)
|
2021-02-08 18:46:52 -05:00
|
|
|
{
|
2021-04-08 12:59:45 -04:00
|
|
|
drawppu(&ppu);
|
2021-04-07 23:30:10 -04:00
|
|
|
if(ppu.debugger)
|
|
|
|
drawdebugger(&ppu, u->wst.dat, u->wst.ptr);
|
2021-04-08 12:59:45 -04:00
|
|
|
SDL_UpdateTexture(gTexture, NULL, dst, ppu.width * sizeof(Uint32));
|
2021-02-08 18:46:52 -05:00
|
|
|
SDL_RenderClear(gRenderer);
|
|
|
|
SDL_RenderCopy(gRenderer, gTexture, NULL, NULL);
|
|
|
|
SDL_RenderPresent(gRenderer);
|
2021-04-07 23:30:10 -04:00
|
|
|
ppu.reqdraw = 0;
|
2021-02-08 18:46:52 -05:00
|
|
|
}
|
|
|
|
|
2021-03-24 12:39:19 -04:00
|
|
|
void
|
|
|
|
toggledebug(Uxn *u)
|
|
|
|
{
|
2021-04-07 23:30:10 -04:00
|
|
|
ppu.debugger = !ppu.debugger;
|
|
|
|
redraw(ppu.output, u);
|
2021-03-24 12:39:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
togglezoom(Uxn *u)
|
|
|
|
{
|
2021-04-07 23:30:10 -04:00
|
|
|
ppu.zoom = ppu.zoom == 3 ? 1 : ppu.zoom + 1;
|
2021-04-08 12:59:45 -04:00
|
|
|
SDL_SetWindowSize(gWindow, ppu.width * ppu.zoom, ppu.height * ppu.zoom);
|
2021-04-07 23:30:10 -04:00
|
|
|
redraw(ppu.output, u);
|
2021-03-24 12:39:19 -04:00
|
|
|
}
|
|
|
|
|
2021-02-08 18:46:52 -05:00
|
|
|
void
|
|
|
|
quit(void)
|
|
|
|
{
|
2021-04-07 23:30:10 -04:00
|
|
|
free(ppu.output);
|
2021-04-08 12:59:45 -04:00
|
|
|
free(ppu.fg);
|
|
|
|
free(ppu.bg);
|
2021-02-08 18:46:52 -05:00
|
|
|
SDL_DestroyTexture(gTexture);
|
|
|
|
gTexture = NULL;
|
|
|
|
SDL_DestroyRenderer(gRenderer);
|
|
|
|
gRenderer = NULL;
|
|
|
|
SDL_DestroyWindow(gWindow);
|
|
|
|
gWindow = NULL;
|
|
|
|
SDL_Quit();
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
init(void)
|
|
|
|
{
|
2021-04-08 12:59:45 -04:00
|
|
|
if(!initppu(&ppu, 48, 32, 16))
|
|
|
|
return error("PPU", "Init failure");
|
2021-04-02 11:05:08 -04:00
|
|
|
if(SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) < 0)
|
2021-02-08 18:46:52 -05:00
|
|
|
return error("Init", SDL_GetError());
|
2021-04-08 12:59:45 -04:00
|
|
|
gWindow = SDL_CreateWindow("Uxn", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, ppu.width * ppu.zoom, ppu.height * ppu.zoom, SDL_WINDOW_SHOWN);
|
2021-02-08 18:46:52 -05:00
|
|
|
if(gWindow == NULL)
|
|
|
|
return error("Window", SDL_GetError());
|
|
|
|
gRenderer = SDL_CreateRenderer(gWindow, -1, 0);
|
|
|
|
if(gRenderer == NULL)
|
|
|
|
return error("Renderer", SDL_GetError());
|
2021-04-08 12:59:45 -04:00
|
|
|
gTexture = SDL_CreateTexture(gRenderer, SDL_PIXELFORMAT_ARGB8888, SDL_TEXTUREACCESS_STATIC, ppu.width, ppu.height);
|
2021-02-08 18:46:52 -05:00
|
|
|
if(gTexture == NULL)
|
|
|
|
return error("Texture", SDL_GetError());
|
2021-03-16 12:01:47 -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;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-02-26 19:38:20 -05:00
|
|
|
domouse(Uxn *u, SDL_Event *event)
|
2021-02-08 18:46:52 -05:00
|
|
|
{
|
2021-02-24 14:11:19 -05:00
|
|
|
Uint8 flag = 0x00;
|
2021-04-05 16:00:55 -04:00
|
|
|
Uint16 addr = devmouse->addr + 2;
|
2021-04-08 12:59:45 -04:00
|
|
|
Uint16 x = clamp(event->motion.x / ppu.zoom - ppu.pad, 0, ppu.hor * 8 - 1);
|
|
|
|
Uint16 y = clamp(event->motion.y / ppu.zoom - ppu.pad, 0, ppu.ver * 8 - 1);
|
|
|
|
mempoke16(u, addr + 0, x);
|
|
|
|
mempoke16(u, addr + 2, y);
|
2021-02-26 19:38:20 -05:00
|
|
|
u->ram.dat[addr + 5] = 0x00;
|
2021-02-24 14:11:19 -05: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_MOUSEBUTTONUP:
|
2021-02-26 19:38:20 -05:00
|
|
|
setflag(&u->ram.dat[addr + 4], flag, 0);
|
2021-02-20 17:07:20 -05:00
|
|
|
break;
|
|
|
|
case SDL_MOUSEBUTTONDOWN:
|
2021-02-26 19:38:20 -05:00
|
|
|
setflag(&u->ram.dat[addr + 4], flag, 1);
|
2021-04-07 23:30:10 -04:00
|
|
|
if(flag == 0x10 && (u->ram.dat[addr + 4] & 0x01))
|
2021-03-12 14:37:45 -05:00
|
|
|
u->ram.dat[addr + 5] = 0x01;
|
2021-04-07 23:30:10 -04:00
|
|
|
if(flag == 0x01 && (u->ram.dat[addr + 4] & 0x10))
|
2021-02-26 19:38:20 -05:00
|
|
|
u->ram.dat[addr + 5] = 0x10;
|
2021-02-20 17:07:20 -05:00
|
|
|
break;
|
2021-02-09 20:22:52 -05:00
|
|
|
}
|
2021-02-08 18:46:52 -05:00
|
|
|
}
|
|
|
|
|
2021-02-24 19:40:42 -05:00
|
|
|
void
|
2021-02-26 22:46:56 -05:00
|
|
|
dotext(Uxn *u, SDL_Event *event)
|
2021-02-24 19:40:42 -05:00
|
|
|
{
|
|
|
|
int i;
|
2021-04-05 16:00:55 -04:00
|
|
|
Uint16 addr = devkey->addr + 2;
|
2021-02-24 19:40:42 -05:00
|
|
|
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;
|
2021-02-26 22:46:56 -05:00
|
|
|
u->ram.dat[addr] = c;
|
2021-02-24 19:40:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-14 14:51:36 -05:00
|
|
|
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-04-05 16:00:55 -04:00
|
|
|
Uint16 addr = devctrl->addr + 2;
|
2021-03-24 12:39:19 -04:00
|
|
|
if(z && event->key.keysym.sym == SDLK_h) {
|
|
|
|
if(SDL_GetModState() & KMOD_LCTRL)
|
|
|
|
toggledebug(u);
|
|
|
|
if(SDL_GetModState() & KMOD_LALT)
|
|
|
|
togglezoom(u);
|
2021-03-11 15:19:59 -05:00
|
|
|
}
|
2021-02-14 14:51:36 -05:00
|
|
|
switch(event->key.keysym.sym) {
|
2021-02-28 12:40:19 -05:00
|
|
|
case SDLK_LCTRL: flag = 0x01; break;
|
|
|
|
case SDLK_LALT: flag = 0x02; break;
|
2021-02-25 19:03:45 -05:00
|
|
|
case SDLK_BACKSPACE:
|
|
|
|
flag = 0x04;
|
2021-04-05 16:00:55 -04:00
|
|
|
if(z) u->ram.dat[devkey->addr + 2] = 0x08;
|
2021-02-25 19:03:45 -05:00
|
|
|
break;
|
|
|
|
case SDLK_RETURN:
|
|
|
|
flag = 0x08;
|
2021-04-05 16:00:55 -04:00
|
|
|
if(z) u->ram.dat[devkey->addr + 2] = 0x0d;
|
2021-02-25 19:03:45 -05:00
|
|
|
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-02-26 19:53:09 -05:00
|
|
|
setflag(&u->ram.dat[addr], flag, z);
|
2021-02-09 00:59:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark - Devices
|
|
|
|
|
2021-02-26 17:36:48 -05:00
|
|
|
Uint8
|
2021-03-22 17:22:06 -04:00
|
|
|
console_poke(Uxn *u, Uint16 ptr, Uint8 b0, Uint8 b1)
|
2021-02-26 17:36:48 -05:00
|
|
|
{
|
2021-03-22 17:22:06 -04:00
|
|
|
Uint8 *m = u->ram.dat;
|
2021-03-01 11:55:16 -05:00
|
|
|
switch(b0) {
|
|
|
|
case 0x08: printf("%c", b1); break;
|
2021-03-12 14:37:45 -05:00
|
|
|
case 0x09: printf("0x%02x\n", b1); break;
|
|
|
|
case 0x0b: printf("0x%04x\n", (m[ptr + 0x0a] << 8) + b1); break;
|
2021-03-28 19:43:32 -04:00
|
|
|
case 0x0d: printf("%s\n", &m[(m[ptr + 0x0c] << 8) + b1]); break;
|
2021-03-01 11:55:16 -05:00
|
|
|
}
|
2021-02-26 17:36:48 -05:00
|
|
|
fflush(stdout);
|
|
|
|
return b1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Uint8
|
2021-03-22 17:22:06 -04:00
|
|
|
screen_poke(Uxn *u, Uint16 ptr, Uint8 b0, Uint8 b1)
|
2021-02-26 17:36:48 -05:00
|
|
|
{
|
2021-03-22 17:22:06 -04:00
|
|
|
Uint8 *m = u->ram.dat;
|
2021-02-26 19:38:20 -05:00
|
|
|
ptr += 8;
|
|
|
|
if(b0 == 0x0c) {
|
|
|
|
Uint16 x = (m[ptr] << 8) + m[ptr + 1];
|
|
|
|
Uint16 y = (m[ptr + 2] << 8) + m[ptr + 3];
|
2021-04-08 12:59:45 -04:00
|
|
|
putpixel(&ppu, b1 >> 4 & 0xf ? ppu.fg : ppu.bg, x, y, b1 & 0xf);
|
2021-04-07 23:30:10 -04:00
|
|
|
ppu.reqdraw = 1;
|
2021-02-26 17:36:48 -05:00
|
|
|
}
|
|
|
|
return b1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Uint8
|
2021-03-22 17:22:06 -04:00
|
|
|
sprite_poke(Uxn *u, Uint16 ptr, Uint8 b0, Uint8 b1)
|
2021-02-26 17:36:48 -05:00
|
|
|
{
|
2021-03-22 17:22:06 -04:00
|
|
|
Uint8 *m = u->ram.dat;
|
2021-02-26 19:38:20 -05:00
|
|
|
ptr += 8;
|
|
|
|
if(b0 == 0x0e) {
|
2021-04-03 23:29:00 -04:00
|
|
|
Uint16 v, h;
|
2021-02-26 19:38:20 -05:00
|
|
|
Uint16 x = (m[ptr] << 8) + m[ptr + 1];
|
|
|
|
Uint16 y = (m[ptr + 2] << 8) + m[ptr + 3];
|
2021-04-03 23:29:00 -04:00
|
|
|
Uint8 blend = b1 & 0xf;
|
2021-04-07 23:30:10 -04:00
|
|
|
Uint8 *layer = ((b1 >> 4) & 0xf) % 2 ? ppu.fg : ppu.bg;
|
2021-04-03 23:29:00 -04:00
|
|
|
Uint8 *sprite = &m[(m[ptr + 4] << 8) + m[ptr + 5]];
|
|
|
|
for(v = 0; v < 8; v++)
|
|
|
|
for(h = 0; h < 8; h++) {
|
|
|
|
Uint8 ch1 = ((sprite[v] >> (7 - h)) & 0x1);
|
|
|
|
if(ch1 == 0 && (blend == 0x05 || blend == 0x0a || blend == 0x0f))
|
|
|
|
continue;
|
2021-04-08 12:59:45 -04:00
|
|
|
putpixel(&ppu, layer, x + h, y + v, ch1 ? blend % 4 : blend / 4);
|
2021-04-03 23:29:00 -04:00
|
|
|
}
|
2021-04-07 23:30:10 -04:00
|
|
|
ppu.reqdraw = 1;
|
2021-02-26 19:38:20 -05:00
|
|
|
}
|
2021-02-26 17:36:48 -05:00
|
|
|
return b1;
|
|
|
|
}
|
|
|
|
|
2021-03-04 23:15:01 -05:00
|
|
|
Uint8
|
2021-03-22 17:22:06 -04:00
|
|
|
file_poke(Uxn *u, Uint16 ptr, Uint8 b0, Uint8 b1)
|
2021-03-04 23:15:01 -05:00
|
|
|
{
|
2021-03-22 17:22:06 -04:00
|
|
|
Uint8 *m = u->ram.dat;
|
2021-03-16 12:01:47 -04:00
|
|
|
char *name = (char *)&m[(m[ptr + 8] << 8) + m[ptr + 8 + 1]];
|
2021-03-05 13:06:09 -05:00
|
|
|
Uint16 length = (m[ptr + 8 + 2] << 8) + m[ptr + 8 + 3];
|
2021-03-23 15:40:03 -04:00
|
|
|
Uint16 offset = (m[ptr + 0] << 8) + m[ptr + 1];
|
2021-03-04 23:15:01 -05:00
|
|
|
if(b0 == 0x0d) {
|
2021-03-05 13:06:09 -05:00
|
|
|
Uint16 addr = (m[ptr + 8 + 4] << 8) + b1;
|
|
|
|
FILE *f = fopen(name, "r");
|
2021-03-23 15:40:03 -04:00
|
|
|
if(f && fseek(f, offset, SEEK_SET) != -1 && fread(&m[addr], length, 1, f)) {
|
2021-03-05 13:06:09 -05:00
|
|
|
fclose(f);
|
|
|
|
printf("Loaded %d bytes, at %04x from %s\n", length, addr, name);
|
|
|
|
}
|
|
|
|
} else if(b0 == 0x0f) {
|
|
|
|
Uint16 addr = (m[ptr + 8 + 6] << 8) + b1;
|
2021-03-23 15:40:03 -04:00
|
|
|
FILE *f = fopen(name, (m[ptr + 2] & 0x1) ? "a" : "w");
|
|
|
|
if(f && fseek(f, offset, SEEK_SET) != -1 && fwrite(&m[addr], length, 1, f)) {
|
2021-03-05 13:06:09 -05:00
|
|
|
fclose(f);
|
|
|
|
printf("Saved %d bytes, at %04x from %s\n", length, addr, name);
|
|
|
|
}
|
2021-03-04 23:15:01 -05:00
|
|
|
}
|
|
|
|
return b1;
|
|
|
|
}
|
|
|
|
|
2021-03-24 19:30:52 -04:00
|
|
|
Uint8
|
|
|
|
midi_poke(Uxn *u, Uint16 ptr, Uint8 b0, Uint8 b1)
|
|
|
|
{
|
|
|
|
(void)u;
|
|
|
|
printf("%04x - %02x,%02x\n", ptr, b0, b1);
|
|
|
|
return b1;
|
|
|
|
}
|
|
|
|
|
2021-03-26 17:01:51 -04:00
|
|
|
Uint8
|
2021-03-27 07:33:56 -04:00
|
|
|
datetime_poke(Uxn *u, Uint16 ptr, Uint8 b0, Uint8 b1)
|
2021-03-26 17:01:51 -04:00
|
|
|
{
|
|
|
|
Uint8 *m = u->ram.dat;
|
|
|
|
time_t seconds = time(NULL);
|
|
|
|
struct tm *t = localtime(&seconds);
|
2021-03-27 18:32:47 -04:00
|
|
|
t->tm_year += 1900;
|
2021-03-27 14:04:05 -04:00
|
|
|
m[ptr + 0] = (t->tm_year & 0xff00) >> 8;
|
|
|
|
m[ptr + 1] = t->tm_year & 0xff;
|
|
|
|
m[ptr + 2] = t->tm_mon;
|
|
|
|
m[ptr + 3] = t->tm_mday;
|
|
|
|
m[ptr + 4] = t->tm_hour;
|
|
|
|
m[ptr + 5] = t->tm_min;
|
|
|
|
m[ptr + 6] = t->tm_sec;
|
|
|
|
m[ptr + 7] = t->tm_wday;
|
2021-03-27 18:32:47 -04:00
|
|
|
m[ptr + 8] = (t->tm_yday & 0xff00) >> 8;
|
|
|
|
m[ptr + 9] = t->tm_yday & 0xff;
|
2021-03-26 17:01:51 -04:00
|
|
|
m[ptr + 10] = t->tm_isdst;
|
2021-03-28 13:20:24 -04:00
|
|
|
(void)b0;
|
2021-03-26 17:01:51 -04:00
|
|
|
return b1;
|
|
|
|
}
|
|
|
|
|
2021-02-28 14:17:32 -05:00
|
|
|
Uint8
|
2021-03-22 17:22:06 -04:00
|
|
|
system_poke(Uxn *u, Uint16 ptr, Uint8 b0, Uint8 b1)
|
2021-02-28 14:17:32 -05:00
|
|
|
{
|
2021-03-22 17:22:06 -04:00
|
|
|
Uint8 *m = u->ram.dat;
|
2021-04-05 16:14:37 -04:00
|
|
|
m[PAGE_DEVICE + b0] = b1;
|
2021-04-07 23:30:10 -04:00
|
|
|
loadtheme(&ppu, &m[PAGE_DEVICE + 0x0008]);
|
2021-03-01 12:38:54 -05:00
|
|
|
(void)ptr;
|
2021-02-28 14:17:32 -05:00
|
|
|
return b1;
|
|
|
|
}
|
|
|
|
|
2021-02-26 17:36:48 -05:00
|
|
|
Uint8
|
2021-03-22 17:22:06 -04:00
|
|
|
ppnil(Uxn *u, Uint16 ptr, Uint8 b0, Uint8 b1)
|
2021-02-26 17:36:48 -05:00
|
|
|
{
|
2021-03-22 17:22:06 -04:00
|
|
|
(void)u;
|
2021-02-26 19:38:20 -05:00
|
|
|
(void)ptr;
|
|
|
|
(void)b0;
|
2021-02-26 17:36:48 -05:00
|
|
|
return b1;
|
|
|
|
}
|
|
|
|
|
2021-02-09 20:22:52 -05:00
|
|
|
#pragma mark - Generics
|
|
|
|
|
2021-02-08 17:18:01 -05:00
|
|
|
int
|
2021-02-08 18:46:52 -05:00
|
|
|
start(Uxn *u)
|
2021-02-08 17:18:01 -05:00
|
|
|
{
|
2021-04-05 14:39:08 -04:00
|
|
|
inituxn(u, 0x0200);
|
2021-04-07 23:30:10 -04:00
|
|
|
redraw(ppu.output, u);
|
2021-02-08 18:46:52 -05:00
|
|
|
while(1) {
|
2021-04-04 23:58:47 -04:00
|
|
|
SDL_Event event;
|
|
|
|
double elapsed, start = SDL_GetPerformanceCounter();
|
2021-04-07 16:50:35 -04:00
|
|
|
SDL_LockAudioDevice(audio_id);
|
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:
|
|
|
|
SDL_UnlockAudioDevice(audio_id);
|
|
|
|
quit();
|
|
|
|
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:
|
|
|
|
domouse(u, &event);
|
|
|
|
evaluxn(u, devmouse->vector);
|
|
|
|
break;
|
|
|
|
case SDL_KEYDOWN:
|
|
|
|
case SDL_KEYUP:
|
2021-04-07 00:34:11 -04:00
|
|
|
doctrl(u, &event, event.type == SDL_KEYDOWN);
|
2021-04-05 16:00:55 -04:00
|
|
|
evaluxn(u, devctrl->vector);
|
|
|
|
break;
|
2021-04-07 00:34:11 -04:00
|
|
|
case SDL_TEXTINPUT:
|
|
|
|
dotext(u, &event);
|
|
|
|
evaluxn(u, devkey->vector);
|
|
|
|
break;
|
2021-04-04 23:58:47 -04:00
|
|
|
case SDL_WINDOWEVENT:
|
|
|
|
if(event.window.event == SDL_WINDOWEVENT_EXPOSED)
|
2021-04-07 23:30:10 -04:00
|
|
|
redraw(ppu.output, u);
|
2021-04-04 23:58:47 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-04-05 14:39:08 -04:00
|
|
|
evaluxn(u, devscreen->vector);
|
2021-04-07 16:50:35 -04:00
|
|
|
SDL_UnlockAudioDevice(audio_id);
|
2021-04-07 23:30:10 -04:00
|
|
|
if(ppu.reqdraw)
|
|
|
|
redraw(ppu.output, u);
|
2021-04-04 14:47:13 -04:00
|
|
|
elapsed = (SDL_GetPerformanceCounter() - start) / (double)SDL_GetPerformanceFrequency() * 1000.0f;
|
2021-04-04 23:58:47 -04:00
|
|
|
SDL_Delay(clamp(16.666f - elapsed, 0, 1000));
|
2021-02-08 18:46:52 -05:00
|
|
|
}
|
2021-04-05 14:39:08 -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-04-07 23:30:10 -04:00
|
|
|
ppu.zoom = 2;
|
2021-02-09 13:58:06 -05:00
|
|
|
|
2021-02-08 17:18:01 -05:00
|
|
|
if(argc < 2)
|
2021-02-08 18:46:52 -05: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-04-05 14:39:08 -04:00
|
|
|
devsystem = portuxn(&u, 0x00, "system", system_poke);
|
|
|
|
portuxn(&u, 0x01, "console", console_poke);
|
|
|
|
devscreen = portuxn(&u, 0x02, "screen", screen_poke);
|
|
|
|
portuxn(&u, 0x03, "sprite", sprite_poke);
|
|
|
|
devctrl = portuxn(&u, 0x04, "controller", ppnil);
|
|
|
|
devkey = portuxn(&u, 0x05, "key", ppnil);
|
|
|
|
devmouse = portuxn(&u, 0x06, "mouse", ppnil);
|
|
|
|
portuxn(&u, 0x07, "file", file_poke);
|
2021-04-07 16:50:35 -04:00
|
|
|
if(!initapu(&u, 0x08))
|
|
|
|
return 1;
|
2021-04-05 14:39:08 -04:00
|
|
|
portuxn(&u, 0x09, "midi", ppnil);
|
|
|
|
portuxn(&u, 0x0a, "datetime", datetime_poke);
|
2021-04-04 11:34:18 -04:00
|
|
|
portuxn(&u, 0x0b, "---", ppnil);
|
|
|
|
portuxn(&u, 0x0c, "---", ppnil);
|
|
|
|
portuxn(&u, 0x0d, "---", ppnil);
|
|
|
|
portuxn(&u, 0x0e, "---", ppnil);
|
2021-04-05 14:39:08 -04:00
|
|
|
portuxn(&u, 0x0f, "---", ppnil);
|
2021-02-28 14:17:32 -05:00
|
|
|
|
|
|
|
/* Write screen size to dev/screen */
|
2021-04-08 12:59:45 -04:00
|
|
|
mempoke16(&u, devscreen->addr + 2, ppu.hor * 8);
|
|
|
|
mempoke16(&u, devscreen->addr + 4, ppu.ver * 8);
|
2021-02-09 00:59:46 -05:00
|
|
|
|
2021-02-08 18:46:52 -05:00
|
|
|
start(&u);
|
|
|
|
quit();
|
2021-02-08 17:18:01 -05:00
|
|
|
return 0;
|
|
|
|
}
|