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-02 22:19:31 -04:00
|
|
|
#define HOR 48
|
2021-03-03 14:49:26 -05:00
|
|
|
#define VER 32
|
2021-02-08 18:46:52 -05:00
|
|
|
#define PAD 2
|
2021-02-18 18:11:02 -05:00
|
|
|
#define RES (HOR * VER * 16)
|
2021-02-08 18:46:52 -05:00
|
|
|
|
2021-02-25 19:03:45 -05:00
|
|
|
typedef struct {
|
2021-03-22 23:04:04 -04:00
|
|
|
Uint8 reqdraw, bg[RES], fg[RES];
|
2021-02-25 19:03:45 -05:00
|
|
|
Uint16 x1, y1, x2, y2;
|
2021-02-18 18:11:02 -05:00
|
|
|
} Screen;
|
2021-02-08 18:46:52 -05:00
|
|
|
|
|
|
|
int WIDTH = 8 * HOR + 8 * PAD * 2;
|
2021-02-18 18:11:02 -05:00
|
|
|
int HEIGHT = 8 * VER + 8 * PAD * 2;
|
2021-03-03 14:49:26 -05:00
|
|
|
int FPS = 30, GUIDES = 0, ZOOM = 2;
|
2021-02-08 18:46:52 -05:00
|
|
|
|
2021-03-22 23:04:04 -04:00
|
|
|
Uint32 *pixels, theme[4];
|
2021-02-08 18:46:52 -05:00
|
|
|
|
2021-03-22 23:04:04 -04:00
|
|
|
Uint8 font[][8] = {
|
2021-02-15 13:12:44 -05:00
|
|
|
{0x00, 0x3c, 0x46, 0x4a, 0x52, 0x62, 0x3c, 0x00},
|
|
|
|
{0x00, 0x18, 0x28, 0x08, 0x08, 0x08, 0x3e, 0x00},
|
|
|
|
{0x00, 0x3c, 0x42, 0x02, 0x3c, 0x40, 0x7e, 0x00},
|
|
|
|
{0x00, 0x3c, 0x42, 0x1c, 0x02, 0x42, 0x3c, 0x00},
|
|
|
|
{0x00, 0x08, 0x18, 0x28, 0x48, 0x7e, 0x08, 0x00},
|
|
|
|
{0x00, 0x7e, 0x40, 0x7c, 0x02, 0x42, 0x3c, 0x00},
|
|
|
|
{0x00, 0x3c, 0x40, 0x7c, 0x42, 0x42, 0x3c, 0x00},
|
|
|
|
{0x00, 0x7e, 0x02, 0x04, 0x08, 0x10, 0x10, 0x00},
|
|
|
|
{0x00, 0x3c, 0x42, 0x3c, 0x42, 0x42, 0x3c, 0x00},
|
|
|
|
{0x00, 0x3c, 0x42, 0x42, 0x3e, 0x02, 0x3c, 0x00},
|
|
|
|
{0x00, 0x3c, 0x42, 0x42, 0x7e, 0x42, 0x42, 0x00},
|
|
|
|
{0x00, 0x7c, 0x42, 0x7c, 0x42, 0x42, 0x7c, 0x00},
|
|
|
|
{0x00, 0x3c, 0x42, 0x40, 0x40, 0x42, 0x3c, 0x00},
|
|
|
|
{0x00, 0x78, 0x44, 0x42, 0x42, 0x44, 0x78, 0x00},
|
|
|
|
{0x00, 0x7e, 0x40, 0x7c, 0x40, 0x40, 0x7e, 0x00},
|
|
|
|
{0x00, 0x7e, 0x40, 0x40, 0x7c, 0x40, 0x40, 0x00}};
|
|
|
|
|
2021-04-02 11:05:08 -04:00
|
|
|
#define SAMPLE_FREQUENCY 48000
|
|
|
|
|
2021-04-02 15:43:03 -04:00
|
|
|
static Uint32 note_periods[12] = {
|
|
|
|
/* middle C (C4) is note 60 */
|
|
|
|
(Uint32)0xfa7e * SAMPLE_FREQUENCY, /* C-1 */
|
|
|
|
(Uint32)0xec6f * SAMPLE_FREQUENCY,
|
|
|
|
(Uint32)0xdf2a * SAMPLE_FREQUENCY, /* D-1 */
|
|
|
|
(Uint32)0xd2a4 * SAMPLE_FREQUENCY,
|
|
|
|
(Uint32)0xc6d1 * SAMPLE_FREQUENCY, /* E-1 */
|
|
|
|
(Uint32)0xbba8 * SAMPLE_FREQUENCY, /* F-1 */
|
|
|
|
(Uint32)0xb120 * SAMPLE_FREQUENCY,
|
|
|
|
(Uint32)0xa72f * SAMPLE_FREQUENCY, /* G-1 */
|
|
|
|
(Uint32)0x9dcd * SAMPLE_FREQUENCY,
|
|
|
|
(Uint32)0x94f2 * SAMPLE_FREQUENCY, /* A-1 */
|
|
|
|
(Uint32)0x8c95 * SAMPLE_FREQUENCY,
|
2021-04-02 22:19:31 -04:00
|
|
|
(Uint32)0x84b2 * SAMPLE_FREQUENCY /* B-1 */
|
2021-04-02 11:05:08 -04:00
|
|
|
};
|
|
|
|
|
2021-04-02 15:43:03 -04:00
|
|
|
typedef struct audio_channel {
|
2021-04-02 11:05:08 -04:00
|
|
|
Uint32 period, count;
|
2021-04-02 14:26:50 -04:00
|
|
|
Sint32 age, a, d, s, r;
|
2021-04-02 15:43:03 -04:00
|
|
|
Sint16 value[2];
|
|
|
|
Sint8 volume[2], phase;
|
|
|
|
} Channel;
|
|
|
|
Channel channels[4];
|
2021-04-02 11:05:08 -04:00
|
|
|
|
2021-03-16 12:01:47 -04:00
|
|
|
static SDL_Window *gWindow;
|
|
|
|
static SDL_Renderer *gRenderer;
|
|
|
|
static SDL_Texture *gTexture;
|
2021-04-02 11:05:08 -04:00
|
|
|
static SDL_AudioDeviceID audio_id;
|
2021-03-16 12:01:47 -04:00
|
|
|
static Screen screen;
|
2021-04-05 14:39:08 -04:00
|
|
|
static Device *devsystem, *devscreen, *devmouse, *devkey, *devctrl, *devaudio;
|
2021-02-18 21:16:39 -05:00
|
|
|
|
|
|
|
#pragma mark - Helpers
|
|
|
|
|
|
|
|
int
|
|
|
|
clamp(int val, int min, int max)
|
|
|
|
{
|
|
|
|
return (val >= min) ? (val <= max) ? val : max : min;
|
|
|
|
}
|
2021-02-18 18:11:02 -05:00
|
|
|
|
2021-04-04 23:24:11 -04:00
|
|
|
void
|
|
|
|
setflag(Uint8 *a, char flag, int b)
|
|
|
|
{
|
|
|
|
if(b)
|
|
|
|
*a |= flag;
|
|
|
|
else
|
|
|
|
*a &= (~flag);
|
|
|
|
}
|
|
|
|
|
2021-04-04 23:35:52 -04:00
|
|
|
int
|
|
|
|
getflag(Uint8 *a, char flag)
|
|
|
|
{
|
|
|
|
return *a & flag;
|
|
|
|
}
|
|
|
|
|
2021-02-18 18:11:02 -05:00
|
|
|
#pragma mark - Paint
|
|
|
|
|
|
|
|
void
|
|
|
|
paintpixel(Uint8 *dst, Uint16 x, Uint16 y, Uint8 color)
|
|
|
|
{
|
2021-02-25 19:03:45 -05:00
|
|
|
Uint16 row = (y % 8) + ((x / 8 + y / 8 * HOR) * 16), col = 7 - (x % 8);
|
2021-02-18 18:11:02 -05:00
|
|
|
if(x >= HOR * 8 || y >= VER * 8 || row > RES - 8)
|
|
|
|
return;
|
|
|
|
if(color == 0 || color == 2)
|
2021-02-25 19:03:45 -05:00
|
|
|
dst[row] &= ~(1UL << col);
|
2021-02-18 18:11:02 -05:00
|
|
|
else
|
2021-02-25 19:03:45 -05:00
|
|
|
dst[row] |= 1UL << col;
|
2021-02-18 18:11:02 -05:00
|
|
|
if(color == 0 || color == 1)
|
2021-02-25 19:03:45 -05:00
|
|
|
dst[row + 8] &= ~(1UL << col);
|
2021-02-18 18:11:02 -05:00
|
|
|
else
|
2021-02-25 19:03:45 -05:00
|
|
|
dst[row + 8] |= 1UL << col;
|
2021-02-18 18:11:02 -05:00
|
|
|
}
|
|
|
|
|
2021-02-14 13:22:42 -05:00
|
|
|
#pragma mark - Helpers
|
2021-02-08 18:46:52 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
clear(Uint32 *dst)
|
|
|
|
{
|
|
|
|
int v, h;
|
|
|
|
for(v = 0; v < HEIGHT; v++)
|
|
|
|
for(h = 0; h < WIDTH; h++)
|
|
|
|
dst[v * WIDTH + h] = theme[0];
|
|
|
|
}
|
|
|
|
|
2021-02-09 13:58:06 -05:00
|
|
|
void
|
2021-02-25 19:03:45 -05:00
|
|
|
drawpixel(Uint32 *dst, Uint16 x, Uint16 y, Uint8 color)
|
2021-02-09 13:58:06 -05:00
|
|
|
{
|
2021-03-22 23:04:04 -04:00
|
|
|
if(x >= screen.x1 && x <= screen.x2 && y >= screen.x1 && y <= screen.y2)
|
2021-02-14 20:00:17 -05:00
|
|
|
dst[y * WIDTH + x] = theme[color];
|
2021-02-14 13:22:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-02-25 19:03:45 -05:00
|
|
|
drawchr(Uint32 *dst, Uint16 x, Uint16 y, Uint8 *sprite, Uint8 alpha)
|
2021-02-14 13:22:42 -05:00
|
|
|
{
|
2021-02-25 19:03:45 -05:00
|
|
|
Uint8 v, h;
|
2021-02-14 13:22:42 -05:00
|
|
|
for(v = 0; v < 8; v++)
|
|
|
|
for(h = 0; h < 8; h++) {
|
2021-02-18 18:11:02 -05:00
|
|
|
Uint8 ch1 = ((sprite[v] >> h) & 0x1);
|
|
|
|
Uint8 ch2 = (((sprite[v + 8] >> h) & 0x1) << 1);
|
|
|
|
if(!alpha || (alpha && ch1 + ch2 != 0))
|
2021-02-25 19:03:45 -05:00
|
|
|
drawpixel(dst, x + 7 - h, y + v, ch1 + ch2);
|
2021-02-14 13:22:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-02-25 19:03:45 -05:00
|
|
|
drawicn(Uint32 *dst, Uint16 x, Uint16 y, Uint8 *sprite, Uint8 fg, Uint8 bg)
|
2021-02-14 13:22:42 -05:00
|
|
|
{
|
2021-02-25 19:03:45 -05:00
|
|
|
Uint8 v, h;
|
2021-02-14 13:22:42 -05:00
|
|
|
for(v = 0; v < 8; v++)
|
|
|
|
for(h = 0; h < 8; h++) {
|
2021-02-25 19:03:45 -05:00
|
|
|
Uint8 ch1 = (sprite[v] >> (7 - h)) & 0x1;
|
|
|
|
drawpixel(dst, x + h, y + v, ch1 ? fg : bg);
|
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-19 14:48:40 -05:00
|
|
|
void
|
|
|
|
loadtheme(Uint8 *addr)
|
|
|
|
{
|
2021-03-28 15:09:21 -04:00
|
|
|
int i;
|
|
|
|
for(i = 0; i < 4; ++i) {
|
|
|
|
Uint8
|
2021-03-28 15:14:37 -04:00
|
|
|
r = (*(addr + i / 2) >> (!(i % 2) << 2)) & 0x0f,
|
|
|
|
g = (*(addr + 2 + i / 2) >> (!(i % 2) << 2)) & 0x0f,
|
|
|
|
b = (*(addr + 4 + i / 2) >> (!(i % 2) << 2)) & 0x0f;
|
2021-03-30 15:21:00 -04:00
|
|
|
theme[i] = (r << 20) + (r << 16) + (g << 12) + (g << 8) + (b << 4) + b;
|
2021-03-28 15:09:21 -04:00
|
|
|
}
|
2021-02-28 14:41:28 -05:00
|
|
|
screen.reqdraw = 1;
|
2021-02-19 14:48:40 -05:00
|
|
|
}
|
|
|
|
|
2021-02-08 18:46:52 -05:00
|
|
|
void
|
2021-02-15 13:12:44 -05:00
|
|
|
drawdebugger(Uint32 *dst, Uxn *u)
|
|
|
|
{
|
2021-02-25 19:03:45 -05:00
|
|
|
Uint8 i, x, y, b;
|
2021-02-18 18:11:02 -05:00
|
|
|
for(i = 0; i < 0x10; ++i) { /* memory */
|
2021-03-22 23:04:04 -04:00
|
|
|
x = ((i % 8) * 3 + 3) * 8, y = screen.x1 + 8 + i / 8 * 8, b = u->wst.dat[i];
|
|
|
|
drawicn(dst, x, y, font[(b >> 4) & 0xf], 1 + (u->wst.ptr == i), 0);
|
|
|
|
drawicn(dst, x + 8, y, font[b & 0xf], 1 + (u->wst.ptr == i), 0);
|
2021-02-15 13:12:44 -05:00
|
|
|
}
|
2021-03-04 12:07:33 -05:00
|
|
|
for(x = 0; x < 32; ++x) {
|
|
|
|
drawpixel(dst, x, HEIGHT / 2, 2);
|
|
|
|
drawpixel(dst, WIDTH - x, HEIGHT / 2, 2);
|
|
|
|
drawpixel(dst, WIDTH / 2, HEIGHT - x, 2);
|
|
|
|
drawpixel(dst, WIDTH / 2, x, 2);
|
|
|
|
drawpixel(dst, WIDTH / 2 - 16 + x, HEIGHT / 2, 2);
|
|
|
|
drawpixel(dst, WIDTH / 2, HEIGHT / 2 - 16 + x, 2);
|
|
|
|
}
|
2021-02-15 13:12:44 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
redraw(Uint32 *dst, Uxn *u)
|
2021-02-08 18:46:52 -05:00
|
|
|
{
|
2021-02-27 14:39:12 -05:00
|
|
|
Uint16 x, y;
|
2021-02-18 18:11:02 -05:00
|
|
|
for(y = 0; y < VER; ++y)
|
|
|
|
for(x = 0; x < HOR; ++x) {
|
2021-02-27 14:39:12 -05:00
|
|
|
Uint16 key = (y * HOR + x) * 16;
|
2021-02-18 18:11:02 -05:00
|
|
|
drawchr(dst, (x + PAD) * 8, (y + PAD) * 8, &screen.bg[key], 0);
|
|
|
|
drawchr(dst, (x + PAD) * 8, (y + PAD) * 8, &screen.fg[key], 1);
|
|
|
|
}
|
2021-02-15 13:12:44 -05:00
|
|
|
if(GUIDES)
|
|
|
|
drawdebugger(dst, u);
|
2021-02-08 18:46:52 -05:00
|
|
|
SDL_UpdateTexture(gTexture, NULL, dst, WIDTH * sizeof(Uint32));
|
|
|
|
SDL_RenderClear(gRenderer);
|
|
|
|
SDL_RenderCopy(gRenderer, gTexture, NULL, NULL);
|
|
|
|
SDL_RenderPresent(gRenderer);
|
2021-02-18 21:16:39 -05:00
|
|
|
screen.reqdraw = 0;
|
2021-02-08 18:46:52 -05:00
|
|
|
}
|
|
|
|
|
2021-03-24 12:39:19 -04:00
|
|
|
void
|
|
|
|
toggledebug(Uxn *u)
|
|
|
|
{
|
|
|
|
GUIDES = !GUIDES;
|
|
|
|
redraw(pixels, u);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
togglezoom(Uxn *u)
|
|
|
|
{
|
|
|
|
ZOOM = ZOOM == 3 ? 1 : ZOOM + 1;
|
|
|
|
SDL_SetWindowSize(gWindow, WIDTH * ZOOM, HEIGHT * ZOOM);
|
|
|
|
redraw(pixels, u);
|
|
|
|
}
|
|
|
|
|
2021-04-02 15:43:03 -04:00
|
|
|
Sint16
|
2021-04-02 22:19:31 -04:00
|
|
|
audio_envelope(Channel *c)
|
|
|
|
{
|
|
|
|
if(c->age < c->a)
|
2021-04-02 15:43:03 -04:00
|
|
|
return 0x0888 * c->age / c->a;
|
2021-04-02 22:19:31 -04:00
|
|
|
else if(c->age < c->d)
|
2021-04-02 15:43:03 -04:00
|
|
|
return 0x0444 * (2 * c->d - c->a - c->age) / (c->d - c->a);
|
2021-04-02 22:19:31 -04:00
|
|
|
else if(c->age < c->s)
|
2021-04-02 15:43:03 -04:00
|
|
|
return 0x0444;
|
2021-04-02 22:19:31 -04:00
|
|
|
else if(c->age < c->r)
|
2021-04-02 15:43:03 -04:00
|
|
|
return 0x0444 * (c->r - c->age) / (c->r - c->s);
|
|
|
|
else
|
|
|
|
return 0x0000;
|
|
|
|
}
|
|
|
|
|
2021-04-02 11:05:08 -04:00
|
|
|
void
|
2021-04-02 22:19:31 -04:00
|
|
|
audio_callback(void *userdata, Uint8 *stream, int len)
|
|
|
|
{
|
|
|
|
Sint16 *samples = (Sint16 *)stream;
|
2021-04-02 11:05:08 -04:00
|
|
|
int i, j;
|
2021-04-02 15:43:03 -04:00
|
|
|
len >>= 2; /* use len for number of samples, not bytes */
|
2021-04-02 22:19:31 -04:00
|
|
|
for(j = len * 2 - 1; j >= 0; --j) samples[j] = 0;
|
|
|
|
for(i = 0; i < 4; ++i) {
|
2021-04-02 15:43:03 -04:00
|
|
|
Channel *c = &channels[i];
|
2021-04-02 22:19:31 -04:00
|
|
|
if(c->period < (1 << 20)) continue;
|
|
|
|
for(j = 0; j < len; ++j) {
|
2021-04-02 14:26:50 -04:00
|
|
|
c->age += 1;
|
2021-04-02 11:05:08 -04:00
|
|
|
c->count += 1 << 20;
|
2021-04-02 22:19:31 -04:00
|
|
|
while(c->count > c->period) {
|
2021-04-02 15:43:03 -04:00
|
|
|
Sint16 mul;
|
2021-04-02 11:05:08 -04:00
|
|
|
c->count -= c->period;
|
2021-04-02 15:43:03 -04:00
|
|
|
c->phase = !c->phase;
|
|
|
|
mul = (c->phase * 2 - 1) * audio_envelope(c);
|
|
|
|
c->value[0] = mul * c->volume[0];
|
|
|
|
c->value[1] = mul * c->volume[1];
|
2021-04-02 11:05:08 -04:00
|
|
|
}
|
2021-04-02 15:43:03 -04:00
|
|
|
samples[j * 2] += c->value[0];
|
|
|
|
samples[j * 2 + 1] += c->value[1];
|
2021-04-02 11:05:08 -04:00
|
|
|
}
|
|
|
|
}
|
2021-04-02 22:19:31 -04:00
|
|
|
(void)userdata;
|
2021-04-02 11:05:08 -04:00
|
|
|
}
|
|
|
|
|
2021-04-02 15:43:03 -04:00
|
|
|
void
|
2021-04-02 22:19:31 -04:00
|
|
|
silence(void)
|
|
|
|
{
|
2021-04-02 15:43:03 -04:00
|
|
|
int i;
|
2021-04-02 22:19:31 -04:00
|
|
|
for(i = 0; i < 4; ++i) {
|
2021-04-02 15:43:03 -04:00
|
|
|
Channel *c = &channels[i];
|
|
|
|
c->volume[0] = 0;
|
|
|
|
c->volume[1] = 0;
|
|
|
|
c->period = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-08 18:46:52 -05:00
|
|
|
void
|
|
|
|
quit(void)
|
|
|
|
{
|
|
|
|
free(pixels);
|
|
|
|
SDL_DestroyTexture(gTexture);
|
|
|
|
gTexture = NULL;
|
|
|
|
SDL_DestroyRenderer(gRenderer);
|
|
|
|
gRenderer = NULL;
|
|
|
|
SDL_DestroyWindow(gWindow);
|
|
|
|
gWindow = NULL;
|
|
|
|
SDL_Quit();
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
init(void)
|
|
|
|
{
|
2021-04-02 11:05:08 -04:00
|
|
|
SDL_AudioSpec as;
|
|
|
|
if(SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) < 0)
|
2021-02-08 18:46:52 -05:00
|
|
|
return error("Init", SDL_GetError());
|
|
|
|
gWindow = SDL_CreateWindow("Uxn", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, WIDTH * ZOOM, HEIGHT * ZOOM, SDL_WINDOW_SHOWN);
|
|
|
|
if(gWindow == NULL)
|
|
|
|
return error("Window", SDL_GetError());
|
|
|
|
gRenderer = SDL_CreateRenderer(gWindow, -1, 0);
|
|
|
|
if(gRenderer == NULL)
|
|
|
|
return error("Renderer", SDL_GetError());
|
|
|
|
gTexture = SDL_CreateTexture(gRenderer, SDL_PIXELFORMAT_ARGB8888, SDL_TEXTUREACCESS_STATIC, WIDTH, HEIGHT);
|
|
|
|
if(gTexture == NULL)
|
|
|
|
return error("Texture", SDL_GetError());
|
|
|
|
if(!(pixels = (Uint32 *)malloc(WIDTH * HEIGHT * sizeof(Uint32))))
|
|
|
|
return error("Pixels", "Failed to allocate memory");
|
|
|
|
clear(pixels);
|
2021-04-02 15:43:03 -04:00
|
|
|
silence();
|
2021-03-16 12:01:47 -04:00
|
|
|
SDL_StartTextInput();
|
2021-02-18 18:11:02 -05:00
|
|
|
SDL_ShowCursor(SDL_DISABLE);
|
2021-04-02 11:05:08 -04:00
|
|
|
as.freq = SAMPLE_FREQUENCY;
|
|
|
|
as.format = AUDIO_S16;
|
2021-04-02 15:43:03 -04:00
|
|
|
as.channels = 2;
|
2021-04-02 11:05:08 -04:00
|
|
|
as.callback = audio_callback;
|
|
|
|
as.samples = 2048;
|
|
|
|
audio_id = SDL_OpenAudioDevice(NULL, 0, &as, NULL, 0);
|
|
|
|
if(!audio_id)
|
|
|
|
return error("Audio", SDL_GetError());
|
|
|
|
SDL_PauseAudioDevice(audio_id, 0);
|
2021-03-22 23:04:04 -04:00
|
|
|
screen.x1 = PAD * 8;
|
|
|
|
screen.x2 = WIDTH - PAD * 8 - 1;
|
|
|
|
screen.y1 = PAD * 8;
|
|
|
|
screen.y2 = HEIGHT - PAD * 8 - 1;
|
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-02-26 22:46:56 -05:00
|
|
|
Uint16 addr = devmouse->addr;
|
2021-02-25 19:03:45 -05:00
|
|
|
Uint16 x = clamp(event->motion.x / ZOOM - PAD * 8, 0, HOR * 8 - 1);
|
|
|
|
Uint16 y = clamp(event->motion.y / ZOOM - PAD * 8, 0, VER * 8 - 1);
|
2021-02-26 19:38:20 -05:00
|
|
|
u->ram.dat[addr + 0] = (x >> 8) & 0xff;
|
|
|
|
u->ram.dat[addr + 1] = x & 0xff;
|
|
|
|
u->ram.dat[addr + 2] = (y >> 8) & 0xff;
|
|
|
|
u->ram.dat[addr + 3] = y & 0xff;
|
|
|
|
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);
|
|
|
|
if(flag == 0x10 && getflag(&u->ram.dat[addr + 4], 0x01))
|
2021-03-12 14:37:45 -05:00
|
|
|
u->ram.dat[addr + 5] = 0x01;
|
|
|
|
if(flag == 0x01 && getflag(&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-02-26 22:46:56 -05:00
|
|
|
Uint16 addr = devkey->addr;
|
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-02-26 22:46:56 -05:00
|
|
|
Uint16 addr = devctrl->addr;
|
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-02-28 12:40:19 -05:00
|
|
|
if(z) u->ram.dat[devkey->addr] = 0x08;
|
2021-02-25 19:03:45 -05:00
|
|
|
break;
|
|
|
|
case SDLK_RETURN:
|
|
|
|
flag = 0x08;
|
2021-02-28 12:40:19 -05:00
|
|
|
if(z) u->ram.dat[devkey->addr] = 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);
|
2021-02-26 19:38:20 -05:00
|
|
|
(void)m;
|
|
|
|
(void)ptr;
|
|
|
|
(void)b0;
|
2021-02-26 17:36:48 -05:00
|
|
|
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-02-26 17:36:48 -05:00
|
|
|
paintpixel(b1 >> 4 & 0xf ? screen.fg : screen.bg, x, y, b1 & 0xf);
|
|
|
|
screen.reqdraw = 1;
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
Uint8 *layer = ((b1 >> 4) & 0xf) % 2 ? screen.fg : screen.bg;
|
|
|
|
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;
|
|
|
|
paintpixel(layer, x + h, y + v, ch1 ? blend % 4 : blend / 4);
|
|
|
|
}
|
2021-02-26 19:38:20 -05:00
|
|
|
screen.reqdraw = 1;
|
|
|
|
}
|
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 14:14:41 -04:00
|
|
|
Uint8
|
|
|
|
audio_poke(Uxn *u, Uint16 ptr, Uint8 b0, Uint8 b1)
|
|
|
|
{
|
2021-04-02 11:05:08 -04:00
|
|
|
Uint8 *m = u->ram.dat;
|
2021-04-03 20:17:40 -04:00
|
|
|
m[PAGE_DEVICE + 0x0070 + b0] = b1;
|
2021-04-03 23:29:00 -04:00
|
|
|
if(b0 > 0x08 && b0 & 1) {
|
2021-04-02 15:43:03 -04:00
|
|
|
Uint16 addr = ptr + (b0 & 0x6);
|
|
|
|
Channel *c = &channels[(b0 & 0x6) >> 1];
|
2021-04-02 11:05:08 -04:00
|
|
|
SDL_LockAudioDevice(audio_id);
|
2021-04-03 20:17:40 -04:00
|
|
|
c->period = note_periods[m[addr + 9] % 12] >> (m[addr + 9] / 12);
|
2021-04-02 11:05:08 -04:00
|
|
|
c->count %= c->period;
|
2021-04-03 20:17:40 -04:00
|
|
|
c->volume[0] = (m[addr + 8] >> 4) & 0xf;
|
|
|
|
c->volume[1] = m[addr + 8] & 0xf;
|
2021-04-02 14:26:50 -04:00
|
|
|
c->age = 0;
|
2021-04-02 15:43:03 -04:00
|
|
|
c->a = (SAMPLE_FREQUENCY >> 4) * ((m[addr] >> 4) & 0xf);
|
|
|
|
c->d = c->a + (SAMPLE_FREQUENCY >> 4) * (m[addr] & 0xf);
|
|
|
|
c->s = c->d + (SAMPLE_FREQUENCY >> 4) * ((m[addr + 1] >> 4) & 0xf);
|
|
|
|
c->r = c->s + (SAMPLE_FREQUENCY >> 4) * (m[addr + 1] & 0xf);
|
2021-04-02 11:05:08 -04:00
|
|
|
SDL_UnlockAudioDevice(audio_id);
|
|
|
|
}
|
2021-03-24 14:14:41 -04: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-03-30 15:21:00 -04:00
|
|
|
m[PAGE_DEVICE + 0x00f0 + b0] = b1;
|
2021-03-21 16:52:38 -04:00
|
|
|
loadtheme(&m[PAGE_DEVICE + 0x00f8]);
|
2021-03-01 12:38:54 -05:00
|
|
|
(void)ptr;
|
|
|
|
(void)b0;
|
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-04 14:47:13 -04:00
|
|
|
redraw(pixels, 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();
|
|
|
|
while(SDL_PollEvent(&event) != 0) {
|
|
|
|
switch(event.type) {
|
|
|
|
case SDL_QUIT: quit(); break;
|
|
|
|
case SDL_MOUSEBUTTONUP:
|
|
|
|
case SDL_MOUSEBUTTONDOWN:
|
|
|
|
case SDL_MOUSEMOTION: domouse(u, &event); break;
|
|
|
|
case SDL_TEXTINPUT: dotext(u, &event); break;
|
|
|
|
case SDL_KEYDOWN: doctrl(u, &event, 1); break;
|
|
|
|
case SDL_KEYUP: doctrl(u, &event, 0); break;
|
|
|
|
case SDL_WINDOWEVENT:
|
|
|
|
if(event.window.event == SDL_WINDOWEVENT_EXPOSED)
|
|
|
|
redraw(pixels, u);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-04-05 14:39:08 -04:00
|
|
|
evaluxn(u, devscreen->vector);
|
2021-02-18 21:16:39 -05:00
|
|
|
if(screen.reqdraw)
|
2021-02-15 13:12:44 -05:00
|
|
|
redraw(pixels, 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-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);
|
|
|
|
devaudio = portuxn(&u, 0x08, "audio", audio_poke);
|
|
|
|
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-05 14:39:08 -04:00
|
|
|
u.ram.dat[devscreen->addr + 2] = (HOR * 8 >> 8) & 0xff;
|
|
|
|
u.ram.dat[devscreen->addr + 3] = HOR * 8 & 0xff;
|
|
|
|
u.ram.dat[devscreen->addr + 4] = (VER * 8 >> 8) & 0xff;
|
|
|
|
u.ram.dat[devscreen->addr + 5] = VER * 8 & 0xff;
|
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;
|
|
|
|
}
|