|
|
| version 1.16, 2003/10/24 19:19:58 | version 1.22, 2003/10/25 21:28:14 |
|---|---|
| Line 3 | Line 3 |
| #include "strres.h" | #include "strres.h" |
| #include "np2.h" | #include "np2.h" |
| #include "dosio.h" | #include "dosio.h" |
| #include "commng.h" | |
| #include "scrnmng.h" | #include "scrnmng.h" |
| #include "soundmng.h" | #include "soundmng.h" |
| #include "sysmng.h" | #include "sysmng.h" |
| Line 29 | Line 30 |
| #include "mousemng.h" | #include "mousemng.h" |
| #include "configure.h" | #include "configure.h" |
| #include "screenopt.h" | #include "screenopt.h" |
| #include "soundopt.h" | |
| #define USE_RESUME | #define USE_RESUME |
| Line 36 | Line 38 |
| #ifdef NP2OPENING | #ifdef NP2OPENING |
| #include <QuickTime/QuickTime.h> | #include <QuickTime/QuickTime.h> |
| #define OPENING_WAIT 1500 | // #define OPENING_WAIT 1500 |
| #endif | #endif |
| Line 73 static const char np2resume[] = "sav"; | Line 75 static const char np2resume[] = "sav"; |
| #endif | #endif |
| static void setUpCarbonEvent(void); | static void setUpCarbonEvent(void); |
| static bool setupMainWindow(void); | |
| static void toggleFullscreen(void); | |
| #ifdef TARGET_API_MAC_CARBON | #ifdef TARGET_API_MAC_CARBON |
| static pascal OSErr handleQuitApp(const AppleEvent *event, AppleEvent *reply, | static pascal OSErr handleQuitApp(const AppleEvent *event, AppleEvent *reply, |
| Line 135 static void MenuBarInit(void) { | Line 139 static void MenuBarInit(void) { |
| } | } |
| static void changescreen(BYTE mode) { | static void changescreen(BYTE mode) { |
| #if 0 | |
| (void)mode; | (void)mode; |
| #endif | |
| BYTE change; | |
| BYTE renewal; | |
| change = scrnmode ^ mode; | |
| renewal = (change & SCRNMODE_FULLSCREEN); | |
| if (mode & SCRNMODE_FULLSCREEN) { | |
| renewal |= (change & SCRNMODE_HIGHCOLOR); | |
| } | |
| else { | |
| renewal |= (change & SCRNMODE_ROTATEMASK); | |
| } | |
| if (renewal) { | |
| soundmng_stop(); | |
| mouse_running(MOUSE_STOP); | |
| scrnmng_destroy(); | |
| if (scrnmng_create(mode) == SUCCESS) { | |
| scrnmode = mode; | |
| } | |
| scrndraw_redraw(); | |
| mouse_running(MOUSE_CONT); | |
| soundmng_play(); | |
| } | |
| else { | |
| scrnmode = mode; | |
| } | |
| } | } |
| static void HandleMenuChoice(long wParam) { | static void HandleMenuChoice(long wParam) { |
| Line 169 static void HandleMenuChoice(long wParam | Line 200 static void HandleMenuChoice(long wParam |
| newhdddisk(); | newhdddisk(); |
| break; | break; |
| #endif | #endif |
| case IDM_FONT: | |
| dialog_font(); | |
| break; | |
| case IDM_EXIT: | case IDM_EXIT: |
| np2running = FALSE; | np2running = FALSE; |
| break; | break; |
| Line 205 static void HandleMenuChoice(long wParam | Line 241 static void HandleMenuChoice(long wParam |
| diskdrv_sethdd(1, NULL); | diskdrv_sethdd(1, NULL); |
| break; | break; |
| case IDM_FULLSCREEN: | |
| toggleFullscreen(); | |
| break; | |
| case IDM_ROLNORMAL: | case IDM_ROLNORMAL: |
| menu_setrotate(0); | menu_setrotate(0); |
| changescreen(scrnmode & (~SCRNMODE_ROTATEMASK)); | changescreen(scrnmode & (~SCRNMODE_ROTATEMASK)); |
| Line 271 static void HandleMenuChoice(long wParam | Line 311 static void HandleMenuChoice(long wParam |
| mouse_running(MOUSE_XOR); | mouse_running(MOUSE_XOR); |
| menu_setmouse(np2oscfg.MOUSE_SW ^ 1); | menu_setmouse(np2oscfg.MOUSE_SW ^ 1); |
| sysmng_update(SYS_UPDATECFG); | sysmng_update(SYS_UPDATECFG); |
| toggleMenubar(); | |
| break; | break; |
| case IDM_SOUNDOPT: | |
| initSoundOpt(); | |
| break; | |
| #endif | #endif |
| case IDM_KEY: | case IDM_KEY: |
| Line 562 static void eventproc(EventRecord *event | Line 607 static void eventproc(EventRecord *event |
| static void processwait(UINT waitcnt) { | static void processwait(UINT waitcnt) { |
| if (timing_getcount() >= waitcnt) { | if (timing_getcount() >= waitcnt) { |
| timing_setcount(0); | |
| framecnt = 0; | framecnt = 0; |
| timing_setcount(0); | |
| if (np2oscfg.DISPCLK & 3) { | if (np2oscfg.DISPCLK & 3) { |
| if (sysmng_workclockrenewal()) { | if (sysmng_workclockrenewal()) { |
| sysmng_updatecaption(3); | sysmng_updatecaption(3); |
| Line 651 static void openingNP2(void) { | Line 696 static void openingNP2(void) { |
| int main(int argc, char *argv[]) { | int main(int argc, char *argv[]) { |
| Rect wRect; | |
| #if 0 | #if 0 |
| Rect wRect; | |
| EventRecord event; | EventRecord event; |
| #endif | #endif |
| EventRef theEvent; | EventRef theEvent; |
| Line 672 int main(int argc, char *argv[]) { | Line 717 int main(int argc, char *argv[]) { |
| TRACEINIT(); | TRACEINIT(); |
| #if 0 | |
| SetRect(&wRect, 100, 100, 100, 100); | SetRect(&wRect, 100, 100, 100, 100); |
| hWndMain = NewWindow(0, &wRect, "\pNeko Project II", FALSE, | hWndMain = NewWindow(0, &wRect, "\pNeko Project II", FALSE, |
| noGrowDocProc, (WindowPtr)-1, TRUE, 0); | noGrowDocProc, (WindowPtr)-1, TRUE, 0); |
| Line 685 int main(int argc, char *argv[]) { | Line 731 int main(int argc, char *argv[]) { |
| SizeWindow(hWndMain, 640, 400, TRUE); | SizeWindow(hWndMain, 640, 400, TRUE); |
| setUpCarbonEvent(); | setUpCarbonEvent(); |
| ShowWindow(hWndMain); | ShowWindow(hWndMain); |
| #endif | |
| if (!(setupMainWindow())) { | |
| return(0); | |
| } | |
| #ifdef NP2OPENING | #ifdef NP2OPENING |
| openingNP2(); | openingNP2(); |
| #endif | #endif |
| Line 716 int main(int argc, char *argv[]) { | Line 767 int main(int argc, char *argv[]) { |
| return(0); | return(0); |
| } | } |
| commng_initialize(); | |
| sysmng_initialize(); | sysmng_initialize(); |
| mackbd_initialize(); | mackbd_initialize(); |
| pccore_init(); | pccore_init(); |
| Line 811 int main(int argc, char *argv[]) { | Line 863 int main(int argc, char *argv[]) { |
| else { | else { |
| timing_setcount(cnt - framecnt); | timing_setcount(cnt - framecnt); |
| } | } |
| framecnt = 0; | processwait(0); |
| } | } |
| } | } |
| else { | else { |
| Line 823 int main(int argc, char *argv[]) { | Line 875 int main(int argc, char *argv[]) { |
| } | } |
| np2running = FALSE; | np2running = FALSE; |
| if (scrnmode & SCRNMODE_FULLSCREEN) { | |
| toggleFullscreen(); | |
| } | |
| pccore_cfgupdate(); | pccore_cfgupdate(); |
| #if defined(USE_RESUME) | #if defined(USE_RESUME) |
| Line 957 static pascal OSStatus np2windowevent(Ev | Line 1013 static pascal OSStatus np2windowevent(Ev |
| np2running = FALSE; | np2running = FALSE; |
| result = noErr; | result = noErr; |
| } | } |
| else if (whatHappened == kEventWindowShowing) { | |
| scrndraw_redraw(); | |
| } | |
| break; | break; |
| case kEventClassKeyboard: | case kEventClassKeyboard: |
| UInt32 key; | UInt32 key; |
| Line 975 static pascal OSStatus np2windowevent(Ev | Line 1034 static pascal OSStatus np2windowevent(Ev |
| break; | break; |
| case kEventRawKeyDown: | case kEventRawKeyDown: |
| if (modif & cmdKey) { | if (modif & cmdKey) { |
| char para; | EventRecord eve; |
| GetEventParameter (event, kEventParamKeyMacCharCodes, typeChar, NULL, sizeof(char), NULL, ¶); | ConvertEventRefToEventRecord( event,&eve ); |
| HandleMenuChoice(MenuKey(para)); | HandleMenuChoice(MenuEvent(&eve)); |
| } | } |
| else { | else { |
| mackbd_f12down(key); | mackbd_f12down(key); |
| Line 1020 static const EventTypeSpec appEventList[ | Line 1079 static const EventTypeSpec appEventList[ |
| static const EventTypeSpec windEventList[] = { | static const EventTypeSpec windEventList[] = { |
| {kEventClassWindow, kEventWindowClose}, | {kEventClassWindow, kEventWindowClose}, |
| {kEventClassWindow, kEventWindowShowing}, | |
| {kEventClassKeyboard, kEventRawKeyDown}, | {kEventClassKeyboard, kEventRawKeyDown}, |
| {kEventClassKeyboard, kEventRawKeyUp}, | {kEventClassKeyboard, kEventRawKeyUp}, |
| {kEventClassKeyboard, kEventRawKeyRepeat}, | {kEventClassKeyboard, kEventRawKeyRepeat}, |
| Line 1031 static void setUpCarbonEvent(void) { | Line 1091 static void setUpCarbonEvent(void) { |
| InstallStandardEventHandler(GetWindowEventTarget(hWndMain)); | InstallStandardEventHandler(GetWindowEventTarget(hWndMain)); |
| InstallApplicationEventHandler(NewEventHandlerUPP(np2appevent), | InstallApplicationEventHandler(NewEventHandlerUPP(np2appevent), |
| sizeof(appEventList)/sizeof(EventTypeSpec), | GetEventTypeCount(appEventList), |
| appEventList, 0, NULL); | appEventList, 0, NULL); |
| InstallWindowEventHandler(hWndMain, NewEventHandlerUPP(np2windowevent), | InstallWindowEventHandler(hWndMain, NewEventHandlerUPP(np2windowevent), |
| sizeof(windEventList)/sizeof(EventTypeSpec), | GetEventTypeCount(windEventList), |
| windEventList, 0, NULL); | windEventList, 0, NULL); |
| } | } |
| bool setupMainWindow(void) { | |
| #if defined(NP2GCC) && 0 | |
| #else | |
| Rect wRect; | |
| SetRect(&wRect, 100, 100, 100, 100); | |
| hWndMain = NewWindow(0, &wRect, "\pNeko Project II", FALSE, | |
| noGrowDocProc, (WindowPtr)-1, TRUE, 0); | |
| if (!hWndMain) { | |
| TRACETERM(); | |
| macossub_term(); | |
| dosio_term(); | |
| return(false); | |
| } | |
| SizeWindow(hWndMain, 640, 400, TRUE); | |
| #endif | |
| scrnmng_initialize(); | |
| setUpCarbonEvent(); | |
| ShowWindow(hWndMain); | |
| return(true); | |
| } | |
| static void toggleFullscreen(void) { | |
| static Ptr bkfullscreen; | |
| static BYTE mouse = 0; | |
| soundmng_stop(); | |
| if (!scrnmode & SCRNMODE_FULLSCREEN) { | |
| RGBColor col = {0, 0, 0}; | |
| short w=640, h=480; | |
| DisposeWindow(hWndMain); | |
| BeginFullScreen(&bkfullscreen,0,&w,&h,&hWndMain,&col,(fullScreenAllowEvents | fullScreenDontChangeMenuBar)); | |
| HideMenuBar(); | |
| setUpCarbonEvent(); | |
| if (!np2oscfg.MOUSE_SW) { | |
| mouse = np2oscfg.MOUSE_SW; | |
| mouse_running(MOUSE_ON); | |
| menu_setmouse(1); | |
| } | |
| changescreen(scrnmode | SCRNMODE_FULLSCREEN); | |
| } | |
| else { | |
| scrnmng_destroy(); | |
| EndFullScreen(bkfullscreen, 0); | |
| setupMainWindow(); | |
| changescreen(scrnmode & (~SCRNMODE_FULLSCREEN)); | |
| if (!mouse) { | |
| mouse_running(MOUSE_OFF); | |
| menu_setmouse(0); | |
| } | |
| ShowMenuBar(); | |
| } | |
| CheckMenuItem(GetMenuHandle(IDM_SCREEN), LoWord(IDM_FULLSCREEN), scrnmode & SCRNMODE_FULLSCREEN); | |
| soundmng_play(); | |
| } | |
| void toggleMenubar(void) { | |
| if (scrnmode & SCRNMODE_FULLSCREEN) { | |
| if (!np2oscfg.MOUSE_SW) { | |
| ShowMenuBar(); | |
| } | |
| else { | |
| HideMenuBar(); | |
| } | |
| } | |
| } | |