2021-02-08 17:18:01 -05:00
|
|
|
#include <stdio.h>
|
2021-03-26 17:01:51 -04:00
|
|
|
#include <time.h>
|
2022-01-08 13:03:21 -05:00
|
|
|
|
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>
|
2022-01-05 08:28:22 -05:00
|
|
|
#include "devices/system.h"
|
2021-12-28 16:37:26 -05:00
|
|
|
#include "devices/screen.h"
|
2021-12-28 16:47:35 -05:00
|
|
|
#include "devices/audio.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"
|
2022-01-07 13:02:28 -05:00
|
|
|
#include "devices/datetime.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
|
2022-03-27 08:53:25 -04:00
|
|
|
#define TIMEOUT_FRAMES 10
|
2021-08-04 23:30:57 -04:00
|
|
|
|
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-12-28 16:37:26 -05:00
|
|
|
|
2021-09-16 22:48:00 -04:00
|
|
|
/* devices */
|
2021-12-28 16:37:26 -05:00
|
|
|
|
2022-03-17 14:31:33 -04:00
|
|
|
static Device *devscreen, *devmouse, *devctrl, *devaudio0, *devfile0;
|
2021-09-29 20:58:58 -04:00
|
|
|
static Uint8 zoom = 1;
|
2022-03-27 08:53:25 -04:00
|
|
|
static Uint32 stdin_event, audio0_event, redraw_event, interrupt_event;
|
2021-02-18 21:16:39 -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-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)
|
|
|
|
{
|
2022-03-17 12:59:36 -04:00
|
|
|
int instance, running = 0;
|
2021-04-25 10:12:45 -04:00
|
|
|
Sint16 *samples = (Sint16 *)stream;
|
|
|
|
SDL_memset(stream, 0, len);
|
2022-03-17 12:59:36 -04:00
|
|
|
for(instance = 0; instance < POLYPHONY; instance++)
|
|
|
|
running += audio_render(instance, samples, samples + len / 2);
|
2021-07-17 05:13:21 -04:00
|
|
|
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
|
2022-03-17 12:59:36 -04:00
|
|
|
audio_finished_handler(int instance)
|
2021-09-21 18:41:59 -04:00
|
|
|
{
|
|
|
|
SDL_Event event;
|
2022-03-17 12:59:36 -04:00
|
|
|
event.type = audio0_event + instance;
|
2021-09-21 18:41:59 -04:00
|
|
|
SDL_PushEvent(&event);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
stdin_handler(void *p)
|
|
|
|
{
|
|
|
|
SDL_Event event;
|
|
|
|
event.type = stdin_event;
|
2022-01-11 18:50:41 -05:00
|
|
|
while(fread(&event.cbutton.button, 1, 1, stdin) > 0)
|
2021-09-21 18:41:59 -04:00
|
|
|
SDL_PushEvent(&event);
|
|
|
|
return 0;
|
|
|
|
(void)p;
|
|
|
|
}
|
|
|
|
|
2022-03-27 08:16:40 -04:00
|
|
|
static int
|
|
|
|
redraw_handler(void *p)
|
|
|
|
{
|
2022-03-27 08:53:25 -04:00
|
|
|
int dropped_frames = 0;
|
|
|
|
SDL_Event event, interrupt;
|
2022-03-27 08:16:40 -04:00
|
|
|
event.type = redraw_event;
|
2022-03-27 08:53:25 -04:00
|
|
|
interrupt.type = interrupt_event;
|
2022-03-27 08:16:40 -04:00
|
|
|
for(;;) {
|
|
|
|
SDL_Delay(16);
|
2022-03-27 08:53:25 -04:00
|
|
|
if(SDL_HasEvent(redraw_event) == SDL_FALSE) {
|
2022-03-27 08:16:40 -04:00
|
|
|
SDL_PushEvent(&event);
|
2022-03-27 08:53:25 -04:00
|
|
|
dropped_frames = 0;
|
|
|
|
}
|
|
|
|
else if(++dropped_frames == TIMEOUT_FRAMES) {
|
|
|
|
SDL_PushEvent(&interrupt);
|
|
|
|
}
|
2022-03-27 08:16:40 -04:00
|
|
|
}
|
|
|
|
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);
|
2022-01-19 20:24:22 -05:00
|
|
|
if(w == win_old.x && h == win_old.y) return;
|
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-12-28 20:22:40 -05:00
|
|
|
int
|
2022-01-19 20:24:22 -05:00
|
|
|
set_size(void)
|
2021-09-22 13:57:43 -04:00
|
|
|
{
|
|
|
|
gRect.x = PAD;
|
|
|
|
gRect.y = PAD;
|
2021-12-29 12:11:03 -05:00
|
|
|
gRect.w = uxn_screen.width;
|
|
|
|
gRect.h = uxn_screen.height;
|
2021-09-22 13:57:43 -04:00
|
|
|
if(gTexture != NULL) SDL_DestroyTexture(gTexture);
|
2021-12-29 12:11:03 -05:00
|
|
|
SDL_RenderSetLogicalSize(gRenderer, uxn_screen.width + PAD * 2, uxn_screen.height + PAD * 2);
|
2022-01-06 12:24:35 -05:00
|
|
|
gTexture = SDL_CreateTexture(gRenderer, SDL_PIXELFORMAT_RGB888, SDL_TEXTUREACCESS_STATIC, uxn_screen.width, uxn_screen.height);
|
2021-09-22 13:57:43 -04:00
|
|
|
if(gTexture == NULL || SDL_SetTextureBlendMode(gTexture, SDL_BLENDMODE_NONE))
|
2021-10-24 15:48:56 -04:00
|
|
|
return error("gTexture", SDL_GetError());
|
2021-12-29 12:11:03 -05:00
|
|
|
if(SDL_UpdateTexture(gTexture, NULL, uxn_screen.pixels, sizeof(Uint32)) != 0)
|
2021-10-24 15:48:56 -04:00
|
|
|
return error("SDL_UpdateTexture", SDL_GetError());
|
2022-01-19 20:24:22 -05:00
|
|
|
set_window_size(gWindow, (uxn_screen.width + PAD * 2) * zoom, (uxn_screen.height + PAD * 2) * zoom);
|
2021-09-22 13:57:43 -04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-06-28 17:42:36 -04:00
|
|
|
static void
|
2022-01-05 23:44:33 -05:00
|
|
|
redraw(void)
|
2021-02-08 18:46:52 -05:00
|
|
|
{
|
2022-01-19 20:24:22 -05:00
|
|
|
if(gRect.w != uxn_screen.width || gRect.h != uxn_screen.height) set_size();
|
2021-12-29 12:11:03 -05:00
|
|
|
screen_redraw(&uxn_screen, uxn_screen.pixels);
|
2022-01-05 16:45:49 -05:00
|
|
|
if(SDL_UpdateTexture(gTexture, NULL, uxn_screen.pixels, uxn_screen.width * sizeof(Uint32)) != 0)
|
2021-10-24 15:48:56 -04:00
|
|
|
error("SDL_UpdateTexture", SDL_GetError());
|
2021-09-16 22:48:00 -04:00
|
|
|
SDL_RenderClear(gRenderer);
|
2022-01-05 16:45:49 -05:00
|
|
|
SDL_RenderCopy(gRenderer, gTexture, NULL, &gRect);
|
2021-09-16 22:48:00 -04:00
|
|
|
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;
|
2021-12-28 20:38:55 -05:00
|
|
|
if(SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_JOYSTICK) < 0)
|
|
|
|
return error("sdl", SDL_GetError());
|
2022-01-28 21:13:01 -05:00
|
|
|
gWindow = SDL_CreateWindow("Uxn", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, (WIDTH + PAD * 2) * zoom, (HEIGHT + PAD * 2) * zoom, SDL_WINDOW_SHOWN | SDL_WINDOW_ALLOW_HIGHDPI);
|
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());
|
2022-01-05 16:45:49 -05:00
|
|
|
SDL_SetRenderDrawColor(gRenderer, 0x00, 0x00, 0x00, 0xff);
|
2021-12-28 20:38:55 -05:00
|
|
|
audio_id = SDL_OpenAudioDevice(NULL, 0, &as, NULL, 0);
|
|
|
|
if(!audio_id)
|
|
|
|
error("sdl_audio", SDL_GetError());
|
2021-12-29 12:33:23 -05:00
|
|
|
if(SDL_NumJoysticks() > 0 && SDL_JoystickOpen(0) == NULL)
|
2021-12-28 20:38:55 -05:00
|
|
|
error("sdl_joystick", SDL_GetError());
|
2021-09-21 18:41:59 -04:00
|
|
|
stdin_event = SDL_RegisterEvents(1);
|
|
|
|
audio0_event = SDL_RegisterEvents(POLYPHONY);
|
2022-03-27 08:16:40 -04:00
|
|
|
redraw_event = SDL_RegisterEvents(1);
|
2022-03-27 08:53:25 -04:00
|
|
|
interrupt_event = SDL_RegisterEvents(1);
|
2021-09-21 18:41:59 -04:00
|
|
|
SDL_CreateThread(stdin_handler, "stdin", NULL);
|
2022-03-27 08:16:40 -04:00
|
|
|
SDL_CreateThread(redraw_handler, "redraw", 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
|
|
|
|
|
2022-01-05 08:28:22 -05:00
|
|
|
void
|
|
|
|
system_deo_special(Device *d, Uint8 port)
|
2021-02-26 17:36:48 -05:00
|
|
|
{
|
2021-11-04 13:13:01 -04:00
|
|
|
if(port > 0x7 && port < 0xe)
|
2021-12-29 12:11:03 -05:00
|
|
|
screen_palette(&uxn_screen, &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
|
|
|
{
|
2022-01-11 18:50:41 -05:00
|
|
|
FILE *fd = port == 0x8 ? stdout : port == 0x9 ? stderr
|
|
|
|
: 0;
|
|
|
|
if(fd) {
|
|
|
|
fputc(d->dat[port], fd);
|
|
|
|
fflush(fd);
|
|
|
|
}
|
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
|
|
|
{
|
2022-03-17 12:59:36 -04:00
|
|
|
int instance = d - devaudio0;
|
2021-11-04 13:13:01 -04:00
|
|
|
if(!audio_id) return d->dat[port];
|
|
|
|
switch(port) {
|
2022-03-17 12:59:36 -04:00
|
|
|
case 0x4: return audio_get_vu(instance);
|
|
|
|
case 0x2: DEVPOKE16(0x2, audio_get_position(instance)); /* 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
|
|
|
{
|
2022-03-17 12:59:36 -04:00
|
|
|
int instance = d - devaudio0;
|
2021-11-04 12:38:32 -04:00
|
|
|
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);
|
2022-03-17 12:59:36 -04:00
|
|
|
audio_start(instance, d);
|
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
|
|
|
}
|
|
|
|
|
2022-03-17 14:31:33 -04:00
|
|
|
static void
|
|
|
|
file_deo(Device *d, Uint8 port)
|
|
|
|
{
|
|
|
|
file_i_deo(d - devfile0, d, port);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Uint8
|
|
|
|
file_dei(Device *d, Uint8 port)
|
|
|
|
{
|
|
|
|
return file_i_dei(d - devfile0, d, port);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2022-01-07 19:46:50 -05:00
|
|
|
(void)d;
|
|
|
|
(void)port;
|
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;
|
2022-01-07 19:51:43 -05:00
|
|
|
r = f->read(f, u->ram + PAGE_PROGRAM, 1, 0x10000 - PAGE_PROGRAM);
|
2021-12-15 17:54:44 -05:00
|
|
|
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
|
|
|
{
|
2022-01-12 21:56:59 -05:00
|
|
|
if(!uxn_boot(u, (Uint8 *)calloc(0x10000, sizeof(Uint8))))
|
2021-11-08 10:51:09 -05:00
|
|
|
return error("Boot", "Failed to start uxn.");
|
2022-01-06 17:32:28 -05:00
|
|
|
if(!load(u, rom))
|
|
|
|
return error("Boot", "Failed to load rom.");
|
2022-01-13 13:55:02 -05:00
|
|
|
/* system */ uxn_port(u, 0x0, system_dei, system_deo);
|
2022-01-11 17:38:55 -05:00
|
|
|
/* console */ uxn_port(u, 0x1, nil_dei, console_deo);
|
2022-01-07 14:48:09 -05:00
|
|
|
/* 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);
|
2022-03-17 14:57:22 -04:00
|
|
|
/* file0 */ devfile0 = uxn_port(u, 0xa, file_dei, file_deo);
|
|
|
|
/* file1 */ uxn_port(u, 0xb, file_dei, file_deo);
|
|
|
|
/* datetime */ uxn_port(u, 0xc, datetime_dei, nil_deo);
|
2022-01-07 14:48:09 -05:00
|
|
|
/* unused */ uxn_port(u, 0xd, nil_dei, nil_deo);
|
|
|
|
/* unused */ uxn_port(u, 0xe, nil_dei, nil_deo);
|
2022-01-13 11:25:59 -05:00
|
|
|
/* unused */ uxn_port(u, 0xf, nil_dei, nil_deo);
|
2021-11-08 10:51:09 -05:00
|
|
|
if(!uxn_eval(u, PAGE_PROGRAM))
|
|
|
|
return error("Boot", "Failed to start rom.");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-12-27 16:59:22 -05:00
|
|
|
static void
|
|
|
|
set_zoom(Uint8 scale)
|
|
|
|
{
|
|
|
|
zoom = clamp(scale, 1, 3);
|
2021-12-29 12:11:03 -05:00
|
|
|
set_window_size(gWindow, (uxn_screen.width + PAD * 2) * zoom, (uxn_screen.height + PAD * 2) * zoom);
|
2021-12-27 16:59:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
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-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
|
|
|
{
|
2022-01-19 20:24:22 -05:00
|
|
|
screen_resize(&uxn_screen, WIDTH, HEIGHT);
|
2022-01-10 23:35:34 -05:00
|
|
|
start(u, "launcher.rom");
|
2021-11-08 10:51:09 -05:00
|
|
|
}
|
|
|
|
|
2021-12-27 13:04:24 -05:00
|
|
|
static 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;
|
2021-12-27 16:42:36 -05:00
|
|
|
case SDLK_HOME: return 0x08;
|
2021-12-27 00:33:23 -05:00
|
|
|
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 13:04:24 -05:00
|
|
|
static Uint8
|
2021-12-27 14:44:57 -05:00
|
|
|
get_button_joystick(SDL_Event *event)
|
|
|
|
{
|
|
|
|
return 0x01 << (event->jbutton.button & 0x3);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Uint8
|
|
|
|
get_vector_joystick(SDL_Event *event)
|
|
|
|
{
|
|
|
|
if(event->jaxis.value < -3200)
|
|
|
|
return 1;
|
|
|
|
if(event->jaxis.value > 3200)
|
|
|
|
return 2;
|
|
|
|
return 0;
|
2021-12-27 13:04:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static Uint8
|
2021-12-27 12:24:43 -05:00
|
|
|
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);
|
2021-12-27 16:59:22 -05:00
|
|
|
else if(event->key.keysym.sym == SDLK_F2)
|
2022-01-13 11:34:32 -05:00
|
|
|
system_inspect(u);
|
2021-12-27 16:59:22 -05:00
|
|
|
else if(event->key.keysym.sym == SDLK_F3)
|
2021-12-27 12:24:43 -05:00
|
|
|
capture_screen();
|
|
|
|
else if(event->key.keysym.sym == SDLK_F4)
|
|
|
|
restart(u);
|
2021-11-08 10:51:09 -05:00
|
|
|
}
|
|
|
|
|
2021-10-13 17:56:38 -04:00
|
|
|
static int
|
|
|
|
console_input(Uxn *u, char c)
|
|
|
|
{
|
2022-01-11 17:38:55 -05:00
|
|
|
Device *d = &u->dev[1];
|
|
|
|
d->dat[0x2] = c;
|
|
|
|
return uxn_eval(u, GETVECTOR(d));
|
2021-10-13 17:56:38 -04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2022-03-27 08:16:40 -04:00
|
|
|
SDL_Event event;
|
2022-01-13 13:25:31 -05:00
|
|
|
Device *devsys = &u->dev[0];
|
2022-01-05 23:44:33 -05:00
|
|
|
redraw();
|
2022-03-27 08:16:40 -04:00
|
|
|
while(SDL_WaitEvent(&event)) {
|
2022-03-27 08:18:37 -04:00
|
|
|
/* .System/halt */
|
|
|
|
if(devsys->dat[0xf])
|
|
|
|
return error("Run", "Ended.");
|
|
|
|
/* Window */
|
|
|
|
if(event.type == SDL_QUIT)
|
|
|
|
return error("Run", "Quit.");
|
|
|
|
else if(event.type == SDL_WINDOWEVENT && event.window.event == SDL_WINDOWEVENT_EXPOSED)
|
|
|
|
redraw();
|
|
|
|
else if(event.type == SDL_DROPFILE) {
|
|
|
|
screen_resize(&uxn_screen, WIDTH, HEIGHT);
|
|
|
|
start(u, event.drop.file);
|
|
|
|
SDL_free(event.drop.file);
|
|
|
|
}
|
|
|
|
/* Audio */
|
|
|
|
else if(event.type >= audio0_event && event.type < audio0_event + POLYPHONY) {
|
|
|
|
Device *d = devaudio0 + (event.type - audio0_event);
|
|
|
|
uxn_eval(u, GETVECTOR(d));
|
|
|
|
}
|
|
|
|
/* Mouse */
|
|
|
|
else if(event.type == SDL_MOUSEMOTION)
|
|
|
|
mouse_pos(devmouse,
|
|
|
|
clamp(event.motion.x - PAD, 0, uxn_screen.width - 1),
|
|
|
|
clamp(event.motion.y - PAD, 0, uxn_screen.height - 1));
|
|
|
|
else if(event.type == SDL_MOUSEBUTTONUP)
|
|
|
|
mouse_up(devmouse, SDL_BUTTON(event.button.button));
|
|
|
|
else if(event.type == SDL_MOUSEBUTTONDOWN)
|
|
|
|
mouse_down(devmouse, SDL_BUTTON(event.button.button));
|
|
|
|
else if(event.type == SDL_MOUSEWHEEL)
|
|
|
|
mouse_scroll(devmouse, event.wheel.x, event.wheel.y);
|
|
|
|
/* Controller */
|
|
|
|
else if(event.type == SDL_TEXTINPUT)
|
|
|
|
controller_key(devctrl, event.text.text[0]);
|
|
|
|
else if(event.type == SDL_KEYDOWN) {
|
|
|
|
int ksym;
|
|
|
|
if(get_key(&event))
|
|
|
|
controller_key(devctrl, get_key(&event));
|
|
|
|
else if(get_button(&event))
|
|
|
|
controller_down(devctrl, get_button(&event));
|
|
|
|
else
|
|
|
|
do_shortcut(u, &event);
|
|
|
|
ksym = event.key.keysym.sym;
|
|
|
|
while(SDL_PeepEvents(&event, 1, SDL_PEEKEVENT, redraw_event, redraw_event) == 0) {
|
|
|
|
SDL_Delay(4);
|
|
|
|
SDL_PumpEvents();
|
2022-01-03 16:29:47 -05:00
|
|
|
}
|
2022-03-27 08:18:37 -04:00
|
|
|
if(SDL_PeepEvents(&event, 1, SDL_PEEKEVENT, SDL_KEYUP, SDL_KEYUP) == 1 && ksym == event.key.keysym.sym) {
|
|
|
|
SDL_PeepEvents(&event, 1, SDL_GETEVENT, SDL_KEYUP, SDL_KEYUP);
|
|
|
|
SDL_PushEvent(&event);
|
2022-03-27 08:16:40 -04:00
|
|
|
}
|
2022-03-27 08:18:37 -04:00
|
|
|
} else if(event.type == SDL_KEYUP)
|
|
|
|
controller_up(devctrl, get_button(&event));
|
|
|
|
else if(event.type == SDL_JOYAXISMOTION) {
|
|
|
|
Uint8 vec = get_vector_joystick(&event);
|
|
|
|
if(!vec)
|
|
|
|
controller_up(devctrl, (0x03 << (!event.jaxis.axis * 2)) << 4);
|
|
|
|
else
|
|
|
|
controller_down(devctrl, (0x01 << ((vec + !event.jaxis.axis * 2) - 1)) << 4);
|
|
|
|
} else if(event.type == SDL_JOYBUTTONDOWN)
|
|
|
|
controller_down(devctrl, get_button_joystick(&event));
|
|
|
|
else if(event.type == SDL_JOYBUTTONUP)
|
|
|
|
controller_up(devctrl, get_button_joystick(&event));
|
|
|
|
/* Console */
|
|
|
|
else if(event.type == stdin_event)
|
|
|
|
console_input(u, event.cbutton.button);
|
|
|
|
/* .Screen/vector and redraw */
|
|
|
|
else if(event.type == redraw_event) {
|
|
|
|
uxn_eval(u, GETVECTOR(devscreen));
|
|
|
|
if(uxn_screen.fg.changed || uxn_screen.bg.changed)
|
|
|
|
redraw();
|
|
|
|
}
|
2021-02-08 18:46:52 -05:00
|
|
|
}
|
2022-03-27 08:16:40 -04:00
|
|
|
return error("SDL_WaitEvent", SDL_GetError());
|
2021-02-08 18:46:52 -05:00
|
|
|
}
|
|
|
|
|
2022-03-27 08:53:25 -04:00
|
|
|
int
|
|
|
|
uxn_interrupt(void)
|
|
|
|
{
|
|
|
|
return SDL_PeepEvents(NULL, 1, SDL_GETEVENT, interrupt_event, interrupt_event) < 1;
|
|
|
|
}
|
|
|
|
|
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.");
|
2022-01-19 20:24:22 -05:00
|
|
|
screen_resize(&uxn_screen, WIDTH, HEIGHT);
|
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);
|
2022-01-03 21:04:09 -05:00
|
|
|
for(i = 1; i < argc; i++) {
|
2021-10-13 17:56:38 -04:00
|
|
|
/* 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
|
|
|
}
|
|
|
|
}
|
2022-01-10 23:35:34 -05:00
|
|
|
if(!loaded && !start(&u, "launcher.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;
|
|
|
|
}
|