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-05-12 21:28:45 -04:00
|
|
|
#include "uxn.h"
|
|
|
|
#include "devices/ppu.h"
|
|
|
|
#include "devices/apu.h"
|
|
|
|
#include "devices/mpu.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-04-08 16:14:40 -04:00
|
|
|
static 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-25 10:12:45 -04:00
|
|
|
static Apu apu[POLYPHONY];
|
2021-04-25 22:50:45 -04:00
|
|
|
static Mpu mpu;
|
2021-04-26 14:49:34 -04:00
|
|
|
static Device *devscreen, *devmouse, *devctrl, *devmidi, *devaudio0;
|
2021-02-18 21:16:39 -05:00
|
|
|
|
2021-04-09 10:30:45 -04:00
|
|
|
Uint8 zoom = 0, debug = 0, reqdraw = 0;
|
|
|
|
|
2021-04-08 19:47:38 -04:00
|
|
|
int
|
|
|
|
clamp(int val, int min, int max)
|
|
|
|
{
|
|
|
|
return (val >= min) ? (val <= max) ? val : max : min;
|
|
|
|
}
|
2021-02-14 13:22:42 -05:00
|
|
|
|
|
|
|
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-04-08 16:14:40 -04:00
|
|
|
static void
|
|
|
|
audio_callback(void *u, Uint8 *stream, int len)
|
|
|
|
{
|
2021-04-25 10:12:45 -04:00
|
|
|
int i;
|
|
|
|
Sint16 *samples = (Sint16 *)stream;
|
|
|
|
SDL_memset(stream, 0, len);
|
|
|
|
for(i = 0; i < POLYPHONY; ++i)
|
|
|
|
apu_render(&apu[i], samples, samples + len / 2);
|
|
|
|
(void)u;
|
2021-04-08 16:14:40 -04: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-22 14:04:06 -04:00
|
|
|
drawppu(&ppu);
|
2021-04-09 10:30:45 -04:00
|
|
|
if(debug)
|
2021-04-07 23:30:10 -04:00
|
|
|
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-09 10:30:45 -04:00
|
|
|
reqdraw = 0;
|
2021-02-08 18:46:52 -05:00
|
|
|
}
|
|
|
|
|
2021-03-24 12:39:19 -04:00
|
|
|
void
|
|
|
|
toggledebug(Uxn *u)
|
|
|
|
{
|
2021-04-09 10:30:45 -04:00
|
|
|
debug = !debug;
|
2021-04-07 23:30:10 -04:00
|
|
|
redraw(ppu.output, u);
|
2021-03-24 12:39:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
togglezoom(Uxn *u)
|
|
|
|
{
|
2021-04-09 10:30:45 -04:00
|
|
|
zoom = zoom == 3 ? 1 : zoom + 1;
|
|
|
|
SDL_SetWindowSize(gWindow, ppu.width * zoom, ppu.height * 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-04-08 19:30:44 -04:00
|
|
|
SDL_UnlockAudioDevice(audio_id);
|
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
|
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-04-08 12:59:45 -04:00
|
|
|
if(!initppu(&ppu, 48, 32, 16))
|
|
|
|
return error("PPU", "Init failure");
|
2021-04-25 22:50:45 -04:00
|
|
|
if(!initmpu(&mpu, 1))
|
|
|
|
return error("MPU", "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-09 10:30:45 -04:00
|
|
|
gWindow = SDL_CreateWindow("Uxn", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, ppu.width * zoom, ppu.height * 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-05-18 09:28:47 -04:00
|
|
|
SDL_RenderSetLogicalSize(gRenderer, ppu.width, ppu.height);
|
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-04-08 16:14:40 -04:00
|
|
|
SDL_zero(as);
|
|
|
|
as.freq = SAMPLE_FREQUENCY;
|
|
|
|
as.format = AUDIO_S16;
|
|
|
|
as.channels = 2;
|
|
|
|
as.callback = audio_callback;
|
2021-04-16 06:02:04 -04:00
|
|
|
as.samples = 512;
|
2021-04-25 10:12:45 -04:00
|
|
|
as.userdata = NULL;
|
2021-04-08 16:14:40 -04:00
|
|
|
audio_id = SDL_OpenAudioDevice(NULL, 0, &as, NULL, 0);
|
|
|
|
if(!audio_id)
|
|
|
|
return error("Audio", SDL_GetError());
|
|
|
|
SDL_PauseAudioDevice(audio_id, 0);
|
2021-02-08 18:46:52 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
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-05-18 09:28:47 -04:00
|
|
|
Uint16 x = clamp(event->motion.x - ppu.pad, 0, ppu.hor * 8 - 1);
|
|
|
|
Uint16 y = clamp(event->motion.y - ppu.pad, 0, ppu.ver * 8 - 1);
|
2021-04-20 23:38:15 -04:00
|
|
|
mempoke16(devmouse->dat, 0x2, x);
|
|
|
|
mempoke16(devmouse->dat, 0x4, y);
|
2021-04-20 17:30:26 -04:00
|
|
|
devmouse->dat[7] = 0x00;
|
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;
|
|
|
|
if(flag == 0x10 && (devmouse->dat[6] & 0x01))
|
|
|
|
devmouse->dat[7] = 0x01;
|
|
|
|
if(flag == 0x01 && (devmouse->dat[6] & 0x10))
|
|
|
|
devmouse->dat[7] = 0x10;
|
2021-02-20 17:07:20 -05: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-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-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-04-10 23:55:31 -04:00
|
|
|
case SDLK_LSHIFT: flag = 0x04; break;
|
|
|
|
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-04-10 22:39:32 -04:00
|
|
|
if(flag && z)
|
2021-04-20 17:30:26 -04:00
|
|
|
devctrl->dat[2] |= flag;
|
2021-04-10 22:39:32 -04:00
|
|
|
else if(flag)
|
2021-04-20 17:30:26 -04:00
|
|
|
devctrl->dat[2] &= (~flag);
|
2021-04-10 22:39:32 -04:00
|
|
|
if(z && event->key.keysym.sym < 20)
|
2021-04-20 17:30:26 -04:00
|
|
|
devctrl->dat[3] = event->key.keysym.sym;
|
2021-02-09 00:59:46 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark - Devices
|
|
|
|
|
2021-04-24 04:10:24 -04:00
|
|
|
void
|
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-04-27 16:10:58 -04:00
|
|
|
if(!w) {
|
|
|
|
d->dat[0x2] = d->u->wst.ptr;
|
|
|
|
d->dat[0x3] = d->u->rst.ptr;
|
|
|
|
} else {
|
|
|
|
putcolors(&ppu, &d->dat[0x8]);
|
|
|
|
reqdraw = 1;
|
|
|
|
}
|
2021-04-20 13:31:50 -04:00
|
|
|
(void)b0;
|
|
|
|
}
|
|
|
|
|
2021-04-24 04:10:24 -04:00
|
|
|
void
|
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-04-24 13:15:47 -04:00
|
|
|
if(!w) return;
|
2021-03-01 11:55:16 -05:00
|
|
|
switch(b0) {
|
2021-04-24 12:43:30 -04:00
|
|
|
case 0x8: printf("%c", d->dat[0x8]); break;
|
|
|
|
case 0x9: printf("0x%02x", d->dat[0x9]); break;
|
|
|
|
case 0xb: printf("0x%04x", mempeek16(d->dat, 0xa)); break;
|
|
|
|
case 0xd: printf("%s", &d->mem[mempeek16(d->dat, 0xc)]); break;
|
2021-03-01 11:55:16 -05:00
|
|
|
}
|
2021-02-26 17:36:48 -05:00
|
|
|
fflush(stdout);
|
|
|
|
}
|
|
|
|
|
2021-04-24 04:10:24 -04:00
|
|
|
void
|
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-04-21 00:29:18 -04:00
|
|
|
Uint16 x = mempeek16(d->dat, 0x8);
|
|
|
|
Uint16 y = mempeek16(d->dat, 0xa);
|
|
|
|
Uint8 *addr = &d->mem[mempeek16(d->dat, 0xc)];
|
2021-04-24 13:15:47 -04:00
|
|
|
Uint8 *layer = d->dat[0xe] >> 4 & 0x1 ? ppu.fg : ppu.bg;
|
2021-04-29 13:10:07 -04:00
|
|
|
Uint8 mode = d->dat[0xe] >> 5;
|
|
|
|
if(!mode)
|
|
|
|
putpixel(&ppu, layer, x, y, d->dat[0xe] & 0x3);
|
2021-04-29 18:05:38 -04:00
|
|
|
else if(mode-- & 0x1)
|
|
|
|
puticn(&ppu, layer, x, y, addr, d->dat[0xe] & 0xf, mode & 0x2, mode & 0x4);
|
2021-04-29 13:10:07 -04:00
|
|
|
else
|
2021-04-29 18:05:38 -04:00
|
|
|
putchr(&ppu, layer, x, y, addr, d->dat[0xe] & 0xf, mode & 0x2, mode & 0x4);
|
|
|
|
|
2021-04-09 10:30:45 -04:00
|
|
|
reqdraw = 1;
|
2021-02-26 19:38:20 -05:00
|
|
|
}
|
2021-02-26 17:36:48 -05:00
|
|
|
}
|
|
|
|
|
2021-04-24 04:10:24 -04:00
|
|
|
void
|
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-04-21 08:37:41 -04:00
|
|
|
char *name = (char *)&d->mem[mempeek16(d->dat, 0x8)];
|
|
|
|
Uint16 result = 0, length = mempeek16(d->dat, 0xa);
|
|
|
|
Uint16 offset = mempeek16(d->dat, 0x4);
|
2021-04-24 04:10:24 -04:00
|
|
|
Uint16 addr = mempeek16(d->dat, b0 - 1);
|
2021-04-14 16:56:50 -04:00
|
|
|
FILE *f = fopen(name, read ? "r" : (offset ? "a" : "w"));
|
|
|
|
if(f) {
|
2021-05-17 16:48:04 -04:00
|
|
|
printf("%s %04x %s %s: ", read ? "Loading" : "Saving", addr, read ? "from" : "to", name);
|
|
|
|
if(fseek(f, offset, SEEK_SET) != -1)
|
|
|
|
result = read ? fread(&d->mem[addr], 1, length, f) : fwrite(&d->mem[addr], 1, length, f);
|
|
|
|
printf("%04x bytes\n", result);
|
2021-03-05 13:06:09 -05:00
|
|
|
fclose(f);
|
2021-04-14 16:56:50 -04:00
|
|
|
}
|
2021-04-21 08:37:41 -04:00
|
|
|
mempoke16(d->dat, 0x2, result);
|
2021-03-04 23:15:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-24 04:10:24 -04:00
|
|
|
static void
|
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-04-27 16:03:38 -04:00
|
|
|
if(!w) {
|
|
|
|
if(b0 == 0x2)
|
|
|
|
mempoke16(d->dat, 0x2, c->i);
|
|
|
|
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);
|
|
|
|
c->len = mempeek16(d->dat, 0xa);
|
|
|
|
c->addr = &d->mem[mempeek16(d->dat, 0xc)];
|
|
|
|
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);
|
|
|
|
apu_start(c, mempeek16(d->dat, 0x8), d->dat[0xf] & 0x7f);
|
2021-04-26 14:49:34 -04:00
|
|
|
SDL_UnlockAudioDevice(audio_id);
|
2021-04-25 10:12:45 -04:00
|
|
|
}
|
2021-03-24 19:30:52 -04:00
|
|
|
}
|
|
|
|
|
2021-04-24 04:10:24 -04:00
|
|
|
void
|
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-04-21 00:29:18 -04:00
|
|
|
mempoke16(d->dat, 0x0, t->tm_year);
|
|
|
|
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;
|
|
|
|
mempoke16(d->dat, 0x08, t->tm_yday);
|
|
|
|
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-03-26 17:01:51 -04:00
|
|
|
}
|
|
|
|
|
2021-04-25 22:50:45 -04:00
|
|
|
void
|
|
|
|
midi_talk(Device *d, Uint8 b0, Uint8 w)
|
|
|
|
{
|
|
|
|
(void)d;
|
|
|
|
(void)b0;
|
|
|
|
(void)w;
|
|
|
|
}
|
|
|
|
|
2021-04-24 04:10:24 -04:00
|
|
|
void
|
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-02-26 17:36:48 -05:00
|
|
|
}
|
|
|
|
|
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-20 17:30:26 -04:00
|
|
|
evaluxn(u, 0x0100);
|
2021-04-07 23:30:10 -04:00
|
|
|
redraw(ppu.output, u);
|
2021-02-08 18:46:52 -05:00
|
|
|
while(1) {
|
2021-04-25 22:50:45 -04:00
|
|
|
int i;
|
2021-04-04 23:58:47 -04:00
|
|
|
SDL_Event event;
|
|
|
|
double elapsed, start = SDL_GetPerformanceCounter();
|
|
|
|
while(SDL_PollEvent(&event) != 0) {
|
|
|
|
switch(event.type) {
|
2021-04-07 16:50:35 -04:00
|
|
|
case SDL_QUIT:
|
|
|
|
quit();
|
|
|
|
break;
|
2021-04-10 22:39:32 -04:00
|
|
|
case SDL_TEXTINPUT:
|
2021-04-08 19:30:44 -04:00
|
|
|
case SDL_KEYDOWN:
|
|
|
|
case SDL_KEYUP:
|
2021-05-11 14:42:12 -04:00
|
|
|
if(event.text.text[0] >= ' ' || event.text.text[0] <= '~')
|
|
|
|
devctrl->dat[3] = event.text.text[0];
|
2021-04-08 19:30:44 -04:00
|
|
|
doctrl(u, &event, event.type == SDL_KEYDOWN);
|
2021-04-20 23:38:15 -04:00
|
|
|
evaluxn(u, mempeek16(devctrl->dat, 0));
|
2021-04-20 17:30:26 -04:00
|
|
|
devctrl->dat[3] = 0;
|
2021-04-10 23:55:31 -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-04-20 23:38:15 -04:00
|
|
|
evaluxn(u, mempeek16(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-04-07 23:30:10 -04:00
|
|
|
redraw(ppu.output, u);
|
2021-04-04 23:58:47 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-04-25 22:50:45 -04:00
|
|
|
listenmpu(&mpu);
|
|
|
|
for(i = 0; i < mpu.queue; ++i) {
|
2021-04-26 23:55:51 -04:00
|
|
|
devmidi->dat[2] = mpu.events[i].message;
|
|
|
|
devmidi->dat[3] = mpu.events[i].message >> 8;
|
|
|
|
devmidi->dat[4] = mpu.events[i].message >> 16;
|
2021-04-25 22:50:45 -04:00
|
|
|
evaluxn(u, mempeek16(devmidi->dat, 0));
|
|
|
|
}
|
2021-04-20 23:38:15 -04:00
|
|
|
evaluxn(u, mempeek16(devscreen->dat, 0));
|
2021-04-09 10:30:45 -04:00
|
|
|
if(reqdraw)
|
2021-04-07 23:30:10 -04:00
|
|
|
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-09 10:30:45 -04:00
|
|
|
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");
|
2021-04-25 10:12:45 -04:00
|
|
|
if(!init())
|
2021-02-08 18:46:52 -05:00
|
|
|
return error("Init", "Failed");
|
|
|
|
|
2021-04-25 00:18:15 -04:00
|
|
|
portuxn(&u, 0x0, "system", system_talk);
|
2021-04-24 12:43:30 -04:00
|
|
|
portuxn(&u, 0x1, "console", console_talk);
|
|
|
|
devscreen = portuxn(&u, 0x2, "screen", screen_talk);
|
2021-04-26 14:49:34 -04:00
|
|
|
devaudio0 = portuxn(&u, 0x3, "audio0", audio_talk);
|
|
|
|
portuxn(&u, 0x4, "audio1", audio_talk);
|
|
|
|
portuxn(&u, 0x5, "audio2", audio_talk);
|
|
|
|
portuxn(&u, 0x6, "audio3", audio_talk);
|
2021-04-26 13:52:46 -04:00
|
|
|
devmidi = portuxn(&u, 0x7, "midi", midi_talk);
|
|
|
|
devctrl = portuxn(&u, 0x8, "controller", nil_talk);
|
|
|
|
devmouse = portuxn(&u, 0x9, "mouse", nil_talk);
|
|
|
|
portuxn(&u, 0xa, "file", file_talk);
|
|
|
|
portuxn(&u, 0xb, "datetime", datetime_talk);
|
2021-04-24 12:43:30 -04:00
|
|
|
portuxn(&u, 0xc, "---", nil_talk);
|
|
|
|
portuxn(&u, 0xd, "---", nil_talk);
|
|
|
|
portuxn(&u, 0xe, "---", nil_talk);
|
|
|
|
portuxn(&u, 0xf, "---", nil_talk);
|
2021-04-20 17:30:26 -04:00
|
|
|
|
2021-02-28 14:17:32 -05:00
|
|
|
/* Write screen size to dev/screen */
|
2021-04-20 23:38:15 -04:00
|
|
|
mempoke16(devscreen->dat, 2, ppu.hor * 8);
|
|
|
|
mempoke16(devscreen->dat, 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;
|
|
|
|
}
|