#include "cgdoom.h" #include "platform.h" #include "i_system.h" #include #include #include SDL_Window *window = NULL; SDL_Surface *VRAM_RGB888 = NULL; /* Rendering system emulation. */ uint16_t _VRAM[WIDTH * HEIGHT]; uint16_t _VRAM2[WIDTH * HEIGHT]; static void QuitSDL(void) { if(window) SDL_DestroyWindow(window); if(VRAM_RGB888) SDL_FreeSurface(VRAM_RGB888); SDL_Quit(); } static void InitSDL(void) { if(SDL_Init(SDL_INIT_VIDEO) < 0) { I_Error("InitSDL: %s", SDL_GetError()); return; } window = SDL_CreateWindow("CGDoom", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, WIDTH, HEIGHT, 0); VRAM_RGB888 = SDL_CreateRGBSurface(0, WIDTH, HEIGHT, 24, 0, 0, 0, 0); if(!VRAM_RGB888) { I_Error("InitSDL: Cannot create intermediate surface: %s", SDL_GetError()); QuitSDL(); return; } atexit(QuitSDL); } uint16_t *GetVRAMAddress(void) { return _VRAM; } uint16_t *GetSecondaryVRAMAddress(void) { return _VRAM2; } void Bdisp_PutDisp_DD(void) { if(!window) InitSDL(); if(!window || !VRAM_RGB888) return; /* Copy from VRAM to RGB888 and let SDL handle the conversion to the window's native format */ for(int y = 0; y < HEIGHT; y++) for(int x = 0; x < WIDTH; x++) { int rgb565 = VRAM[WIDTH * y + x]; int r = (rgb565 >> 8) & 0xf8; int g = (rgb565 >> 3) & 0xfc; int b = (rgb565 << 3) & 0xf8; Uint8 *rgb888 = VRAM_RGB888->pixels + y * VRAM_RGB888->pitch + 3 * x; rgb888[0] = r; rgb888[1] = g; rgb888[2] = b; } SDL_BlitSurface(VRAM_RGB888, NULL, SDL_GetWindowSurface(window), NULL); SDL_UpdateWindowSurface(window); } int Bdisp_FrameAndColor(int p1, int p2) { (void)p1; (void)p2; return 0; } void Bdisp_AllClr_VRAM(void) { memset(_VRAM, 0, WIDTH * HEIGHT * 2); } /* Keyboard system emulation. */ int PRGM_GetKey(void) { // TODO: PRGM_GetKey() // We don't really need it here, it's only used to delay error messages // on-calc, and these are printed on terminal return 0; } void GetKey(int *key) { SDL_Event e; int valid=0, sym; while(!valid) { SDL_WaitEvent(&e); if(e.type != SDL_KEYDOWN) continue; valid = 1; switch((sym = e.key.keysym.sym)) { case SDL_SCANCODE_UP: *key = KEY_CTRL_UP; case SDL_SCANCODE_RIGHT: *key = KEY_CTRL_RIGHT; case SDL_SCANCODE_DOWN: *key = KEY_CTRL_DOWN; case SDL_SCANCODE_LEFT: *key = KEY_CTRL_LEFT; case SDL_SCANCODE_RETURN: *key = KEY_CTRL_EXE; default: if(sym >= '0' && sym <= '9') *key = sym; else valid = 0; } } } /* Returns the value of a 128 Hz counter */ int RTC_GetTicks(void) { struct timespec tp; clock_gettime(CLOCK_MONOTONIC, &tp); int msec = (tp.tv_sec * 1000) + (tp.tv_nsec / 1000000); return (msec * 128) / 1000; } void assert(int iLine,const char *pszFilename,const char *pszAassert) { static int iDoAssert = 1; printf("assert %s,%i: %s\n",pszFilename,iLine,pszAassert); if(iDoAssert) { iDoAssert = 0; } } //--- // Filesystem API emulation //--- #define FILE_TABLE_MAX 16 static FILE *file_table[FILE_TABLE_MAX] = { NULL }; static struct { int pos; glob_t glob; } search_table[FILE_TABLE_MAX]; void Bfile_NameToStr_ncpy(char *dest, const uint16_t *source, size_t n) { size_t i = 0; while(i < n && source[i] != 0x0000 && source[i] != 0xffff) { dest[i] = source[i]; i++; } for(size_t j = i; j < n; j++) dest[j] = source[i]; } void Bfile_StrToName_ncpy(uint16_t *dest, const char *source, size_t n) { size_t i = 0; while(i < n && source[i]) { dest[i] = source[i]; i++; } while(i < n) dest[i++] = 0; } int Bfile_DeleteEntry(const uint16_t *filename_u16) { char filename_u8[1024]; Bfile_NameToStr_ncpy(filename_u8, filename_u16, 1024); printf("Deleting %s (virtually)", filename_u8); return 0; } int Bfile_CreateEntry_OS(const uint16_t *filename_u16, int mode, size_t *size) { char filename_u8[1024]; Bfile_NameToStr_ncpy(filename_u8, filename_u16, 1024); if(mode == BFILE_CREATEMODE_FILE) { printf("Creating %s with size %zu (virtually)", filename_u8, *size); } else if(mode == BFILE_CREATEMODE_FOLDER) { I_Error("Cannot create folder %s: Not Implemented", filename_u8); return -1; } else { I_Error("Bfile_CreateEntry_OS(): Invalid mode %d", mode); return -1; } return 0; } int Bfile_OpenFile_OS(const uint16_t *filename_u16, int mode, int zero) { (void)zero; char filename_u8[1024]; Bfile_NameToStr_ncpy(filename_u8, filename_u16, 1024); char const *bits; if(mode == BFILE_READ || mode == BFILE_READ_SHARE) bits = "rb"; else if(mode == BFILE_WRITE) bits = "wb"; else if(mode == BFILE_READWRITE || mode == BFILE_READWRITE_SHARE) bits = "w+b"; else { I_Error("Bfile_OpenFile_OS(): invalid mode %d for %s", mode, filename_u8); return -1; } FILE *fp = fopen(filename_u8, bits); if(!fp) { I_Error("Bfile_OpenFile_OS(): cannot open %s: %m", filename_u8); return -1; } /* Find open slot in file table */ int slot = 0; while(slot < FILE_TABLE_MAX && file_table[slot] != NULL) slot++; if(slot >= FILE_TABLE_MAX) { I_Error("Bfile_OpenFile_OS(): cannot open %s, table is full", filename_u8); fclose(fp); return -1; } file_table[slot] = fp; return slot; } int Bfile_GetFileSize_OS(int fd) { FILE *fp = file_table[fd]; long pos = ftell(fp); fseek(fp, 0, SEEK_END); long size = ftell(fp); fseek(fp, pos, SEEK_SET); return size; } int Bfile_SeekFile_OS(int fd, int pos) { fseek(file_table[fd], pos, SEEK_SET); return 0; } int Bfile_ReadFile_OS(int fd, void *buf, int size, int readpos) { if(readpos != -1) Bfile_SeekFile_OS(fd, readpos); return fread(buf, 1, size, file_table[fd]); } int Bfile_WriteFile_OS(int fd, const void *buf, int size) { return fwrite(buf, 1, size, file_table[fd]); } int Bfile_CloseFile_OS(int fd) { fclose(file_table[fd]); file_table[fd] = NULL; return 0; } int Bfile_FindFirst(const uint16_t *pattern_u16, int *fd, uint16_t *found, void *fileinfo) { char pattern_u8[1024]; Bfile_NameToStr_ncpy(pattern_u8, pattern_u16, 1024); int slot = 0; while(slot < FILE_TABLE_MAX && search_table[slot].pos != 0) slot++; if(slot >= FILE_TABLE_MAX) { I_Error("Bfile_FindFirst(): cannot search %s, table is full", pattern_u8); *fd = -1; return -16; } int rc = glob(pattern_u8, 0, NULL, &search_table[slot].glob); if(rc == GLOB_NOMATCH) return -16; *fd = slot; return Bfile_FindNext(slot, found, fileinfo); } int Bfile_FindNext(int fd, uint16_t *found, void *fileinfo0) { int *pos = &search_table[fd].pos; glob_t *glob = &search_table[fd].glob; if(*pos >= glob->gl_pathc) return -16; const char *name = glob->gl_pathv[*pos]; Bfile_StrToName_ncpy(found, name, strlen(name)); (*pos)++; Bfile_FileInfo *fileinfo = fileinfo0; fileinfo->fsize = 0; return 0; } int Bfile_FindClose(int fd) { if(fd < 0 || fd >= FILE_TABLE_MAX) return -1; search_table[fd].pos = 0; globfree(&search_table[fd].glob); return 0; }