blob: 3b8813489492384df3e0a4659c85856961a27c9b (
plain)
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
|
/* Copyright (C) 1994-2004 Revolution Software Ltd
*
* 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 DEFS
#define DEFS
#define SIZE 0x10000 // 65536 items per section
#define NuSIZE 0xffff // & with this
// global variable references
// NB. 4 * <number from linc's Global Variables list>
#define VAR(n) (*(uint32 *) (g_sword2->_resman->_resList[1]->ad + sizeof(StandardHeader) + 4 * (n)))
#define ID VAR(0)
#define RESULT VAR(1)
#define PLAYER_ACTION VAR(2)
// #define CUR_PLAYER_ID VAR(3)
// always 8 (George object used for Nico player character as well)
#define CUR_PLAYER_ID 8
#define PLAYER_ID VAR(305)
#define TALK_FLAG VAR(13)
#define MOUSE_X VAR(4)
#define MOUSE_Y VAR(5)
#define LEFT_BUTTON VAR(109)
#define RIGHT_BUTTON VAR(110)
#define CLICKED_ID VAR(178)
#define IN_SUBJECT VAR(6)
#define COMBINE_BASE VAR(7)
#define OBJECT_HELD VAR(14)
#define SPEECH_ID VAR(9)
#define INS1 VAR(10)
#define INS2 VAR(11)
#define INS3 VAR(12)
#define INS4 VAR(60)
#define INS5 VAR(61)
#define INS_COMMAND VAR(59)
#define PLAYER_FEET_X VAR(141)
#define PLAYER_FEET_Y VAR(142)
#define PLAYER_CUR_DIR VAR(937)
// for debug.cpp
#define LOCATION VAR(62)
// so scripts can force scroll offsets
#define SCROLL_X VAR(345)
#define SCROLL_Y VAR(346)
#define EXIT_CLICK_ID VAR(710)
#define EXIT_FADING VAR(713)
#define SYSTEM_TESTING_ANIMS VAR(912)
#define SYSTEM_TESTING_TEXT VAR(1230)
#define SYSTEM_WANT_PREVIOUS_LINE VAR(1245)
// 1=on 0=off (set in fnAddHuman and fnNoHuman)
#define MOUSE_AVAILABLE VAR(686)
// used in fnChoose
#define AUTO_SELECTED VAR(1115)
// see fnStartConversation and fnChooser
#define CHOOSER_COUNT_FLAG VAR(15)
// signifies a demo mode
#define DEMO VAR(1153)
// Indicates to script whether this is the Playstation version.
// #define PSXFLAG VAR(1173)
// 1 = dead
#define DEAD VAR(1256)
// If set indicates that the speech anim is to run through only once.
#define SPEECHANIMFLAG VAR(1278)
// for the engine
#define SCROLL_OFFSET_X VAR(1314)
// for the poor PSX so it knows what language is running.
// #define GAME_LANGUAGE VAR(111)
// resource id's of pouse mointers. It's pretty much safe to do it like this
#define NORMAL_MOUSE_ID 17
#define SCROLL_LEFT_MOUSE_ID 1440
#define SCROLL_RIGHT_MOUSE_ID 1441
// Console Font - does not use game text - only English required
#define CONSOLE_FONT_ID 340 // ConsFont
// Speech Font
#define ENGLISH_SPEECH_FONT_ID 341 // SpchFont
#define FINNISH_SPEECH_FONT_ID 956 // FinSpcFn
#define POLISH_SPEECH_FONT_ID 955 // PolSpcFn
// Control Panel Font (and un-selected savegame descriptions)
#define ENGLISH_CONTROLS_FONT_ID 2005 // Sfont
#define FINNISH_CONTROLS_FONT_ID 959 // FinSavFn
#define POLISH_CONTROLS_FONT_ID 3686 // PolSavFn
// Red Font (for selected savegame descriptions)
#define ENGLISH_RED_FONT_ID 2005 // 1998 // Redfont
#define FINNISH_RED_FONT_ID 959 // 960 // FinRedFn
#define POLISH_RED_FONT_ID 3686 // 3688 // PolRedFn
// Control panel palette resource id
#define CONTROL_PANEL_PALETTE 261
// res id's of the system menu icons
#define OPTIONS_ICON 344
#define QUIT_ICON 335
#define SAVE_ICON 366
#define RESTORE_ICON 364
#define RESTART_ICON 342
// res id of conversation exit icon, 'EXIT' menu icon (used in fnChoose)
#define EXIT_ICON 65
#endif
|