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 RESOURCE_SHELLS: ammoitems = ITEM_Shells.m_name; break;
222 case RESOURCE_BULLETS: ammoitems = ITEM_Bullets.m_name; break;
223 case RESOURCE_ROCKETS: ammoitems = ITEM_Rockets.m_name; break;
224 case RESOURCE_CELLS: ammoitems = ITEM_Cells.m_name; break;
225 case RESOURCE_PLASMA: ammoitems = ITEM_Plasma.m_name; break;
226 case RESOURCE_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(GetResourceAmount(this, RESOURCE_ARMOR))); break;
284 case "h": replacement = ftos(floor(GetResourceAmount(this, RESOURCE_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");
420 * @param f -1: cleanup, 0: request, 1: receive
422 void GetCvars(entity this, entity store, int f)
424 string s = string_null;
427 s = strcat1(argv(f));
431 MUTATOR_CALLHOOK(GetCvars);
433 Notification_GetCvars(this);
435 ReplicateVars(this, store, s, f);
437 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriority, "cl_weaponpriority", W_FixWeaponOrder_ForceComplete_AndBuildImpulseList);
438 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[0], "cl_weaponpriority0", W_FixWeaponOrder_AllowIncomplete);
439 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[1], "cl_weaponpriority1", W_FixWeaponOrder_AllowIncomplete);
440 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[2], "cl_weaponpriority2", W_FixWeaponOrder_AllowIncomplete);
441 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[3], "cl_weaponpriority3", W_FixWeaponOrder_AllowIncomplete);
442 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[4], "cl_weaponpriority4", W_FixWeaponOrder_AllowIncomplete);
443 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[5], "cl_weaponpriority5", W_FixWeaponOrder_AllowIncomplete);
444 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[6], "cl_weaponpriority6", W_FixWeaponOrder_AllowIncomplete);
445 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[7], "cl_weaponpriority7", W_FixWeaponOrder_AllowIncomplete);
446 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[8], "cl_weaponpriority8", W_FixWeaponOrder_AllowIncomplete);
447 GetCvars_handleString_Fixup(this, store, s, f, cvar_cl_weaponpriorities[9], "cl_weaponpriority9", W_FixWeaponOrder_AllowIncomplete);
449 GetCvars_handleFloat(this, store, s, f, cvar_cl_allow_uidtracking, "cl_allow_uidtracking");
451 // fixup of switchweapon (needed for LMS or when spectating is disabled, as PutClientInServer comes too early)
454 if (s == "cl_weaponpriority")
456 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
458 .entity weaponentity = weaponentities[slot];
459 if (this.(weaponentity) && (this.(weaponentity).m_weapon != WEP_Null || slot == 0))
460 this.(weaponentity).m_switchweapon = w_getbestweapon(this, weaponentity);
463 if (s == "cl_allow_uidtracking")
464 PlayerStats_GameReport_AddPlayer(this);
468 // decolorizes and team colors the player name when needed
469 string playername(entity p, bool team_colorize)
472 if (team_colorize && teamplay && !intermission_running && IS_PLAYER(p))
474 t = Team_ColorCode(p.team);
475 return strcat(t, strdecolorize(p.netname));
481 float want_weapon(entity weaponinfo, float allguns) // WEAPONTODO: what still needs done?
483 int i = weaponinfo.m_id;
485 bool allow_mutatorblocked = false;
490 bool mutator_returnvalue = MUTATOR_CALLHOOK(WantWeapon, weaponinfo, d, allguns, allow_mutatorblocked);
491 d = M_ARGV(1, float);
492 allguns = M_ARGV(2, bool);
493 allow_mutatorblocked = M_ARGV(3, bool);
497 if(weaponinfo.spawnflags & WEP_FLAG_NORMAL)
502 else if(!mutator_returnvalue)
503 d = !(!weaponinfo.weaponstart);
505 if(!allow_mutatorblocked && (weaponinfo.spawnflags & WEP_FLAG_MUTATORBLOCKED)) // never default mutator blocked guns
508 float t = weaponinfo.weaponstartoverride;
510 //print(strcat("want_weapon: ", weaponinfo.netname, " - d: ", ftos(d), ", t: ", ftos(t), ". \n"));
515 // 4: is set by default?
524 void readplayerstartcvars()
529 // initialize starting values for players
530 start_weapons = '0 0 0';
531 start_weapons_default = '0 0 0';
532 start_weapons_defaultmask = '0 0 0';
534 start_ammo_shells = 0;
535 start_ammo_nails = 0;
536 start_ammo_rockets = 0;
537 start_ammo_cells = 0;
538 start_ammo_plasma = 0;
539 if (random_start_ammo == NULL)
541 random_start_ammo = spawn();
543 start_health = cvar("g_balance_health_start");
544 start_armorvalue = cvar("g_balance_armor_start");
547 g_weaponarena_weapons = '0 0 0';
549 s = cvar_string("g_weaponarena");
551 MUTATOR_CALLHOOK(SetWeaponArena, s);
552 s = M_ARGV(0, string);
554 if (s == "0" || s == "")
560 // forcibly turn off weaponarena
562 else if (s == "all" || s == "1")
565 g_weaponarena_list = "All Weapons";
566 FOREACH(Weapons, it != WEP_Null, {
567 if(!(it.spawnflags & WEP_FLAG_MUTATORBLOCKED))
568 g_weaponarena_weapons |= (it.m_wepset);
571 else if (s == "devall")
574 g_weaponarena_list = "All Weapons"; // TODO: report as more than just all weapons?
575 FOREACH(Weapons, it != WEP_Null,
577 g_weaponarena_weapons |= (it.m_wepset);
580 else if (s == "most")
583 g_weaponarena_list = "Most Weapons";
584 FOREACH(Weapons, it != WEP_Null, {
585 if(!(it.spawnflags & WEP_FLAG_MUTATORBLOCKED))
586 if(it.spawnflags & WEP_FLAG_NORMAL)
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 FOREACH(Weapons, it != WEP_Null, {
606 g_weaponarena_weapons |= (it.m_wepset);
607 g_weaponarena_list = strcat(g_weaponarena_list, it.m_name, " & ");
612 g_weaponarena_list = strzone(substring(g_weaponarena_list, 0, strlen(g_weaponarena_list) - 3));
617 g_weapon_stay = 0; // incompatible
618 start_weapons = g_weaponarena_weapons;
619 start_items |= IT_UNLIMITED_AMMO;
623 FOREACH(Weapons, it != WEP_Null, {
624 int w = want_weapon(it, false);
625 WepSet s = it.m_wepset;
629 start_weapons_default |= s;
631 start_weapons_defaultmask |= s;
635 if(!cvar("g_use_ammunition"))
636 start_items |= IT_UNLIMITED_AMMO;
638 if(start_items & IT_UNLIMITED_WEAPON_AMMO)
640 start_ammo_shells = 999;
641 start_ammo_nails = 999;
642 start_ammo_rockets = 999;
643 start_ammo_cells = 999;
644 start_ammo_plasma = 999;
645 start_ammo_fuel = 999;
649 start_ammo_shells = cvar("g_start_ammo_shells");
650 start_ammo_nails = cvar("g_start_ammo_nails");
651 start_ammo_rockets = cvar("g_start_ammo_rockets");
652 start_ammo_cells = cvar("g_start_ammo_cells");
653 start_ammo_plasma = cvar("g_start_ammo_plasma");
654 start_ammo_fuel = cvar("g_start_ammo_fuel");
655 random_start_weapons_count = cvar("g_random_start_weapons_count");
656 SetResourceAmount(random_start_ammo, RESOURCE_SHELLS, cvar(
657 "g_random_start_shells"));
658 SetResourceAmount(random_start_ammo, RESOURCE_BULLETS, cvar(
659 "g_random_start_bullets"));
660 SetResourceAmount(random_start_ammo, RESOURCE_ROCKETS,
661 cvar("g_random_start_rockets"));
662 SetResourceAmount(random_start_ammo, RESOURCE_CELLS, cvar(
663 "g_random_start_cells"));
664 SetResourceAmount(random_start_ammo, RESOURCE_PLASMA, cvar(
665 "g_random_start_plasma"));
670 warmup_start_ammo_shells = start_ammo_shells;
671 warmup_start_ammo_nails = start_ammo_nails;
672 warmup_start_ammo_rockets = start_ammo_rockets;
673 warmup_start_ammo_cells = start_ammo_cells;
674 warmup_start_ammo_plasma = start_ammo_plasma;
675 warmup_start_ammo_fuel = start_ammo_fuel;
676 warmup_start_health = start_health;
677 warmup_start_armorvalue = start_armorvalue;
678 warmup_start_weapons = start_weapons;
679 warmup_start_weapons_default = start_weapons_default;
680 warmup_start_weapons_defaultmask = start_weapons_defaultmask;
682 if (!g_weaponarena && !g_ca && !g_freezetag)
684 warmup_start_ammo_shells = cvar("g_warmup_start_ammo_shells");
685 warmup_start_ammo_nails = cvar("g_warmup_start_ammo_nails");
686 warmup_start_ammo_rockets = cvar("g_warmup_start_ammo_rockets");
687 warmup_start_ammo_cells = cvar("g_warmup_start_ammo_cells");
688 warmup_start_ammo_plasma = cvar("g_warmup_start_ammo_plasma");
689 warmup_start_ammo_fuel = cvar("g_warmup_start_ammo_fuel");
690 warmup_start_health = cvar("g_warmup_start_health");
691 warmup_start_armorvalue = cvar("g_warmup_start_armor");
692 warmup_start_weapons = '0 0 0';
693 warmup_start_weapons_default = '0 0 0';
694 warmup_start_weapons_defaultmask = '0 0 0';
695 FOREACH(Weapons, it != WEP_Null, {
696 int w = want_weapon(it, g_warmup_allguns);
697 WepSet s = (it.m_wepset);
699 warmup_start_weapons |= s;
701 warmup_start_weapons_default |= s;
703 warmup_start_weapons_defaultmask |= s;
709 start_items |= ITEM_Jetpack.m_itemid;
711 MUTATOR_CALLHOOK(SetStartItems);
713 if (start_items & ITEM_Jetpack.m_itemid)
715 start_items |= ITEM_JetpackRegen.m_itemid;
716 start_ammo_fuel = max(start_ammo_fuel, cvar("g_balance_fuel_rotstable"));
717 warmup_start_ammo_fuel = max(warmup_start_ammo_fuel, cvar("g_balance_fuel_rotstable"));
720 WepSet precache_weapons = start_weapons;
721 if (g_warmup_allguns != 1)
722 precache_weapons |= warmup_start_weapons;
723 FOREACH(Weapons, it != WEP_Null, {
724 if(precache_weapons & (it.m_wepset))
728 start_ammo_shells = max(0, start_ammo_shells);
729 start_ammo_nails = max(0, start_ammo_nails);
730 start_ammo_rockets = max(0, start_ammo_rockets);
731 start_ammo_cells = max(0, start_ammo_cells);
732 start_ammo_plasma = max(0, start_ammo_plasma);
733 start_ammo_fuel = max(0, start_ammo_fuel);
734 SetResourceAmount(random_start_ammo, RESOURCE_SHELLS, max(0,
735 GetResourceAmount(random_start_ammo, RESOURCE_SHELLS)));
736 SetResourceAmount(random_start_ammo, RESOURCE_BULLETS, max(0,
737 GetResourceAmount(random_start_ammo, RESOURCE_BULLETS)));
738 SetResourceAmount(random_start_ammo, RESOURCE_ROCKETS, max(0,
739 GetResourceAmount(random_start_ammo, RESOURCE_ROCKETS)));
740 SetResourceAmount(random_start_ammo, RESOURCE_CELLS, max(0,
741 GetResourceAmount(random_start_ammo, RESOURCE_CELLS)));
742 SetResourceAmount(random_start_ammo, RESOURCE_PLASMA, max(0,
743 GetResourceAmount(random_start_ammo, RESOURCE_PLASMA)));
745 warmup_start_ammo_shells = max(0, warmup_start_ammo_shells);
746 warmup_start_ammo_nails = max(0, warmup_start_ammo_nails);
747 warmup_start_ammo_rockets = max(0, warmup_start_ammo_rockets);
748 warmup_start_ammo_cells = max(0, warmup_start_ammo_cells);
749 warmup_start_ammo_plasma = max(0, warmup_start_ammo_plasma);
750 warmup_start_ammo_fuel = max(0, warmup_start_ammo_fuel);
753 void precache_playermodel(string m)
755 float globhandle, i, n;
758 if(substring(m, -9,5) == "_lod1")
760 if(substring(m, -9,5) == "_lod2")
763 f = strcat(substring(m, 0, -5), "_lod1", substring(m, -4, -1));
766 f = strcat(substring(m, 0, -5), "_lod2", substring(m, -4, -1));
770 globhandle = search_begin(strcat(m, "_*.sounds"), true, false);
773 n = search_getsize(globhandle);
774 for (i = 0; i < n; ++i)
776 //print(search_getfilename(globhandle, i), "\n");
777 f = search_getfilename(globhandle, i);
778 PrecachePlayerSounds(f);
780 search_end(globhandle);
782 void precache_all_playermodels(string pattern)
784 int globhandle = search_begin(pattern, true, false);
785 if (globhandle < 0) return;
786 int n = search_getsize(globhandle);
787 for (int i = 0; i < n; ++i)
789 string s = search_getfilename(globhandle, i);
790 precache_playermodel(s);
792 search_end(globhandle);
795 void precache_playermodels(string s)
797 FOREACH_WORD(s, true, { precache_playermodel(it); });
802 // gamemode related things
804 // Precache all player models if desired
805 if (autocvar_sv_precacheplayermodels)
807 PrecachePlayerSounds("sound/player/default.sounds");
808 precache_all_playermodels("models/player/*.zym");
809 precache_all_playermodels("models/player/*.dpm");
810 precache_all_playermodels("models/player/*.md3");
811 precache_all_playermodels("models/player/*.psk");
812 precache_all_playermodels("models/player/*.iqm");
815 if (autocvar_sv_defaultcharacter)
817 precache_playermodels(autocvar_sv_defaultplayermodel_red);
818 precache_playermodels(autocvar_sv_defaultplayermodel_blue);
819 precache_playermodels(autocvar_sv_defaultplayermodel_yellow);
820 precache_playermodels(autocvar_sv_defaultplayermodel_pink);
821 precache_playermodels(autocvar_sv_defaultplayermodel);
825 // Disabled this code because it simply does not work (e.g. ignores bgmvolume, overlaps with "cd loop" controlled tracks).
827 if (!this.noise && this.music) // quake 3 uses the music field
828 this.noise = this.music;
830 // plays music for the level if there is any
833 precache_sound (this.noise);
834 ambientsound ('0 0 0', this.noise, VOL_BASE, ATTEN_NONE);
840 void make_safe_for_remove(entity e)
842 if (e.initialize_entity)
844 entity ent, prev = NULL;
845 for (ent = initialize_entity_first; ent; )
847 if ((ent == e) || ((ent.classname == "initialize_entity") && (ent.enemy == e)))
849 //print("make_safe_for_remove: getting rid of initializer ", etos(ent), "\n");
850 // skip it in linked list
853 prev.initialize_entity_next = ent.initialize_entity_next;
854 ent = prev.initialize_entity_next;
858 initialize_entity_first = ent.initialize_entity_next;
859 ent = initialize_entity_first;
865 ent = ent.initialize_entity_next;
871 .float remove_except_protected_forbidden;
872 void remove_except_protected(entity e)
874 if(e.remove_except_protected_forbidden)
875 error("not allowed to remove this at this point");
879 void remove_unsafely(entity e)
881 if(e.classname == "spike")
882 error("Removing spikes is forbidden (crylink bug), please report");
886 void remove_safely(entity e)
888 make_safe_for_remove(e);
892 void InitializeEntity(entity e, void(entity this) func, float order)
896 if (!e || e.initialize_entity)
898 // make a proxy initializer entity
900 e = new(initialize_entity);
904 e.initialize_entity = func;
905 e.initialize_entity_order = order;
907 cur = initialize_entity_first;
911 if (!cur || cur.initialize_entity_order > order)
913 // insert between prev and cur
915 prev.initialize_entity_next = e;
917 initialize_entity_first = e;
918 e.initialize_entity_next = cur;
922 cur = cur.initialize_entity_next;
925 void InitializeEntitiesRun()
927 entity startoflist = initialize_entity_first;
928 initialize_entity_first = NULL;
929 delete_fn = remove_except_protected;
930 for (entity e = startoflist; e; e = e.initialize_entity_next)
932 e.remove_except_protected_forbidden = 1;
934 for (entity e = startoflist; e; )
936 e.remove_except_protected_forbidden = 0;
937 e.initialize_entity_order = 0;
938 entity next = e.initialize_entity_next;
939 e.initialize_entity_next = NULL;
940 var void(entity this) func = e.initialize_entity;
941 e.initialize_entity = func_null;
942 if (e.classname == "initialize_entity")
944 entity wrappee = e.enemy;
948 //dprint("Delayed initialization: ", e.classname, "\n");
956 backtrace(strcat("Null function in: ", e.classname, "\n"));
960 delete_fn = remove_unsafely;
963 .float(entity) isEliminated;
964 bool EliminatedPlayers_SendEntity(entity this, entity to, float sendflags)
966 Stream out = MSG_ENTITY;
967 WriteHeader(out, ENT_CLIENT_ELIMINATEDPLAYERS);
968 serialize(byte, out, sendflags);
970 for (int i = 1; i <= maxclients; i += 8) {
972 entity e = edict_num(i);
973 for (int b = 0; b < 8; ++b, e = nextent(e)) {
974 if (eliminatedPlayers.isEliminated(e)) {
978 serialize(byte, out, f);
984 void EliminatedPlayers_Init(float(entity) isEliminated_func)
986 if(eliminatedPlayers)
988 backtrace("Can't spawn eliminatedPlayers again!");
991 Net_LinkEntity(eliminatedPlayers = spawn(), false, 0, EliminatedPlayers_SendEntity);
992 eliminatedPlayers.isEliminated = isEliminated_func;
998 void adaptor_think2use_hittype_splash(entity this) // for timed projectile detonation
1000 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
1001 this.projectiledeathtype |= HITTYPE_SPLASH;
1002 adaptor_think2use(this);
1005 // deferred dropping
1006 void DropToFloor_Handler(entity this)
1008 WITHSELF(this, builtin_droptofloor());
1009 this.dropped_origin = this.origin;
1012 void droptofloor(entity this)
1014 InitializeEntity(this, DropToFloor_Handler, INITPRIO_DROPTOFLOOR);
1019 float trace_hits_box_a0, trace_hits_box_a1;
1021 float trace_hits_box_1d(float end, float thmi, float thma)
1025 // just check if x is in range
1033 // do the trace with respect to x
1034 // 0 -> end has to stay in thmi -> thma
1035 trace_hits_box_a0 = max(trace_hits_box_a0, min(thmi / end, thma / end));
1036 trace_hits_box_a1 = min(trace_hits_box_a1, max(thmi / end, thma / end));
1037 if (trace_hits_box_a0 > trace_hits_box_a1)
1043 float trace_hits_box(vector start, vector end, vector thmi, vector thma)
1048 // now it is a trace from 0 to end
1050 trace_hits_box_a0 = 0;
1051 trace_hits_box_a1 = 1;
1053 if (!trace_hits_box_1d(end.x, thmi.x, thma.x))
1055 if (!trace_hits_box_1d(end.y, thmi.y, thma.y))
1057 if (!trace_hits_box_1d(end.z, thmi.z, thma.z))
1063 float tracebox_hits_box(vector start, vector mi, vector ma, vector end, vector thmi, vector thma)
1065 return trace_hits_box(start, end, thmi - ma, thma - mi);
1068 bool SUB_NoImpactCheck(entity this, entity toucher)
1070 // zero hitcontents = this is not the real impact, but either the
1071 // mirror-impact of something hitting the projectile instead of the
1072 // projectile hitting the something, or a touchareagrid one. Neither of
1073 // these stop the projectile from moving, so...
1074 if(trace_dphitcontents == 0)
1076 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);
1077 checkclient(this); // TODO: .health is checked in the engine with this, possibly replace with a QC function?
1079 if (trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT)
1081 if (toucher == NULL && this.size != '0 0 0')
1084 tic = this.velocity * sys_frametime;
1085 tic = tic + normalize(tic) * vlen(this.maxs - this.mins);
1086 traceline(this.origin - tic, this.origin + tic, MOVE_NORMAL, this);
1087 if (trace_fraction >= 1)
1089 LOG_TRACE("Odd... did not hit...?");
1091 else if (trace_dphitq3surfaceflags & Q3SURFACEFLAG_NOIMPACT)
1093 LOG_TRACE("Detected and prevented the sky-grapple bug.");
1101 #define SUB_OwnerCheck(ent,oth) ((oth) && ((oth) == (ent).owner))
1103 bool WarpZone_Projectile_Touch_ImpactFilter_Callback(entity this, entity toucher)
1105 if(SUB_OwnerCheck(this, toucher))
1107 if(SUB_NoImpactCheck(this, toucher))
1109 if(this.classname == "nade")
1110 return false; // no checks here
1111 else if(this.classname == "grapplinghook")
1113 else if(this.classname == "spike")
1115 W_Crylink_Dequeue(this);
1122 if(trace_ent && trace_ent.solid > SOLID_TRIGGER)
1123 UpdateCSQCProjectile(this);
1127 /** engine callback */
1128 void URI_Get_Callback(float id, float status, string data)
1130 if(url_URI_Get_Callback(id, status, data))
1134 else if (id == URI_GET_DISCARD)
1138 else if (id >= URI_GET_CURL && id <= URI_GET_CURL_END)
1141 Curl_URI_Get_Callback(id, status, data);
1143 else if (id >= URI_GET_IPBAN && id <= URI_GET_IPBAN_END)
1146 OnlineBanList_URI_Get_Callback(id, status, data);
1148 else if (MUTATOR_CALLHOOK(URI_GetCallback, id, status, data))
1150 // handled by a mutator
1154 LOG_INFO("Received HTTP request data for an invalid id ", ftos(id), ".");
1158 string uid2name(string myuid) {
1160 s = db_get(ServerProgsDB, strcat("/uid2name/", myuid));
1162 // FIXME remove this later after 0.6 release
1163 // convert old style broken records to correct style
1166 s = db_get(ServerProgsDB, strcat("uid2name", myuid));
1169 db_put(ServerProgsDB, strcat("/uid2name/", myuid), s);
1170 db_remove(ServerProgsDB, strcat("uid2name", myuid));
1175 s = "^1Unregistered Player";
1179 float MoveToRandomLocationWithinBounds(entity e, vector boundmin, vector boundmax, float goodcontents, float badcontents, float badsurfaceflags, float attempts, float maxaboveground, float minviewdistance)
1182 vector start, org, delta, end, enddown, mstart;
1184 m = e.dphitcontentsmask;
1185 e.dphitcontentsmask = goodcontents | badcontents;
1188 delta = boundmax - boundmin;
1192 for (i = 0; i < attempts; ++i)
1194 start.x = org.x + random() * delta.x;
1195 start.y = org.y + random() * delta.y;
1196 start.z = org.z + random() * delta.z;
1198 // rule 1: start inside world bounds, and outside
1199 // solid, and don't start from somewhere where you can
1200 // fall down to evil
1201 tracebox(start, e.mins, e.maxs, start - '0 0 1' * delta.z, MOVE_NORMAL, e);
1202 if (trace_fraction >= 1)
1204 if (trace_startsolid)
1206 if (trace_dphitcontents & badcontents)
1208 if (trace_dphitq3surfaceflags & badsurfaceflags)
1211 // rule 2: if we are too high, lower the point
1212 if (trace_fraction * delta.z > maxaboveground)
1213 start = trace_endpos + '0 0 1' * maxaboveground;
1214 enddown = trace_endpos;
1216 // rule 3: make sure we aren't outside the map. This only works
1217 // for somewhat well formed maps. A good rule of thumb is that
1218 // the map should have a convex outside hull.
1219 // these can be traceLINES as we already verified the starting box
1220 mstart = start + 0.5 * (e.mins + e.maxs);
1221 traceline(mstart, mstart + '1 0 0' * delta.x, MOVE_NORMAL, e);
1222 if (trace_fraction >= 1 || trace_dphittexturename == "common/caulk")
1224 traceline(mstart, mstart - '1 0 0' * delta.x, MOVE_NORMAL, e);
1225 if (trace_fraction >= 1 || trace_dphittexturename == "common/caulk")
1227 traceline(mstart, mstart + '0 1 0' * delta.y, MOVE_NORMAL, e);
1228 if (trace_fraction >= 1 || trace_dphittexturename == "common/caulk")
1230 traceline(mstart, mstart - '0 1 0' * delta.y, MOVE_NORMAL, e);
1231 if (trace_fraction >= 1 || trace_dphittexturename == "common/caulk")
1233 traceline(mstart, mstart + '0 0 1' * delta.z, MOVE_NORMAL, e);
1234 if (trace_fraction >= 1 || trace_dphittexturename == "common/caulk")
1237 // rule 4: we must "see" some spawnpoint or item
1239 IL_EACH(g_spawnpoints, checkpvs(mstart, it),
1241 if((traceline(mstart, it.origin, MOVE_NORMAL, e), trace_fraction) >= 1)
1249 int items_checked = 0;
1250 IL_EACH(g_items, checkpvs(mstart, it),
1252 if((traceline(mstart, it.origin + (it.mins + it.maxs) * 0.5, MOVE_NORMAL, e), trace_fraction) >= 1)
1259 if(items_checked >= attempts)
1267 // find a random vector to "look at"
1268 end.x = org.x + random() * delta.x;
1269 end.y = org.y + random() * delta.y;
1270 end.z = org.z + random() * delta.z;
1271 end = start + normalize(end - start) * vlen(delta);
1273 // rule 4: start TO end must not be too short
1274 tracebox(start, e.mins, e.maxs, end, MOVE_NORMAL, e);
1275 if (trace_startsolid)
1277 if (trace_fraction < minviewdistance / vlen(delta))
1280 // rule 5: don't want to look at sky
1281 if (trace_dphitq3surfaceflags & Q3SURFACEFLAG_SKY)
1284 // rule 6: we must not end up in trigger_hurt
1285 if (tracebox_hits_trigger_hurt(start, e.mins, e.maxs, enddown))
1291 e.dphitcontentsmask = m;
1295 setorigin(e, start);
1296 e.angles = vectoangles(end - start);
1297 LOG_DEBUG("Needed ", ftos(i + 1), " attempts");
1304 float MoveToRandomMapLocation(entity e, float goodcontents, float badcontents, float badsurfaceflags, float attempts, float maxaboveground, float minviewdistance)
1306 return MoveToRandomLocationWithinBounds(e, world.mins, world.maxs, goodcontents, badcontents, badsurfaceflags, attempts, maxaboveground, minviewdistance);
1309 void write_recordmarker(entity pl, float tstart, float dt)
1311 GameLogEcho(strcat(":recordset:", ftos(pl.playerid), ":", ftos(dt)));
1313 // also write a marker into demo files for demotc-race-record-extractor to find
1316 strcat("//", strconv(2, 0, 0, GetGametype()), " RECORD SET ", TIME_ENCODED_TOSTRING(TIME_ENCODE(dt))),
1317 " ", ftos(tstart), " ", ftos(dt), "\n"));
1320 void attach_sameorigin(entity e, entity to, string tag)
1322 vector org, t_forward, t_left, t_up, e_forward, e_up;
1325 org = e.origin - gettaginfo(to, gettagindex(to, tag));
1326 tagscale = (vlen(v_forward) ** -2); // undo a scale on the tag
1327 t_forward = v_forward * tagscale;
1328 t_left = v_right * -tagscale;
1329 t_up = v_up * tagscale;
1331 e.origin_x = org * t_forward;
1332 e.origin_y = org * t_left;
1333 e.origin_z = org * t_up;
1335 // current forward and up directions
1336 if (substring(e.model, 0, 1) == "*") // bmodels have their own rules
1337 e.angles = AnglesTransform_FromVAngles(e.angles);
1339 e.angles = AnglesTransform_FromAngles(e.angles);
1340 fixedmakevectors(e.angles);
1342 // untransform forward, up!
1343 e_forward.x = v_forward * t_forward;
1344 e_forward.y = v_forward * t_left;
1345 e_forward.z = v_forward * t_up;
1346 e_up.x = v_up * t_forward;
1347 e_up.y = v_up * t_left;
1348 e_up.z = v_up * t_up;
1350 e.angles = fixedvectoangles2(e_forward, e_up);
1351 if (substring(e.model, 0, 1) == "*") // bmodels have their own rules
1352 e.angles = AnglesTransform_ToVAngles(e.angles);
1354 e.angles = AnglesTransform_ToAngles(e.angles);
1356 setattachment(e, to, tag);
1357 setorigin(e, e.origin);
1360 void detach_sameorigin(entity e)
1363 org = gettaginfo(e, 0);
1364 e.angles = fixedvectoangles2(v_forward, v_up);
1365 if (substring(e.model, 0, 1) == "*") // bmodels have their own rules
1366 e.angles = AnglesTransform_ToVAngles(e.angles);
1368 e.angles = AnglesTransform_ToAngles(e.angles);
1370 setattachment(e, NULL, "");
1371 setorigin(e, e.origin);
1374 void follow_sameorigin(entity e, entity to)
1376 set_movetype(e, MOVETYPE_FOLLOW); // make the hole follow
1377 e.aiment = to; // make the hole follow bmodel
1378 e.punchangle = to.angles; // the original angles of bmodel
1379 e.view_ofs = e.origin - to.origin; // relative origin
1380 e.v_angle = e.angles - to.angles; // relative angles
1383 void unfollow_sameorigin(entity e)
1385 set_movetype(e, MOVETYPE_NONE);
1388 entity gettaginfo_relative_ent;
1389 vector gettaginfo_relative(entity e, float tag)
1391 if (!gettaginfo_relative_ent)
1393 gettaginfo_relative_ent = spawn();
1394 gettaginfo_relative_ent.effects = EF_NODRAW;
1396 gettaginfo_relative_ent.model = e.model;
1397 gettaginfo_relative_ent.modelindex = e.modelindex;
1398 gettaginfo_relative_ent.frame = e.frame;
1399 return gettaginfo(gettaginfo_relative_ent, tag);
1402 .string aiment_classname;
1403 .float aiment_deadflag;
1404 void SetMovetypeFollow(entity ent, entity e)
1406 // FIXME this may not be warpzone aware
1407 set_movetype(ent, MOVETYPE_FOLLOW); // make the hole follow
1408 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.
1409 ent.aiment = e; // make the hole follow bmodel
1410 ent.punchangle = e.angles; // the original angles of bmodel
1411 ent.view_ofs = ent.origin - e.origin; // relative origin
1412 ent.v_angle = ent.angles - e.angles; // relative angles
1413 ent.aiment_classname = strzone(e.classname);
1414 ent.aiment_deadflag = e.deadflag;
1416 void UnsetMovetypeFollow(entity ent)
1418 set_movetype(ent, MOVETYPE_FLY);
1419 PROJECTILE_MAKETRIGGER(ent);
1422 float LostMovetypeFollow(entity ent)
1425 if(ent.move_movetype != MOVETYPE_FOLLOW)
1431 if(ent.aiment.classname != ent.aiment_classname)
1433 if(ent.aiment.deadflag != ent.aiment_deadflag)
1440 bool isPushable(entity e)
1456 case "bullet": // antilagged bullets can't hit this either
1459 if (e.projectiledeathtype)