X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fserver%2Fdefs.qh;h=8cdb562f5b140cd52c471ef34ff6706743ccc63e;hp=52153fcd7edeedaf2b7c3aec557103786fcca343;hb=acddeee8ad8acd0099fdd25d5049e302d6246f24;hpb=530e29e1a8395e12b8b8b44ac1030a84546eb903 diff --git a/qcsrc/server/defs.qh b/qcsrc/server/defs.qh index 52153fcd7e..8cdb562f5b 100644 --- a/qcsrc/server/defs.qh +++ b/qcsrc/server/defs.qh @@ -47,8 +47,6 @@ float server_is_dedicated; .float pain_frame; //" .float crouch; // Crouching or not? -.float strength_finished = _STAT(STRENGTH_FINISHED); -.float invincible_finished = _STAT(INVINCIBLE_FINISHED); .float superweapons_finished = _STAT(SUPERWEAPONS_FINISHED); .float cnt; // used in too many places @@ -88,7 +86,7 @@ const float MAX_DAMAGEEXTRARADIUS = 16; .float dmg; // for railgun damage (hitting multiple enemies) -.float railgunhit; +.bool railgunhit; .float railgunhitsolidbackup; .vector railgunhitloc; @@ -96,7 +94,7 @@ const float MAX_DAMAGEEXTRARADIUS = 16; .float dmgtime; .float killcount; -.float damage_dealt, typehitsound; +.float damage_dealt, typehitsound, killsound; .float watersound_finished; .float iscreature; @@ -116,7 +114,7 @@ const float MAX_DAMAGEEXTRARADIUS = 16; // WEAPONTODO .float autoswitch; -bool client_hasweapon(entity this, Weapon wpn, float andammo, bool complain); +bool client_hasweapon(entity this, Weapon wpn, .entity weaponentity, float andammo, bool complain); void w_clear(Weapon thiswep, entity actor, .entity weaponentity, int fire); void w_ready(Weapon thiswep, entity actor, .entity weaponentity, int fire); // VorteX: standalone think for weapons, so normal think on weaponentity can be reserved by weaponflashes (which needs update even player dies) @@ -129,7 +127,6 @@ const int W_TICSPERFRAME = 2; void weapon_defaultspawnfunc(entity this, Weapon e); -float gameover; float intermission_running; float intermission_exittime; float alreadychangedlevel; @@ -209,7 +206,7 @@ float bot_waypoints_for_items; #else #define ATTACK_FINISHED_FOR(ent, w, slot) ((ent).attack_finished_single[slot]) #endif -#define ATTACK_FINISHED(ent, slot) ATTACK_FINISHED_FOR(ent, PS(ent).m_weapon.m_id, slot) +#define ATTACK_FINISHED(ent, slot) ATTACK_FINISHED_FOR(ent, ent.(weaponentity).m_weapon.m_id, slot) // assault game mode: Which team is attacking in this round? float assault_attacker_team; @@ -223,9 +220,9 @@ float TemporaryDB; .float team_saved; -float some_spawn_has_been_used; -float have_team_spawns; // 0 = no team spawns requested, -1 = team spawns requested but none found, 1 = team spawns requested and found -float have_team_spawns_forteam[17]; // 0 = this team has no spawns, 1 = this team has spawns; team 0 is the "no-team" +bool some_spawn_has_been_used; +int have_team_spawns; // 0 = no team spawns requested, -1 = team spawns requested but none found, 1 = team spawns requested and found +int have_team_spawns_forteams; // if Xth bit is 1 then team X has spawns else it has no spawns; team 0 is the "no-team" // set when showing a kill countdown .entity killindicator; @@ -320,6 +317,7 @@ string matchid; .float hit_time = _STAT(HIT_TIME); .float typehit_time = _STAT(TYPEHIT_TIME); +.float kill_time = _STAT(KILL_TIME); .float damage_dealt_total = _STAT(DAMAGE_DEALT_TOTAL); @@ -340,6 +338,9 @@ float client_cefc_accumulatortime; .float vortex_charge = _STAT(VORTEX_CHARGE); .float vortex_charge_rottime; .float vortex_chargepool_ammo = _STAT(VORTEX_CHARGEPOOL); +.float okvortex_charge = _STAT(OVERKILL_VORTEX_CHARGE); +.float okvortex_charge_rottime; +.float okvortex_chargepool_ammo = _STAT(OVERKILL_VORTEX_CHARGEPOOL); .float hagar_load = _STAT(HAGAR_LOAD); .int grab; // 0 = can't grab, 1 = owner can grab, 2 = owner and team mates can grab, 3 = anyone can grab @@ -378,7 +379,6 @@ const float ACTIVE_TOGGLE = 3; .float team_forced; // can be a team number to force a team, or 0 for default action, or -1 for forced spectator .float player_blocked; -.float weapon_blocked; // weapon use disabled .float revive_progress = _STAT(REVIVE_PROGRESS); .float revival_time; // time at which player was last revived @@ -421,6 +421,8 @@ const int MIF_GUIDED_CONFUSABLE = MIF_GUIDED_HEAT | MIF_GUIDED_AI; .void(entity this, entity player) init_for_player; +.WepSet dual_weapons; + IntrusiveList g_monsters; STATIC_INIT(g_monsters) { g_monsters = IL_NEW(); } @@ -468,3 +470,21 @@ STATIC_INIT(g_bot_dodge) { g_bot_dodge = IL_NEW(); } IntrusiveList g_damagedbycontents; STATIC_INIT(g_damagedbycontents) { g_damagedbycontents = IL_NEW(); } + +IntrusiveList g_railgunhit; +STATIC_INIT(g_railgunhit) { g_railgunhit = IL_NEW(); } + +IntrusiveList g_ladders; +STATIC_INIT(g_ladders) { g_ladders = IL_NEW(); } + +IntrusiveList g_locations; +STATIC_INIT(g_locations) { g_locations = IL_NEW(); } + +IntrusiveList g_saved_team; +STATIC_INIT(g_saved_team) { g_saved_team = IL_NEW(); } + +IntrusiveList g_monster_targets; +STATIC_INIT(g_monster_targets) { g_monster_targets = IL_NEW(); } + +IntrusiveList g_pathlib_nodes; +STATIC_INIT(g_pathlib_nodes) { g_pathlib_nodes = IL_NEW(); }