1 #include "miscfunctions.qh"
4 #include "command/common.qh"
5 #include "constants.qh"
8 #include <server/mutators/_mod.qh>
9 #include "../common/t_items.qh"
10 #include "resources.qh"
13 #include "weapons/accuracy.qh"
14 #include "weapons/csqcprojectile.qh"
15 #include "weapons/selection.qh"
16 #include "../common/command/_mod.qh"
17 #include "../common/constants.qh"
18 #include <common/net_linked.qh>
19 #include <common/weapons/weapon/crylink.qh>
20 #include "../common/deathtypes/all.qh"
21 #include "../common/mapinfo.qh"
22 #include "../common/notifications/all.qh"
23 #include "../common/playerstats.qh"
24 #include "../common/teams.qh"
25 #include "../common/mapobjects/subs.qh"
26 #include "../common/util.qh"
27 #include "../common/turrets/sv_turrets.qh"
28 #include <common/weapons/_all.qh>
29 #include "../common/vehicles/sv_vehicles.qh"
30 #include "../common/vehicles/vehicle.qh"
31 #include "../common/items/_mod.qh"
32 #include "../common/state.qh"
33 #include "../common/effects/qc/globalsound.qh"
34 #include "../common/wepent.qh"
35 #include "../lib/csqcmodel/sv_model.qh"
36 #include "../lib/warpzone/anglestransform.qh"
37 #include "../lib/warpzone/server.qh"
39 void crosshair_trace(entity pl)
41 traceline_antilag(pl, CS(pl).cursor_trace_start, CS(pl).cursor_trace_start + normalize(CS(pl).cursor_trace_endpos - CS(pl).cursor_trace_start) * max_shot_distance, MOVE_NORMAL, pl, ANTILAG_LATENCY(pl));
44 void crosshair_trace_plusvisibletriggers(entity pl)
46 crosshair_trace_plusvisibletriggers__is_wz(pl, false);
49 void WarpZone_crosshair_trace_plusvisibletriggers(entity pl)
51 crosshair_trace_plusvisibletriggers__is_wz(pl, true);
54 void crosshair_trace_plusvisibletriggers__is_wz(entity pl, bool is_wz)
56 FOREACH_ENTITY_FLOAT(solid, SOLID_TRIGGER,
61 IL_PUSH(g_ctrace_changed, it);
66 WarpZone_crosshair_trace(pl);
70 IL_EACH(g_ctrace_changed, true, { it.solid = SOLID_TRIGGER; });
72 IL_CLEAR(g_ctrace_changed);
75 void WarpZone_crosshair_trace(entity pl)
77 WarpZone_traceline_antilag(pl, CS(pl).cursor_trace_start, CS(pl).cursor_trace_start + normalize(CS(pl).cursor_trace_endpos - CS(pl).cursor_trace_start) * max_shot_distance, MOVE_NORMAL, pl, ANTILAG_LATENCY(pl));
80 void dedicated_print(string input)
82 if (server_is_dedicated) print(input);
85 void GameLogEcho(string s)
90 if (autocvar_sv_eventlog_files)
95 matches = autocvar_sv_eventlog_files_counter + 1;
96 cvar_set("sv_eventlog_files_counter", itos(matches));
99 fn = strcat(substring("00000000", 0, 8 - strlen(fn)), fn);
100 fn = strcat(autocvar_sv_eventlog_files_nameprefix, fn, autocvar_sv_eventlog_files_namesuffix);
101 logfile = fopen(fn, FILE_APPEND);
102 fputs(logfile, ":logversion:3\n");
106 if (autocvar_sv_eventlog_files_timestamps)
107 fputs(logfile, strcat(":time:", strftime(true, "%Y-%m-%d %H:%M:%S", "\n", s, "\n")));
109 fputs(logfile, strcat(s, "\n"));
112 if (autocvar_sv_eventlog_console)
114 dedicated_print(strcat(s, "\n"));
121 // will be opened later
126 if (logfile_open && logfile >= 0)
133 entity findnearest(vector point, bool checkitems, vector axismod)
138 IL_EACH(((checkitems) ? g_items : g_locations), ((checkitems) ? (it.target == "###item###") : (it.classname == "target_location")),
140 if ((it.items == IT_KEY1 || it.items == IT_KEY2) && it.target == "###item###")
145 dist = dist.x * axismod.x * '1 0 0' + dist.y * axismod.y * '0 1 0' + dist.z * axismod.z * '0 0 1';
146 float len = vlen2(dist);
149 for (l = 0; l < num_nearest; ++l)
151 if (len < nearest_length[l])
155 // now i tells us where to insert at
156 // INSERTION SORT! YOU'VE SEEN IT! RUN!
157 if (l < NUM_NEAREST_ENTITIES)
159 for (int j = NUM_NEAREST_ENTITIES - 1; j >= l; --j)
161 nearest_length[j + 1] = nearest_length[j];
162 nearest_entity[j + 1] = nearest_entity[j];
164 nearest_length[l] = len;
165 nearest_entity[l] = it;
166 if (num_nearest < NUM_NEAREST_ENTITIES)
167 num_nearest = num_nearest + 1;
171 // now use the first one from our list that we can see
172 for (int j = 0; j < num_nearest; ++j)
174 traceline(point, nearest_entity[j].origin, true, NULL);
175 if (trace_fraction == 1)
178 LOG_TRACEF("Nearest point (%s) is not visible, using a visible one.", nearest_entity[0].netname);
179 return nearest_entity[j];
183 if (num_nearest == 0)
186 LOG_TRACE("Not seeing any location point, using nearest as fallback.");
188 dprint("Candidates were: ");
189 for(j = 0; j < num_nearest; ++j)
193 dprint(nearest_entity[j].netname);
198 return nearest_entity[0];
201 string NearestLocation(vector p)
203 string ret = "somewhere";
204 entity loc = findnearest(p, false, '1 1 1');
209 loc = findnearest(p, true, '1 1 4');
216 string AmmoNameFromWeaponentity(Weapon wep)
218 string ammoitems = "batteries";
219 switch (wep.ammo_type)
221 case RES_SHELLS: ammoitems = ITEM_Shells.m_name; break;
222 case RES_BULLETS: ammoitems = ITEM_Bullets.m_name; break;
223 case RES_ROCKETS: ammoitems = ITEM_Rockets.m_name; break;
224 case RES_CELLS: ammoitems = ITEM_Cells.m_name; break;
225 case RES_PLASMA: ammoitems = ITEM_Plasma.m_name; break;
226 case RES_FUEL: ammoitems = ITEM_JetpackFuel.m_name; break;
231 string formatmessage(entity this, string msg)
235 vector cursor = '0 0 0';
236 entity cursor_ent = NULL;
243 MUTATOR_CALLHOOK(PreFormatMessage, this, msg);
244 msg = M_ARGV(1, string);
248 break; // too many replacements
251 p1 = strstrofs(msg, "%", p); // NOTE: this destroys msg as it's a tempstring!
252 p2 = strstrofs(msg, "\\", p); // NOTE: this destroys msg as it's a tempstring!
267 WarpZone_crosshair_trace_plusvisibletriggers(this);
268 cursor = trace_endpos;
269 cursor_ent = trace_ent;
273 replacement = substring(msg, p, 2);
274 escape = substring(msg, p + 1, 1);
276 .entity weaponentity = weaponentities[0]; // TODO: unhardcode
280 case "%": replacement = "%"; break;
281 case "\\":replacement = "\\"; break;
282 case "n": replacement = "\n"; break;
283 case "a": replacement = ftos(floor(GetResource(this, RES_ARMOR))); break;
284 case "h": replacement = ftos(floor(GetResource(this, RES_HEALTH))); break;
285 case "l": replacement = NearestLocation(this.origin); break;
286 case "y": replacement = NearestLocation(cursor); break;
287 case "d": replacement = NearestLocation(this.death_origin); break;
288 case "w": replacement = ((this.(weaponentity).m_weapon == WEP_Null) ? ((this.(weaponentity).m_switchweapon == WEP_Null) ? Weapons_from(this.(weaponentity).cnt) : this.(weaponentity).m_switchweapon) : this.(weaponentity).m_weapon).m_name; break;
289 case "W": replacement = AmmoNameFromWeaponentity(this.(weaponentity).m_weapon); break;
290 case "x": replacement = ((cursor_ent.netname == "" || !cursor_ent) ? "nothing" : cursor_ent.netname); break;
291 case "s": replacement = ftos(vlen(this.velocity - this.velocity_z * '0 0 1')); break;
292 case "S": replacement = ftos(vlen(this.velocity)); break;
293 case "t": replacement = seconds_tostring(ceil(max(0, autocvar_timelimit * 60 + game_starttime - time))); break;
294 case "T": replacement = seconds_tostring(floor(time - game_starttime)); break;
297 MUTATOR_CALLHOOK(FormatMessage, this, escape, replacement, msg);
298 replacement = M_ARGV(2, string);
303 msg = strcat(substring(msg, 0, p), replacement, substring(msg, p+2, strlen(msg) - (p+2)));
304 p = p + strlen(replacement);
315 >0: receives a cvar from name=argv(f) value=argv(f+1)
317 void GetCvars_handleString(entity this, entity store, string thisname, float f, .string field, string name)
321 strfree(store.(field));
325 if (thisname == name)
327 strcpy(store.(field), argv(f + 1));
331 stuffcmd(this, strcat("cl_cmd sendcvar ", name, "\n"));
333 void GetCvars_handleString_Fixup(entity this, entity store, string thisname, float f, .string field, string name, string(entity, string) func)
335 GetCvars_handleString(this, store, thisname, f, field, name);
336 if (f >= 0) // also initialize to the fitting value for "" when sending cvars out
337 if (thisname == name)
339 string s = func(this, strcat1(store.(field)));
340 if (s != store.(field))
342 strcpy(store.(field), s);
346 void GetCvars_handleFloat(entity this, entity store, string thisname, float f, .float field, string name)
353 if (thisname == name)
354 store.(field) = stof(argv(f + 1));
357 stuffcmd(this, strcat("cl_cmd sendcvar ", name, "\n"));
359 void GetCvars_handleFloatOnce(entity this, entity store, string thisname, float f, .float field, string name)
366 if (thisname == name)
370 store.(field) = stof(argv(f + 1));
379 stuffcmd(this, strcat("cl_cmd sendcvar ", name, "\n"));
382 string W_FixWeaponOrder_ForceComplete_AndBuildImpulseList(entity this, string wo)
384 string o = W_FixWeaponOrder_ForceComplete(wo);
385 strcpy(CS(this).weaponorder_byimpulse, W_FixWeaponOrder_BuildImpulseList(o));
389 REPLICATE(autoswitch, bool, "cl_autoswitch");
391 REPLICATE(cvar_cl_allow_uid2name, bool, "cl_allow_uid2name");
393 REPLICATE(cvar_cl_autoscreenshot, int, "cl_autoscreenshot");
395 REPLICATE(cvar_cl_autotaunt, float, "cl_autotaunt");
397 REPLICATE(cvar_cl_clippedspectating, bool, "cl_clippedspectating");
399 REPLICATE(cvar_cl_handicap, float, "cl_handicap");
401 REPLICATE(cvar_cl_jetpack_jump, bool, "cl_jetpack_jump");
403 REPLICATE(cvar_cl_movement_track_canjump, bool, "cl_movement_track_canjump");
405 REPLICATE(cvar_cl_newusekeysupported, bool, "cl_newusekeysupported");
407 REPLICATE(cvar_cl_noantilag, bool, "cl_noantilag");
409 REPLICATE(cvar_cl_physics, string, "cl_physics");
411 REPLICATE(cvar_cl_voice_directional, int, "cl_voice_directional");
413 REPLICATE(cvar_cl_voice_directional_taunt_attenuation, float, "cl_voice_directional_taunt_attenuation");
415 REPLICATE(cvar_cl_weaponimpulsemode, int, "cl_weaponimpulsemode");
417 REPLICATE(cvar_g_xonoticversion, string, "g_xonoticversion");
419 REPLICATE(cvar_cl_cts_noautoswitch, bool, "cl_cts_noautoswitch");
421 REPLICATE(cvar_cl_weapon_switch_reload, bool, "cl_weapon_switch_reload");
423 REPLICATE(cvar_cl_weapon_switch_fallback_to_impulse, bool, "cl_weapon_switch_fallback_to_impulse");
426 * @param f -1: cleanup, 0: request, 1: receive
428 void GetCvars(entity this, entity store, int f)
430 string s = string_null;
433 s = strcat1(argv(f));
437 MUTATOR_CALLHOOK(GetCvars);
439 Notification_GetCvars(this);
441 ReplicateVars(this, store, s, f);
443 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriority, "cl_weaponpriority", W_FixWeaponOrder_ForceComplete_AndBuildImpulseList);
444 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[0], "cl_weaponpriority0", W_FixWeaponOrder_AllowIncomplete);
445 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[1], "cl_weaponpriority1", W_FixWeaponOrder_AllowIncomplete);
446 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[2], "cl_weaponpriority2", W_FixWeaponOrder_AllowIncomplete);
447 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[3], "cl_weaponpriority3", W_FixWeaponOrder_AllowIncomplete);
448 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[4], "cl_weaponpriority4", W_FixWeaponOrder_AllowIncomplete);
449 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[5], "cl_weaponpriority5", W_FixWeaponOrder_AllowIncomplete);
450 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[6], "cl_weaponpriority6", W_FixWeaponOrder_AllowIncomplete);
451 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[7], "cl_weaponpriority7", W_FixWeaponOrder_AllowIncomplete);
452 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[8], "cl_weaponpriority8", W_FixWeaponOrder_AllowIncomplete);
453 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[9], "cl_weaponpriority9", W_FixWeaponOrder_AllowIncomplete);
455 GetCvars_handleFloat(this, store, s, f, cvar_cl_allow_uidtracking, "cl_allow_uidtracking");
457 // fixup of switchweapon (needed for LMS or when spectating is disabled, as PutClientInServer comes too early)
460 if (s == "cl_weaponpriority")
462 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
464 .entity weaponentity = weaponentities[slot];
465 if (this.(weaponentity) && (this.(weaponentity).m_weapon != WEP_Null || slot == 0))
466 this.(weaponentity).m_switchweapon = w_getbestweapon(this, weaponentity);
469 if (s == "cl_allow_uidtracking")
470 PlayerStats_GameReport_AddPlayer(this);
474 // decolorizes and team colors the player name when needed
475 string playername(entity p, bool team_colorize)
478 if (team_colorize && teamplay && !intermission_running && IS_PLAYER(p))
480 t = Team_ColorCode(p.team);
481 return strcat(t, strdecolorize(p.netname));
487 float want_weapon(entity weaponinfo, float allguns) // WEAPONTODO: what still needs done?
489 int i = weaponinfo.m_id;
491 bool allow_mutatorblocked = false;
496 bool mutator_returnvalue = MUTATOR_CALLHOOK(WantWeapon, weaponinfo, d, allguns, allow_mutatorblocked);
497 d = M_ARGV(1, float);
498 allguns = M_ARGV(2, bool);
499 allow_mutatorblocked = M_ARGV(3, bool);
502 d = boolean((weaponinfo.spawnflags & WEP_FLAG_NORMAL) && !(weaponinfo.spawnflags & WEP_FLAG_HIDDEN) && !(weaponinfo.spawnflags & WEP_FLAG_SPECIALATTACK));
503 else if(!mutator_returnvalue)
504 d = !(!weaponinfo.weaponstart);
506 if(!allow_mutatorblocked && (weaponinfo.spawnflags & WEP_FLAG_MUTATORBLOCKED)) // never default mutator blocked guns
509 float t = weaponinfo.weaponstartoverride;
511 //print(strcat("want_weapon: ", weaponinfo.netname, " - d: ", ftos(d), ", t: ", ftos(t), ". \n"));
516 // 4: is set by default?
525 void readplayerstartcvars()
530 // initialize starting values for players
531 start_weapons = '0 0 0';
532 start_weapons_default = '0 0 0';
533 start_weapons_defaultmask = '0 0 0';
535 start_ammo_shells = 0;
536 start_ammo_nails = 0;
537 start_ammo_rockets = 0;
538 start_ammo_cells = 0;
539 start_ammo_plasma = 0;
540 if (random_start_ammo == NULL)
542 random_start_ammo = spawn();
544 start_health = cvar("g_balance_health_start");
545 start_armorvalue = cvar("g_balance_armor_start");
548 g_weaponarena_weapons = '0 0 0';
550 s = cvar_string("g_weaponarena");
552 MUTATOR_CALLHOOK(SetWeaponArena, s);
553 s = M_ARGV(0, string);
555 if (s == "0" || s == "")
561 // forcibly turn off weaponarena
563 else if (s == "all" || s == "1")
566 g_weaponarena_list = "All Weapons";
567 FOREACH(Weapons, it != WEP_Null, {
568 if(!(it.spawnflags & WEP_FLAG_MUTATORBLOCKED) && !(it.spawnflags & WEP_FLAG_SPECIALATTACK))
569 g_weaponarena_weapons |= (it.m_wepset);
572 else if (s == "devall")
575 g_weaponarena_list = "All Weapons"; // TODO: report as more than just all weapons?
576 FOREACH(Weapons, it != WEP_Null,
578 g_weaponarena_weapons |= (it.m_wepset);
581 else if (s == "most")
584 g_weaponarena_list = "Most Weapons";
585 FOREACH(Weapons, it != WEP_Null, {
586 if(!(it.spawnflags & WEP_FLAG_MUTATORBLOCKED) && (it.spawnflags & WEP_FLAG_NORMAL) && !(it.spawnflags & WEP_FLAG_HIDDEN) && !(it.spawnflags & WEP_FLAG_SPECIALATTACK))
587 g_weaponarena_weapons |= (it.m_wepset);
590 else if (s == "none")
593 g_weaponarena_list = "No Weapons";
598 t = tokenize_console(s);
599 g_weaponarena_list = "";
600 for (i = 0; i < t; ++i)
603 Weapon wep = Weapons_fromstr(s);
606 g_weaponarena_weapons |= (wep.m_wepset);
607 g_weaponarena_list = strcat(g_weaponarena_list, wep.m_name, " & ");
610 g_weaponarena_list = strzone(substring(g_weaponarena_list, 0, strlen(g_weaponarena_list) - 3));
615 g_weapon_stay = 0; // incompatible
616 start_weapons = g_weaponarena_weapons;
617 start_items |= IT_UNLIMITED_AMMO;
621 FOREACH(Weapons, it != WEP_Null, {
622 int w = want_weapon(it, false);
623 WepSet s = it.m_wepset;
627 start_weapons_default |= s;
629 start_weapons_defaultmask |= s;
633 if(cvar("g_balance_superweapons_time") < 0)
634 start_items |= IT_UNLIMITED_SUPERWEAPONS;
636 if(!cvar("g_use_ammunition"))
637 start_items |= IT_UNLIMITED_AMMO;
639 if(start_items & IT_UNLIMITED_WEAPON_AMMO)
641 start_ammo_shells = 999;
642 start_ammo_nails = 999;
643 start_ammo_rockets = 999;
644 start_ammo_cells = 999;
645 start_ammo_plasma = 999;
646 start_ammo_fuel = 999;
650 start_ammo_shells = cvar("g_start_ammo_shells");
651 start_ammo_nails = cvar("g_start_ammo_nails");
652 start_ammo_rockets = cvar("g_start_ammo_rockets");
653 start_ammo_cells = cvar("g_start_ammo_cells");
654 start_ammo_plasma = cvar("g_start_ammo_plasma");
655 start_ammo_fuel = cvar("g_start_ammo_fuel");
656 random_start_weapons_count = cvar("g_random_start_weapons_count");
657 SetResource(random_start_ammo, RES_SHELLS, cvar(
658 "g_random_start_shells"));
659 SetResource(random_start_ammo, RES_BULLETS, cvar(
660 "g_random_start_bullets"));
661 SetResource(random_start_ammo, RES_ROCKETS,
662 cvar("g_random_start_rockets"));
663 SetResource(random_start_ammo, RES_CELLS, cvar(
664 "g_random_start_cells"));
665 SetResource(random_start_ammo, RES_PLASMA, cvar(
666 "g_random_start_plasma"));
671 warmup_start_ammo_shells = start_ammo_shells;
672 warmup_start_ammo_nails = start_ammo_nails;
673 warmup_start_ammo_rockets = start_ammo_rockets;
674 warmup_start_ammo_cells = start_ammo_cells;
675 warmup_start_ammo_plasma = start_ammo_plasma;
676 warmup_start_ammo_fuel = start_ammo_fuel;
677 warmup_start_health = start_health;
678 warmup_start_armorvalue = start_armorvalue;
679 warmup_start_weapons = start_weapons;
680 warmup_start_weapons_default = start_weapons_default;
681 warmup_start_weapons_defaultmask = start_weapons_defaultmask;
683 if (!g_weaponarena && !g_ca && !g_freezetag)
685 warmup_start_ammo_shells = cvar("g_warmup_start_ammo_shells");
686 warmup_start_ammo_nails = cvar("g_warmup_start_ammo_nails");
687 warmup_start_ammo_rockets = cvar("g_warmup_start_ammo_rockets");
688 warmup_start_ammo_cells = cvar("g_warmup_start_ammo_cells");
689 warmup_start_ammo_plasma = cvar("g_warmup_start_ammo_plasma");
690 warmup_start_ammo_fuel = cvar("g_warmup_start_ammo_fuel");
691 warmup_start_health = cvar("g_warmup_start_health");
692 warmup_start_armorvalue = cvar("g_warmup_start_armor");
693 warmup_start_weapons = '0 0 0';
694 warmup_start_weapons_default = '0 0 0';
695 warmup_start_weapons_defaultmask = '0 0 0';
696 FOREACH(Weapons, it != WEP_Null, {
697 int w = want_weapon(it, g_warmup_allguns);
698 WepSet s = (it.m_wepset);
700 warmup_start_weapons |= s;
702 warmup_start_weapons_default |= s;
704 warmup_start_weapons_defaultmask |= s;
710 start_items |= ITEM_Jetpack.m_itemid;
712 MUTATOR_CALLHOOK(SetStartItems);
714 if (start_items & ITEM_Jetpack.m_itemid)
716 start_items |= ITEM_JetpackRegen.m_itemid;
717 start_ammo_fuel = max(start_ammo_fuel, cvar("g_balance_fuel_rotstable"));
718 warmup_start_ammo_fuel = max(warmup_start_ammo_fuel, cvar("g_balance_fuel_rotstable"));
721 start_ammo_shells = max(0, start_ammo_shells);
722 start_ammo_nails = max(0, start_ammo_nails);
723 start_ammo_rockets = max(0, start_ammo_rockets);
724 start_ammo_cells = max(0, start_ammo_cells);
725 start_ammo_plasma = max(0, start_ammo_plasma);
726 start_ammo_fuel = max(0, start_ammo_fuel);
727 SetResource(random_start_ammo, RES_SHELLS, max(0,
728 GetResource(random_start_ammo, RES_SHELLS)));
729 SetResource(random_start_ammo, RES_BULLETS, max(0,
730 GetResource(random_start_ammo, RES_BULLETS)));
731 SetResource(random_start_ammo, RES_ROCKETS, max(0,
732 GetResource(random_start_ammo, RES_ROCKETS)));
733 SetResource(random_start_ammo, RES_CELLS, max(0,
734 GetResource(random_start_ammo, RES_CELLS)));
735 SetResource(random_start_ammo, RES_PLASMA, max(0,
736 GetResource(random_start_ammo, RES_PLASMA)));
738 warmup_start_ammo_shells = max(0, warmup_start_ammo_shells);
739 warmup_start_ammo_nails = max(0, warmup_start_ammo_nails);
740 warmup_start_ammo_rockets = max(0, warmup_start_ammo_rockets);
741 warmup_start_ammo_cells = max(0, warmup_start_ammo_cells);
742 warmup_start_ammo_plasma = max(0, warmup_start_ammo_plasma);
743 warmup_start_ammo_fuel = max(0, warmup_start_ammo_fuel);
746 void precache_playermodel(string m)
748 float globhandle, i, n;
751 if(substring(m, -9,5) == "_lod1")
753 if(substring(m, -9,5) == "_lod2")
756 f = strcat(substring(m, 0, -5), "_lod1", substring(m, -4, -1));
759 f = strcat(substring(m, 0, -5), "_lod2", substring(m, -4, -1));
763 globhandle = search_begin(strcat(m, "_*.sounds"), true, false);
766 n = search_getsize(globhandle);
767 for (i = 0; i < n; ++i)
769 //print(search_getfilename(globhandle, i), "\n");
770 f = search_getfilename(globhandle, i);
771 PrecachePlayerSounds(f);
773 search_end(globhandle);
775 void precache_all_playermodels(string pattern)
777 int globhandle = search_begin(pattern, true, false);
778 if (globhandle < 0) return;
779 int n = search_getsize(globhandle);
780 for (int i = 0; i < n; ++i)
782 string s = search_getfilename(globhandle, i);
783 precache_playermodel(s);
785 search_end(globhandle);
788 void precache_playermodels(string s)
790 FOREACH_WORD(s, true, { precache_playermodel(it); });
795 // gamemode related things
797 // Precache all player models if desired
798 if (autocvar_sv_precacheplayermodels)
800 PrecachePlayerSounds("sound/player/default.sounds");
801 precache_all_playermodels("models/player/*.zym");
802 precache_all_playermodels("models/player/*.dpm");
803 precache_all_playermodels("models/player/*.md3");
804 precache_all_playermodels("models/player/*.psk");
805 precache_all_playermodels("models/player/*.iqm");
808 if (autocvar_sv_defaultcharacter)
810 precache_playermodels(autocvar_sv_defaultplayermodel_red);
811 precache_playermodels(autocvar_sv_defaultplayermodel_blue);
812 precache_playermodels(autocvar_sv_defaultplayermodel_yellow);
813 precache_playermodels(autocvar_sv_defaultplayermodel_pink);
814 precache_playermodels(autocvar_sv_defaultplayermodel);
818 // Disabled this code because it simply does not work (e.g. ignores bgmvolume, overlaps with "cd loop" controlled tracks).
820 if (!this.noise && this.music) // quake 3 uses the music field
821 this.noise = this.music;
823 // plays music for the level if there is any
826 precache_sound (this.noise);
827 ambientsound ('0 0 0', this.noise, VOL_BASE, ATTEN_NONE);
833 void make_safe_for_remove(entity e)
835 if (e.initialize_entity)
837 entity ent, prev = NULL;
838 for (ent = initialize_entity_first; ent; )
840 if ((ent == e) || ((ent.classname == "initialize_entity") && (ent.enemy == e)))
842 //print("make_safe_for_remove: getting rid of initializer ", etos(ent), "\n");
843 // skip it in linked list
846 prev.initialize_entity_next = ent.initialize_entity_next;
847 ent = prev.initialize_entity_next;
851 initialize_entity_first = ent.initialize_entity_next;
852 ent = initialize_entity_first;
858 ent = ent.initialize_entity_next;
864 .float remove_except_protected_forbidden;
865 void remove_except_protected(entity e)
867 if(e.remove_except_protected_forbidden)
868 error("not allowed to remove this at this point");
872 void remove_unsafely(entity e)
874 if(e.classname == "spike")
875 error("Removing spikes is forbidden (crylink bug), please report");
879 void remove_safely(entity e)
881 make_safe_for_remove(e);
885 void InitializeEntity(entity e, void(entity this) func, int order)
889 if (!e || e.initialize_entity)
891 // make a proxy initializer entity
893 e = new(initialize_entity);
897 e.initialize_entity = func;
898 e.initialize_entity_order = order;
900 cur = initialize_entity_first;
904 if (!cur || cur.initialize_entity_order > order)
906 // insert between prev and cur
908 prev.initialize_entity_next = e;
910 initialize_entity_first = e;
911 e.initialize_entity_next = cur;
915 cur = cur.initialize_entity_next;
918 void InitializeEntitiesRun()
920 entity startoflist = initialize_entity_first;
921 initialize_entity_first = NULL;
922 delete_fn = remove_except_protected;
923 for (entity e = startoflist; e; e = e.initialize_entity_next)
925 e.remove_except_protected_forbidden = 1;
927 for (entity e = startoflist; e; )
929 e.remove_except_protected_forbidden = 0;
930 e.initialize_entity_order = 0;
931 entity next = e.initialize_entity_next;
932 e.initialize_entity_next = NULL;
933 var void(entity this) func = e.initialize_entity;
934 e.initialize_entity = func_null;
935 if (e.classname == "initialize_entity")
937 entity wrappee = e.enemy;
941 //dprint("Delayed initialization: ", e.classname, "\n");
949 backtrace(strcat("Null function in: ", e.classname, "\n"));
953 delete_fn = remove_unsafely;
956 .float(entity) isEliminated;
957 bool EliminatedPlayers_SendEntity(entity this, entity to, float sendflags)
959 Stream out = MSG_ENTITY;
960 WriteHeader(out, ENT_CLIENT_ELIMINATEDPLAYERS);
961 serialize(byte, out, sendflags);
963 for (int i = 1; i <= maxclients; i += 8) {
965 entity e = edict_num(i);
966 for (int b = 0; b < 8; ++b, e = nextent(e)) {
967 if (eliminatedPlayers.isEliminated(e)) {
971 serialize(byte, out, f);
977 void EliminatedPlayers_Init(float(entity) isEliminated_func)
979 if(eliminatedPlayers)
981 backtrace("Can't spawn eliminatedPlayers again!");
984 Net_LinkEntity(eliminatedPlayers = spawn(), false, 0, EliminatedPlayers_SendEntity);
985 eliminatedPlayers.isEliminated = isEliminated_func;
991 void adaptor_think2use_hittype_splash(entity this) // for timed projectile detonation
993 if(!(IS_ONGROUND(this))) // if onground, we ARE touching something, but HITTYPE_SPLASH is to be networked if the damage causing projectile is not touching ANYTHING
994 this.projectiledeathtype |= HITTYPE_SPLASH;
995 adaptor_think2use(this);
999 void DropToFloor_Handler(entity this)
1001 WITHSELF(this, builtin_droptofloor());
1002 this.dropped_origin = this.origin;
1005 void droptofloor(entity this)
1007 InitializeEntity(this, DropToFloor_Handler, INITPRIO_DROPTOFLOOR);
1012 float trace_hits_box_a0, trace_hits_box_a1;
1014 float trace_hits_box_1d(float end, float thmi, float thma)
1018 // just check if x is in range
1026 // do the trace with respect to x
1027 // 0 -> end has to stay in thmi -> thma
1028 trace_hits_box_a0 = max(trace_hits_box_a0, min(thmi / end, thma / end));
1029 trace_hits_box_a1 = min(trace_hits_box_a1, max(thmi / end, thma / end));
1030 if (trace_hits_box_a0 > trace_hits_box_a1)
1036 float trace_hits_box(vector start, vector end, vector thmi, vector thma)
1041 // now it is a trace from 0 to end
1043 trace_hits_box_a0 = 0;
1044 trace_hits_box_a1 = 1;
1046 if (!trace_hits_box_1d(end.x, thmi.x, thma.x))
1048 if (!trace_hits_box_1d(end.y, thmi.y, thma.y))
1050 if (!trace_hits_box_1d(end.z, thmi.z, thma.z))
1056 float tracebox_hits_box(vector start, vector mi, vector ma, vector end, vector thmi, vector thma)
1058 return trace_hits_box(start, end, thmi - ma, thma - mi);
1061 bool SUB_NoImpactCheck(entity this, entity toucher)
1063 // zero hitcontents = this is not the real impact, but either the
1064 // mirror-impact of something hitting the projectile instead of the
1065 // projectile hitting the something, or a touchareagrid one. Neither of
1066 // these stop the projectile from moving, so...
1067 if(trace_dphitcontents == 0)
1069 LOG_TRACEF("A hit from a projectile happened with no hit contents! DEBUG THIS, this should never happen for projectiles! Projectile will self-destruct. (edict: %i, classname: %s, origin: %v)", this, this.classname, this.origin);
1070 checkclient(this); // TODO: .health is checked in the engine with this, possibly replace with a QC function?
1072 if (trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT)
1074 if (toucher == NULL && this.size != '0 0 0')
1077 tic = this.velocity * sys_frametime;
1078 tic = tic + normalize(tic) * vlen(this.maxs - this.mins);
1079 traceline(this.origin - tic, this.origin + tic, MOVE_NORMAL, this);
1080 if (trace_fraction >= 1)
1082 LOG_TRACE("Odd... did not hit...?");
1084 else if (trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT)
1086 LOG_TRACE("Detected and prevented the sky-grapple bug.");
1094 #define SUB_OwnerCheck(ent,oth) ((oth) && ((oth) == (ent).owner))
1096 bool WarpZone_Projectile_Touch_ImpactFilter_Callback(entity this, entity toucher)
1098 if(SUB_OwnerCheck(this, toucher))
1100 if(SUB_NoImpactCheck(this, toucher))
1102 if(this.classname == "nade")
1103 return false; // no checks here
1104 else if(this.classname == "grapplinghook")
1106 else if(this.classname == "spike")
1108 W_Crylink_Dequeue(this);
1115 if(trace_ent && trace_ent.solid > SOLID_TRIGGER)
1116 UpdateCSQCProjectile(this);
1120 /** engine callback */
1121 void URI_Get_Callback(float id, float status, string data)
1123 if(url_URI_Get_Callback(id, status, data))
1127 else if (id == URI_GET_DISCARD)
1131 else if (id >= URI_GET_CURL && id <= URI_GET_CURL_END)
1134 Curl_URI_Get_Callback(id, status, data);
1136 else if (id >= URI_GET_IPBAN && id <= URI_GET_IPBAN_END)
1139 OnlineBanList_URI_Get_Callback(id, status, data);
1141 else if (MUTATOR_CALLHOOK(URI_GetCallback, id, status, data))
1143 // handled by a mutator
1147 LOG_INFO("Received HTTP request data for an invalid id ", ftos(id), ".");
1151 string uid2name(string myuid) {
1153 s = db_get(ServerProgsDB, strcat("/uid2name/", myuid));
1155 // FIXME remove this later after 0.6 release
1156 // convert old style broken records to correct style
1159 s = db_get(ServerProgsDB, strcat("uid2name", myuid));
1162 db_put(ServerProgsDB, strcat("/uid2name/", myuid), s);
1163 db_remove(ServerProgsDB, strcat("uid2name", myuid));
1168 s = "^1Unregistered Player";
1172 float MoveToRandomLocationWithinBounds(entity e, vector boundmin, vector boundmax, float goodcontents, float badcontents, float badsurfaceflags, float attempts, float maxaboveground, float minviewdistance)
1175 vector start, org, delta, end, enddown, mstart;
1177 m = e.dphitcontentsmask;
1178 e.dphitcontentsmask = goodcontents | badcontents;
1181 delta = boundmax - boundmin;
1185 for (i = 0; i < attempts; ++i)
1187 start.x = org.x + random() * delta.x;
1188 start.y = org.y + random() * delta.y;
1189 start.z = org.z + random() * delta.z;
1191 // rule 1: start inside world bounds, and outside
1192 // solid, and don't start from somewhere where you can
1193 // fall down to evil
1194 tracebox(start, e.mins, e.maxs, start - '0 0 1' * delta.z, MOVE_NORMAL, e);
1195 if (trace_fraction >= 1)
1197 if (trace_startsolid)
1199 if (trace_dphitcontents & badcontents)
1201 if (trace_dphitq3surfaceflags & badsurfaceflags)
1204 // rule 2: if we are too high, lower the point
1205 if (trace_fraction * delta.z > maxaboveground)
1206 start = trace_endpos + '0 0 1' * maxaboveground;
1207 enddown = trace_endpos;
1209 // rule 3: make sure we aren't outside the map. This only works
1210 // for somewhat well formed maps. A good rule of thumb is that
1211 // the map should have a convex outside hull.
1212 // these can be traceLINES as we already verified the starting box
1213 mstart = start + 0.5 * (e.mins + e.maxs);
1214 traceline(mstart, mstart + '1 0 0' * delta.x, MOVE_NORMAL, e);
1215 if (trace_fraction >= 1 || trace_dphittexturename == "common/caulk")
1217 traceline(mstart, mstart - '1 0 0' * delta.x, MOVE_NORMAL, e);
1218 if (trace_fraction >= 1 || trace_dphittexturename == "common/caulk")
1220 traceline(mstart, mstart + '0 1 0' * delta.y, MOVE_NORMAL, e);
1221 if (trace_fraction >= 1 || trace_dphittexturename == "common/caulk")
1223 traceline(mstart, mstart - '0 1 0' * delta.y, MOVE_NORMAL, e);
1224 if (trace_fraction >= 1 || trace_dphittexturename == "common/caulk")
1226 traceline(mstart, mstart + '0 0 1' * delta.z, MOVE_NORMAL, e);
1227 if (trace_fraction >= 1 || trace_dphittexturename == "common/caulk")
1230 // rule 4: we must "see" some spawnpoint or item
1232 IL_EACH(g_spawnpoints, checkpvs(mstart, it),
1234 if((traceline(mstart, it.origin, MOVE_NORMAL, e), trace_fraction) >= 1)
1242 int items_checked = 0;
1243 IL_EACH(g_items, checkpvs(mstart, it),
1245 if((traceline(mstart, it.origin + (it.mins + it.maxs) * 0.5, MOVE_NORMAL, e), trace_fraction) >= 1)
1252 if(items_checked >= attempts)
1260 // find a random vector to "look at"
1261 end.x = org.x + random() * delta.x;
1262 end.y = org.y + random() * delta.y;
1263 end.z = org.z + random() * delta.z;
1264 end = start + normalize(end - start) * vlen(delta);
1266 // rule 4: start TO end must not be too short
1267 tracebox(start, e.mins, e.maxs, end, MOVE_NORMAL, e);
1268 if (trace_startsolid)
1270 if (trace_fraction < minviewdistance / vlen(delta))
1273 // rule 5: don't want to look at sky
1274 if (trace_dphitq3surfaceflags & Q3SURFACEFLAG_SKY)
1277 // rule 6: we must not end up in trigger_hurt
1278 if (tracebox_hits_trigger_hurt(start, e.mins, e.maxs, enddown))
1284 e.dphitcontentsmask = m;
1288 setorigin(e, start);
1289 e.angles = vectoangles(end - start);
1290 LOG_DEBUG("Needed ", ftos(i + 1), " attempts");
1297 float MoveToRandomMapLocation(entity e, float goodcontents, float badcontents, float badsurfaceflags, float attempts, float maxaboveground, float minviewdistance)
1299 return MoveToRandomLocationWithinBounds(e, world.mins, world.maxs, goodcontents, badcontents, badsurfaceflags, attempts, maxaboveground, minviewdistance);
1302 void write_recordmarker(entity pl, float tstart, float dt)
1304 GameLogEcho(strcat(":recordset:", ftos(pl.playerid), ":", ftos(dt)));
1306 // also write a marker into demo files for demotc-race-record-extractor to find
1309 strcat("//", strconv(2, 0, 0, GetGametype()), " RECORD SET ", TIME_ENCODED_TOSTRING(TIME_ENCODE(dt))),
1310 " ", ftos(tstart), " ", ftos(dt), "\n"));
1313 void attach_sameorigin(entity e, entity to, string tag)
1315 vector org, t_forward, t_left, t_up, e_forward, e_up;
1318 org = e.origin - gettaginfo(to, gettagindex(to, tag));
1319 tagscale = (vlen(v_forward) ** -2); // undo a scale on the tag
1320 t_forward = v_forward * tagscale;
1321 t_left = v_right * -tagscale;
1322 t_up = v_up * tagscale;
1324 e.origin_x = org * t_forward;
1325 e.origin_y = org * t_left;
1326 e.origin_z = org * t_up;
1328 // current forward and up directions
1329 if (substring(e.model, 0, 1) == "*") // bmodels have their own rules
1330 e.angles = AnglesTransform_FromVAngles(e.angles);
1332 e.angles = AnglesTransform_FromAngles(e.angles);
1333 fixedmakevectors(e.angles);
1335 // untransform forward, up!
1336 e_forward.x = v_forward * t_forward;
1337 e_forward.y = v_forward * t_left;
1338 e_forward.z = v_forward * t_up;
1339 e_up.x = v_up * t_forward;
1340 e_up.y = v_up * t_left;
1341 e_up.z = v_up * t_up;
1343 e.angles = fixedvectoangles2(e_forward, e_up);
1344 if (substring(e.model, 0, 1) == "*") // bmodels have their own rules
1345 e.angles = AnglesTransform_ToVAngles(e.angles);
1347 e.angles = AnglesTransform_ToAngles(e.angles);
1349 setattachment(e, to, tag);
1350 setorigin(e, e.origin);
1353 void detach_sameorigin(entity e)
1356 org = gettaginfo(e, 0);
1357 e.angles = fixedvectoangles2(v_forward, v_up);
1358 if (substring(e.model, 0, 1) == "*") // bmodels have their own rules
1359 e.angles = AnglesTransform_ToVAngles(e.angles);
1361 e.angles = AnglesTransform_ToAngles(e.angles);
1363 setattachment(e, NULL, "");
1364 setorigin(e, e.origin);
1367 void follow_sameorigin(entity e, entity to)
1369 set_movetype(e, MOVETYPE_FOLLOW); // make the hole follow
1370 e.aiment = to; // make the hole follow bmodel
1371 e.punchangle = to.angles; // the original angles of bmodel
1372 e.view_ofs = e.origin - to.origin; // relative origin
1373 e.v_angle = e.angles - to.angles; // relative angles
1376 void unfollow_sameorigin(entity e)
1378 set_movetype(e, MOVETYPE_NONE);
1381 entity gettaginfo_relative_ent;
1382 vector gettaginfo_relative(entity e, float tag)
1384 if (!gettaginfo_relative_ent)
1386 gettaginfo_relative_ent = spawn();
1387 gettaginfo_relative_ent.effects = EF_NODRAW;
1389 gettaginfo_relative_ent.model = e.model;
1390 gettaginfo_relative_ent.modelindex = e.modelindex;
1391 gettaginfo_relative_ent.frame = e.frame;
1392 return gettaginfo(gettaginfo_relative_ent, tag);
1395 .string aiment_classname;
1396 .float aiment_deadflag;
1397 void SetMovetypeFollow(entity ent, entity e)
1399 // FIXME this may not be warpzone aware
1400 set_movetype(ent, MOVETYPE_FOLLOW); // make the hole follow
1401 ent.solid = SOLID_NOT; // MOVETYPE_FOLLOW is always non-solid - this means this cannot be teleported by warpzones any more! Instead, we must notice when our owner gets teleported.
1402 ent.aiment = e; // make the hole follow bmodel
1403 ent.punchangle = e.angles; // the original angles of bmodel
1404 ent.view_ofs = ent.origin - e.origin; // relative origin
1405 ent.v_angle = ent.angles - e.angles; // relative angles
1406 ent.aiment_classname = strzone(e.classname);
1407 ent.aiment_deadflag = e.deadflag;
1409 void UnsetMovetypeFollow(entity ent)
1411 set_movetype(ent, MOVETYPE_FLY);
1412 PROJECTILE_MAKETRIGGER(ent);
1415 float LostMovetypeFollow(entity ent)
1418 if(ent.move_movetype != MOVETYPE_FOLLOW)
1424 if(ent.aiment.classname != ent.aiment_classname)
1426 if(ent.aiment.deadflag != ent.aiment_deadflag)
1433 bool isPushable(entity e)
1449 case "bullet": // antilagged bullets can't hit this either
1452 if (e.projectiledeathtype)