1 #include "spawnpoints.qh"
3 #include <server/mutators/_mod.qh>
7 #include "../common/constants.qh"
8 #include <common/net_linked.qh>
9 #include "../common/teams.qh"
10 #include "../common/mapobjects/subs.qh"
11 #include "../common/mapobjects/target/spawnpoint.qh"
12 #include "../common/util.qh"
13 #include "../lib/warpzone/common.qh"
14 #include "../lib/warpzone/util_server.qh"
15 #include <server/utils.qh>
17 bool SpawnPoint_Send(entity this, entity to, int sf)
19 WriteHeader(MSG_ENTITY, ENT_CLIENT_SPAWNPOINT);
21 WriteByte(MSG_ENTITY, this.team);
22 WriteVector(MSG_ENTITY, this.origin);
27 bool SpawnEvent_Send(entity this, entity to, int sf)
31 WriteHeader(MSG_ENTITY, ENT_CLIENT_SPAWNEVENT);
33 if(autocvar_g_spawn_alloweffects)
35 WriteByte(MSG_ENTITY, etof(this.owner));
36 WriteVector(MSG_ENTITY, this.owner.origin);
39 else if((to == this.owner) || (IS_SPEC(to) && (to.enemy == this.owner)) )
41 WriteByte(MSG_ENTITY, 0);
44 else { send = false; }
49 .vector spawnpoint_prevorigin;
50 void spawnpoint_think(entity this)
52 this.nextthink = time + 0.1;
53 if(this.origin != this.spawnpoint_prevorigin)
55 this.spawnpoint_prevorigin = this.origin;
60 void spawnpoint_use(entity this, entity actor, entity trigger)
63 if(have_team_spawns > 0)
65 this.team = actor.team;
66 some_spawn_has_been_used = true;
68 //LOG_INFO("spawnpoint was used!\n");
71 void relocate_spawnpoint(entity this)
73 // nudge off the floor
74 setorigin(this, this.origin + '0 0 1');
76 tracebox(this.origin, PL_MIN_CONST, PL_MAX_CONST, this.origin, true, this);
81 this.mins = PL_MIN_CONST;
82 this.maxs = PL_MAX_CONST;
83 if (!move_out_of_solid(this))
84 objerror(this, "could not get out of solid at all!");
86 "^1NOTE: this map needs FIXING. Spawnpoint at %s needs to be moved out of solid, e.g. by %s",
90 if (autocvar_g_spawnpoints_auto_move_out_of_solid)
93 LOG_INFO("\{1}^1NOTE: this map needs FIXING (it contains spawnpoints in solid, see server log)");
99 this.mins = this.maxs = '0 0 0';
100 objerror(this, "player spawn point in solid, mapper sucks!\n");
105 this.use = spawnpoint_use;
106 setthink(this, spawnpoint_think);
107 this.nextthink = time + 0.5 + random() * 2; // shouldn't need it for a little second
108 this.team_saved = this.team;
109 IL_PUSH(g_saved_team, this);
113 if (have_team_spawns != 0)
115 have_team_spawns = 1;
116 have_team_spawns_forteams |= BIT(this.team);
118 if (autocvar_r_showbboxes)
120 // show where spawnpoints point at too
121 vector forward, right, up;
122 MAKE_VECTORS(this.angles, forward, right, up);
123 entity e = new(info_player_foo);
124 setorigin(e, this.origin + forward * 24);
125 setsize(e, '-8 -8 -8', '8 8 8');
126 e.solid = SOLID_TRIGGER;
129 // Don't show team spawns in non-team matches,
130 // and don't show non-team spawns in team matches.
131 // (Unless useallspawns is activated)
134 ( // if this passes, there is a DM spawn on a team match
136 && (this.team != NUM_TEAM_1)
137 && (this.team != NUM_TEAM_2)
138 && (this.team != NUM_TEAM_3)
139 && (this.team != NUM_TEAM_4)
142 ( // if this passes, there is a team spawn on a DM match
146 (this.team == NUM_TEAM_1)
147 || (this.team == NUM_TEAM_2)
148 || (this.team == NUM_TEAM_3)
149 || (this.team == NUM_TEAM_4)
154 autocvar_g_spawn_useallspawns
156 { Net_LinkEntity(this, false, 0, SpawnPoint_Send); }
159 spawnfunc(info_player_survivor)
161 spawnfunc_info_player_deathmatch(this);
164 spawnfunc(info_player_start)
166 spawnfunc_info_player_deathmatch(this);
169 spawnfunc(info_player_deathmatch)
171 this.classname = "info_player_deathmatch";
172 IL_PUSH(g_spawnpoints, this);
173 relocate_spawnpoint(this);
176 /*QUAKED spawnfunc_info_player_team1 (1 0 0) (-16 -16 -24) (16 16 24)
177 Starting point for a player in team one (Red).
178 Keys: "angle" viewing angle when spawning. */
179 spawnfunc(info_player_team1)
181 this.team = NUM_TEAM_1; // red
182 spawnfunc_info_player_deathmatch(this);
186 /*QUAKED spawnfunc_info_player_team2 (1 0 0) (-16 -16 -24) (16 16 24)
187 Starting point for a player in team two (Blue).
188 Keys: "angle" viewing angle when spawning. */
189 spawnfunc(info_player_team2)
191 this.team = NUM_TEAM_2; // blue
192 spawnfunc_info_player_deathmatch(this);
195 /*QUAKED spawnfunc_info_player_team3 (1 0 0) (-16 -16 -24) (16 16 24)
196 Starting point for a player in team three (Yellow).
197 Keys: "angle" viewing angle when spawning. */
198 spawnfunc(info_player_team3)
200 this.team = NUM_TEAM_3; // yellow
201 spawnfunc_info_player_deathmatch(this);
205 /*QUAKED spawnfunc_info_player_team4 (1 0 0) (-16 -16 -24) (16 16 24)
206 Starting point for a player in team four (Purple).
207 Keys: "angle" viewing angle when spawning. */
208 spawnfunc(info_player_team4)
210 this.team = NUM_TEAM_4; // purple
211 spawnfunc_info_player_deathmatch(this);
215 // _x: prio (-1 if unusable)
217 vector Spawn_Score(entity this, entity spot, float mindist, float teamcheck)
219 // filter out spots for the wrong team
221 if(spot.team != teamcheck)
225 if(spot.target == "")
228 if(IS_REAL_CLIENT(this))
230 if(spot.restriction == 1)
235 if(spot.restriction == 2)
240 float shortest = vlen(world.maxs - world.mins);
241 FOREACH_CLIENT(IS_PLAYER(it) && it != this, {
242 float thisdist = vlen(it.origin - spot.origin);
243 if (thisdist < shortest)
246 if(shortest > mindist)
247 prio += SPAWN_PRIO_GOOD_DISTANCE;
249 vector spawn_score = prio * '1 0 0' + shortest * '0 1 0';
251 // filter out spots for assault
252 if(spot.target && spot.target != "")
255 for(entity targ = findchain(targetname, spot.target); targ; targ = targ.chain)
258 if(targ.spawn_evalfunc)
260 spawn_score = targ.spawn_evalfunc(targ, this, spot, spawn_score);
261 if(spawn_score.x < 0)
268 LOG_TRACE("WARNING: spawnpoint at ", vtos(spot.origin), " could not find its target ", spot.target);
273 MUTATOR_CALLHOOK(Spawn_Score, this, spot, spawn_score);
274 spawn_score = M_ARGV(2, vector);
278 void Spawn_ScoreAll(entity this, entity firstspot, float mindist, float teamcheck)
281 for(spot = firstspot; spot; spot = spot.chain)
282 spot.spawnpoint_score = Spawn_Score(this, spot, mindist, teamcheck);
285 entity Spawn_FilterOutBadSpots(entity this, entity firstspot, float mindist, float teamcheck)
287 entity spot, spotlist, spotlistend;
292 Spawn_ScoreAll(this, firstspot, mindist, teamcheck);
294 for(spot = firstspot; spot; spot = spot.chain)
296 if(spot.spawnpoint_score.x >= 0) // spawning allowed here
299 spotlistend.chain = spot;
306 spotlistend.chain = NULL;
311 entity Spawn_WeightedPoint(entity firstspot, float lower, float upper, float exponent)
313 // weight of a point: bound(lower, mindisttoplayer, upper)^exponent
314 // multiplied by spot.cnt (useful if you distribute many spawnpoints in a small area)
317 RandomSelection_Init();
318 for(spot = firstspot; spot; spot = spot.chain)
319 RandomSelection_AddEnt(spot, (bound(lower, spot.spawnpoint_score.y, upper) ** exponent) * spot.cnt, (spot.spawnpoint_score.y >= lower) * 0.5 + spot.spawnpoint_score.x);
321 return RandomSelection_chosen_ent;
328 Finds a point to respawn
331 bool testspawn_checked;
332 entity testspawn_point;
333 entity SelectSpawnPoint(entity this, bool anypoint)
338 if(!testspawn_checked)
340 testspawn_point = find(NULL, classname, "testplayerstart");
341 testspawn_checked = true;
345 return testspawn_point;
347 if(this.spawnpoint_targ)
348 return this.spawnpoint_targ;
350 if(anypoint || autocvar_g_spawn_useallspawns)
352 else if(have_team_spawns > 0)
354 if(!(have_team_spawns_forteams & BIT(this.team)))
356 // we request a spawn for a team, and we have team
357 // spawns, but that team has no spawns?
358 if(have_team_spawns_forteams & BIT(0))
362 // if not, any spawn has to do
366 teamcheck = this.team; // MUST be team
368 else if(have_team_spawns == 0 && (have_team_spawns_forteams & BIT(0)))
369 teamcheck = 0; // MUST be noteam
372 // if we get here, we either require team spawns but have none, or we require non-team spawns and have none; use any spawn then
375 // get the entire list of spots
376 //entity firstspot = findchain(classname, "info_player_deathmatch");
377 entity firstspot = IL_FIRST(g_spawnpoints);
379 IL_EACH(g_spawnpoints, true,
386 // filter out the bad ones
387 // (note this returns the original list if none survived)
390 spot = Spawn_WeightedPoint(firstspot, 1, 1, 1);
394 firstspot = Spawn_FilterOutBadSpots(this, firstspot, 100, teamcheck);
396 // there is 50/50 chance of choosing a random spot or the furthest spot
397 // (this means that roughly every other spawn will be furthest, so you
398 // usually won't get fragged at spawn twice in a row)
399 if (random() > autocvar_g_spawn_furthest)
400 spot = Spawn_WeightedPoint(firstspot, 1, 1, 1);
402 spot = Spawn_WeightedPoint(firstspot, 1, 5000, 5); // chooses a far far away spawnpoint
407 if(autocvar_spawn_debug)
411 if(some_spawn_has_been_used)
412 return NULL; // team can't spawn any more, because of actions of other team
414 error("Cannot find a spawn point - please fix the map!");