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
|
/* ScummVM - Scumm Interpreter
* Copyright (C) 2001 Ludvig Strigeus
* Copyright (C) 2001-2005 The ScummVM project
*
* 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.
*
* $Header$
*
*/
#ifndef GLOBALS_H
#define GLOBALS_H
#include <VFSMgr.h>
#include "scumm_globals.h"
#include "arm/pnodefs.h"
enum {
kOptNone = 0,
kOptDeviceARM = 1 << 0x00,
kOptDeviceOS5 = 1 << 0x01,
kOptDeviceClie = 1 << 0x02,
kOptDeviceZodiac = 1 << 0x03,
kOptModeWide = 1 << 0x04,
kOptModeLandscape = 1 << 0x05,
kOptMode16Bit = 1 << 0x06,
kOptModeHiDensity = 1 << 0x07,
kOptCollapsible = 1 << 0x08,
kOptDisableOnScrDisp = 1 << 0x09,
kOpt5WayNavigator = 1 << 0x0A,
kOptPalmSoundAPI = 1 << 0x0B,
kOptSonyPa1LibAPI = 1 << 0x0C,
kOptDeviceProcX86 = 1 << 0x1F // DEBUG only
};
enum {
kMemScummOldCostGames = 0,
kMemScummNewCostGames,
kMemSimon1Games,
kMemSimon2Games,
kMemGamesCount
};
enum {
INIT_VIBRATOR = 1 << 0x00,
INIT_PA1LIB = 1 << 0x01,
INIT_ARM = 1 << 0x02,
INIT_AUTOOFF = 1 << 0x03
};
typedef struct {
char headerBuffer[sizeof(PnoEntryHeader) + 2];
PnoEntryHeader *alignedHeader;
PnoDescriptor pnoDesc;
} PNOInitType;
typedef struct {
DmOpenRef globals[GBVARS_COUNT];
UInt32 memory[kMemGamesCount];
UInt8 init;
UInt32 options;
UInt16 HRrefNum;
UInt16 volRefNum;
UInt16 slkRefNum;
UInt32 slkVersion;
FileRef logFile;
Boolean vibrator;
Boolean screenLocked;
Boolean stdPalette;
Boolean filter;
Coord screenWidth, screenHeight; // silkarea shown
Coord screenFullWidth, screenFullHeight; // silkarea hidden
UInt32 screenPitch;
PNOInitType arm[ARM_COUNT];
struct {
UInt8 on;
UInt8 off;
} indicator;
struct {
UInt8 *pageAddr1;
UInt8 *pageAddr2;
} flipping;
struct {
Boolean enable;
UInt8 driver, format;
UInt16 defaultTrackLength;
UInt16 firstTrack;
UInt16 volume;
} CD;
} GlobalsDataType, *GlobalsDataPtr;
extern GlobalsDataPtr gVars;
#define OPTIONS_TST(x) (gVars->options & (x))
#define OPTIONS_SET(x) gVars->options |= (x)
#define OPTIONS_RST(x) gVars->options &= ~(x)
#define HWR_INIT(x) (gVars->init & (x))
#define HWR_SET(x) gVars->init |= (x)
#define HWR_RST(x) gVars->init &= ~(x)
#define HWR_RSTALL() gVars->init = 0
#define HWR_GET() (gVars->init)
#define ARM(x) gVars->arm[x]
#endif
|