1 void CreatureFrame (void)
7 for(self = world; (self = findfloat(self, damagedbycontents, TRUE)); )
9 if (self.movetype == MOVETYPE_NOCLIP) { continue; }
11 float vehic = (self.vehicle_flags & VHF_ISVEHICLE);
12 float projectile = (self.flags & FL_PROJECTILE);
13 float monster = (self.flags & FL_MONSTER);
15 if (self.watertype <= CONTENT_WATER && self.waterlevel > 0) // workaround a retarded bug made by id software :P (yes, it's that old of a bug)
17 if (!(self.flags & FL_INWATER))
19 self.flags |= FL_INWATER;
23 if(!vehic && !projectile && !monster) // vehicles, monsters and projectiles don't drown
25 if (self.waterlevel != WATERLEVEL_SUBMERGED)
27 if(self.air_finished < time)
28 PlayerSound(playersound_gasp, CH_PLAYER, VOICETYPE_PLAYERSOUND);
29 self.air_finished = time + autocvar_g_balance_contents_drowndelay;
32 else if (self.air_finished < time)
35 if (self.pain_finished < time)
37 Damage (self, world, world, autocvar_g_balance_contents_playerdamage_drowning * autocvar_g_balance_contents_damagerate, DEATH_DROWN, self.origin, '0 0 0');
38 self.pain_finished = time + 0.5;
43 if (self.dmgtime < time)
45 self.dmgtime = time + autocvar_g_balance_contents_damagerate;
49 if (self.watertype == CONTENT_LAVA)
51 Damage (self, world, world, autocvar_g_balance_contents_projectiledamage * autocvar_g_balance_contents_damagerate * self.waterlevel, DEATH_LAVA, self.origin, '0 0 0');
53 else if (self.watertype == CONTENT_SLIME)
55 Damage (self, world, world, autocvar_g_balance_contents_projectiledamage * autocvar_g_balance_contents_damagerate * self.waterlevel, DEATH_SLIME, self.origin, '0 0 0');
60 if (self.watertype == CONTENT_LAVA)
62 if (self.watersound_finished < time)
64 self.watersound_finished = time + 0.5;
65 sound (self, CH_PLAYER, "player/lava.wav", VOL_BASE, ATTEN_NORM);
67 Damage (self, world, world, autocvar_g_balance_contents_playerdamage_lava * autocvar_g_balance_contents_damagerate * self.waterlevel, DEATH_LAVA, self.origin, '0 0 0');
69 else if (self.watertype == CONTENT_SLIME)
71 if (self.watersound_finished < time)
73 self.watersound_finished = time + 0.5;
74 sound (self, CH_PLAYER, "player/slime.wav", VOL_BASE, ATTEN_NORM);
76 Damage (self, world, world, autocvar_g_balance_contents_playerdamage_slime * autocvar_g_balance_contents_damagerate * self.waterlevel, DEATH_SLIME, self.origin, '0 0 0');
83 if (self.flags & FL_INWATER)
85 // play leave water sound
86 self.flags &= ~FL_INWATER;
89 self.air_finished = time + 12;
93 if(!vehic && !projectile) // vehicles don't get falling damage
95 // check for falling damage
96 float velocity_len = vlen(self.velocity);
97 if(!self.hook.state && !(g_cts && !autocvar_g_cts_selfdamage))
99 dm = vlen(self.oldvelocity) - velocity_len; // dm is now the velocity DECREASE. Velocity INCREASE should never cause a sound or any damage.
101 dm = (dm - autocvar_g_balance_falldamage_deadminspeed) * autocvar_g_balance_falldamage_factor;
103 dm = min((dm - autocvar_g_balance_falldamage_minspeed) * autocvar_g_balance_falldamage_factor, autocvar_g_balance_falldamage_maxdamage);
105 Damage (self, world, world, dm, DEATH_FALL, self.origin, '0 0 0');
108 if(autocvar_g_maxspeed > 0 && velocity_len > autocvar_g_maxspeed)
109 Damage (self, world, world, 100000, DEATH_SHOOTING_STAR, self.origin, '0 0 0');
110 // play stupid sounds
113 if (self.flags & FL_ONGROUND)
114 if (velocity_len > autocvar_sv_maxspeed * 0.6)
116 if (time < self.lastground + 0.2)
118 if((time > self.nextstep) || (time < (self.nextstep - 10.0)))
120 self.nextstep = time + 0.3 + random() * 0.1;
121 trace_dphitq3surfaceflags = 0;
122 tracebox(self.origin, self.mins, self.maxs, self.origin - '0 0 1', MOVE_NOMONSTERS, self);
124 if(trace_fraction == 1)
127 dprint(ftos(trace_dphitq3surfaceflags), "\n");
129 if (!(trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOSTEPS))
131 if(trace_dphitq3surfaceflags & Q3SURFACEFLAG_METALSTEPS)
132 GlobalSound(globalsound_metalstep, CH_PLAYER, VOICETYPE_PLAYERSOUND);
134 GlobalSound(globalsound_step, CH_PLAYER, VOICETYPE_PLAYERSOUND);
140 self.oldvelocity = self.velocity;
150 Called before each frame by the server
155 float game_delay_last;
157 float RedirectionThink();
158 entity SelectSpawnPoint (float anypoint);
159 void StartFrame (void)
161 execute_next_frame();
163 remove = remove_unsafely; // not during spawning!
164 serverprevtime = servertime;
166 serverframetime = frametime;
169 if(time > client_cefc_accumulatortime + 1)
171 float t, pp, c_seeing, c_seen;
173 t = client_cefc_accumulator / (time - client_cefc_accumulatortime);
174 print("CEFC time: ", ftos(t * 1000), "ms; ");
179 if(IS_REAL_CLIENT(cl))
184 print("CEFC calls per second: ", ftos(c_seeing * (c_seen - 1) / t), "; ");
185 print("CEFC 100% load at: ", ftos(solve_quadratic(t, -t, -1) * '0 1 0'), "\n");
187 client_cefc_accumulatortime = time;
188 client_cefc_accumulator = 0;
193 for(e = world; (e = findfloat(e, csqcprojectile_clientanimate, 1)); )
194 CSQCProjectile_Check(e);
196 if(RedirectionThink())
199 UncustomizeEntitiesRun();
200 InitializeEntitiesRun();
202 WarpZone_StartFrame();
204 sys_frametime = autocvar_sys_ticrate * autocvar_slowmo;
205 if(sys_frametime <= 0)
206 sys_frametime = 1.0 / 60.0; // somewhat safe fallback
208 if (timeout_status == TIMEOUT_LEADTIME) // just before the timeout (when timeout_status will be TIMEOUT_ACTIVE)
209 orig_slowmo = autocvar_slowmo; // slowmo will be restored after the timeout
211 skill = autocvar_skill;
213 // detect when the pre-game countdown (if any) has ended and the game has started
214 game_delay = (time < game_starttime) ? TRUE : FALSE;
216 if(game_delay_last == TRUE)
217 if(game_delay == FALSE)
218 if(autocvar_sv_eventlog)
219 GameLogEcho(":startdelay_ended");
221 game_delay_last = game_delay;
226 // if in warmup stage and limit for warmup is hit start match
229 if((g_warmup_limit > 0 && time >= g_warmup_limit)
230 || (g_warmup_limit == 0 && autocvar_timelimit != 0 && time >= autocvar_timelimit * 60))
238 FOR_EACH_PLAYER(self)
239 self.porto_forbidden = max(0, self.porto_forbidden - 1);
241 anticheat_startframe();
243 MUTATOR_CALLHOOK(SV_StartFrame);
246 .vector originjitter;
247 .vector anglesjitter;
249 .string gametypefilter;
251 float DoesQ3ARemoveThisEntity();
252 void SV_OnEntityPreSpawnFunction()
255 if (self.gametypefilter != "")
256 if (!isGametypeInFilter(MapInfo_LoadedGametype, teamplay, have_team_spawns, self.gametypefilter))
261 if(self.cvarfilter != "")
268 if(substring(s, 0, 1) == "+")
270 s = substring(s, 1, -1);
272 else if(substring(s, 0, 1) == "-")
275 s = substring(s, 1, -1);
278 n = tokenize_console(s);
279 for(i = 0; i < n; ++i)
291 if((o = strstrofs(s, ">=", 0)) >= 0)
293 k = substring(s, 0, o);
294 v = substring(s, o+2, -1);
295 if(cvar(k) < stof(v))
298 else if((o = strstrofs(s, "<=", 0)) >= 0)
300 k = substring(s, 0, o);
301 v = substring(s, o+2, -1);
302 if(cvar(k) > stof(v))
305 else if((o = strstrofs(s, ">", 0)) >= 0)
307 k = substring(s, 0, o);
308 v = substring(s, o+1, -1);
309 if(cvar(k) <= stof(v))
312 else if((o = strstrofs(s, "<", 0)) >= 0)
314 k = substring(s, 0, o);
315 v = substring(s, o+1, -1);
316 if(cvar(k) >= stof(v))
319 else if((o = strstrofs(s, "==", 0)) >= 0)
321 k = substring(s, 0, o);
322 v = substring(s, o+2, -1);
323 if(cvar(k) != stof(v))
326 else if((o = strstrofs(s, "!=", 0)) >= 0)
328 k = substring(s, 0, o);
329 v = substring(s, o+2, -1);
330 if(cvar(k) == stof(v))
333 else if((o = strstrofs(s, "===", 0)) >= 0)
335 k = substring(s, 0, o);
336 v = substring(s, o+2, -1);
337 if(cvar_string(k) != v)
340 else if((o = strstrofs(s, "!==", 0)) >= 0)
342 k = substring(s, 0, o);
343 v = substring(s, o+2, -1);
344 if(cvar_string(k) == v)
347 else if(substring(s, 0, 1) == "!")
349 k = substring(s, 1, -1);
362 // now inv is 1 if we want to keep the item, and 0 if we want to get rid of it
365 //print("cvarfilter fail\n");
371 if(DoesQ3ARemoveThisEntity())
377 // support special -1 and -2 angle from radiant
378 if (self.angles == '0 -1 0')
379 self.angles = '-90 0 0';
380 else if (self.angles == '0 -2 0')
381 self.angles = '+90 0 0';
383 if(self.originjitter_x != 0)
384 self.origin_x = self.origin_x + (random() * 2 - 1) * self.originjitter_x;
385 if(self.originjitter_y != 0)
386 self.origin_y = self.origin_y + (random() * 2 - 1) * self.originjitter_y;
387 if(self.originjitter_z != 0)
388 self.origin_z = self.origin_z + (random() * 2 - 1) * self.originjitter_z;
389 if(self.anglesjitter_x != 0)
390 self.angles_x = self.angles_x + (random() * 2 - 1) * self.anglesjitter_x;
391 if(self.anglesjitter_y != 0)
392 self.angles_y = self.angles_y + (random() * 2 - 1) * self.anglesjitter_y;
393 if(self.anglesjitter_z != 0)
394 self.angles_z = self.angles_z + (random() * 2 - 1) * self.anglesjitter_z;
395 if(self.anglejitter != 0)
396 self.angles_y = self.angles_y + (random() * 2 - 1) * self.anglejitter;
398 if(MUTATOR_CALLHOOK(OnEntityPreSpawn))
405 void WarpZone_PostInitialize_Callback(void)
407 // create waypoint links for warpzones
409 for(e = world; (e = find(e, classname, "trigger_warpzone")); )
412 src = (e.absmin + e.absmax) * 0.5;
413 makevectors(e.warpzone_angles);
414 src = src + ((e.warpzone_origin - src) * v_forward) * v_forward + 16 * v_right;
415 dst = (e.enemy.absmin + e.enemy.absmax) * 0.5;
416 makevectors(e.enemy.warpzone_angles);
417 dst = dst + ((e.enemy.warpzone_origin - dst) * v_forward) * v_forward - 16 * v_right;
418 waypoint_spawnforteleporter_v(e, src, dst, 0);