X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fwin32%2FGenaDrive%2FMain.cpp;fp=platform%2Fwin32%2FGenaDrive%2FMain.cpp;h=4fbbf029d8ace36ae437230a8c3e4cdd55bbedf2;hb=1b0ac8adc97d65c686a48c4375c07907de86be24;hp=f5f41cc3c66c7750a04459050148f1a7122ddab1;hpb=e0978fa87d22f168ea9c039c6e2c5bf1274ba9e0;p=picodrive.git diff --git a/platform/win32/GenaDrive/Main.cpp b/platform/win32/GenaDrive/Main.cpp index f5f41cc..4fbbf02 100644 --- a/platform/win32/GenaDrive/Main.cpp +++ b/platform/win32/GenaDrive/Main.cpp @@ -3,22 +3,130 @@ #include #include -char *romname; +char *romname=NULL; HWND FrameWnd=NULL; RECT FrameRectMy; +int lock_to_1_1 = 1; int MainWidth=720,MainHeight=480; +static HMENU mdisplay = 0; + +static void UpdateRect() +{ + WINDOWINFO wi; + memset(&wi, 0, sizeof(wi)); + wi.cbSize = sizeof(wi); + GetWindowInfo(FrameWnd, &wi); + FrameRectMy = wi.rcClient; +} + +static void LoadROM(const char *cmdpath) +{ + static char rompath[MAX_PATH] = { 0, }; + static unsigned char *rom_data = NULL; + unsigned char *rom_data_new = NULL; + unsigned int rom_size = 0; + pm_file *rom = NULL; + int oldwait=LoopWait; + int i, ret; + + if (cmdpath) { + strcpy(rompath, cmdpath + (cmdpath[0] == '\"' ? 1 : 0)); + if (rompath[strlen(rompath)-1] == '\"') rompath[strlen(rompath)-1] = 0; + if (strlen(rompath) > 4) rom = pm_open(rompath); + } + + if (!rom) { + OPENFILENAME of; ZeroMemory(&of, sizeof(OPENFILENAME)); + of.lStructSize = sizeof(OPENFILENAME); + of.lpstrFilter = "ROMs\0*.smd;*.bin;*.gen;*.zip\0"; + of.lpstrFile = rompath; rompath[0] = 0; + of.nMaxFile = MAX_PATH; + of.Flags = OFN_FILEMUSTEXIST|OFN_HIDEREADONLY; + of.hwndOwner = FrameWnd; + if (!GetOpenFileName(&of)) return; + rom = pm_open(rompath); + if (!rom) { error("failed to open ROM"); return; } + } + + ret=PicoCartLoad(rom, &rom_data_new, &rom_size); + pm_close(rom); + if (ret) { + error("failed to load ROM"); + return; + } + + // halt the work thread.. + // just a hack, should've used proper sync. primitives here, but who will use this emu anyway.. + LoopWaiting=0; + LoopWait=1; + for (i = 0; LoopWaiting == 0 && i < 10; i++) Sleep(100); + + PicoCartInsert(rom_data_new, rom_size); + + if (rom_data) free(rom_data); + rom_data = rom_data_new; + romname = rompath; + LoopWait=0; +} + +static int rect_widths[4] = { 320, 256, 640, 512 }; +static int rect_heights[4] = { 224, 224, 448, 448 }; + // Window proc for the frame window: static LRESULT CALLBACK WndProc(HWND hwnd,UINT msg,WPARAM wparam,LPARAM lparam) { + int i; switch (msg) { case WM_CLOSE: PostQuitMessage(0); return 0; case WM_DESTROY: FrameWnd=NULL; break; // Blank handle case WM_SIZE: case WM_MOVE: - case WM_SIZING: GetWindowRect(hwnd, &FrameRectMy); break; + case WM_SIZING: UpdateRect(); break; + case WM_COMMAND: + switch (LOWORD(wparam)) + { + case 1000: LoadROM(NULL); break; + case 1001: PostQuitMessage(0); return 0; + case 1100: + case 1101: + case 1102: + case 1103: + LoopWait=1; // another sync hack + for (i = 0; !LoopWaiting && i < 10; i++) Sleep(10); + FrameRectMy.right = FrameRectMy.left + rect_widths[wparam&3]; + FrameRectMy.bottom = FrameRectMy.top + rect_heights[wparam&3]; + AdjustWindowRect(&FrameRectMy, WS_OVERLAPPEDWINDOW, 1); + MoveWindow(hwnd, FrameRectMy.left, FrameRectMy.top, + FrameRectMy.right-FrameRectMy.left, FrameRectMy.bottom-FrameRectMy.top, 1); + UpdateRect(); + if (HIWORD(wparam) == 0) { // locally sent + lock_to_1_1=0; + CheckMenuItem(mdisplay, 1104, MF_UNCHECKED); + } + LoopWait=0; + return 0; + case 1104: + lock_to_1_1=!lock_to_1_1; + CheckMenuItem(mdisplay, 1104, lock_to_1_1 ? MF_CHECKED : MF_UNCHECKED); + return 0; + case 1200: break; + case 1300: + MessageBox(FrameWnd, "PicoDrive v" VERSION " (c) notaz, 2006-2008\n" + "SVP demo edition\n\n" + "Credits:\n" + "fDave: base code of PicoDrive, GenaDrive (the frontend)\n" + "Chui: Fame/C\n" + "NJ: CZ80\n" + "MAME devs: YM2612 and SN76496 cores\n" + "Stéphane Dallongeville: Gens code, base of Fame/C (C68K), CZ80\n" + "Tasco Deluxe: SVP RE work\n", + "About", 0); + return 0; + } + break; } return DefWindowProc(hwnd,msg,wparam,lparam); @@ -28,6 +136,7 @@ static int FrameInit() { WNDCLASS wc; RECT rect={0,0,0,0}; + HMENU mmain, mfile; int style=0; int left=0,top=0,width=0,height=0; @@ -46,7 +155,7 @@ static int FrameInit() // Adjust size of windows based on borders: style=WS_OVERLAPPEDWINDOW; - AdjustWindowRect(&rect,style,0); + AdjustWindowRect(&rect,style,1); width =rect.right-rect.left; height=rect.bottom-rect.top; @@ -58,13 +167,30 @@ static int FrameInit() left-=width; left>>=1; top-=height; top>>=1; + // Create menu: + mfile = CreateMenu(); + InsertMenu(mfile, -1, MF_BYPOSITION|MF_STRING, 1000, "&Load ROM"); + InsertMenu(mfile, -1, MF_BYPOSITION|MF_STRING, 1001, "E&xit"); + mdisplay = CreateMenu(); + InsertMenu(mdisplay, -1, MF_BYPOSITION|MF_STRING, 1100, "320x224"); + InsertMenu(mdisplay, -1, MF_BYPOSITION|MF_STRING, 1101, "256x224"); + InsertMenu(mdisplay, -1, MF_BYPOSITION|MF_STRING, 1102, "640x448"); + InsertMenu(mdisplay, -1, MF_BYPOSITION|MF_STRING, 1103, "512x448"); + InsertMenu(mdisplay, -1, MF_BYPOSITION|MF_STRING, 1104, "Lock to 1:1"); + mmain = CreateMenu(); + InsertMenu(mmain, -1, MF_BYPOSITION|MF_STRING|MF_POPUP, (UINT_PTR) mfile, "&File"); + InsertMenu(mmain, -1, MF_BYPOSITION|MF_STRING|MF_POPUP, (UINT_PTR) mdisplay, "&Display"); +// InsertMenu(mmain, -1, MF_BYPOSITION|MF_STRING|MF_POPUP, 1200, "&Config"); + InsertMenu(mmain, -1, MF_BYPOSITION|MF_STRING|MF_POPUP, 1300, "&About"); + // Create the window: FrameWnd=CreateWindow(wc.lpszClassName,"PicoDrive " VERSION,style|WS_VISIBLE, - left,top,width,height,NULL,NULL,NULL,NULL); + left,top,width,height,NULL,mmain,NULL,NULL); + CheckMenuItem(mdisplay, 1104, lock_to_1_1 ? MF_CHECKED : MF_UNCHECKED); ShowWindow(FrameWnd, SW_NORMAL); UpdateWindow(FrameWnd); - GetWindowRect(FrameWnd, &FrameRectMy); + UpdateRect(); return 0; } @@ -83,50 +209,17 @@ int WINAPI WinMain(HINSTANCE,HINSTANCE,LPSTR cmdline,int) int ret=0; DWORD tid=0; HANDLE thread=NULL; - unsigned char *rom_data = 0; - unsigned int rom_size = 0; - - static char rompath[MAX_PATH] = { 0, }; - pm_file *rom = NULL; FrameInit(); ret=LoopInit(); if (ret) goto end0; - // notaz: load rom - strcpy(rompath, cmdline + (cmdline[0] == '\"' ? 1 : 0)); - if(rompath[strlen(rompath)-1] == '\"') rompath[strlen(rompath)-1] = 0; - - if(strlen(rompath) > 4) rom = pm_open(rompath); - if(!rom) { - OPENFILENAME of; ZeroMemory(&of, sizeof(OPENFILENAME)); - of.lStructSize = sizeof(OPENFILENAME); - of.lpstrFilter = "ROMs\0*.smd;*.bin;*.gen;*.zip\0"; - of.lpstrFile = rompath; rompath[0] = 0; - of.nMaxFile = MAX_PATH; - of.Flags = OFN_FILEMUSTEXIST|OFN_HIDEREADONLY; - if(!GetOpenFileName(&of)) goto end0; - rom = pm_open(rompath); - if(!rom) goto end0; - } - romname = rompath; - - ret=PicoCartLoad(rom, &rom_data, &rom_size); - pm_close(rom); - if (ret) { - error("failed to load ROM"); - goto end0; - } - - PicoCartInsert(rom_data, rom_size); - - // only now we got the mode (pal/ntsc), so init sound now - ret=DSoundInit(); - if (ret) error("Failed to init DirectSound"); // warning - // Make another thread to run LoopCode(): LoopQuit=0; + LoopWait=1; // wait for ROM to be loaded thread=CreateThread(NULL,0,ThreadCode,NULL,0,&tid); + LoadROM(cmdline); + // Main window loop: for (;;) { @@ -145,8 +238,6 @@ end0: LoopExit(); DestroyWindow(FrameWnd); - free(rom_data); - _CrtDumpMemoryLeaks(); return 0; }