pilotmain_m68k.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:6k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*****************************************************************************  *  * This program is free software ; you can redistribute it and/or modify  * it under the terms of the GNU General Public License as published by  * the Free Software Foundation; either version 2 of the License, or  * (at your option) any later version.  *  * This program is distributed in the hope that it will be useful,  * but WITHOUT ANY WARRANTY; without even the implied warranty of  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the  * GNU General Public License for more details.  *  * You should have received a copy of the GNU General Public License  * along with this program; if not, write to the Free Software  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA  *  * $Id: pilotmain_m68k.c 292 2005-10-14 20:30:00Z picard $  *  * The Core Pocket Media Player  * Copyright (c) 2004-2005 Gabor Kovacs  *  ****************************************************************************/ #include <PalmOS.h> #include <MemGlue.h> #include "peal/m68k/peal.h" #include <stdio.h> #include <PceNativeCall.h>
  2. #define SWAP16(a) ((((UInt16)(a) >> 8) & 0x00FF) | (((UInt16)(a) << 8) & 0xFF00))
  3. #define SWAP32(a) ((((UInt32)(a) >> 24) & 0x000000FF) | (((UInt32)(a) >> 8)  & 0x0000FF00) |   (((UInt32)(a) << 8)  & 0x00FF0000) | (((UInt32)(a) << 24) & 0xFF000000))
  4. typedef struct vfspath
  5. {
  6. UInt16 volRefNum;
  7. Char path[256];
  8. } vfspath;
  9. typedef struct launch { MemPtr PealCall;
  10. PealModule* Module;
  11. void* LoadModule;
  12. void* FreeModule;
  13. void* GetSymbol;
  14. MemPtr launchParameters; UInt16 launchCode; UInt16 launchFlags;
  15. } launch;
  16. static Err RomVersionCheck(UInt16 launchFlags) { UInt32 Version; FtrGet(sysFtrCreator, sysFtrNumROMVersion, &Version); if (Version < sysMakeROMVersion(5,0,0,sysROMStageDevelopment,0)) { if ((launchFlags & sysAppLaunchFlagNewGlobals) != 0 && (launchFlags & sysAppLaunchFlagUIApp) != 0) { FrmCustomAlert(WarningOKAlert, "System version 5.0 or greater is required to run this application!", " ", " "); // Palm OS 1.0 requires you to explicitly launch another app if (Version < sysMakeROMVersion(1,0,0,sysROMStageRelease,0)) { AppLaunchWithCommand(sysFileCDefaultApp, sysAppLaunchCmdNormalLaunch, NULL); } } return sysErrRomIncompatible; } return errNone; } static PealModule* Module = NULL; static void* PaceMain = NULL;
  17. static void* LookupSymbol86(void* Module,const char* Name)
  18. {
  19. return NULL;
  20. }
  21. static void* LoadModule(UInt16 ftrId,Boolean mem,Boolean onlyftr,Boolean memsema)
  22. {
  23. return PealLoadFromResources('armc',1000,Module,'TPLY',ftrId,mem,onlyftr,memsema);
  24. }
  25. static UInt32 PealCall86(void* Module,void* Func,void* Param) {
  26. return PceNativeCall((NativeFuncType*)Func,Param); }
  27. static UInt16 GetHeapId()
  28. {
  29. MemPtr p=MemPtrNew(8);   
  30. UInt16 Id=MemPtrHeapID(p);
  31. MemPtrFree(p);
  32. return Id;
  33. }
  34. UInt32 PilotMain(UInt16 launchCode, MemPtr launchParameters, UInt16 launchFlags) {
  35. UInt32 Value; UInt32 Result = errNone; UInt32 CPU; launch Launch; Launch.launchParameters = launchParameters; Launch.launchCode = launchCode; Launch.launchFlags = launchFlags;
  36. if ((launchCode == sysAppLaunchCmdNormalLaunch ||
  37. launchCode == sysAppLaunchCmdOpenDB ||
  38. launchCode == sysAppLaunchCmdCustomBase) && !RomVersionCheck(launchFlags)) {
  39. FtrGet(sysFileCSystem, sysFtrNumProcessorID, &CPU); if (CPU == sysFtrNumProcessorx86) {
  40. Module = PealLoadFromResources('armc', 1000, NULL, 'TPLY',32,0,0,0); // just for testing
  41. Launch.FreeModule = PealUnload;
  42. Launch.LoadModule = LoadModule;
  43. Launch.GetSymbol = LookupSymbol86;
  44. Launch.PealCall = PealCall86;
  45. Launch.Module = Module;
  46. PceNativeCall((NativeFuncType*)"tcpmp.dllPaceMain86",&Launch);
  47. if (Module)
  48. PealUnload(Module);
  49. } else if (sysFtrNumProcessorIsARM(CPU)) {
  50. UInt32 Version;
  51. Boolean MemSema;
  52. FtrGet(sysFtrCreator, sysFtrNumROMVersion, &Version);
  53. MemSema = Version < sysMakeROMVersion(6,0,0,sysROMStageDevelopment,0);
  54. Module = PealLoadFromResources('armc', 1000, NULL, 'TPLY',32,0,0,MemSema); if (Module) { PaceMain = PealLookupSymbol(Module, "PaceMain"); if (PaceMain) {
  55. Launch.FreeModule = PealUnload;
  56. Launch.LoadModule = LoadModule;
  57. Launch.GetSymbol = PealLookupSymbol;
  58. Launch.PealCall = PealCall;
  59. Launch.Module = Module;
  60. Result = PealCall(Module,PaceMain,&Launch); } PealUnload(Module);
  61. MemHeapCompact(GetHeapId());  } } else FrmCustomAlert(WarningOKAlert, "ARM processor is required to run this application!", " ", " ");
  62. if (FtrGet('TPLY',20,&Value)==errNone)
  63. FtrPtrFree('TPLY',20); } else if (launchCode == sysAppLaunchCmdNotify && (launchFlags & sysAppLaunchFlagSubCall)!=0) { FtrGet(sysFileCSystem, sysFtrNumProcessorID, &CPU); if (CPU == sysFtrNumProcessorx86) Result = PceNativeCall((NativeFuncType*)"tcpmp.dllPaceMain86",&Launch); else if (sysFtrNumProcessorIsARM(CPU) && Module && PaceMain) Result = PealCall(Module,PaceMain,&Launch); }
  64. else
  65. if (launchCode == sysAppLaunchCmdCardLaunch && launchParameters)
  66. {
  67. SysAppLaunchCmdCardType* p = (SysAppLaunchCmdCardType*)launchParameters;
  68. vfspath* VFSPath;
  69. if (FtrGet('TPLY',20,&Value)==errNone)
  70. FtrPtrFree('TPLY',20);
  71. if (FtrPtrNew('TPLY',20,sizeof(vfspath),(void**)&VFSPath)==errNone)
  72. {
  73. vfspath Path;
  74. memset(&Path,0,sizeof(vfspath));
  75. Path.volRefNum = SWAP16(p->volRefNum);
  76. StrNCopy(Path.path,p->path,255);
  77. DmWrite(VFSPath,0,&Path,sizeof(vfspath));
  78. }
  79. }
  80. return Result; }