]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/g_damage.qh
a99846c734f7dd916d3b54ecc5b8b597425a1371
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / g_damage.qh
1 #pragma once
2
3 #if defined(CSQC)
4 #elif defined(MENUQC)
5 #elif defined(SVQC)
6     #include <server/defs.qh>
7     #include <server/miscfunctions.qh>
8     #include <lib/warpzone/common.qh>
9     #include <common/constants.qh>
10     #include <common/teams.qh>
11     #include <common/util.qh>
12     #include <common/weapons/_all.qh>
13     #include "weapons/accuracy.qh"
14     #include "weapons/csqcprojectile.qh"
15     #include "weapons/selection.qh"
16     #include <common/t_items.qh>
17     #include "autocvars.qh"
18     #include "constants.qh"
19     #include "defs.qh"
20     #include <common/notifications/all.qh>
21     #include <common/deathtypes/all.qh>
22     #include <server/mutators/_mod.qh>
23     #include <common/turrets/sv_turrets.qh>
24     #include <common/vehicles/all.qh>
25     #include <lib/csqcmodel/sv_model.qh>
26     #include <common/playerstats.qh>
27     #include "g_hook.qh"
28     #include "scores.qh"
29     #include "spawnpoints.qh"
30 #endif
31
32 .float dmg;
33 .float dmg_edge;
34 .float dmg_force;
35 .float dmg_radius;
36
37 bool Damage_DamageInfo_SendEntity(entity this, entity to, int sf);
38
39 void Damage_DamageInfo(vector org, float coredamage, float edgedamage, float rad, vector force, int deathtype, float bloodtype, entity dmgowner);
40
41 float checkrules_firstblood;
42
43 float yoda;
44 float damage_goodhits;
45 float damage_gooddamage;
46
47 .float dmg_team;
48 .float teamkill_complain;
49 .float teamkill_soundtime;
50 .entity teamkill_soundsource;
51 .entity pusher;
52 .bool istypefrag;
53 .float taunt_soundtime;
54
55 float IsFlying(entity a);
56
57 void UpdateFrags(entity player, int f);
58
59 // NOTE: f=0 means still count as a (positive) kill, but count no frags for it
60 void W_SwitchWeapon_Force(Player this, Weapon w, .entity weaponentity);
61 void GiveFrags (entity attacker, entity targ, float f, int deathtype, .entity weaponentity);
62
63 string AppendItemcodes(string s, entity player);
64
65 void LogDeath(string mode, int deathtype, entity killer, entity killed);
66
67 void Obituary_SpecialDeath(
68         entity notif_target,
69         float murder,
70         int deathtype,
71         string s1, string s2, string s3,
72         float f1, float f2, float f3);
73
74 float w_deathtype;
75 float Obituary_WeaponDeath(
76         entity notif_target,
77         float murder,
78         int deathtype,
79         string s1, string s2, string s3,
80         float f1, float f2);
81
82 void Obituary(entity attacker, entity inflictor, entity targ, int deathtype, .entity weaponentity);
83
84 void Ice_Think(entity this);
85
86 void Freeze(entity targ, float freeze_time, int frozen_type, bool show_waypoint);
87
88 void Unfreeze(entity targ, bool reset_health);
89
90 // NOTE: the .weaponentity parameter can be set to DMG_NOWEP if the attack wasn't caused by a weapon or player
91 void Damage (entity targ, entity inflictor, entity attacker, float damage, int deathtype, .entity weaponentity, vector hitloc, vector force);
92
93 float RadiusDamage_running;
94 float RadiusDamageForSource (entity inflictor, vector inflictororigin, vector inflictorvelocity, entity attacker, float coredamage, float edgedamage, float rad, entity cantbe, entity mustbe, float inflictorselfdamage, float forceintensity, float forcezscale, int deathtype, .entity weaponentity, entity directhitentity);
95         // Returns total damage applies to creatures
96
97 float RadiusDamage (entity inflictor, entity attacker, float coredamage, float edgedamage, float rad, entity cantbe, entity mustbe, float forceintensity, int deathtype, .entity weaponentity, entity directhitentity);
98
99 // Calls .event_heal on the target so that they can handle healing themselves
100 // a limit of RES_LIMIT_NONE should be handled by the entity as its max health (if applicable)
101 bool Heal(entity targ, entity inflictor, float amount, float limit);
102
103 .float fire_damagepersec;
104 .float fire_endtime;
105 .float fire_deathtype;
106 .entity fire_owner;
107 .float fire_hitsound;
108 .entity fire_burner;
109
110 void fireburner_think(entity this);
111
112 float Fire_IsBurning(entity e);
113
114 float Fire_AddDamage(entity e, entity o, float d, float t, float dt);
115
116 void Fire_ApplyDamage(entity e);
117
118 void Fire_ApplyEffect(entity e);