1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
#include <PalmOS.h>
#include "palmdefs.h"
#include "args.h"
#include "globals.h"
#include "modules.h"
#include "features.h"
#include "rumble.h"
#include "init_mathlib.h"
#include "init_pa1lib.h"
#include "init_palmos.h"
#include "init_stuffs.h"
#include "init_sony.h"
#include "init_golcd.h"
#ifndef DISABLE_LIGHTSPEED
#include "lightspeed_public.h"
#endif
GlobalsDataPtr gVars;
#include "endianutils.h"
#include <PNOLoader.h>
#ifdef COMPILE_ZODIAC
# include <tapwave.h>
# include <TwRuntime.h>
#endif
void run(int argc, char *argv[]) {
// init args
ArgsExportInit(argv, argc, true);
// init system
PalmHRInit(16);
PalmInit(HWR_GET());
void *__ptr = StuffsForceVG();
gVars->screenPitch = StuffsGetPitch(gVars->screenFullWidth);
// export global struct to ARM
VARS_EXPORT();
DO_VARS(_4B, 32, 0);
DO_VARS(_2B, 16, (gVars->_4B * sizeof(UInt32)));
FtrSet(appFileCreator, ftrVars , (UInt32)gVars);
// run the module
#ifdef COMPILE_ZODIAC
NativeFuncType *entry;
TwLoadModule(0, 0, 0, 1, twLoadFlagTNA|twLoadFlagQuickRun, &entry);
#else
PnoDescriptor pno;
PnoLoadFromResources(&pno, 'ARMC', 1, appFileCreator, 1);
PnoCall(&pno, 0);
PnoUnload(&pno);
#endif
// reset globals
DO_VARS(_4B, 32, 0);
DO_VARS(_2B, 16, (gVars->_4B * sizeof(UInt32)));
// release
StuffsReleaseVG(__ptr);
PalmRelease(HWR_GET());
PalmHRRelease();
// free args
ArgsExportRelease(true);
ArgsFree(argv);
// release global struct
FtrUnregister(appFileCreator, ftrVars);
FtrUnregister(appFileCreator, ftrStack);
MemPtrFree(gVars);
// reset the palette if needed
WinPalette(winPaletteSetToDefault, 0, 256, NULL);
}
static UInt32 ModulesPalmMain(UInt16 cmd, MemPtr cmdPBP, UInt16 launchFlags)
{
UInt32 result = 0;
switch (cmd) {
case sysAppLaunchCustomEngineGetInfo: {
#ifdef PALMOS_NATIVE
result = GET_MODEARM;
#else
# if defined(ENABLE_SCUMM) || \
defined(ENABLE_AGOS) || \
defined(ENABLE_SWORD1)
result = GET_DATACOMMON|GET_DATAENGINE|GET_MODE68K;
# else
result = GET_DATACOMMON|GET_MODE68K;
# endif
#endif
break;
}
case sysAppLaunchCmdNormalLaunch: {
if (cmdPBP) {
Char **argvP;
UInt16 cardNo;
LocalID dbID;
LaunchParamType *lp = (LaunchParamType *)cmdPBP;
gVars = lp->gVars;
argvP = lp->args.argv;
// get the free memory on the dynamic heap
PalmGetMemory(0,0,0, &(gVars->startupMemory));
#ifndef DISABLE_LIGHTSPEED
switch (lp->lightspeed) {
case 0:
LS_SetCPUSpeedHigh();
break;
case 1:
LS_SetCPUSpeedNormal();
break;
case 2:
LS_SetCPUSpeedLow();
break;
}
#endif
// MemPtrSetOwner(gVars, ownerID);
// ArgsSetOwner(argvP, ownerID); // will be freed by main(...)
// MemPtrFree(lp); // will be freed by the system on exit
run(lp->args.argc, argvP);
cardNo = 0;
dbID = DmFindDatabase(0, "ScummVM");
if (dbID) {
if (lp->exitLauncher)
SysUIAppSwitch(cardNo, dbID, sysAppLaunchCustomEngineDelete,0);
else
SysUIAppSwitch(cardNo, dbID, sysAppLaunchCmdNormalLaunch,0);
}
}
break;
}
default:
break;
}
return result;
}
UInt32 PilotMain( UInt16 cmd, MemPtr cmdPBP, UInt16 launchFlags) {
return ModulesPalmMain(cmd, cmdPBP, launchFlags);
}
|