|
|
| version 1.14, 2003/10/23 21:00:24 | version 1.17, 2003/10/24 20:46:13 |
|---|---|
| Line 32 | Line 32 |
| #define USE_RESUME | #define USE_RESUME |
| #define NP2OPENING | |
| #ifdef NP2OPENING | |
| #include <QuickTime/QuickTime.h> | |
| #define OPENING_WAIT 1500 | |
| #endif | |
| NP2OSCFG np2oscfg = {0, 2, 0, 0, 0, 0, 1, 0}; | NP2OSCFG np2oscfg = {0, 2, 0, 0, 0, 0, 1, 0}; |
| Line 162 static void HandleMenuChoice(long wParam | Line 169 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 469 static void HandleMouseDown(EventRecord | Line 481 static void HandleMouseDown(EventRecord |
| WindowPtr hWnd; | WindowPtr hWnd; |
| Rect rDrag; | Rect rDrag; |
| soundmng_stop(); | |
| switch(FindWindow(pevent->where, &hWnd)) { | switch(FindWindow(pevent->where, &hWnd)) { |
| case inMenuBar: | case inMenuBar: |
| HandleMenuChoice(MenuSelect(pevent->where)); | HandleMenuChoice(MenuSelect(pevent->where)); |
| Line 501 static void HandleMouseDown(EventRecord | Line 514 static void HandleMouseDown(EventRecord |
| #endif | #endif |
| break; | break; |
| #ifndef NP2GCC | |
| case inGoAway: | case inGoAway: |
| if (TrackGoAway(hWnd, pevent->where)) { } | if (TrackGoAway(hWnd, pevent->where)) { } |
| np2running = FALSE; | np2running = FALSE; |
| break; | break; |
| #endif | |
| } | } |
| soundmng_play(); | |
| } | } |
| #if 0 | #if 0 |
| Line 589 static void flagload(const char *ext) { | Line 605 static void flagload(const char *ext) { |
| } | } |
| } | } |
| #ifdef NP2OPENING | |
| static void openingNP2(void) { | |
| Rect srt, bounds; | |
| GrafPtr port; | |
| CFURLRef openingURL; | |
| CFStringRef path; | |
| char buffer[1024]; | |
| FSRef fsr; | |
| FSSpec fsc; | |
| PicHandle pict; | |
| GraphicsImportComponent gi; | |
| GetPort(&port); | |
| SetPortWindowPort(hWndMain); | |
| const RGBColor col = {0, 0, 0}; | |
| SetRect(&bounds, 0, 0, 640, 400); | |
| RGBBackColor(&col); | |
| EraseRect(&bounds); | |
| openingURL=CFURLCopyAbsoluteURL(CFBundleCopyResourcesDirectoryURL(CFBundleGetMainBundle())); | |
| if (openingURL) { | |
| path = CFURLCopyFileSystemPath(openingURL, kCFURLPOSIXPathStyle); | |
| if (path) { | |
| if (CFStringGetCString(path, buffer, 1024, CFStringGetSystemEncoding())) { | |
| strcat(buffer, "/nekop2.bmp"); | |
| FSPathMakeRef((const UInt8*)buffer, &fsr, NULL); | |
| FSGetCatalogInfo(&fsr, kFSCatInfoNone, NULL, NULL, &fsc, NULL); | |
| if (!GetGraphicsImporterForFile(&fsc, &gi)) { | |
| if (!GraphicsImportGetNaturalBounds(gi, &srt)) { | |
| OffsetRect( &srt, -srt.left, -srt.top); | |
| GraphicsImportSetBoundsRect(gi, &srt); | |
| GraphicsImportGetAsPicture(gi, &pict); | |
| OffsetRect(&srt, (640-srt.right)/2, (400-srt.bottom)/2); | |
| DrawPicture(pict,&srt); | |
| QDFlushPortBuffer(GetWindowPort(hWndMain), NULL); | |
| KillPicture(pict); | |
| } | |
| CloseComponent(gi); | |
| } | |
| } | |
| if (path) CFRelease(path); | |
| } | |
| if (openingURL) CFRelease(openingURL); | |
| } | |
| SetPort(port); | |
| } | |
| #endif | |
| int main(int argc, char *argv[]) { | int main(int argc, char *argv[]) { |
| Rect wRect; | Rect wRect; |
| Line 597 int main(int argc, char *argv[]) { | Line 662 int main(int argc, char *argv[]) { |
| #endif | #endif |
| EventRef theEvent; | EventRef theEvent; |
| EventTargetRef theTarget; | EventTargetRef theTarget; |
| #ifdef OPENING_WAIT | |
| UINT32 tick; | |
| #endif | |
| dosio_init(); | dosio_init(); |
| file_setcd(target); | file_setcd(target); |
| Line 622 int main(int argc, char *argv[]) { | Line 690 int main(int argc, char *argv[]) { |
| SizeWindow(hWndMain, 640, 400, TRUE); | SizeWindow(hWndMain, 640, 400, TRUE); |
| setUpCarbonEvent(); | setUpCarbonEvent(); |
| ShowWindow(hWndMain); | ShowWindow(hWndMain); |
| #ifdef NP2OPENING | |
| openingNP2(); | |
| #endif | |
| #ifdef OPENING_WAIT | |
| tick = GETTICK(); | |
| #endif | |
| menu_setrotate(0); | menu_setrotate(0); |
| menu_setdispmode(np2cfg.DISPSYNC); | menu_setdispmode(np2cfg.DISPSYNC); |
| Line 657 int main(int argc, char *argv[]) { | Line 731 int main(int argc, char *argv[]) { |
| mouse_running(MOUSE_ON); | mouse_running(MOUSE_ON); |
| } | } |
| #endif | #endif |
| #ifdef OPENING_WAIT | |
| while((GETTICK() - tick) < OPENING_WAIT); | |
| #endif | |
| scrndraw_redraw(); | scrndraw_redraw(); |
| pccore_reset(); | pccore_reset(); |
| Line 685 int main(int argc, char *argv[]) { | Line 762 int main(int argc, char *argv[]) { |
| #endif | #endif |
| else { | else { |
| if (np2oscfg.NOWAIT) { | if (np2oscfg.NOWAIT) { |
| #if defined(NP2GCC) && 0 | #if 0 |
| mouse_callback(); | |
| #endif | |
| #if 1 | |
| mackbd_callback(); | mackbd_callback(); |
| #endif | #endif |
| pccore_exec(framecnt == 0); | pccore_exec(framecnt == 0); |
| Line 707 int main(int argc, char *argv[]) { | Line 781 int main(int argc, char *argv[]) { |
| } | } |
| else if (np2oscfg.DRAW_SKIP) { // frame skip | else if (np2oscfg.DRAW_SKIP) { // frame skip |
| if (framecnt < np2oscfg.DRAW_SKIP) { | if (framecnt < np2oscfg.DRAW_SKIP) { |
| #if defined(NP2GCC) && 0 | #if 0 |
| mouse_callback(); | |
| #endif | |
| #if 1 | |
| mackbd_callback(); | mackbd_callback(); |
| #endif | #endif |
| pccore_exec(framecnt == 0); | pccore_exec(framecnt == 0); |
| Line 723 int main(int argc, char *argv[]) { | Line 794 int main(int argc, char *argv[]) { |
| else { // auto skip | else { // auto skip |
| if (!waitcnt) { | if (!waitcnt) { |
| UINT cnt; | UINT cnt; |
| #if defined(NP2GCC) && 0 | #if 0 |
| mouse_callback(); | |
| #endif | |
| #if 1 | |
| mackbd_callback(); | mackbd_callback(); |
| #endif | #endif |
| pccore_exec(framecnt == 0); | pccore_exec(framecnt == 0); |
| Line 811 static pascal OSStatus np2appevent (Even | Line 879 static pascal OSStatus np2appevent (Even |
| GetEventParameter (event, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(UInt32), NULL, &modif); | GetEventParameter (event, kEventParamKeyModifiers, typeUInt32, NULL, sizeof(UInt32), NULL, &modif); |
| #if defined(NP2GCC) | #if defined(NP2GCC) |
| HIPoint delta; | |
| EventMouseButton buttonKind; | EventMouseButton buttonKind; |
| GetEventParameter (event, kEventParamMouseButton, typeMouseButton, NULL, sizeof(EventMouseButton), NULL, &buttonKind); | GetEventParameter (event, kEventParamMouseButton, typeMouseButton, NULL, sizeof(EventMouseButton), NULL, &buttonKind); |
| Line 830 static pascal OSStatus np2appevent (Even | Line 899 static pascal OSStatus np2appevent (Even |
| switch (whatHappened) | switch (whatHappened) |
| { | { |
| case kEventMouseMoved: | case kEventMouseMoved: |
| #if 0 | GetEventParameter (event, kEventParamMouseDelta, typeHIPoint, NULL, sizeof(HIPoint), NULL, &delta); |
| if (isFullScreen) | mouse_callback(delta); |
| { | result = noErr; |
| HIPoint delta; | break; |
| Point pt; | |
| GetEventParameter (event, kEventParamMouseDelta, typeHIPoint, NULL, sizeof(HIPoint), NULL, &delta); | |
| pt.h=(short)delta.x; | |
| pt.v=(short)delta.y; | |
| mouse_callback(pt); | |
| } | |
| else { | |
| mouse_callback(eve.where); | |
| } | |
| #endif | |
| mouse_callback(); | |
| result = noErr; | |
| break; | |
| case kEventMouseDown: | case kEventMouseDown: |
| if (buttonKind == kEventMouseButtonSecondary | modif & controlKey) { | if (buttonKind == kEventMouseButtonSecondary | modif & controlKey) { |
| ret=mouse_btn(MOUSE_RIGHTDOWN); | ret=mouse_btn(MOUSE_RIGHTDOWN); |
| Line 857 static pascal OSStatus np2appevent (Even | Line 913 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) { | ret=mouse_btn(MOUSE_RIGHTUP); |
| ret=mouse_btn(MOUSE_RIGHTUP); | } |
| } | else if (buttonKind == kEventMouseButtonTertiary) { |
| else { | mouse_running(MOUSE_XOR); |
| ret=mouse_btn(MOUSE_LEFTUP); | menu_setmouse(np2oscfg.MOUSE_SW ^ 1); |
| } | sysmng_update(SYS_UPDATECFG); |
| result=noErr; | } |
| break; | else { |
| } | ret=mouse_btn(MOUSE_LEFTUP); |
| } | |
| result=noErr; | |
| break; | |
| } | } |
| #else | #else |
| if (whatHappened == kEventMouseDown) { | if (whatHappened == kEventMouseDown) { |
| Line 889 static pascal OSStatus np2windowevent(Ev | Line 948 static pascal OSStatus np2windowevent(Ev |
| UInt32 whatHappened; | UInt32 whatHappened; |
| OSStatus result = eventNotHandledErr; | OSStatus result = eventNotHandledErr; |
| long eventClass; | long eventClass; |
| static UInt32 backup = 0; | |
| GetEventParameter(event, kEventParamDirectObject, typeWindowRef, NULL, | GetEventParameter(event, kEventParamDirectObject, typeWindowRef, NULL, |
| sizeof(window), NULL, &window); | sizeof(window), NULL, &window); |
| Line 911 static pascal OSStatus np2windowevent(Ev | Line 971 static pascal OSStatus np2windowevent(Ev |
| switch (whatHappened) | switch (whatHappened) |
| { | { |
| case kEventRawKeyUp: | case kEventRawKeyUp: |
| //mackeyup((int)key); | |
| mackbd_f12up(key); | mackbd_f12up(key); |
| result = noErr; | result = noErr; |
| break; | break; |
| case kEventRawKeyRepeat: | case kEventRawKeyRepeat: |
| //mackeydown(0, (int)key); | |
| mackbd_f12down(key); | mackbd_f12down(key); |
| result = noErr; | result = noErr; |
| break; | break; |
| case kEventRawKeyDown: | case kEventRawKeyDown: |
| mackbd_f12down(key); | |
| if (modif & cmdKey) { | if (modif & cmdKey) { |
| //if (!mackeydown(1, (int)key)) { | EventRecord eve; |
| char para; | ConvertEventRefToEventRecord( event,&eve ); |
| GetEventParameter (event, kEventParamKeyMacCharCodes, typeChar, NULL, sizeof(char), NULL, ¶); | HandleMenuChoice(MenuEvent(&eve)); |
| HandleMenuChoice(MenuKey(para)); | |
| //} | |
| } | } |
| else { | else { |
| //mackeydown(0, (int)key); | mackbd_f12down(key); |
| } | } |
| result = noErr; | result = noErr; |
| break; | break; |
| Line 941 static pascal OSStatus np2windowevent(Ev | Line 996 static pascal OSStatus np2windowevent(Ev |
| else keystat_senddata(0x73 | 0x80); | else keystat_senddata(0x73 | 0x80); |
| if (modif & controlKey) keystat_senddata(0x74); | if (modif & controlKey) keystat_senddata(0x74); |
| else keystat_senddata(0x74 | 0x80); | else keystat_senddata(0x74 | 0x80); |
| if (modif & alphaLock) keystat_senddata(0x79); | if ((modif & alphaLock) != (backup & alphaLock)) { |
| else keystat_senddata(0x79 | 0x80); | keystat_senddata(0x71); |
| backup = modif; | |
| } | |
| result = noErr; | result = noErr; |
| break; | break; |
| default: | default: |
| Line 979 static void setUpCarbonEvent(void) { | Line 1036 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); |
| } | } |