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
|
/*
* 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.
*
*/
// Created on 14.01.2004 by RST.
// $Id: SV_GAME.java,v 1.8 2004-09-22 19:22:12 salomo Exp $
package jake2.server;
import jake2.Defines;
import jake2.Globals;
import jake2.game.*;
import jake2.qcommon.*;
import jake2.util.Math3D;
public class SV_GAME {
/*
* =============== PF_Unicast
*
* Sends the contents of the mutlicast buffer to a single client
* ===============
*/
public static void PF_Unicast(edict_t ent, boolean reliable) {
int p;
client_t client;
if (ent == null)
return;
p = ent.index;
if (p < 1 || p > SV_MAIN.maxclients.value)
return;
client = SV_INIT.svs.clients[p - 1];
if (reliable)
SZ.Write(client.netchan.message, SV_INIT.sv.multicast.data,
SV_INIT.sv.multicast.cursize);
else
SZ.Write(client.datagram, SV_INIT.sv.multicast.data,
SV_INIT.sv.multicast.cursize);
SZ.Clear(SV_INIT.sv.multicast);
}
/*
* =============== PF_dprintf
*
* Debug print to server console ===============
*/
public static void PF_dprintf(String fmt) {
Com.Printf(fmt);
}
/*
* =============== PF_cprintf
*
* Print to a single client ===============
*/
public static void PF_cprintf(edict_t ent, int level, String fmt) {
int n = 0;
if (ent != null) {
n = ent.index;
if (n < 1 || n > SV_MAIN.maxclients.value)
Com.Error(Defines.ERR_DROP, "cprintf to a non-client");
}
if (ent != null)
SV_SEND.SV_ClientPrintf(SV_INIT.svs.clients[n - 1], level, fmt);
else
Com.Printf(fmt);
}
/*
* =============== PF_centerprintf
*
* centerprint to a single client ===============
*/
public static void PF_centerprintf(edict_t ent, String fmt) {
int n;
n = ent.index;
if (n < 1 || n > SV_MAIN.maxclients.value)
return; // Com_Error (ERR_DROP, "centerprintf to a non-client");
MSG.WriteByte(SV_INIT.sv.multicast, Defines.svc_centerprint);
MSG.WriteString(SV_INIT.sv.multicast, fmt);
PF_Unicast(ent, true);
}
/*
* =============== PF_error
*
* Abort the server with a game error ===============
*/
public static void PF_error(String fmt) {
Com.Error(Defines.ERR_DROP, "Game Error: " + fmt);
}
public static void PF_error(int level, String fmt) {
Com.Error(level, fmt);
}
/*
* ================= PF_setmodel
*
* Also sets mins and maxs for inline bmodels =================
*/
public static void PF_setmodel(edict_t ent, String name) {
int i;
cmodel_t mod;
if (name == null)
Com.Error(Defines.ERR_DROP, "PF_setmodel: NULL");
i = SV_INIT.SV_ModelIndex(name);
ent.s.modelindex = i;
// if it is an inline model, get the size information for it
if (name.startsWith("*")) {
mod = CM.InlineModel(name);
Math3D.VectorCopy(mod.mins, ent.mins);
Math3D.VectorCopy(mod.maxs, ent.maxs);
SV_WORLD.SV_LinkEdict(ent);
}
}
/*
* =============== PF_Configstring
*
* ===============
*/
public static void PF_Configstring(int index, String val) {
if (index < 0 || index >= Defines.MAX_CONFIGSTRINGS)
Com.Error(Defines.ERR_DROP, "configstring: bad index " + index
+ "\n");
if (val == null)
val = "";
// change the string in sv
SV_INIT.sv.configstrings[index] = val;
if (SV_INIT.sv.state != Defines.ss_loading) { // send the update to
// everyone
SZ.Clear(SV_INIT.sv.multicast);
MSG.WriteChar(SV_INIT.sv.multicast, Defines.svc_configstring);
MSG.WriteShort(SV_INIT.sv.multicast, index);
MSG.WriteString(SV_INIT.sv.multicast, val);
SV_SEND.SV_Multicast(Globals.vec3_origin, Defines.MULTICAST_ALL_R);
}
}
public static void PF_WriteChar(int c) {
MSG.WriteChar(SV_INIT.sv.multicast, c);
}
public static void PF_WriteByte(int c) {
MSG.WriteByte(SV_INIT.sv.multicast, c);
}
public static void PF_WriteShort(int c) {
MSG.WriteShort(SV_INIT.sv.multicast, c);
}
public static void PF_WriteLong(int c) {
MSG.WriteLong(SV_INIT.sv.multicast, c);
}
public static void PF_WriteFloat(float f) {
MSG.WriteFloat(SV_INIT.sv.multicast, f);
}
public static void PF_WriteString(String s) {
MSG.WriteString(SV_INIT.sv.multicast, s);
}
public static void PF_WritePos(float[] pos) {
MSG.WritePos(SV_INIT.sv.multicast, pos);
}
public static void PF_WriteDir(float[] dir) {
MSG.WriteDir(SV_INIT.sv.multicast, dir);
}
public static void PF_WriteAngle(float f) {
MSG.WriteAngle(SV_INIT.sv.multicast, f);
}
/*
* ================= PF_inPVS
*
* Also checks portalareas so that doors block sight =================
*/
public static boolean PF_inPVS(float[] p1, float[] p2) {
int leafnum;
int cluster;
int area1, area2;
byte mask[];
leafnum = CM.CM_PointLeafnum(p1);
cluster = CM.CM_LeafCluster(leafnum);
area1 = CM.CM_LeafArea(leafnum);
mask = CM.CM_ClusterPVS(cluster);
leafnum = CM.CM_PointLeafnum(p2);
cluster = CM.CM_LeafCluster(leafnum);
area2 = CM.CM_LeafArea(leafnum);
// quake2 bugfix
if (cluster == -1)
return false;
if (mask != null && (0 == (mask[cluster >>> 3] & (1 << (cluster & 7)))))
return false;
if (!CM.CM_AreasConnected(area1, area2))
return false; // a door blocks sight
return true;
}
/*
* ================= PF_inPHS
*
* Also checks portalareas so that doors block sound =================
*/
public static boolean PF_inPHS(float[] p1, float[] p2) {
int leafnum;
int cluster;
int area1, area2;
byte mask[];
leafnum = CM.CM_PointLeafnum(p1);
cluster = CM.CM_LeafCluster(leafnum);
area1 = CM.CM_LeafArea(leafnum);
mask = CM.CM_ClusterPHS(cluster);
leafnum = CM.CM_PointLeafnum(p2);
cluster = CM.CM_LeafCluster(leafnum);
area2 = CM.CM_LeafArea(leafnum);
// quake2 bugfix
if (cluster == -1)
return false;
if (mask != null && (0 == (mask[cluster >> 3] & (1 << (cluster & 7)))))
return false; // more than one bounce away
if (!CM.CM_AreasConnected(area1, area2))
return false; // a door blocks hearing
return true;
}
public static void PF_StartSound(edict_t entity, int channel,
int sound_num, float volume, float attenuation, float timeofs) {
if (null == entity)
return;
SV_SEND.SV_StartSound(null, entity, channel, sound_num, volume,
attenuation, timeofs);
}
//==============================================
/*
* =============== SV_ShutdownGameProgs
*
* Called when either the entire server is being killed, or it is changing
* to a different game directory. ===============
*/
public static void SV_ShutdownGameProgs() {
GameBase.ShutdownGame();
}
/*
* =============== SV_InitGameProgs
*
* Init the game subsystem for a new map ===============
*/
public static void SV_InitGameProgs() {
// unload anything we have now
SV_ShutdownGameProgs();
game_import_t gimport = new game_import_t();
// all functions set in game_export_t (rst)
GameBase.GetGameApi(gimport);
GameSave.InitGame();
}
}
|