2022-03-26 21:32:46 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#define WIDTH 64 * 8
|
|
|
|
#define HEIGHT 40 * 8
|
|
|
|
|
|
|
|
#include "uxn.h"
|
|
|
|
#include "devices/system.h"
|
|
|
|
#include "devices/screen.h"
|
|
|
|
|
|
|
|
static int
|
|
|
|
error(char *msg, const char *err)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "Error %s: %s\n", msg, err);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
system_deo_special(Device *d, Uint8 port)
|
|
|
|
{
|
|
|
|
if(port > 0x7 && port < 0xe)
|
|
|
|
screen_palette(&uxn_screen, &d->dat[0x8]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
console_deo(Device *d, Uint8 port)
|
|
|
|
{
|
|
|
|
FILE *fd = port == 0x8 ? stdout : port == 0x9 ? stderr
|
|
|
|
: 0;
|
|
|
|
if(fd) {
|
|
|
|
fputc(d->dat[port], fd);
|
|
|
|
fflush(fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static Uint8
|
|
|
|
nil_dei(Device *d, Uint8 port)
|
|
|
|
{
|
|
|
|
return d->dat[port];
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
nil_deo(Device *d, Uint8 port)
|
|
|
|
{
|
|
|
|
(void)d;
|
|
|
|
(void)port;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
load(Uxn *u, char *filepath)
|
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
int r;
|
|
|
|
if(!(f = fopen(filepath, "rb"))) return 0;
|
|
|
|
r = fread(u->ram + PAGE_PROGRAM, 1, 0x10000 - PAGE_PROGRAM, f);
|
|
|
|
fclose(f);
|
|
|
|
if(r < 1) return 0;
|
|
|
|
fprintf(stderr, "Loaded %s\n", filepath);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
processEvent(Display *display, Window window, XImage *ximage, int width, int height)
|
|
|
|
{
|
|
|
|
XEvent ev;
|
|
|
|
XNextEvent(display, &ev);
|
|
|
|
switch(ev.type) {
|
|
|
|
case Expose:
|
|
|
|
XPutImage(display, window, DefaultGC(display, 0), ximage, 0, 0, 0, 0, width, height);
|
|
|
|
break;
|
|
|
|
case ButtonPress:
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
start(Uxn *u)
|
|
|
|
{
|
|
|
|
if(!uxn_boot(u, (Uint8 *)calloc(0x10000, sizeof(Uint8))))
|
|
|
|
return error("Boot", "Failed");
|
2022-03-26 21:46:17 -04:00
|
|
|
/* system */ uxn_port(u, 0x0, system_dei, system_deo);
|
|
|
|
/* console */ uxn_port(u, 0x1, nil_dei, console_deo);
|
|
|
|
/* screen */ uxn_port(u, 0x2, screen_dei, screen_deo);
|
2022-03-26 21:32:46 -04:00
|
|
|
/* empty */ uxn_port(u, 0x3, nil_dei, nil_deo);
|
|
|
|
/* empty */ uxn_port(u, 0x4, nil_dei, nil_deo);
|
|
|
|
/* empty */ uxn_port(u, 0x5, nil_dei, nil_deo);
|
|
|
|
/* empty */ uxn_port(u, 0x6, nil_dei, nil_deo);
|
|
|
|
/* empty */ uxn_port(u, 0x7, nil_dei, nil_deo);
|
|
|
|
/* empty */ uxn_port(u, 0x8, nil_dei, nil_deo);
|
|
|
|
/* empty */ uxn_port(u, 0x9, nil_dei, nil_deo);
|
|
|
|
/* file */ uxn_port(u, 0xa, nil_dei, nil_deo);
|
|
|
|
/* datetime */ uxn_port(u, 0xb, nil_dei, nil_deo);
|
|
|
|
/* empty */ uxn_port(u, 0xc, nil_dei, nil_deo);
|
|
|
|
/* empty */ uxn_port(u, 0xd, nil_dei, nil_deo);
|
|
|
|
/* empty */ uxn_port(u, 0xe, nil_dei, nil_deo);
|
|
|
|
/* empty */ uxn_port(u, 0xf, nil_dei, nil_deo);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
Uxn u;
|
|
|
|
|
|
|
|
if(argc < 2)
|
|
|
|
return error("Usage", "uxncli game.rom args");
|
|
|
|
if(!start(&u))
|
|
|
|
return error("Start", "Failed");
|
|
|
|
if(!load(&u, argv[1]))
|
|
|
|
return error("Load", "Failed");
|
|
|
|
|
2022-03-26 21:46:17 -04:00
|
|
|
screen_resize(&uxn_screen, WIDTH, HEIGHT);
|
2022-03-26 21:32:46 -04:00
|
|
|
|
|
|
|
if(!uxn_eval(&u, PAGE_PROGRAM))
|
|
|
|
return error("Boot", "Failed to start rom.");
|
|
|
|
|
|
|
|
screen_redraw(&uxn_screen, uxn_screen.pixels);
|
|
|
|
|
|
|
|
XImage *ximage;
|
|
|
|
Display *display = XOpenDisplay(NULL);
|
|
|
|
Visual *visual = DefaultVisual(display, 0);
|
|
|
|
Window window = XCreateSimpleWindow(display, RootWindow(display, 0), 0, 0, uxn_screen.width, uxn_screen.height, 1, 0, 0);
|
|
|
|
if(visual->class != TrueColor) {
|
|
|
|
fprintf(stderr, "Cannot handle non true color visual ...\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
ximage = XCreateImage(display, visual, DefaultDepth(display, DefaultScreen(display)), ZPixmap, 0, (char *)uxn_screen.pixels, uxn_screen.width, uxn_screen.height, 32, 0);
|
|
|
|
|
|
|
|
XSelectInput(display, window, ButtonPressMask | ExposureMask);
|
|
|
|
XMapWindow(display, window);
|
|
|
|
while(1) {
|
|
|
|
processEvent(display, window, ximage, uxn_screen.width, uxn_screen.height);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|