2021-03-23 02:04:31 +00:00
|
|
|
#include <stdio.h>
|
2022-01-01 23:20:48 +00:00
|
|
|
#include <stdlib.h>
|
2022-01-07 18:02:28 +00:00
|
|
|
|
2021-05-13 01:28:45 +00:00
|
|
|
#include "uxn.h"
|
2022-01-05 13:28:22 +00:00
|
|
|
#include "devices/system.h"
|
2021-11-05 21:32:45 +00:00
|
|
|
#include "devices/file.h"
|
2022-01-07 18:02:28 +00:00
|
|
|
#include "devices/datetime.h"
|
2021-03-23 02:04:31 +00: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-06-28 21:42:36 +00:00
|
|
|
static int
|
2021-03-23 02:04:31 +00:00
|
|
|
error(char *msg, const char *err)
|
|
|
|
{
|
2021-07-14 19:11:10 +00:00
|
|
|
fprintf(stderr, "Error %s: %s\n", msg, err);
|
2021-03-23 02:04:31 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-01-01 20:04:54 +00:00
|
|
|
static Uint8
|
|
|
|
emu_dei(Uxn *u, Uint8 addr)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
emu_deo(Uxn *u, Uint8 addr, Uint8 v)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-01-05 13:28:22 +00:00
|
|
|
void
|
|
|
|
system_deo_special(Device *d, Uint8 port)
|
2021-07-28 22:41:07 +00:00
|
|
|
{
|
2022-01-23 11:23:52 +00:00
|
|
|
(void)d;
|
|
|
|
(void)port;
|
2021-11-04 16:38:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-11-04 17:13:01 +00:00
|
|
|
console_deo(Device *d, Uint8 port)
|
2021-03-23 02:04:31 +00:00
|
|
|
{
|
2022-01-11 19:07:25 +00:00
|
|
|
FILE *fd = port == 0x8 ? stdout : port == 0x9 ? stderr
|
|
|
|
: 0;
|
|
|
|
if(fd) {
|
|
|
|
fputc(d->dat[port], fd);
|
|
|
|
fflush(fd);
|
|
|
|
}
|
2021-03-23 02:04:31 +00:00
|
|
|
}
|
|
|
|
|
2021-11-04 16:38:32 +00:00
|
|
|
static Uint8
|
2021-11-04 17:13:01 +00:00
|
|
|
nil_dei(Device *d, Uint8 port)
|
2021-03-23 02:04:31 +00:00
|
|
|
{
|
2021-11-04 17:13:01 +00:00
|
|
|
return d->dat[port];
|
2021-11-04 16:38:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-11-04 17:13:01 +00:00
|
|
|
nil_deo(Device *d, Uint8 port)
|
2021-11-04 16:38:32 +00:00
|
|
|
{
|
2022-01-08 00:46:50 +00:00
|
|
|
(void)d;
|
|
|
|
(void)port;
|
2021-03-23 02:04:31 +00:00
|
|
|
}
|
|
|
|
|
2021-10-13 21:56:38 +00:00
|
|
|
static int
|
|
|
|
console_input(Uxn *u, char c)
|
|
|
|
{
|
2022-01-11 22:38:55 +00:00
|
|
|
Device *d = &u->dev[1];
|
|
|
|
d->dat[0x2] = c;
|
|
|
|
return uxn_eval(u, GETVECTOR(d));
|
2021-10-13 21:56:38 +00:00
|
|
|
}
|
|
|
|
|
2021-06-29 13:43:28 +00:00
|
|
|
static void
|
|
|
|
run(Uxn *u)
|
2021-03-23 02:04:31 +00:00
|
|
|
{
|
2022-01-11 22:38:55 +00:00
|
|
|
Device *d = &u->dev[0];
|
2022-01-11 23:13:12 +00:00
|
|
|
while(!d->dat[0xf]) {
|
|
|
|
int c = fgetc(stdin);
|
|
|
|
if(c != EOF)
|
|
|
|
console_input(u, (Uint8)c);
|
|
|
|
}
|
2021-03-23 02:04:31 +00:00
|
|
|
}
|
|
|
|
|
2022-03-27 12:53:25 +00:00
|
|
|
int
|
|
|
|
uxn_interrupt(void)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2022-01-11 23:13:12 +00:00
|
|
|
static int
|
|
|
|
start(Uxn *u)
|
2021-03-23 02:04:31 +00:00
|
|
|
{
|
2023-01-01 20:04:54 +00:00
|
|
|
if(!uxn_boot(u, (Uint8 *)calloc(0x10000, sizeof(Uint8)), emu_dei, emu_deo))
|
2021-03-23 02:04:31 +00:00
|
|
|
return error("Boot", "Failed");
|
2022-01-11 23:13:12 +00:00
|
|
|
/* system */ uxn_port(u, 0x0, system_dei, system_deo);
|
|
|
|
/* console */ uxn_port(u, 0x1, nil_dei, console_deo);
|
|
|
|
/* empty */ uxn_port(u, 0x2, nil_dei, nil_deo);
|
|
|
|
/* 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);
|
2022-03-28 17:16:44 +00:00
|
|
|
/* file0 */ uxn_port(u, 0xa, file_dei, file_deo);
|
2022-03-17 18:57:22 +00:00
|
|
|
/* file1 */ uxn_port(u, 0xb, file_dei, file_deo);
|
|
|
|
/* datetime */ uxn_port(u, 0xc, datetime_dei, nil_deo);
|
2022-01-11 23:13:12 +00:00
|
|
|
/* 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;
|
|
|
|
}
|
2021-03-23 02:04:31 +00:00
|
|
|
|
2022-01-11 23:13:12 +00:00
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
Uxn u;
|
|
|
|
int i;
|
|
|
|
if(argc < 2)
|
|
|
|
return error("Usage", "uxncli game.rom args");
|
|
|
|
if(!start(&u))
|
|
|
|
return error("Start", "Failed");
|
2022-03-28 17:51:29 +00:00
|
|
|
if(!load_rom(&u, argv[1]))
|
2022-01-11 23:13:12 +00:00
|
|
|
return error("Load", "Failed");
|
2022-03-28 17:51:29 +00:00
|
|
|
fprintf(stderr, "Loaded %s\n", argv[1]);
|
2022-01-11 23:13:12 +00:00
|
|
|
if(!uxn_eval(&u, PAGE_PROGRAM))
|
|
|
|
return error("Init", "Failed");
|
|
|
|
for(i = 2; i < argc; i++) {
|
|
|
|
char *p = argv[i];
|
|
|
|
while(*p) console_input(&u, *p++);
|
|
|
|
console_input(&u, '\n');
|
2021-10-13 21:56:38 +00:00
|
|
|
}
|
2021-06-29 13:43:28 +00:00
|
|
|
run(&u);
|
2021-03-23 02:04:31 +00:00
|
|
|
return 0;
|
|
|
|
}
|