#include #include #include #include "uxn.h" #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wpedantic" #include #include "devices/ppu.h" #include "devices/apu.h" #pragma GCC diagnostic pop /* 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. */ static SDL_AudioDeviceID audio_id; static SDL_Window *gWindow; static SDL_Renderer *gRenderer; static SDL_Texture *fgTexture, *bgTexture; static SDL_Rect gRect; static Ppu ppu; static Apu apu[POLYPHONY]; static Device *devscreen, *devmouse, *devctrl, *devaudio0, *devconsole; static Uint32 stdin_event; #define PAD 16 static Uint8 zoom = 0, debug = 0, reqdraw = 0, bench = 0; static int clamp(int val, int min, int max) { return (val >= min) ? (val <= max) ? val : max : min; } static int error(char *msg, const char *err) { fprintf(stderr, "Error %s: %s\n", msg, err); return 0; } static void audio_callback(void *u, Uint8 *stream, int len) { int i; Sint16 *samples = (Sint16 *)stream; SDL_memset(stream, 0, len); for(i = 0; i < POLYPHONY; ++i) apu_render(&apu[i], samples, samples + len / 2); (void)u; } static void redraw(Uxn *u) { if(debug) inspect(&ppu, u->wst.dat, u->wst.ptr, u->rst.ptr); SDL_UpdateTexture(bgTexture, &gRect, ppu.bg.pixels, ppu.width * sizeof(Uint32)); SDL_UpdateTexture(fgTexture, &gRect, ppu.fg.pixels, ppu.width * sizeof(Uint32)); SDL_RenderClear(gRenderer); SDL_RenderCopy(gRenderer, bgTexture, NULL, NULL); SDL_RenderCopy(gRenderer, fgTexture, NULL, NULL); SDL_RenderPresent(gRenderer); reqdraw = 0; } static void toggledebug(Uxn *u) { debug = !debug; redraw(u); } static void togglezoom(Uxn *u) { zoom = zoom == 3 ? 1 : zoom + 1; SDL_SetWindowSize(gWindow, (ppu.width + PAD * 2) * zoom, (ppu.height + PAD * 2) * zoom); redraw(u); } static void screencapture(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); } static void quit(void) { free(ppu.fg.pixels); free(ppu.bg.pixels); SDL_UnlockAudioDevice(audio_id); SDL_DestroyTexture(bgTexture); bgTexture = NULL; SDL_DestroyTexture(fgTexture); fgTexture = NULL; SDL_DestroyRenderer(gRenderer); gRenderer = NULL; SDL_DestroyWindow(gWindow); gWindow = NULL; SDL_Quit(); exit(0); } static int init(void) { SDL_AudioSpec as; if(!initppu(&ppu, 48, 32)) return error("PPU", "Init failure"); gRect.x = PAD; gRect.y = PAD; gRect.w = ppu.width; gRect.h = ppu.height; if(SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO) < 0) return error("Init", SDL_GetError()); gWindow = SDL_CreateWindow("Uxn", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, (ppu.width + PAD * 2) * zoom, (ppu.height + PAD * 2) * 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()); SDL_RenderSetLogicalSize(gRenderer, ppu.width + PAD * 2, ppu.height + PAD * 2); bgTexture = SDL_CreateTexture(gRenderer, SDL_PIXELFORMAT_ARGB8888, SDL_TEXTUREACCESS_STATIC, ppu.width + PAD * 2, ppu.height + PAD * 2); if(bgTexture == NULL || SDL_SetTextureBlendMode(bgTexture, SDL_BLENDMODE_NONE)) return error("Texture", SDL_GetError()); fgTexture = SDL_CreateTexture(gRenderer, SDL_PIXELFORMAT_ARGB8888, SDL_TEXTUREACCESS_STATIC, ppu.width + PAD * 2, ppu.height + PAD * 2); if(fgTexture == NULL || SDL_SetTextureBlendMode(fgTexture, SDL_BLENDMODE_BLEND)) return error("Texture", SDL_GetError()); SDL_UpdateTexture(bgTexture, NULL, ppu.bg.pixels, 4); SDL_UpdateTexture(fgTexture, NULL, ppu.fg.pixels, 4); SDL_StartTextInput(); SDL_ShowCursor(SDL_DISABLE); SDL_zero(as); as.freq = SAMPLE_FREQUENCY; as.format = AUDIO_S16; as.channels = 2; as.callback = audio_callback; as.samples = 512; as.userdata = NULL; audio_id = SDL_OpenAudioDevice(NULL, 0, &as, NULL, 0); if(!audio_id) return error("Audio", SDL_GetError()); SDL_PauseAudioDevice(audio_id, 0); return 1; } static void domouse(SDL_Event *event) { Uint8 flag = 0x00; Uint16 x = clamp(event->motion.x - PAD, 0, ppu.hor * 8 - 1); Uint16 y = clamp(event->motion.y - PAD, 0, ppu.ver * 8 - 1); mempoke16(devmouse->dat, 0x2, x); mempoke16(devmouse->dat, 0x4, y); switch(event->button.button) { case SDL_BUTTON_LEFT: flag = 0x01; break; case SDL_BUTTON_RIGHT: flag = 0x10; break; } switch(event->type) { case SDL_MOUSEBUTTONDOWN: devmouse->dat[6] |= flag; break; case SDL_MOUSEBUTTONUP: devmouse->dat[6] &= (~flag); break; } } static void doctrl(Uxn *u, SDL_Event *event, int z) { Uint8 flag = 0x00; SDL_Keymod mods = SDL_GetModState(); devctrl->dat[2] &= 0xf8; if(mods & KMOD_CTRL) devctrl->dat[2] |= 0x01; if(mods & KMOD_ALT) devctrl->dat[2] |= 0x02; if(mods & KMOD_SHIFT) devctrl->dat[2] |= 0x04; /* clang-format off */ switch(event->key.keysym.sym) { case SDLK_ESCAPE: flag = 0x08; break; case SDLK_UP: flag = 0x10; break; case SDLK_DOWN: flag = 0x20; break; case SDLK_LEFT: flag = 0x40; break; case SDLK_RIGHT: flag = 0x80; break; case SDLK_F1: if(z) togglezoom(u); break; case SDLK_F2: if(z) toggledebug(u); break; case SDLK_F3: if(z) screencapture(); break; } /* clang-format on */ if(z) { devctrl->dat[2] |= flag; if(event->key.keysym.sym < 0x20 || event->key.keysym.sym == SDLK_DELETE) devctrl->dat[3] = event->key.keysym.sym; else if((mods & KMOD_CTRL) && event->key.keysym.sym >= SDLK_a && event->key.keysym.sym <= SDLK_z) devctrl->dat[3] = event->key.keysym.sym - (mods & KMOD_SHIFT) * 0x20; } else devctrl->dat[2] &= ~flag; } #pragma mark - Devices static void system_talk(Device *d, Uint8 b0, Uint8 w) { if(!w) { d->dat[0x2] = d->u->wst.ptr; d->dat[0x3] = d->u->rst.ptr; } else { putcolors(&ppu, &d->dat[0x8]); reqdraw = 1; } (void)b0; } static void console_talk(Device *d, Uint8 b0, Uint8 w) { if(w && b0 == 0x8) write(1, (char *)&d->dat[0x8], 1); } static void screen_talk(Device *d, Uint8 b0, Uint8 w) { if(w && b0 == 0xe) { Uint16 x = mempeek16(d->dat, 0x8); Uint16 y = mempeek16(d->dat, 0xa); Uint8 *addr = &d->mem[mempeek16(d->dat, 0xc)]; Layer *layer = d->dat[0xe] >> 4 & 0x1 ? &ppu.fg : &ppu.bg; Uint8 mode = d->dat[0xe] >> 5; if(!mode) putpixel(&ppu, layer, x, y, d->dat[0xe] & 0x3); else if(mode-- & 0x1) puticn(&ppu, layer, x, y, addr, d->dat[0xe] & 0xf, mode & 0x2, mode & 0x4); else putchr(&ppu, layer, x, y, addr, d->dat[0xe] & 0xf, mode & 0x2, mode & 0x4); reqdraw = 1; } } static void file_talk(Device *d, Uint8 b0, Uint8 w) { Uint8 read = b0 == 0xd; if(w && (read || b0 == 0xf)) { char *name = (char *)&d->mem[mempeek16(d->dat, 0x8)]; Uint16 result = 0, length = mempeek16(d->dat, 0xa); Uint16 offset = mempeek16(d->dat, 0x4); Uint16 addr = mempeek16(d->dat, b0 - 1); FILE *f = fopen(name, read ? "r" : (offset ? "a" : "w")); if(f) { fprintf(stderr, "%s %04x %s %s: ", read ? "Loading" : "Saving", addr, read ? "from" : "to", name); if(fseek(f, offset, SEEK_SET) != -1) result = read ? fread(&d->mem[addr], 1, length, f) : fwrite(&d->mem[addr], 1, length, f); fprintf(stderr, "%04x bytes\n", result); fclose(f); } mempoke16(d->dat, 0x2, result); } } static void audio_talk(Device *d, Uint8 b0, Uint8 w) { Apu *c = &apu[d - devaudio0]; if(!w) { if(b0 == 0x2) mempoke16(d->dat, 0x2, c->i); else if(b0 == 0x4) d->dat[0x4] = apu_get_vu(c); } else if(b0 == 0xf) { SDL_LockAudioDevice(audio_id); c->len = mempeek16(d->dat, 0xa); c->addr = &d->mem[mempeek16(d->dat, 0xc)]; c->volume[0] = d->dat[0xe] >> 4; c->volume[1] = d->dat[0xe] & 0xf; c->repeat = !(d->dat[0xf] & 0x80); apu_start(c, mempeek16(d->dat, 0x8), d->dat[0xf] & 0x7f); SDL_UnlockAudioDevice(audio_id); } } static void datetime_talk(Device *d, Uint8 b0, Uint8 w) { time_t seconds = time(NULL); struct tm *t = localtime(&seconds); t->tm_year += 1900; mempoke16(d->dat, 0x0, t->tm_year); d->dat[0x2] = t->tm_mon; d->dat[0x3] = t->tm_mday; d->dat[0x4] = t->tm_hour; d->dat[0x5] = t->tm_min; d->dat[0x6] = t->tm_sec; d->dat[0x7] = t->tm_wday; mempoke16(d->dat, 0x08, t->tm_yday); d->dat[0xa] = t->tm_isdst; (void)b0; (void)w; } static void nil_talk(Device *d, Uint8 b0, Uint8 w) { (void)d; (void)b0; (void)w; } #pragma mark - Generics static int stdin_handler(void *p) { SDL_Event event; event.type = stdin_event; while(read(0, &event.cbutton.button, 1) > 0) SDL_PushEvent(&event); return 0; (void)p; } static int start(Uxn *u) { evaluxn(u, 0x0100); redraw(u); while(1) { SDL_Event event; double elapsed, start = 0; if(!bench) start = SDL_GetPerformanceCounter(); while(SDL_PollEvent(&event) != 0) { switch(event.type) { case SDL_QUIT: quit(); break; case SDL_TEXTINPUT: devctrl->dat[3] = event.text.text[0]; /* fall-thru */ case SDL_KEYDOWN: case SDL_KEYUP: doctrl(u, &event, event.type == SDL_KEYDOWN); evaluxn(u, mempeek16(devctrl->dat, 0)); devctrl->dat[3] = 0; break; case SDL_MOUSEWHEEL: devmouse->dat[7] = event.wheel.y; evaluxn(u, mempeek16(devmouse->dat, 0)); devmouse->dat[7] = 0; break; case SDL_MOUSEBUTTONUP: case SDL_MOUSEBUTTONDOWN: case SDL_MOUSEMOTION: domouse(&event); evaluxn(u, mempeek16(devmouse->dat, 0)); break; case SDL_WINDOWEVENT: if(event.window.event == SDL_WINDOWEVENT_EXPOSED) redraw(u); break; default: if(event.type == stdin_event) { devconsole->dat[0x2] = event.cbutton.button; evaluxn(u, mempeek16(devconsole->dat, 0)); } } } evaluxn(u, mempeek16(devscreen->dat, 0)); if(reqdraw) redraw(u); if(!bench) { elapsed = (SDL_GetPerformanceCounter() - start) / (double)SDL_GetPerformanceFrequency() * 1000.0f; SDL_Delay(clamp(16.666f - elapsed, 0, 1000)); } } return 1; } int main(int argc, char **argv) { Uxn u; zoom = 2; stdin_event = SDL_RegisterEvents(1); SDL_CreateThread(stdin_handler, "stdin", NULL); if(argc < 2) 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"); portuxn(&u, 0x0, "system", system_talk); devconsole = portuxn(&u, 0x1, "console", console_talk); devscreen = portuxn(&u, 0x2, "screen", screen_talk); devaudio0 = portuxn(&u, 0x3, "audio0", audio_talk); portuxn(&u, 0x4, "audio1", audio_talk); portuxn(&u, 0x5, "audio2", audio_talk); portuxn(&u, 0x6, "audio3", audio_talk); portuxn(&u, 0x7, "---", nil_talk); devctrl = portuxn(&u, 0x8, "controller", nil_talk); devmouse = portuxn(&u, 0x9, "mouse", nil_talk); portuxn(&u, 0xa, "file", file_talk); portuxn(&u, 0xb, "datetime", datetime_talk); portuxn(&u, 0xc, "---", nil_talk); portuxn(&u, 0xd, "---", nil_talk); portuxn(&u, 0xe, "---", nil_talk); portuxn(&u, 0xf, "---", nil_talk); /* Write screen size to dev/screen */ mempoke16(devscreen->dat, 2, ppu.hor * 8); mempoke16(devscreen->dat, 4, ppu.ver * 8); start(&u); quit(); return 0; }