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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
|
/*
* Globals.java
* Copyright (C) 2003
*
* $Id: Globals.java,v 1.2 2004-07-08 15:58:46 hzi Exp $
*/
/*
Copyright (C) 1997-2001 Id Software, Inc.
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.
*/
package jake2;
import jake2.client.*;
import jake2.game.*;
import jake2.qcommon.netadr_t;
import jake2.qcommon.sizebuf_t;
import jake2.render.model_t;
import java.io.FileWriter;
import java.io.RandomAccessFile;
import java.util.Random;
/**
* Globals ist the collection of global variables and constants.
* It is more elegant to use these vars by inheritance to separate
* it with eclipse refactoring later.
*
* As consequence you dont have to touch that much code this time.
*/
public class Globals extends Defines {
public static final String __DATE__ = "2003";
public static final float VERSION = 3.21f;
public static final String BASEDIRNAME = "baseq2";
/*
* global variables
*/
public static int curtime = 0;
public static boolean cmd_wait;
public static int alias_count;
public static int c_traces;
public static int c_brush_traces;
public static int c_pointcontents;
public static int server_state;
public static cvar_t cl_add_blend;
public static cvar_t cl_add_entities;
public static cvar_t cl_add_lights;
public static cvar_t cl_add_particles;
public static cvar_t cl_anglespeedkey;
public static cvar_t cl_autoskins;
public static cvar_t cl_footsteps;
public static cvar_t cl_forwardspeed;
public static cvar_t cl_gun;
public static cvar_t cl_maxfps;
public static cvar_t cl_noskins;
public static cvar_t cl_pitchspeed;
public static cvar_t cl_predict;
public static cvar_t cl_run;
public static cvar_t cl_sidespeed;
public static cvar_t cl_stereo;
public static cvar_t cl_stereo_separation;
public static cvar_t cl_timedemo;
public static cvar_t cl_timeout;
public static cvar_t cl_upspeed;
public static cvar_t cl_yawspeed;
public static cvar_t dedicated;
public static cvar_t slomo;
public static cvar_t developer;
public static cvar_t fixedtime;
public static cvar_t freelook;
public static cvar_t host_speeds;
public static cvar_t log_stats;
public static cvar_t logfile_active;
public static cvar_t lookspring;
public static cvar_t lookstrafe;
public static cvar_t nostdout;
public static cvar_t sensitivity;
public static cvar_t showtrace;
public static cvar_t timescale;
public static cvar_t in_mouse;
public static cvar_t in_joystick;
public static sizebuf_t net_message = new sizebuf_t();
/*
=============================================================================
COMMAND BUFFER
=============================================================================
*/
public static sizebuf_t cmd_text = new sizebuf_t();
public static byte defer_text_buf[] = new byte[8192];
public static byte cmd_text_buf[] = new byte[8192];
public static cmdalias_t cmd_alias;
//=============================================================================
public static byte[] net_message_buffer = new byte[MAX_MSGLEN];
public static int time_before_game;
public static int time_after_game;
public static int time_before_ref;
public static int time_after_ref;
public static FileWriter log_stats_file = null;
public static EndianHandler endian = null;
public static cvar_t m_pitch;
public static cvar_t m_yaw;
public static cvar_t m_forward;
public static cvar_t m_side;
public static cvar_t cl_lightlevel;
//
// userinfo
//
public static cvar_t info_password;
public static cvar_t info_spectator;
public static cvar_t name;
public static cvar_t skin;
public static cvar_t rate;
public static cvar_t fov;
public static cvar_t msg;
public static cvar_t hand;
public static cvar_t gender;
public static cvar_t gender_auto;
public static cvar_t cl_vwep;
public static client_static_t cls = new client_static_t();
public static client_state_t cl = new client_state_t();
public static centity_t cl_entities[] = new centity_t[Defines.MAX_EDICTS];
static {
for (int i = 0; i < cl_entities.length; i++) {
cl_entities[i] = new centity_t();
}
}
public static entity_state_t cl_parse_entities[] = new entity_state_t[Defines.MAX_PARSE_ENTITIES];
static {
for (int i = 0; i < cl_parse_entities.length; i++)
{
cl_parse_entities[i] = new entity_state_t(null);
}
}
public static cvar_t rcon_client_password;
public static cvar_t rcon_address;
public static cvar_t cl_shownet;
public static cvar_t cl_showmiss;
public static cvar_t cl_showclamp;
public static cvar_t cl_paused;
// client/anorms.h
public static final float bytedirs[][] = { /**
*/
{ -0.525731f, 0.000000f, 0.850651f }, {
-0.442863f, 0.238856f, 0.864188f }, {
-0.295242f, 0.000000f, 0.955423f }, {
-0.309017f, 0.500000f, 0.809017f }, {
-0.162460f, 0.262866f, 0.951056f }, {
0.000000f, 0.000000f, 1.000000f }, {
0.000000f, 0.850651f, 0.525731f }, {
-0.147621f, 0.716567f, 0.681718f }, {
0.147621f, 0.716567f, 0.681718f }, {
0.000000f, 0.525731f, 0.850651f }, {
0.309017f, 0.500000f, 0.809017f }, {
0.525731f, 0.000000f, 0.850651f }, {
0.295242f, 0.000000f, 0.955423f }, {
0.442863f, 0.238856f, 0.864188f }, {
0.162460f, 0.262866f, 0.951056f }, {
-0.681718f, 0.147621f, 0.716567f }, {
-0.809017f, 0.309017f, 0.500000f }, {
-0.587785f, 0.425325f, 0.688191f }, {
-0.850651f, 0.525731f, 0.000000f }, {
-0.864188f, 0.442863f, 0.238856f }, {
-0.716567f, 0.681718f, 0.147621f }, {
-0.688191f, 0.587785f, 0.425325f }, {
-0.500000f, 0.809017f, 0.309017f }, {
-0.238856f, 0.864188f, 0.442863f }, {
-0.425325f, 0.688191f, 0.587785f }, {
-0.716567f, 0.681718f, -0.147621f }, {
-0.500000f, 0.809017f, -0.309017f }, {
-0.525731f, 0.850651f, 0.000000f }, {
0.000000f, 0.850651f, -0.525731f }, {
-0.238856f, 0.864188f, -0.442863f }, {
0.000000f, 0.955423f, -0.295242f }, {
-0.262866f, 0.951056f, -0.162460f }, {
0.000000f, 1.000000f, 0.000000f }, {
0.000000f, 0.955423f, 0.295242f }, {
-0.262866f, 0.951056f, 0.162460f }, {
0.238856f, 0.864188f, 0.442863f }, {
0.262866f, 0.951056f, 0.162460f }, {
0.500000f, 0.809017f, 0.309017f }, {
0.238856f, 0.864188f, -0.442863f }, {
0.262866f, 0.951056f, -0.162460f }, {
0.500000f, 0.809017f, -0.309017f }, {
0.850651f, 0.525731f, 0.000000f }, {
0.716567f, 0.681718f, 0.147621f }, {
0.716567f, 0.681718f, -0.147621f }, {
0.525731f, 0.850651f, 0.000000f }, {
0.425325f, 0.688191f, 0.587785f }, {
0.864188f, 0.442863f, 0.238856f }, {
0.688191f, 0.587785f, 0.425325f }, {
0.809017f, 0.309017f, 0.500000f }, {
0.681718f, 0.147621f, 0.716567f }, {
0.587785f, 0.425325f, 0.688191f }, {
0.955423f, 0.295242f, 0.000000f }, {
1.000000f, 0.000000f, 0.000000f }, {
0.951056f, 0.162460f, 0.262866f }, {
0.850651f, -0.525731f, 0.000000f }, {
0.955423f, -0.295242f, 0.000000f }, {
0.864188f, -0.442863f, 0.238856f }, {
0.951056f, -0.162460f, 0.262866f }, {
0.809017f, -0.309017f, 0.500000f }, {
0.681718f, -0.147621f, 0.716567f }, {
0.850651f, 0.000000f, 0.525731f }, {
0.864188f, 0.442863f, -0.238856f }, {
0.809017f, 0.309017f, -0.500000f }, {
0.951056f, 0.162460f, -0.262866f }, {
0.525731f, 0.000000f, -0.850651f }, {
0.681718f, 0.147621f, -0.716567f }, {
0.681718f, -0.147621f, -0.716567f }, {
0.850651f, 0.000000f, -0.525731f }, {
0.809017f, -0.309017f, -0.500000f }, {
0.864188f, -0.442863f, -0.238856f }, {
0.951056f, -0.162460f, -0.262866f }, {
0.147621f, 0.716567f, -0.681718f }, {
0.309017f, 0.500000f, -0.809017f }, {
0.425325f, 0.688191f, -0.587785f }, {
0.442863f, 0.238856f, -0.864188f }, {
0.587785f, 0.425325f, -0.688191f }, {
0.688191f, 0.587785f, -0.425325f }, {
-0.147621f, 0.716567f, -0.681718f }, {
-0.309017f, 0.500000f, -0.809017f }, {
0.000000f, 0.525731f, -0.850651f }, {
-0.525731f, 0.000000f, -0.850651f }, {
-0.442863f, 0.238856f, -0.864188f }, {
-0.295242f, 0.000000f, -0.955423f }, {
-0.162460f, 0.262866f, -0.951056f }, {
0.000000f, 0.000000f, -1.000000f }, {
0.295242f, 0.000000f, -0.955423f }, {
0.162460f, 0.262866f, -0.951056f }, {
-0.442863f, -0.238856f, -0.864188f }, {
-0.309017f, -0.500000f, -0.809017f }, {
-0.162460f, -0.262866f, -0.951056f }, {
0.000000f, -0.850651f, -0.525731f }, {
-0.147621f, -0.716567f, -0.681718f }, {
0.147621f, -0.716567f, -0.681718f }, {
0.000000f, -0.525731f, -0.850651f }, {
0.309017f, -0.500000f, -0.809017f }, {
0.442863f, -0.238856f, -0.864188f }, {
0.162460f, -0.262866f, -0.951056f }, {
0.238856f, -0.864188f, -0.442863f }, {
0.500000f, -0.809017f, -0.309017f }, {
0.425325f, -0.688191f, -0.587785f }, {
0.716567f, -0.681718f, -0.147621f }, {
0.688191f, -0.587785f, -0.425325f }, {
0.587785f, -0.425325f, -0.688191f }, {
0.000000f, -0.955423f, -0.295242f }, {
0.000000f, -1.000000f, 0.000000f }, {
0.262866f, -0.951056f, -0.162460f }, {
0.000000f, -0.850651f, 0.525731f }, {
0.000000f, -0.955423f, 0.295242f }, {
0.238856f, -0.864188f, 0.442863f }, {
0.262866f, -0.951056f, 0.162460f }, {
0.500000f, -0.809017f, 0.309017f }, {
0.716567f, -0.681718f, 0.147621f }, {
0.525731f, -0.850651f, 0.000000f }, {
-0.238856f, -0.864188f, -0.442863f }, {
-0.500000f, -0.809017f, -0.309017f }, {
-0.262866f, -0.951056f, -0.162460f }, {
-0.850651f, -0.525731f, 0.000000f }, {
-0.716567f, -0.681718f, -0.147621f }, {
-0.716567f, -0.681718f, 0.147621f }, {
-0.525731f, -0.850651f, 0.000000f }, {
-0.500000f, -0.809017f, 0.309017f }, {
-0.238856f, -0.864188f, 0.442863f }, {
-0.262866f, -0.951056f, 0.162460f }, {
-0.864188f, -0.442863f, 0.238856f }, {
-0.809017f, -0.309017f, 0.500000f }, {
-0.688191f, -0.587785f, 0.425325f }, {
-0.681718f, -0.147621f, 0.716567f }, {
-0.442863f, -0.238856f, 0.864188f }, {
-0.587785f, -0.425325f, 0.688191f }, {
-0.309017f, -0.500000f, 0.809017f }, {
-0.147621f, -0.716567f, 0.681718f }, {
-0.425325f, -0.688191f, 0.587785f }, {
-0.162460f, -0.262866f, 0.951056f }, {
0.442863f, -0.238856f, 0.864188f }, {
0.162460f, -0.262866f, 0.951056f }, {
0.309017f, -0.500000f, 0.809017f }, {
0.147621f, -0.716567f, 0.681718f }, {
0.000000f, -0.525731f, 0.850651f }, {
0.425325f, -0.688191f, 0.587785f }, {
0.587785f, -0.425325f, 0.688191f }, {
0.688191f, -0.587785f, 0.425325f }, {
-0.955423f, 0.295242f, 0.000000f }, {
-0.951056f, 0.162460f, 0.262866f }, {
-1.000000f, 0.000000f, 0.000000f }, {
-0.850651f, 0.000000f, 0.525731f }, {
-0.955423f, -0.295242f, 0.000000f }, {
-0.951056f, -0.162460f, 0.262866f }, {
-0.864188f, 0.442863f, -0.238856f }, {
-0.951056f, 0.162460f, -0.262866f }, {
-0.809017f, 0.309017f, -0.500000f }, {
-0.864188f, -0.442863f, -0.238856f }, {
-0.951056f, -0.162460f, -0.262866f }, {
-0.809017f, -0.309017f, -0.500000f }, {
-0.681718f, 0.147621f, -0.716567f }, {
-0.681718f, -0.147621f, -0.716567f }, {
-0.850651f, 0.000000f, -0.525731f }, {
-0.688191f, 0.587785f, -0.425325f }, {
-0.587785f, 0.425325f, -0.688191f }, {
-0.425325f, 0.688191f, -0.587785f }, {
-0.425325f, -0.688191f, -0.587785f }, {
-0.587785f, -0.425325f, -0.688191f }, {
-0.688191f, -0.587785f, -0.425325f }
};
public static boolean userinfo_modified = false;
public static cvar_t cvar_vars;
public static final console_t con = new console_t();
public static cvar_t con_notifytime;
public static viddef_t viddef = new viddef_t();
// Renderer interface used by VID, SCR, ...
public static refexport_t re = null;
public static String[] keybindings = new String[256];
public static boolean[] keydown = new boolean[256];
public static boolean chat_team = false;
public static String chat_buffer = "";
public static byte[][] key_lines = new byte[32][];
public static int key_linepos;
static {
for (int i = 0; i < key_lines.length; i++)
key_lines[i] = new byte[Defines.MAXCMDLINE];
};
public static int edit_line;
public static cvar_t crosshair;
public static vrect_t scr_vrect = new vrect_t();
public static int sys_frame_time;
public static int chat_bufferlen = 0;
public static int gun_frame;
public static model_t gun_model;
public static netadr_t net_from = new netadr_t();
// logfile
public static RandomAccessFile logfile = null;
public static float vec3_origin[] = { 0.0f, 0.0f, 0.0f };
public static cvar_t m_filter;
public static int vidref_val = VIDREF_GL;
public static Random rnd = new Random();
}
|