|
|
| version 1.43, 2003/12/04 17:48:17 | version 1.49, 2004/01/23 17:37:39 |
|---|---|
| Line 26 | Line 26 |
| #include "s98.h" | #include "s98.h" |
| #include "diskdrv.h" | #include "diskdrv.h" |
| #include "fddfile.h" | #include "fddfile.h" |
| #include "statsave.h" | |
| #include "mousemng.h" | #include "mousemng.h" |
| #include "configure.h" | #include "configure.h" |
| #include "screenopt.h" | #include "screenopt.h" |
| Line 46 | Line 45 |
| // #define OPENING_WAIT 1500 | // #define OPENING_WAIT 1500 |
| NP2OSCFG np2oscfg = {"Neko Project IIx", -1, -1, 0, 2, 0, 0, 0, 0, 0, 1, 0}; | NP2OSCFG np2oscfg = {"Neko Project IIx", -1, -1, 0, 0, 0, 0, 0, 0, 0, 1, 0}; |
| WindowPtr hWndMain; | WindowPtr hWndMain; |
| BOOL np2running; | BOOL np2running; |
| Line 141 static void MenuBarInit(void) { | Line 140 static void MenuBarInit(void) { |
| InsertMenu(GetMenu(IDM_MEMORY), -1); | InsertMenu(GetMenu(IDM_MEMORY), -1); |
| ChangeMenuAttributes(GetMenuRef(IDM_EDIT), kMenuAttrAutoDisable, 0); | ChangeMenuAttributes(GetMenuRef(IDM_EDIT), kMenuAttrAutoDisable, 0); |
| DisableAllMenuItems(GetMenuHandle(IDM_EDIT)); | DisableAllMenuItems(GetMenuHandle(IDM_EDIT)); |
| SetMenuItemModifiers(GetMenuRef(IDM_FDD2), IDM_FDD2OPEN, kMenuOptionModifier); | SetMenuItemModifiers(GetMenuRef(IDM_FDD2), IDM_FDD2OPEN, kMenuShiftModifier); |
| SetMenuItemModifiers(GetMenuRef(IDM_FDD2), IDM_FDD2EJECT, kMenuOptionModifier); | SetMenuItemModifiers(GetMenuRef(IDM_FDD2), IDM_FDD2EJECT, kMenuShiftModifier); |
| SetMenuItemModifiers(GetMenuRef(IDM_SASI2), IDM_SASI2OPEN, kMenuOptionModifier); | SetMenuItemModifiers(GetMenuRef(IDM_SASI2), IDM_SASI2OPEN, kMenuShiftModifier); |
| DrawMenuBar(); | DrawMenuBar(); |
| #else | #else |
| OSStatus err; | OSStatus err; |
| Line 499 static void HandleMenuChoice(long wParam | Line 498 static void HandleMenuChoice(long wParam |
| update |= SYS_UPDATECFG; | update |= SYS_UPDATECFG; |
| break; | break; |
| case IDM_JASTSOUND: | |
| menu_setjastsound(np2oscfg.jastsnd ^ 1); | |
| update |= SYS_UPDATEOSCFG; | |
| break; | |
| case IDM_SEEKSND: | case IDM_SEEKSND: |
| menu_setmotorflg(np2cfg.MOTOR ^ 1); | menu_setmotorflg(np2cfg.MOTOR ^ 1); |
| update |= SYS_UPDATECFG; | update |= SYS_UPDATECFG; |
| Line 712 int main(int argc, char *argv[]) { | Line 716 int main(int argc, char *argv[]) { |
| menu_setf12key(np2oscfg.F12KEY); | menu_setf12key(np2oscfg.F12KEY); |
| menu_setbeepvol(np2cfg.BEEP_VOL); | menu_setbeepvol(np2cfg.BEEP_VOL); |
| menu_setsound(np2cfg.SOUND_SW); | menu_setsound(np2cfg.SOUND_SW); |
| menu_setjastsound(np2oscfg.jastsnd); | |
| menu_setmotorflg(np2cfg.MOTOR); | menu_setmotorflg(np2cfg.MOTOR); |
| menu_setextmem(np2cfg.EXTMEM); | menu_setextmem(np2cfg.EXTMEM); |
| menu_setdispclk(np2oscfg.DISPCLK); | menu_setdispclk(np2oscfg.DISPCLK); |
| Line 737 int main(int argc, char *argv[]) { | Line 742 int main(int argc, char *argv[]) { |
| S98_init(); | S98_init(); |
| hid_init(); | hid_init(); |
| #ifndef SUPPORT_WAVEMIX | |
| if (soundmng_initialize() == SUCCESS) { | if (soundmng_initialize() == SUCCESS) { |
| soundmng_pcmvolume(SOUND_PCMSEEK, np2cfg.MOTORVOL); | soundmng_pcmvolume(SOUND_PCMSEEK, np2cfg.MOTORVOL); |
| soundmng_pcmvolume(SOUND_PCMSEEK1, np2cfg.MOTORVOL); | soundmng_pcmvolume(SOUND_PCMSEEK1, np2cfg.MOTORVOL); |
| } | } |
| #endif | |
| #if defined(NP2GCC) | #if defined(NP2GCC) |
| mousemng_initialize(); | mousemng_initialize(); |
| Line 827 int main(int argc, char *argv[]) { | Line 834 int main(int argc, char *argv[]) { |
| } | } |
| } | } |
| GetWindowBounds(hWndMain, kWindowGlobalPortRgn, &bounds); | |
| if ((np2oscfg.winx != bounds.left) || (np2oscfg.winy != bounds.top)) { | |
| np2oscfg.winx = bounds.left; | |
| np2oscfg.winy = bounds.top; | |
| sysmng_update(SYS_UPDATEOSCFG); | |
| } | |
| np2running = FALSE; | np2running = FALSE; |
| menu_setrecording(true); | menu_setrecording(true); |
| Line 841 int main(int argc, char *argv[]) { | Line 841 int main(int argc, char *argv[]) { |
| toggleFullscreen(); | toggleFullscreen(); |
| } | } |
| GetWindowBounds(hWndMain, kWindowGlobalPortRgn, &bounds); | |
| if ((np2oscfg.winx != bounds.left) || (np2oscfg.winy != bounds.top)) { | |
| np2oscfg.winx = bounds.left; | |
| np2oscfg.winy = bounds.top; | |
| sysmng_update(SYS_UPDATEOSCFG); | |
| } | |
| pccore_cfgupdate(); | pccore_cfgupdate(); |
| #if defined(USE_RESUME) | #if defined(USE_RESUME) |
| Line 859 int main(int argc, char *argv[]) { | Line 866 int main(int argc, char *argv[]) { |
| #if defined(NP2GCC) | #if defined(NP2GCC) |
| mousemng_disable(MOUSEPROC_SYSTEM); | mousemng_disable(MOUSEPROC_SYSTEM); |
| #endif | #endif |
| #ifndef SUPPORT_WAVEMIX | |
| soundmng_deinitialize(); | soundmng_deinitialize(); |
| #endif | |
| scrnmng_destroy(); | scrnmng_destroy(); |
| if (sys_updates & (SYS_UPDATECFG | SYS_UPDATEOSCFG)) { | if (sys_updates & (SYS_UPDATECFG | SYS_UPDATEOSCFG)) { |
| Line 938 static pascal OSStatus np2appevent (Even | Line 946 static pascal OSStatus np2appevent (Even |
| result = noErr; | result = noErr; |
| break; | break; |
| case kEventMouseDown: | case kEventMouseDown: |
| if (buttonKind == kEventMouseButtonSecondary | modif & controlKey) { | if (buttonKind == kEventMouseButtonSecondary || modif & cmdKey) { |
| mousemng_buttonevent(MOUSEMNG_RIGHTDOWN); | mousemng_buttonevent(MOUSEMNG_RIGHTDOWN); |
| } | } |
| else { | else { |
| Line 947 static pascal OSStatus np2appevent (Even | Line 955 static pascal OSStatus np2appevent (Even |
| result=noErr; | result=noErr; |
| break; | break; |
| case kEventMouseUp: | case kEventMouseUp: |
| if (buttonKind == kEventMouseButtonSecondary | modif & controlKey) { | if (buttonKind == kEventMouseButtonSecondary || modif & cmdKey) { |
| mousemng_buttonevent(MOUSEMNG_RIGHTUP); | mousemng_buttonevent(MOUSEMNG_RIGHTUP); |
| } | } |
| else if (buttonKind == kEventMouseButtonTertiary) { | else if (buttonKind == kEventMouseButtonTertiary) { |
| Line 967 static pascal OSStatus np2appevent (Even | Line 975 static pascal OSStatus np2appevent (Even |
| } | } |
| #endif | #endif |
| break; | break; |
| case kEventClassKeyboard: | |
| if (GetEventKind(event)==kEventRawKeyModifiersChanged) { | |
| static UInt32 backup = 0; | |
| if (modif & shiftKey) keystat_senddata(0x70); | |
| else keystat_senddata(0x70 | 0x80); | |
| if (modif & optionKey) keystat_senddata(0x73); | |
| else keystat_senddata(0x73 | 0x80); | |
| if (modif & controlKey) keystat_senddata(0x74); | |
| else keystat_senddata(0x74 | 0x80); | |
| if ((modif & alphaLock) != (backup & alphaLock)) { | |
| keystat_senddata(0x71); | |
| backup = modif; | |
| } | |
| result = noErr; | |
| } | |
| break; | |
| default: | default: |
| break; | break; |
| } | } |
| Line 988 static pascal OSStatus np2windowevent(Ev | Line 1012 static pascal OSStatus np2windowevent(Ev |
| eventClass = GetEventClass(event); | eventClass = GetEventClass(event); |
| whatHappened = GetEventKind(event); | whatHappened = GetEventKind(event); |
| static UInt32 backup = 0; | |
| switch (eventClass) | switch (eventClass) |
| { | { |
| case kEventClassKeyboard: | case kEventClassKeyboard: |
| Line 1019 static pascal OSStatus np2windowevent(Ev | Line 1042 static pascal OSStatus np2windowevent(Ev |
| } | } |
| result = noErr; | result = noErr; |
| break; | break; |
| case kEventRawKeyModifiersChanged: | |
| if (modif & shiftKey) keystat_senddata(0x70); | |
| else keystat_senddata(0x70 | 0x80); | |
| if (modif & optionKey) keystat_senddata(0x73); | |
| else keystat_senddata(0x73 | 0x80); | |
| if (modif & controlKey) keystat_senddata(0x74); | |
| else keystat_senddata(0x74 | 0x80); | |
| if ((modif & alphaLock) != (backup & alphaLock)) { | |
| keystat_senddata(0x71); | |
| backup = modif; | |
| } | |
| result = noErr; | |
| break; | |
| default: | default: |
| break; | break; |
| } | } |
| Line 1078 static const EventTypeSpec appEventList[ | Line 1088 static const EventTypeSpec appEventList[ |
| {kEventClassMouse, kEventMouseMoved}, | {kEventClassMouse, kEventMouseMoved}, |
| {kEventClassMouse, kEventMouseUp}, | {kEventClassMouse, kEventMouseUp}, |
| #endif | #endif |
| {kEventClassKeyboard, kEventRawKeyModifiersChanged}, | |
| }; | }; |
| static const EventTypeSpec windEventList[] = { | static const EventTypeSpec windEventList[] = { |
| Line 1090 static const EventTypeSpec windEventList | Line 1101 static const EventTypeSpec windEventList |
| {kEventClassKeyboard, kEventRawKeyDown}, | {kEventClassKeyboard, kEventRawKeyDown}, |
| {kEventClassKeyboard, kEventRawKeyUp}, | {kEventClassKeyboard, kEventRawKeyUp}, |
| {kEventClassKeyboard, kEventRawKeyRepeat}, | {kEventClassKeyboard, kEventRawKeyRepeat}, |
| {kEventClassKeyboard, kEventRawKeyModifiersChanged}, | |
| }; | }; |
| Line 1141 static bool setupMainWindow(void) { | Line 1151 static bool setupMainWindow(void) { |
| setUpCarbonEvent(); | setUpCarbonEvent(); |
| if (backupwidth) scrnmng_setwidth(0, backupwidth); | if (backupwidth) scrnmng_setwidth(0, backupwidth); |
| if (backupheight) scrnmng_setheight(0, backupheight); | if (backupheight) scrnmng_setheight(0, backupheight); |
| SetWindowTitleWithCFString(hWndMain, CFStringCreateWithCString(NULL, np2oscfg.titles, kCFStringEncodingUTF8)); | CFStringRef title = CFStringCreateWithCString(NULL, np2oscfg.titles, kCFStringEncodingUTF8); |
| if (title) { | |
| SetWindowTitleWithCFString(hWndMain, title); | |
| CFRelease(title); | |
| } | |
| ShowWindow(hWndMain); | ShowWindow(hWndMain); |
| return(true); | return(true); |
| } | } |
| Line 1162 static void toggleFullscreen(void) { | Line 1176 static void toggleFullscreen(void) { |
| backupheight = bounds.bottom - bounds.top; | backupheight = bounds.bottom - bounds.top; |
| toolwin = np2oscfg.toolwin; | toolwin = np2oscfg.toolwin; |
| toolwin_close(); | toolwin_close(); |
| np2oscfg.winx = bounds.left; | |
| np2oscfg.winy = bounds.top; | |
| DisposeWindow(hWndMain); | DisposeWindow(hWndMain); |
| BeginFullScreen(&bkfullscreen, 0, &w, &h, &hWndMain, NULL, fullScreenAllowEvents); | BeginFullScreen(&bkfullscreen, 0, &w, &h, &hWndMain, NULL, fullScreenAllowEvents | fullScreenCaptureDisplay); |
| DisableMenuItem(menu, IDM_ROLNORMAL); | DisableMenuItem(menu, IDM_ROLNORMAL); |
| DisableMenuItem(menu, IDM_ROLLEFT); | DisableMenuItem(menu, IDM_ROLLEFT); |
| DisableMenuItem(menu, IDM_ROLRIGHT); | DisableMenuItem(menu, IDM_ROLRIGHT); |