uxn/src/uxncli.c

163 lines
3.6 KiB
C
Raw Normal View History

2021-03-23 02:04:31 +00:00
#include <stdio.h>
2022-01-01 23:20:48 +00:00
#include <stdlib.h>
#include <unistd.h>
2021-10-22 23:41:23 +00:00
#include <time.h>
2022-01-07 18:02:28 +00:00
2021-05-13 01:28:45 +00:00
#include "uxn.h"
#include "devices/system.h"
#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.
*/
#pragma mark - Core
2021-07-29 03:20:57 +00:00
static Device *devsystem, *devconsole;
2021-06-28 21:42:36 +00:00
static int
2021-03-23 02:04:31 +00:00
error(char *msg, const char *err)
{
fprintf(stderr, "Error %s: %s\n", msg, err);
2021-03-23 02:04:31 +00:00
return 0;
}
2021-08-16 00:48:15 +00:00
static void
2021-08-29 20:18:42 +00:00
inspect(Stack *s, char *name)
2021-08-16 00:48:15 +00:00
{
Uint8 x, y;
2021-08-29 20:18:42 +00:00
fprintf(stderr, "\n%s\n", name);
for(y = 0; y < 0x04; y++) {
for(x = 0; x < 0x08; x++) {
2021-08-16 00:48:15 +00:00
Uint8 p = y * 0x08 + x;
fprintf(stderr,
2021-08-29 20:18:42 +00:00
p == s->ptr ? "[%02x]" : " %02x ",
s->dat[p]);
2021-08-16 00:48:15 +00:00
}
fprintf(stderr, "\n");
}
}
2021-03-23 02:04:31 +00:00
#pragma mark - Devices
void
system_deo_special(Device *d, Uint8 port)
2021-07-28 22:41:07 +00:00
{
if(port == 0xe) {
2022-01-06 03:48:51 +00:00
inspect(d->u->wst, "Working-stack");
inspect(d->u->rst, "Return-stack");
}
}
static void
2021-11-04 17:13:01 +00:00
console_deo(Device *d, Uint8 port)
2021-03-23 02:04:31 +00:00
{
2021-11-04 17:13:01 +00:00
if(port == 0x1)
2022-01-03 21:23:57 +00:00
DEVPEEK16(d->vector, 0x0);
2021-11-04 17:13:01 +00:00
if(port > 0x7)
write(port - 0x7, (char *)&d->dat[port], 1);
2021-03-23 02:04:31 +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];
}
static void
2021-11-04 17:13:01 +00:00
nil_deo(Device *d, Uint8 port)
{
2022-01-03 21:23:57 +00:00
if(port == 0x1) DEVPEEK16(d->vector, 0x0);
2021-03-23 02:04:31 +00:00
}
#pragma mark - Generics
static int
console_input(Uxn *u, char c)
{
devconsole->dat[0x2] = c;
return uxn_eval(u, devconsole->vector);
}
2021-06-29 13:43:28 +00:00
static void
run(Uxn *u)
2021-03-23 02:04:31 +00:00
{
Uint16 vec;
2022-01-03 21:23:57 +00:00
Device *d = devconsole;
2021-08-27 03:12:56 +00:00
while((!u->dev[0].dat[0xf]) && (read(0, &devconsole->dat[0x2], 1) > 0)) {
2022-01-03 21:23:57 +00:00
DEVPEEK16(vec, 0);
2021-08-27 03:12:56 +00:00
uxn_eval(u, vec);
2021-08-28 17:49:51 +00:00
}
2021-03-23 02:04:31 +00:00
}
static int
2021-08-01 21:56:12 +00:00
load(Uxn *u, char *filepath)
{
FILE *f;
2021-11-17 13:29:36 +00:00
int r;
if(!(f = fopen(filepath, "rb"))) return 0;
r = fread(u->ram + PAGE_PROGRAM, 1, 0xffff - PAGE_PROGRAM, f);
2021-11-17 13:29:36 +00:00
fclose(f);
if(r < 1) return 0;
2021-08-01 22:04:51 +00:00
fprintf(stderr, "Loaded %s\n", filepath);
return 1;
}
2022-01-06 03:48:51 +00:00
static Uint8 *shadow, *memory;
2021-03-23 02:04:31 +00:00
int
main(int argc, char **argv)
{
Uxn u;
int i, loaded = 0;
2021-03-23 02:04:31 +00:00
2022-01-06 03:48:51 +00:00
shadow = (Uint8 *)calloc(0xffff, sizeof(Uint8));
memory = (Uint8 *)calloc(0xffff, sizeof(Uint8));
if(!uxn_boot(&u, memory, shadow + PAGE_DEV, (Stack *)(shadow + PAGE_WST), (Stack *)(shadow + PAGE_RST)))
2021-03-23 02:04:31 +00:00
return error("Boot", "Failed");
2022-01-07 19:48:09 +00:00
/* system */ devsystem = uxn_port(&u, 0x0, system_dei, system_deo);
/* console */ devconsole = 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);
/* file */ uxn_port(&u, 0xa, nil_dei, file_deo);
/* datetime */ uxn_port(&u, 0xb, datetime_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);
2021-05-26 17:16:42 +00:00
for(i = 1; i < argc; i++) {
if(!loaded++) {
if(!load(&u, argv[i]))
return error("Load", "Failed");
if(!uxn_eval(&u, PAGE_PROGRAM))
return error("Init", "Failed");
} else {
char *p = argv[i];
while(*p) console_input(&u, *p++);
console_input(&u, '\n');
}
}
if(!loaded)
return error("Input", "Missing");
2021-06-29 13:43:28 +00:00
run(&u);
2021-03-23 02:04:31 +00:00
return 0;
}