]> de.git.xonotic.org Git - voretournament/voretournament.git/blob - data/qcsrc/server/g_damage.qc
Don't allow one grabber firing button to block the other off
[voretournament/voretournament.git] / data / qcsrc / server / g_damage.qc
1 .float dmg;\r
2 .float dmg_edge;\r
3 .float dmg_force;\r
4 .float dmg_radius;\r
5 \r
6 float Damage_DamageInfo_SendEntity(entity to, float sf)\r
7 {\r
8         WriteByte(MSG_ENTITY, ENT_CLIENT_DAMAGEINFO);\r
9         WriteShort(MSG_ENTITY, self.projectiledeathtype);\r
10         WriteCoord(MSG_ENTITY, floor(self.origin_x));\r
11         WriteCoord(MSG_ENTITY, floor(self.origin_y));\r
12         WriteCoord(MSG_ENTITY, floor(self.origin_z));\r
13         WriteByte(MSG_ENTITY, bound(1, self.dmg, 255));\r
14         WriteByte(MSG_ENTITY, bound(0, self.dmg_radius, 255));\r
15         WriteByte(MSG_ENTITY, bound(1, self.dmg_edge, 255));\r
16         WriteShort(MSG_ENTITY, self.oldorigin_x);\r
17         return TRUE;\r
18 }\r
19 \r
20 void Damage_DamageInfo(vector org, float coredamage, float edgedamage, float rad, vector force, float deathtype, entity dmgowner)\r
21 {\r
22         // TODO maybe call this from non-edgedamage too?\r
23         // TODO maybe make the client do the particle effects for the weapons and the impact sounds using this info?\r
24 \r
25         entity e;\r
26 \r
27         if(!sound_allowed(MSG_BROADCAST, dmgowner))\r
28                 deathtype |= 0x8000;\r
29 \r
30         e = spawn();\r
31         setorigin(e, org);\r
32         e.projectiledeathtype = deathtype;\r
33         e.dmg = coredamage;\r
34         e.dmg_edge = edgedamage;\r
35         e.dmg_radius = rad;\r
36         e.dmg_force = vlen(force);\r
37         e.velocity = force;\r
38 \r
39         e.oldorigin_x = compressShortVector(e.velocity);\r
40 \r
41         Net_LinkEntity(e, FALSE, 0.2, Damage_DamageInfo_SendEntity);\r
42 }\r
43 \r
44 #define DAMAGE_CENTERPRINT_SPACER NEWLINES\r
45 \r
46 float checkrules_firstblood;\r
47 \r
48 float yoda;\r
49 float damage_goodhits;\r
50 float damage_gooddamage;\r
51 float headshot;\r
52 float damage_headshotbonus; // bonus multiplier for head shots, set to 0 after use\r
53 \r
54 .float dmg_team;\r
55 .float teamkill_complain;\r
56 .float teamkill_soundtime;\r
57 .entity teamkill_soundsource;\r
58 .entity pusher;\r
59 \r
60 .float taunt_soundtime;\r
61 .float taunt_soundtype;\r
62 \r
63 void SetAutoTaunt(entity e, float t_soundtime, float t_soundtype)\r
64 {\r
65         e.taunt_soundtime = t_soundtime;\r
66         e.taunt_soundtype = t_soundtype;\r
67 }\r
68 \r
69 float IsDifferentTeam(entity a, entity b)\r
70 {\r
71         if(teams_matter)\r
72         {\r
73                 if(a.team == b.team)\r
74                         return 0;\r
75         }\r
76         else\r
77         {\r
78                 if(a == b)\r
79                         return 0;\r
80         }\r
81         return 1;\r
82 }\r
83 \r
84 float IsFlying(entity a)\r
85 {\r
86         if(a.flags & FL_ONGROUND)\r
87                 return 0;\r
88         if(a.waterlevel >= WATERLEVEL_SWIMMING)\r
89                 return 0;\r
90         traceline(a.origin, a.origin - '0 0 48', MOVE_NORMAL, a);\r
91         if(trace_fraction < 1)\r
92                 return 0;\r
93         return 1;\r
94 }\r
95 \r
96 void UpdateFrags(entity player, float f)\r
97 {\r
98         PlayerTeamScore_AddScore(player, f);\r
99 }\r
100 \r
101 // NOTE: f=0 means still count as a (positive) kill, but count no frags for it\r
102 void W_SwitchWeapon_Force(entity e, float w);\r
103 void GiveFrags (entity attacker, entity targ, float f)\r
104 {\r
105         // TODO route through PlayerScores instead\r
106         if(gameover) return;\r
107 \r
108         if(f < 0)\r
109         {\r
110                 if(targ == attacker)\r
111                 {\r
112                         // suicide\r
113                         PlayerScore_Add(attacker, SP_SUICIDES, 1);\r
114                 }\r
115                 else\r
116                 {\r
117                         // teamkill\r
118                         PlayerScore_Add(attacker, SP_KILLS, -1); // or maybe add a teamkills field?\r
119                 }\r
120         }\r
121         else\r
122         {\r
123                 // regular frag\r
124                 PlayerScore_Add(attacker, SP_KILLS, 1);\r
125         }\r
126 \r
127         PlayerScore_Add(targ, SP_DEATHS, 1);\r
128 \r
129         if(g_arena || g_ca)\r
130                 if(cvar("g_arena_roundbased"))\r
131                         return;\r
132 \r
133         // FIXME fix the mess this is (we have REAL points now!)\r
134         if(g_keyhunt)\r
135         {\r
136                 f = kh_HandleFrags(attacker, targ, f);\r
137         }\r
138         else if(g_lms)\r
139         {\r
140                 // remove a life\r
141                 float tl;\r
142                 tl = PlayerScore_Add(targ, SP_LMS_LIVES, -1);\r
143                 if(tl < lms_lowest_lives)\r
144                         lms_lowest_lives = tl;\r
145                 if(tl <= 0)\r
146                 {\r
147                         if(!lms_next_place)\r
148                                 lms_next_place = player_count;\r
149                         PlayerScore_Add(targ, SP_LMS_RANK, lms_next_place); // won't ever spawn again\r
150                         --lms_next_place;\r
151                 }\r
152                 f = 0;\r
153         }\r
154         else if(g_ctf)\r
155         {\r
156                 if(g_ctf_ignore_frags)\r
157                         f = 0;\r
158         }\r
159 \r
160         attacker.totalfrags += f;\r
161 \r
162         if(f)\r
163                 UpdateFrags(attacker, f);\r
164 }\r
165 \r
166 string AppendItemcodes(string s, entity player)\r
167 {\r
168         float w;\r
169         w = player.weapon;\r
170         //if(w == 0)\r
171         //      w = player.switchweapon;\r
172         if(w == 0)\r
173                 w = player.cnt; // previous weapon!\r
174         s = strcat(s, ftos(w));\r
175         if(time < player.strength_finished)\r
176                 s = strcat(s, "S");\r
177         if(time < player.invincible_finished)\r
178                 s = strcat(s, "I");\r
179         if(player.flagcarried != world)\r
180                 s = strcat(s, "F");\r
181         if(player.BUTTON_CHAT)\r
182                 s = strcat(s, "T");\r
183         if(player.kh_next)\r
184                 s = strcat(s, "K");\r
185         return s;\r
186 }\r
187 \r
188 void LogDeath(string mode, float deathtype, entity killer, entity killed)\r
189 {\r
190         string s;\r
191         if(!cvar("sv_eventlog"))\r
192                 return;\r
193         s = strcat(":kill:", mode);\r
194         s = strcat(s, ":", ftos(killer.playerid));\r
195         s = strcat(s, ":", ftos(killed.playerid));\r
196         s = strcat(s, ":type=", ftos(deathtype));\r
197         s = strcat(s, ":items=");\r
198         s = AppendItemcodes(s, killer);\r
199         if(killed != killer)\r
200         {\r
201                 s = strcat(s, ":victimitems=");\r
202                 s = AppendItemcodes(s, killed);\r
203         }\r
204         GameLogEcho(s);\r
205 }\r
206 \r
207 void Obituary (entity attacker, entity inflictor, entity targ, float deathtype)\r
208 {\r
209         string  s, a;\r
210         float p, w;\r
211 \r
212         if (targ.classname == "player" || targ.classname == "corpse")\r
213         {\r
214                 if (targ.classname == "corpse")\r
215                         s = "A corpse";\r
216                 else\r
217                         s = targ.netname;\r
218 \r
219                 a = attacker.netname;\r
220 \r
221                 if (targ == attacker)\r
222                 {\r
223                         if (deathtype == DEATH_TEAMCHANGE) {\r
224                                 centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, "You are now on: ", ColoredTeamName(targ.team)));\r
225                         } else if (deathtype == DEATH_AUTOTEAMCHANGE) {\r
226                                 centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, "You have been moved into a different team to improve team balance\nYou are now on: ", ColoredTeamName(targ.team)));\r
227                                 return;\r
228                         } else if (deathtype == DEATH_CAMP) {\r
229                                 if(sv_gentle)\r
230                                         centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, "^1Reconsider your tactics, camper!"));\r
231                                 else\r
232                                         centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, "^1Die camper!"));\r
233                         } else if (deathtype == DEATH_NOAMMO) {\r
234                                 if(sv_gentle)\r
235                                         centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, "^1You are reinserted into the game for running out of ammo..."));\r
236                                 else\r
237                                         centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, "^1You were killed for running out of ammo..."));\r
238                         } else if (deathtype == DEATH_ROT) {\r
239                                 if(sv_gentle)\r
240                                         centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, "^1You need to preserve your health"));\r
241                                 else\r
242                                         centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, "^1You grew too old without taking your medicine"));\r
243                         } else if (deathtype == DEATH_MIRRORDAMAGE) {\r
244                                 if(sv_gentle)\r
245                                         centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, "^1Don't go against team mates!"));\r
246                                 else\r
247                                         centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, "^1Don't shoot your team mates!"));\r
248                         } else if (deathtype == DEATH_QUIET) {\r
249                                 // do nothing\r
250                         } else {\r
251                                 if(sv_gentle)\r
252                                         centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, "^1You need to be more careful!"));\r
253                                 else\r
254                                         centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, "^1You killed your own dumb self!"));\r
255                         }\r
256                         if(sv_gentle) {\r
257                                 if (deathtype == DEATH_CAMP)\r
258                                         bprint ("^1",s, "^1 thought they found a nice camping ground\n");\r
259                                 else if (deathtype == DEATH_MIRRORDAMAGE)\r
260                                         bprint ("^1",s, "^1 didn't become friends with the Lord of Teamplay\n");\r
261                                 else\r
262                                         bprint ("^1",s, "^1 will be reinserted into the game due to their own actions\n");\r
263 \r
264                                 if(deathtype != DEATH_TEAMCHANGE && deathtype != DEATH_QUIET)\r
265                                 {\r
266                                         LogDeath("suicide", deathtype, targ, targ);\r
267                                         GiveFrags(attacker, targ, -1);\r
268                                 }\r
269                                 if (targ.killcount > 2)\r
270                                         bprint ("^1",s,"^1 faded after a ",ftos(targ.killcount)," point spree\n");\r
271                         } else {\r
272                                 w = DEATH_WEAPONOF(deathtype);\r
273                                 if(WEP_VALID(w))\r
274                                 {\r
275                                         w_deathtypestring = "couldn't resist the urge to self-destruct";\r
276                                         w_deathtype = deathtype;\r
277                                         weapon_action(w, WR_SUICIDEMESSAGE);\r
278                                         bprint("^1", s, "^1 ", w_deathtypestring, "\n");\r
279                                 }\r
280                                 else if (deathtype == DEATH_KILL)\r
281                                         bprint ("^1",s, "^1 couldn't take it anymore\n");\r
282                                 else if (deathtype == DEATH_ROT)\r
283                                         bprint ("^1",s, "^1 died\n");\r
284                                 else if (deathtype == DEATH_NOAMMO)\r
285                                         bprint ("^7",s, "^7 committed suicide. What's the point of living without ammo?\n");\r
286                                 else if (deathtype == DEATH_CAMP)\r
287                                         bprint ("^1",s, "^1 thought they found a nice camping ground\n");\r
288                                 else if (deathtype == DEATH_MIRRORDAMAGE)\r
289                                         bprint ("^1",s, "^1 didn't become friends with the Lord of Teamplay\n");\r
290                                 else if (deathtype == DEATH_CHEAT)\r
291                                         bprint ("^1",s, "^1 unfairly eliminated themself\n");\r
292                                 else if (deathtype == DEATH_FIRE)\r
293                                         bprint ("^1",s, "^1 burned to death\n");\r
294                                 else if (deathtype == DEATH_DIGESTION)\r
295                                         bprint ("^1",s, "^1 was digested\n");\r
296                                 else if (deathtype == DEATH_STOMACHKICK)\r
297                                         bprint ("^1",s, "^1 was ripped apart from the inside\n");\r
298                                 else if (deathtype != DEATH_TEAMCHANGE && deathtype != DEATH_QUIET)\r
299                                         bprint ("^1",s, "^1 couldn't resist the urge to self-destruct\n");\r
300 \r
301                                 if(deathtype != DEATH_TEAMCHANGE && deathtype != DEATH_QUIET)\r
302                                 {\r
303                                         LogDeath("suicide", deathtype, targ, targ);\r
304                                         GiveFrags(attacker, targ, -1);\r
305                                 }\r
306                                 if (targ.killcount > 2)\r
307                                         bprint ("^1",s,"^1 ended it all after a ",ftos(targ.killcount)," kill spree\n");\r
308                         }\r
309                 }\r
310                 else if (attacker.classname == "player" || attacker.classname == "gib")\r
311                 {\r
312                         if(teams_matter && attacker.team == targ.team)\r
313                         {\r
314                                 if (deathtype == DEATH_DIGESTION)\r
315                                 {\r
316                                         if(sv_gentle) {\r
317                                                 centerprint(attacker, strcat(DAMAGE_CENTERPRINT_SPACER, "^1Furfag! You made a meal out of a team mate!"));\r
318                                                 bprint ("^1", a, "^1 took action against a team mate\n");\r
319                                         } else {\r
320                                                 centerprint(attacker, strcat(DAMAGE_CENTERPRINT_SPACER, "^1Furfag! You ate ", s, ", a team mate!"));\r
321                                                 bprint ("^1", a, "^1 mows down a team mate\n");\r
322                                         }\r
323                                 }\r
324                                 else\r
325                                 {\r
326                                         if(sv_gentle) {\r
327                                                 centerprint(attacker, strcat(DAMAGE_CENTERPRINT_SPACER, "^1Furfag! You went against a team mate!"));\r
328                                                 bprint ("^1", a, "^1 took action against a team mate\n");\r
329                                         } else {\r
330                                                 centerprint(attacker, strcat(DAMAGE_CENTERPRINT_SPACER, "^1Furfag! You killed ", s, ", a team mate!"));\r
331                                                 bprint ("^1", a, "^1 murders a team mate\n");\r
332                                         }\r
333                                 }\r
334                                 GiveFrags(attacker, targ, -1);\r
335                                 if (targ.killcount > 2) {\r
336                                         if(sv_gentle)\r
337                                                 bprint ("^1",s,"'s ^1",ftos(targ.killcount)," scoring spree was ended by a team mate!\n");\r
338                                         else\r
339                                                 bprint ("^1",s,"'s ^1",ftos(targ.killcount)," kill spree was ended by a team mate!\n");\r
340                                 }\r
341                                 if (attacker.killcount > 2) {\r
342                                         if(sv_gentle)\r
343                                                 bprint ("^1",a,"^1 ended a ",ftos(attacker.killcount)," scoring spree by going against a team mate\n");\r
344                                         else\r
345                                                 bprint ("^1",a,"^1 ended a ",ftos(attacker.killcount)," kill spree by killing a team mate\n");\r
346                                 }\r
347                                 attacker.killcount = 0;\r
348 \r
349                                 LogDeath("tk", deathtype, attacker, targ);\r
350                         }\r
351                         else\r
352                         {\r
353                                 string blood_message, victim_message;\r
354                                 if (!checkrules_firstblood)\r
355                                 {\r
356                                         checkrules_firstblood = TRUE;\r
357                                         if(sv_gentle)\r
358                                         {\r
359                                                 bprint("^1",a, "^1 was the first to score", "\n");\r
360                                                 blood_message = "^1First point\n";\r
361                                                 //victim_message = "^1First victim\n";  // or First casualty\r
362                                         }\r
363                                         else\r
364                                         {\r
365                                                 bprint("^1",a, "^1 drew first blood", "\n");\r
366                                                 blood_message = "^1First blood\n";\r
367                                                 victim_message = "^1First victim\n";  // or First casualty\r
368                                         }\r
369                                 }\r
370                                 if (deathtype == DEATH_DIGESTION)\r
371                                 {\r
372                                         if(sv_gentle > 0) {\r
373                                                 centerprint(attacker, strcat(DAMAGE_CENTERPRINT_SPACER, blood_message, "^4You made ^7", s, GetAdvancedDeathReports(targ), " ^4your meal"));\r
374                                                 centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, a,"^1 made you their meal ^7", GetAdvancedDeathReports(attacker)));\r
375                                         } else {\r
376                                                 if((cvar("sv_fragmessage_information_typefrag")) && (targ.BUTTON_CHAT)) {\r
377                                                         centerprint(attacker, strcat(DAMAGE_CENTERPRINT_SPACER, blood_message, "^1You type-ate ^7", s, GetAdvancedDeathReports(targ)));\r
378                                                         centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, victim_message, "^1You were type-eaten by ^7", a, GetAdvancedDeathReports(attacker)));\r
379                                                 } else {\r
380                                                         centerprint(attacker, strcat(DAMAGE_CENTERPRINT_SPACER, blood_message, "^4You ate ^7", s, GetAdvancedDeathReports(targ)));\r
381                                                         centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, victim_message, "^1You were eaten by ^7", a, GetAdvancedDeathReports(attacker)));\r
382                                                 }\r
383                                                 SetAutoTaunt(attacker, time + 1, TAUNTTYPE_DEATH);\r
384                                         }\r
385                                 }\r
386                                 else\r
387                                 {\r
388                                         if(sv_gentle > 0) {\r
389                                                 centerprint(attacker, strcat(DAMAGE_CENTERPRINT_SPACER, blood_message, "^4You scored against ^7", s, GetAdvancedDeathReports(targ)));\r
390                                                 centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, a,"^1 scored against you ^7", GetAdvancedDeathReports(attacker)));\r
391                                         } else {\r
392                                                 if((cvar("sv_fragmessage_information_typefrag")) && (targ.BUTTON_CHAT)) {\r
393                                                         centerprint(attacker, strcat(DAMAGE_CENTERPRINT_SPACER, blood_message, "^1You type-ate ^7", s, GetAdvancedDeathReports(targ)));\r
394                                                         centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, victim_message, "^1You were type-eaten by ^7", a, GetAdvancedDeathReports(attacker)));\r
395                                                 } else {\r
396                                                         centerprint(attacker, strcat(DAMAGE_CENTERPRINT_SPACER, blood_message, "^4You killed ^7", s, GetAdvancedDeathReports(targ)));\r
397                                                         centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, victim_message, "^1You were killed by ^7", a, GetAdvancedDeathReports(attacker)));\r
398                                                 }\r
399                                                 SetAutoTaunt(attacker, time + 1, TAUNTTYPE_DEATH);\r
400                                         }\r
401                                 }\r
402 \r
403                                 if(sv_gentle) {\r
404                                         bprint ("^1",s, "^1 needs a restart thanks to ", a, "\n");\r
405                                 } else {\r
406                                         w = DEATH_WEAPONOF(deathtype);\r
407                                         if(WEP_VALID(w))\r
408                                         {\r
409                                                 w_deathtypestring = "was blasted by";\r
410                                                 w_deathtype = deathtype;\r
411                                                 weapon_action(w, WR_KILLMESSAGE);\r
412                                                 p = strstrofs(w_deathtypestring, "#", 0);\r
413                                                 if(p < 0)\r
414                                                         bprint("^1", s, "^1 ", w_deathtypestring, " ", a, "\n");\r
415                                                 else\r
416                                                         bprint("^1", s, "^1 ", substring(w_deathtypestring, 0, p), a, "^1", substring(w_deathtypestring, p+1, strlen(w_deathtypestring) - (p+1)), "\n");\r
417                                         }\r
418                                         else if (deathtype == DEATH_TELEFRAG)\r
419                                                 bprint ("^1",s, "^1 was telefragged by ", a, "\n");\r
420                                         else if (deathtype == DEATH_DROWN)\r
421                                                 bprint ("^1",s, "^1 was drowned by ", a, "\n");\r
422                                         else if (deathtype == DEATH_SLIME)\r
423                                                 bprint ("^1",s, "^1 was slimed by ", a, "\n");\r
424                                         else if (deathtype == DEATH_LAVA)\r
425                                                 bprint ("^1",s, "^1 was cooked by ", a, "\n");\r
426                                         else if (deathtype == DEATH_FALL)\r
427                                                 bprint ("^1",s, "^1 was grounded by ", a, "\n");\r
428                                         else if (deathtype == DEATH_SHOOTING_STAR)\r
429                                                 bprint ("^1",s, "^1 was shot into space by ", a, "\n");\r
430                                         else if (deathtype == DEATH_SWAMP)\r
431                                                 bprint ("^1",s, "^1 was conserved by ", a, "\n");\r
432                                         else if (deathtype == DEATH_HURTTRIGGER && inflictor.message2 != "")\r
433                                         {\r
434                                                 p = strstrofs(inflictor.message2, "#", 0);\r
435                                                 if(p < 0)\r
436                                                         bprint("^1", s, "^1 ", inflictor.message2, " ", a, "\n");\r
437                                                 else\r
438                                                         bprint("^1", s, "^1 ", substring(inflictor.message2, 0, p), a, "^1", substring(inflictor.message2, p+1, strlen(inflictor.message2) - (p+1)), "\n");\r
439                                         }\r
440                                         else if(deathtype == DEATH_SBCRUSH)\r
441                         bprint ("^1",s, "^1 was crushed by ^1", a, "\n");\r
442                                         else if(deathtype == DEATH_SBMINIGUN)\r
443                         bprint ("^1",s, "^1 got shredded by ^1", a, "\n");\r
444                                         else if(deathtype == DEATH_SBROCKET)\r
445                         bprint ("^1",s, "^1 was blased to bits by ^1", a, "\n");\r
446                                         else if(deathtype == DEATH_SBBLOWUP)\r
447                         bprint ("^1",s, "^1 got cought in the destruction of ^1", a, "'s vehicle\n");\r
448 \r
449                                         else if(deathtype == DEATH_WAKIGUN)\r
450                         bprint ("^1",s, "^1 was bolted down by ^1", a, "\n");\r
451                                         else if(deathtype == DEATH_WAKIROCKET)\r
452                         bprint ("^1",s, "^1 could find no shelter from ^1", a, "'s rockets\n");\r
453                                         else if(deathtype == DEATH_WAKIBLOWUP)\r
454                         bprint ("^1",s, "^1 dies when ^1", a, "'s wakizashi dies.\n");\r
455 \r
456                                         else if(deathtype == DEATH_TURRET)\r
457                                                 bprint ("^1",s, "^1 was pushed into the line of fire by ^1", a, "\n");\r
458                                         else if(deathtype == DEATH_TOUCHEXPLODE)\r
459                                                 bprint ("^1",s, "^1 was pushed into an accident by ^1", a, "\n");\r
460                                         else if(deathtype == DEATH_CHEAT)\r
461                                                 bprint ("^1",s, "^1 was unfairly eliminated by ^1", a, "\n");\r
462                                         else if (deathtype == DEATH_FIRE)\r
463                                                 bprint ("^1",s, "^1 was burnt to death by ^1", a, "\n");\r
464                                         else if (deathtype == DEATH_DIGESTION)\r
465                                                 bprint ("^1",s, "^1 was digested by ^1", a, "\n");\r
466                                         else if (deathtype == DEATH_STOMACHKICK)\r
467                                                 bprint ("^1",s, "^1 was ripped apart from the inside by ^1", a, "\n");\r
468                                         else if (deathtype == DEATH_CUSTOM)\r
469                                                 bprint ("^1",s, "^1 ", deathmessage, " by ^1", a, "\n");\r
470                                         else\r
471                                                 bprint ("^1",s, "^1 was fragged by ", a, "\n");\r
472                                 }\r
473 \r
474                                 if(g_ctf && targ.flagcarried)\r
475                                 {\r
476                                         UpdateFrags(attacker, ctf_score_value("score_kill"));\r
477                                         PlayerScore_Add(attacker, SP_CTF_FCKILLS, 1);\r
478                                         GiveFrags(attacker, targ, 0); // for logging\r
479                                 }\r
480                                 else\r
481                                 {\r
482                                         if(cvar("g_vore_reversescoring") && deathtype == DEATH_DIGESTION) // reversed vore scoring\r
483                                                 GiveFrags(targ, attacker, 1);\r
484                                         else\r
485                                                 GiveFrags(attacker, targ, 1);\r
486                                 }\r
487 \r
488                                 if (targ.killcount > 2) {\r
489                                         if(sv_gentle)\r
490                                                 bprint ("^1",s,"'s ^1", ftos(targ.killcount), " scoring spree was ended by ", a, "\n");\r
491                                         else\r
492                                                 bprint ("^1",s,"'s ^1", ftos(targ.killcount), " kill spree was ended by ", a, "\n");\r
493                                 }\r
494 \r
495                                 attacker.killcount = attacker.killcount + 1;\r
496 \r
497                                 if (attacker.killcount > 2) {\r
498                                         if(sv_gentle)\r
499                                                 bprint ("^1",a,"^1 made ",ftos(attacker.killcount)," scores in a row\n");\r
500                                         else\r
501                                                 bprint ("^1",a,"^1 has ",ftos(attacker.killcount)," frags in a row\n");\r
502                                 }\r
503 \r
504                                 LogDeath("frag", deathtype, attacker, targ);\r
505 \r
506                                 if (attacker.killcount == 3)\r
507                                 {\r
508                                         if(sv_gentle) {\r
509                                                 bprint (a,"^7 made a ^1TRIPLE SCORE\n");\r
510                                         } else {\r
511                                                 bprint (a,"^7 made a ^1TRIPLE FRAG\n");\r
512                                                 AnnounceTo(attacker, "03kills");\r
513                                         }\r
514                                 }\r
515                                 else if (attacker.killcount == 5)\r
516                                 {\r
517                                         if(sv_gentle) {\r
518                                                 bprint (a,"^7 unleashes ^1SCORING RAGE\n");\r
519                                         } else {\r
520                                                 bprint (a,"^7 unleashes ^1RAGE\n");\r
521                                                 AnnounceTo(attacker, "05kills");\r
522                                         }\r
523                                 }\r
524                                 else if (attacker.killcount == 10)\r
525                                 {\r
526                                         if(sv_gentle) {\r
527                                                 bprint (a,"^7 made ^1TEN SCORES IN A ROW!\n");\r
528                                         } else {\r
529                                                 bprint (a,"^7 starts the ^1MASSACRE!\n");\r
530                                                 AnnounceTo(attacker, "10kills");\r
531                                         }\r
532                                 }\r
533                                 else if (attacker.killcount == 15)\r
534                                 {\r
535                                         if(sv_gentle) {\r
536                                                 bprint (a,"^7 made ^1FIFTEEN SCORES IN A ROW!\n");\r
537                                         } else {\r
538                                                 bprint (a,"^7 executes ^1MAYHEM!\n");\r
539                                                 AnnounceTo(attacker, "15kills");\r
540                                         }\r
541                                 }\r
542                                 else if (attacker.killcount == 20)\r
543                                 {\r
544                                         if(sv_gentle) {\r
545                                                 bprint (a,"^7 made ^1TWENTY SCORES IN A ROW!\n");\r
546                                         } else {\r
547                                                 bprint (a,"^7 is a ^1BERSERKER!\n");\r
548                                                 AnnounceTo(attacker, "20kills");\r
549                                         }\r
550                                 }\r
551                                 else if (attacker.killcount == 25)\r
552                                 {\r
553                                         if(sv_gentle) {\r
554                                                 bprint (a,"^7 made ^1TWENTY FIFE SCORES IN A ROW!\n");\r
555                                         } else {\r
556                                                 bprint (a,"^7 inflicts ^1CARNAGE!\n");\r
557                                                 AnnounceTo(attacker, "25kills");\r
558                                         }\r
559                                 }\r
560                                 else if (attacker.killcount == 30)\r
561                                 {\r
562                                         if(sv_gentle) {\r
563                                                 bprint (a,"^7 made ^1THIRTY SCORES IN A ROW!\n");\r
564                                         } else {\r
565                                                 bprint (a,"^7 unleashes ^1ARMAGEDDON!\n");\r
566                                                 AnnounceTo(attacker, "30kills");\r
567                                         }\r
568                                 }\r
569                         }\r
570                 }\r
571                 else\r
572                 {\r
573                         centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, "^1Watch your step!"));\r
574                         if (deathtype == DEATH_HURTTRIGGER && inflictor.message != "")\r
575                                 bprint ("^1",s, "^1 ", inflictor.message, "\n");\r
576                         else if (deathtype == DEATH_DROWN)\r
577                                 if(sv_gentle)\r
578                                         bprint ("^1",s, "^1 was in the water for too long\n");\r
579                                 else\r
580                                         bprint ("^1",s, "^1 drowned\n");\r
581                         else if (deathtype == DEATH_SLIME)\r
582                                 bprint ("^1",s, "^1 was slimed\n");\r
583                         else if (deathtype == DEATH_LAVA)\r
584                                 if(sv_gentle)\r
585                                         bprint ("^1",s, "^1 found a hot place\n");\r
586                                 else\r
587                                         bprint ("^1",s, "^1 turned into hot slag\n");\r
588                         else if (deathtype == DEATH_FALL)\r
589                                 if(sv_gentle)\r
590                                         bprint ("^1",s, "^1 tested gravity (and it worked)\n");\r
591                                 else\r
592                                         bprint ("^1",s, "^1 hit the ground with a crunch\n");\r
593                         else if (deathtype == DEATH_SHOOTING_STAR)\r
594                                 bprint ("^1",s, "^1 became a shooting star\n");\r
595                         else if (deathtype == DEATH_SWAMP)\r
596                                 if(sv_gentle)\r
597                                         bprint ("^1",s, "^1 discovered a swamp\n");\r
598                                 else\r
599                                         bprint ("^1",s, "^1 is now conserved for centuries to come\n");\r
600                         else if(deathtype == DEATH_TURRET)\r
601                                 bprint ("^1",s, "^1 was mowed down by a turret \n");\r
602             else if (deathtype == DEATH_CUSTOM)\r
603                 bprint ("^1",s, "^1 ", deathmessage, "\n");\r
604                         else if(deathtype == DEATH_TOUCHEXPLODE)\r
605                                 bprint ("^1",s, "^1 died in an accident\n");\r
606                         else if(deathtype == DEATH_CHEAT)\r
607                                 bprint ("^1",s, "^1 was unfairly eliminated\n");\r
608                         else if(deathtype == DEATH_FIRE)\r
609                                 if(sv_gentle)\r
610                                         bprint ("^1",s, "^1 felt a little hot\n");\r
611                                 else\r
612                                         bprint ("^1",s, "^1 burnt to death\n");\r
613                         else\r
614                                 if(sv_gentle)\r
615                                         bprint ("^1",s, "^1 needs a restart\n");\r
616                                 else\r
617                                         bprint ("^1",s, "^1 died\n");\r
618                         GiveFrags(targ, targ, -1);\r
619                         if(PlayerScore_Add(targ, SP_SCORE, 0) == -5) {\r
620                                 AnnounceTo(targ, "botlike");\r
621                         }\r
622 \r
623                         if (targ.killcount > 2)\r
624                                 if(sv_gentle)\r
625                                         bprint ("^1",s,"^1 needs a restart after a ",ftos(targ.killcount)," scoring spree\n");\r
626                                 else\r
627                                         bprint ("^1",s,"^1 died with a ",ftos(targ.killcount)," kill spree\n");\r
628 \r
629                         LogDeath("accident", deathtype, targ, targ);\r
630                 }\r
631 \r
632                 targ.death_origin = targ.origin;\r
633                 if(targ != attacker)\r
634                         targ.killer_origin = attacker.origin;\r
635 \r
636                 // FIXME: this should go in PutClientInServer\r
637                 if (targ.killcount)\r
638                         targ.killcount = 0;\r
639         }\r
640 }\r
641 \r
642 // these are updated by each Damage call for use in button triggering and such\r
643 entity damage_targ;\r
644 entity damage_inflictor;\r
645 entity damage_attacker;\r
646 \r
647 void Damage (entity targ, entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force)\r
648 {\r
649         float mirrordamage;\r
650         float mirrorforce;\r
651         float teamdamage0;\r
652         entity attacker_save;\r
653         mirrordamage = 0;\r
654         mirrorforce = 0;\r
655 \r
656         if (gameover || targ.killcount == -666)\r
657                 return;\r
658 \r
659         local entity oldself;\r
660         oldself = self;\r
661         self = targ;\r
662         damage_targ = targ;\r
663         damage_inflictor = inflictor;\r
664         damage_attacker = attacker;\r
665                 attacker_save = attacker;\r
666 \r
667         if(targ.classname == "player")\r
668                 if(targ.grabber)\r
669                         if(targ.grabber.aiment)\r
670                                 if(targ.grabber.aiment == attacker)\r
671                                         RemoveGrabber(targ); // STOP THAT, you parasite!\r
672 \r
673         if(deathtype == DEATH_KILL || deathtype == DEATH_TEAMCHANGE || deathtype == DEATH_AUTOTEAMCHANGE || deathtype == DEATH_QUIET)\r
674         {\r
675                 // These are ALWAYS lethal\r
676                 // No damage modification here\r
677                 // Instead, prepare the victim for his death...\r
678                 targ.armorvalue = 0;\r
679                 targ.spawnshieldtime = 0;\r
680                 targ.health = 0.9; // this is < 1\r
681                 targ.flags -= targ.flags & FL_GODMODE;\r
682                 damage = 100000;\r
683         }\r
684         else if(deathtype == DEATH_MIRRORDAMAGE || deathtype == DEATH_NOAMMO)\r
685         {\r
686                 // no processing\r
687         }\r
688         else\r
689         {\r
690                 if (targ.classname == "player")\r
691                 if (attacker.classname == "player")\r
692                 if (!targ.isbot)\r
693                 if (attacker.isbot)\r
694                         damage = damage * bound(0.1, (skill + 5) * 0.1, 1);\r
695 \r
696                 // nullify damage if teamplay is on\r
697                 if(deathtype != DEATH_TELEFRAG)\r
698                 if(attacker.classname == "player")\r
699                 {\r
700                         if(targ.classname == "player" && targ != attacker && (IS_INDEPENDENT_PLAYER(attacker) || IS_INDEPENDENT_PLAYER(targ)))\r
701                         {\r
702                                 damage = 0;\r
703                                 force = '0 0 0';\r
704                         }\r
705                         else if(attacker.team == targ.team)\r
706                         {\r
707                                 if(teamplay == 1)\r
708                                         damage = 0;\r
709                                 else if(attacker != targ)\r
710                                 {\r
711                                         if(teamplay == 3)\r
712                                                 damage = 0;\r
713                                         else if(teamplay == 4)\r
714                                         {\r
715                                                 if(targ.classname == "player" && targ.deadflag == DEAD_NO)\r
716                                                 {\r
717                                                         teamdamage0 = max(attacker.dmg_team, cvar("g_teamdamage_threshold"));\r
718                                                         attacker.dmg_team = attacker.dmg_team + damage;\r
719                                                         if(attacker.dmg_team > teamdamage0 && !g_ca)\r
720                                                                 mirrordamage = cvar("g_mirrordamage") * (attacker.dmg_team - teamdamage0);\r
721                                                         mirrorforce = cvar("g_mirrordamage") * vlen(force);\r
722                                                         if(g_ca)\r
723                                                                 damage = 0;\r
724                                                         else\r
725                                                                 damage = cvar("g_friendlyfire") * damage;\r
726                                                         // mirrordamage will be used LATER\r
727                                                 }\r
728                                                 else\r
729                                                         damage = 0;\r
730                                         }\r
731                                 }\r
732                         }\r
733                 }\r
734 \r
735                 if(targ.classname == "player")\r
736                 if(attacker.classname == "player")\r
737                 if(attacker != targ)\r
738                 {\r
739                         targ.lms_traveled_distance = cvar("g_lms_campcheck_distance");\r
740                         attacker.lms_traveled_distance = cvar("g_lms_campcheck_distance");\r
741                 }\r
742 \r
743                 if not(DEATH_ISSPECIAL(deathtype))\r
744                 {\r
745                         damage *= g_weapondamagefactor;\r
746                         mirrordamage *= g_weapondamagefactor;\r
747                         force = force * g_weaponforcefactor;\r
748                         mirrorforce *= g_weaponforcefactor;\r
749                 }\r
750 \r
751                 // apply strength multiplier\r
752                 if ((attacker.items & IT_STRENGTH))\r
753                 {\r
754                         if(targ == attacker)\r
755                         {\r
756                                 damage = damage * cvar("g_balance_powerup_strength_selfdamage");\r
757                                 force = force * cvar("g_balance_powerup_strength_selfforce");\r
758                         }\r
759                         else\r
760                         {\r
761                                 damage = damage * cvar("g_balance_powerup_strength_damage");\r
762                                 force = force * cvar("g_balance_powerup_strength_force");\r
763                         }\r
764                 }\r
765 \r
766                 // apply invincibility multiplier\r
767                 if (targ.items & IT_INVINCIBLE)\r
768                         damage = damage * cvar("g_balance_powerup_invincible_takedamage");\r
769 \r
770                 if (targ == attacker)\r
771                 {\r
772                         if(g_ca || (g_cts && !cvar("g_cts_selfdamage")))\r
773                                 damage = 0;\r
774                         else\r
775                                 damage = damage * cvar("g_balance_selfdamagepercent");  // Partial damage if the attacker hits himself\r
776                 }\r
777 \r
778                 // CTF: reduce damage/force\r
779                 if(g_ctf)\r
780                 if(targ == attacker)\r
781                 if(targ.flagcarried)\r
782                 {\r
783                         damage = damage * cvar("g_ctf_flagcarrier_selfdamage");\r
784                         force = force * cvar("g_ctf_flagcarrier_selfforce");\r
785                 }\r
786 \r
787                 // count the damage\r
788                 if(attacker)\r
789                 if(!targ.deadflag)\r
790                 if(targ.takedamage == DAMAGE_AIM)\r
791                 if(targ != attacker)\r
792                 {\r
793                         if(targ.classname == "player")\r
794                         {\r
795                                 // HEAD SHOT:\r
796                                 // find height of hit on player axis\r
797                                 // if above view_ofs and below maxs, and also in the middle half of the bbox, it is head shot\r
798                                 vector headmins, headmaxs, org;\r
799                                 org = antilag_takebackorigin(targ, time - ANTILAG_LATENCY(attacker));\r
800                                 headmins = org + '0.6 0 0' * targ.mins_x + '0 0.6 0' * targ.mins_y + '0 0 1' * (1.3 * targ.view_ofs_z - 0.3 * targ.maxs_z);\r
801                                 headmaxs = org + '0.6 0 0' * targ.maxs_x + '0 0.6 0' * targ.maxs_y + '0 0 1' * targ.maxs_z;\r
802                                 if(trace_hits_box(railgun_start, railgun_end, headmins, headmaxs))\r
803                                 {\r
804                                         deathtype |= HITTYPE_HEADSHOT;\r
805                                 }\r
806                         }\r
807                         else if(targ.classname == "turret_head")\r
808                         {\r
809                                 deathtype |= HITTYPE_HEADSHOT;\r
810                         }\r
811                         if(deathtype & HITTYPE_HEADSHOT)\r
812                                 damage *= 1 + damage_headshotbonus;\r
813 \r
814                         if(targ.classname == "player")\r
815                         {\r
816                                 if(IsDifferentTeam(targ, attacker))\r
817                                 {\r
818                                         if(damage > 0)\r
819                                         {\r
820                                                 if(targ.BUTTON_CHAT)\r
821                                                         attacker.typehitsound += 1;\r
822                                                 else\r
823                                                         attacker.hitsound += 1;\r
824 \r
825                                                 damage_goodhits += 1;\r
826                                                 damage_gooddamage += damage;\r
827 \r
828                                                 if not(DEATH_ISSPECIAL(deathtype))\r
829                                                 {\r
830                                                         if(IsFlying(targ))\r
831                                                                 yoda = 1;\r
832 \r
833                                                         if(deathtype & HITTYPE_HEADSHOT)\r
834                                                                 headshot = 1;\r
835                                                 }\r
836                                         }\r
837                                 }\r
838                                 else\r
839                                 {\r
840                                         if(deathtype != DEATH_FIRE)\r
841                                                 attacker.typehitsound += 1;\r
842                                         if(time > attacker.teamkill_complain)\r
843                                         {\r
844                                                 attacker.teamkill_complain = time + 5;\r
845                                                 attacker.teamkill_soundtime = time + 0.4;\r
846                                                 attacker.teamkill_soundsource = targ;\r
847                                         }\r
848                                 }\r
849                         }\r
850                 }\r
851         }\r
852 \r
853         // apply push\r
854         if (self.damageforcescale)\r
855         if (vlen(force))\r
856         if (self.classname != "player" || time >= self.spawnshieldtime || g_midair)\r
857         {\r
858                 self.velocity = self.velocity + self.damageforcescale * force;\r
859                 self.flags &~= FL_ONGROUND;\r
860                 UpdateCSQCProjectile(self);\r
861         }\r
862         // apply damage\r
863         if (damage != 0 || (self.damageforcescale && vlen(force)))\r
864         if (self.event_damage)\r
865                 self.event_damage (inflictor, attacker, damage, deathtype, hitloc, force);\r
866         self = oldself;\r
867 \r
868         if(targ.classname == "player" && attacker.classname == "player" && attacker != targ && attacker.health > 2)\r
869         {\r
870                 // Savage: vampire mode\r
871                 if (g_vampire)\r
872                 if (time >= self.spawnshieldtime)\r
873                 if (deathtype != DEATH_DIGESTION) // a different vampire system is used for this\r
874                 {\r
875                         attacker.health += damage;\r
876                 }\r
877         }\r
878 \r
879         // apply mirror damage if any\r
880         if(mirrordamage > 0 || mirrorforce > 0)\r
881         {\r
882                 attacker = attacker_save;\r
883                 force = normalize(attacker.origin + attacker.view_ofs - hitloc) * mirrorforce;\r
884                 Damage(attacker, inflictor, attacker, mirrordamage, DEATH_MIRRORDAMAGE, attacker.origin, force);\r
885         }\r
886 }\r
887 \r
888 vector NearestPointOnBox(entity box, vector org)\r
889 {\r
890         vector m1, m2, nearest;\r
891 \r
892         m1 = box.mins + box.origin;\r
893         m2 = box.maxs + box.origin;\r
894 \r
895         nearest_x = bound(m1_x, org_x, m2_x);\r
896         nearest_y = bound(m1_y, org_y, m2_y);\r
897         nearest_z = bound(m1_z, org_z, m2_z);\r
898 \r
899         return nearest;\r
900 }\r
901 \r
902 void Damage_RecordDamage(entity attacker, float deathtype, float damage)\r
903 {\r
904         float weaponid;\r
905         weaponid = DEATH_WEAPONOF(deathtype);\r
906 \r
907         if not(inWarmupStage)\r
908         if (weaponid)\r
909         if ((clienttype(attacker) == CLIENTTYPE_REAL) | (clienttype(attacker) == CLIENTTYPE_BOT)) {\r
910                 attacker.stats_hit[weaponid - 1] += damage;\r
911                 attacker.stat_hit = weaponid + 64 * floor(attacker.stats_hit[weaponid - 1]);\r
912         }\r
913 }\r
914 \r
915 float RadiusDamage_running;\r
916 float RadiusDamage (entity inflictor, entity attacker, float coredamage, float edgedamage, float rad, entity ignore, float forceintensity, float deathtype, entity directhitentity)\r
917 // Returns total damage applies to creatures\r
918 {\r
919         entity  targ;\r
920         float   finaldmg;\r
921         float   power;\r
922         vector  blastorigin;\r
923         vector  force;\r
924         vector  diff;\r
925         vector  center;\r
926         vector  nearest;\r
927         float   total_damage_to_creatures;\r
928         entity  next;\r
929         float   tfloordmg;\r
930         float   tfloorforce;\r
931 \r
932         float stat_damagedone;\r
933         float stat_maxdamage;\r
934 \r
935         if(RadiusDamage_running)\r
936         {\r
937                 string save;\r
938                 print("RadiusDamage called recursively!\n");\r
939                 print("Expect stuff to go HORRIBLY wrong.\n");\r
940                 print("Causing a stack trace...\n");\r
941                 save = cvar_string("prvm_backtraceforwarnings");\r
942                 cvar_set("prvm_backtraceforwarnings", "1");\r
943                 fclose(-1); // calls VM_Warning\r
944                 cvar_set("prvm_backtraceforwarnings", save);\r
945                 return 0;\r
946         }\r
947 \r
948         RadiusDamage_running = 1;\r
949 \r
950         tfloordmg = cvar("g_throughfloor_damage");\r
951         tfloorforce = cvar("g_throughfloor_force");\r
952 \r
953         blastorigin = (inflictor.origin + (inflictor.mins + inflictor.maxs) * 0.5);\r
954         total_damage_to_creatures = 0;\r
955 \r
956         if(deathtype != (WEP_GRABBER | HITTYPE_SECONDARY | HITTYPE_BOUNCE))\r
957         {\r
958                 force = inflictor.velocity;\r
959                 if(vlen(force) == 0)\r
960                         force = '0 0 -1';\r
961                 else\r
962                         force = normalize(force);\r
963                 if(forceintensity >= 0)\r
964                         Damage_DamageInfo(blastorigin, coredamage, edgedamage, rad, forceintensity * force, deathtype, attacker);\r
965                 else\r
966                         Damage_DamageInfo(blastorigin, coredamage, edgedamage, -rad, (-forceintensity) * force, deathtype, attacker);\r
967         }\r
968 \r
969         stat_damagedone = 0;\r
970         stat_maxdamage = 0;\r
971 \r
972         targ = WarpZone_FindRadius (blastorigin, rad, FALSE);\r
973         while (targ)\r
974         {\r
975                 next = targ.chain;\r
976                 if (targ != inflictor)\r
977                         if (ignore != targ) if(targ.takedamage)\r
978                         {\r
979                                 // LordHavoc: measure distance to nearest point on target (not origin)\r
980                                 // (this guarentees 100% damage on a touch impact)\r
981                                 nearest = targ.WarpZone_findradius_nearest;\r
982                                 diff = targ.WarpZone_findradius_dist;\r
983                                 // round up a little on the damage to ensure full damage on impacts\r
984                                 // and turn the distance into a fraction of the radius\r
985                                 power = 1 - ((vlen (diff) - 2) / rad);\r
986                                 //bprint(" ");\r
987                                 //bprint(ftos(power));\r
988                                 //if (targ == attacker)\r
989                                 //      print(ftos(power), "\n");\r
990                                 if (power > 0)\r
991                                 {\r
992                                         if (power > 1)\r
993                                                 power = 1;\r
994                                         finaldmg = coredamage * power + edgedamage * (1 - power);\r
995                                         if (finaldmg > 0)\r
996                                         {\r
997                                                 local float a;\r
998                                                 local float c;\r
999                                                 local float hits;\r
1000                                                 local float total;\r
1001                                                 local float hitratio;\r
1002                                                 local vector hitloc;\r
1003                                                 local vector myblastorigin;\r
1004                                                 myblastorigin = WarpZone_TransformOrigin(targ, blastorigin);\r
1005                                                 center = targ.origin + (targ.mins + targ.maxs) * 0.5;\r
1006                                                 // if it's a player, use the view origin as reference\r
1007                                                 if (targ.classname == "player")\r
1008                                                         center = targ.origin + targ.view_ofs;\r
1009                                                 force = normalize(center - myblastorigin);\r
1010                                                 force = force * (finaldmg / coredamage) * forceintensity;\r
1011                                                 // test line of sight to multiple positions on box,\r
1012                                                 // and do damage if any of them hit\r
1013                                                 hits = 0;\r
1014                                                 if (targ.classname == "player")\r
1015                                                         total = ceil(bound(1, finaldmg, 50));\r
1016                                                 else\r
1017                                                         total = ceil(bound(1, finaldmg/10, 5));\r
1018                                                 hitloc = nearest;\r
1019                                                 c = 0;\r
1020                                                 while (c < total)\r
1021                                                 {\r
1022                                                         //traceline(targ.WarpZone_findradius_findorigin, nearest, MOVE_NOMONSTERS, inflictor);\r
1023                                                         WarpZone_TraceLine(blastorigin, WarpZone_UnTransformOrigin(targ, nearest), MOVE_NOMONSTERS, inflictor);\r
1024                                                         if (trace_fraction == 1 || trace_ent == targ)\r
1025                                                         {\r
1026                                                                 hits = hits + 1;\r
1027                                                                 if (hits > 1)\r
1028                                                                         hitloc = hitloc + nearest;\r
1029                                                                 else\r
1030                                                                         hitloc = nearest;\r
1031                                                         }\r
1032                                                         nearest_x = targ.origin_x + targ.mins_x + random() * targ.size_x;\r
1033                                                         nearest_y = targ.origin_y + targ.mins_y + random() * targ.size_y;\r
1034                                                         nearest_z = targ.origin_z + targ.mins_z + random() * targ.size_z;\r
1035                                                         c = c + 1;\r
1036                                                 }\r
1037                                                 nearest = hitloc * (1 / max(1, hits));\r
1038                                                 hitratio = (hits / total);\r
1039                                                 a = bound(0, tfloordmg + (1-tfloordmg) * hitratio, 1);\r
1040                                                 finaldmg = finaldmg * a;\r
1041                                                 a = bound(0, tfloorforce + (1-tfloorforce) * hitratio, 1);\r
1042                                                 force = force * a;\r
1043                                                 //if (targ == attacker)\r
1044                                                 //{\r
1045                                                 //      print("hits ", ftos(hits), " / ", ftos(total));\r
1046                                                 //      print(" finaldmg ", ftos(finaldmg), " force ", vtos(force));\r
1047                                                 //      print(" (", ftos(a), ")\n");\r
1048                                                 //}\r
1049                                                 if(hits || tfloordmg || tfloorforce)\r
1050                                                 {\r
1051                                                         if(targ.iscreature)\r
1052                                                         {\r
1053                                                                 total_damage_to_creatures += finaldmg;\r
1054 \r
1055                                                                 if(targ.flags & FL_CLIENT)\r
1056                                                                 if(targ.deadflag == DEAD_NO)\r
1057                                                                 if(targ != attacker)\r
1058                                                                 if(!teamplay || targ.team != attacker.team)\r
1059                                                                 {\r
1060                                                                         stat_damagedone += finaldmg;\r
1061                                                                         stat_maxdamage += coredamage;\r
1062                                                                 }\r
1063                                                         }\r
1064 \r
1065                                                         if(targ == directhitentity || DEATH_ISSPECIAL(deathtype))\r
1066                                                                 Damage (targ, inflictor, attacker, finaldmg, deathtype, nearest, force);\r
1067                                                         else\r
1068                                                                 Damage (targ, inflictor, attacker, finaldmg, deathtype | HITTYPE_SPLASH, nearest, force);\r
1069                                                 }\r
1070                                         }\r
1071                                 }\r
1072                         }\r
1073                 targ = next;\r
1074         }\r
1075 \r
1076         RadiusDamage_running = 0;\r
1077 \r
1078         Damage_RecordDamage(attacker, deathtype, min(stat_maxdamage, stat_damagedone));\r
1079 \r
1080         return total_damage_to_creatures;\r
1081 }\r
1082 \r
1083 .float fire_damagepersec;\r
1084 .float fire_endtime;\r
1085 .float fire_deathtype;\r
1086 .entity fire_owner;\r
1087 .float fire_hitsound;\r
1088 .entity fire_burner;\r
1089 \r
1090 void fireburner_think();\r
1091 \r
1092 float Fire_IsBurning(entity e)\r
1093 {\r
1094         return (time < e.fire_endtime);\r
1095 }\r
1096 \r
1097 float Fire_AddDamage(entity e, entity o, float d, float t, float dt)\r
1098 {\r
1099         float dps;\r
1100         float maxtime, mintime, maxdamage, mindamage, maxdps, mindps, totaldamage, totaltime;\r
1101 \r
1102         if(e.classname == "player")\r
1103         {\r
1104                 if(e.deadflag)\r
1105                         return -1;\r
1106         }\r
1107         else\r
1108         {\r
1109                 if(!e.fire_burner)\r
1110                 {\r
1111                         // print("adding a fire burner to ", e.classname, "\n");\r
1112                         e.fire_burner = spawn();\r
1113                         e.fire_burner.classname = "fireburner";\r
1114                         e.fire_burner.think = fireburner_think;\r
1115                         e.fire_burner.nextthink = time;\r
1116                         e.fire_burner.owner = e;\r
1117                 }\r
1118         }\r
1119 \r
1120         t = max(t, 0.1);\r
1121         dps = d / t;\r
1122         if(Fire_IsBurning(e))\r
1123         {\r
1124                 mintime = e.fire_endtime - time;\r
1125                 maxtime = max(mintime, t);\r
1126 \r
1127                 mindps = e.fire_damagepersec;\r
1128                 maxdps = max(mindps, dps);\r
1129 \r
1130                 if(maxtime > mintime || maxdps > mindps)\r
1131                 {\r
1132                         mindamage = mindps * mintime;\r
1133                         maxdamage = mindamage + d;\r
1134 \r
1135                         // interval [mintime, maxtime] * [mindps, maxdps]\r
1136                         // intersected with\r
1137                         // [mindamage, maxdamage]\r
1138                         // maximum of this!\r
1139 \r
1140                         if(maxdamage >= maxtime * maxdps)\r
1141                         {\r
1142                                 totaltime = maxtime;\r
1143                                 totaldamage = maxtime * maxdps;\r
1144 \r
1145                                 // this branch increases totaldamage if either t > mintime, or dps > mindps\r
1146                         }\r
1147                         else\r
1148                         {\r
1149                                 // maxdamage is inside the interval!\r
1150                                 // first, try to use mindps; only if this fails, increase dps as needed\r
1151                                 totaltime = min(maxdamage / mindps, maxtime); // maxdamage / mindps >= mindamage / mindps = mintime\r
1152                                 totaldamage = maxdamage;\r
1153                                 // can totaldamage / totaltime be >= maxdps?\r
1154                                 // max(mindps, maxdamage / maxtime) >= maxdps?\r
1155                                 // we know maxdamage < maxtime * maxdps\r
1156                                 // so it cannot be\r
1157 \r
1158                                 // this branch ALWAYS increases totaldamage, but requires maxdamage < maxtime * maxdps\r
1159                         }\r
1160 \r
1161                         // total conditions for increasing:\r
1162                         //     maxtime > mintime OR maxdps > mindps OR maxtime * maxdps > maxdamage\r
1163                         // however:\r
1164                         //     if maxtime = mintime, maxdps = mindps\r
1165                         // then:\r
1166                         //     maxdamage = mindamage + d\r
1167                         //     mindamage = mindps * mintime = maxdps * maxtime < maxdamage!\r
1168                         // so the last condition is not needed\r
1169 \r
1170                         e.fire_damagepersec = totaldamage / totaltime;\r
1171                         e.fire_endtime = time + totaltime;\r
1172                         if(totaldamage > 1.2 * mindamage)\r
1173                         {\r
1174                                 e.fire_deathtype = dt;\r
1175                                 if(e.fire_owner != o)\r
1176                                 {\r
1177                                         e.fire_owner = o;\r
1178                                         e.fire_hitsound = FALSE;\r
1179                                 }\r
1180                         }\r
1181                         return max(0, totaldamage - mindamage); // can never be negative, but to make sure\r
1182                 }\r
1183                 else\r
1184                         return 0;\r
1185         }\r
1186         else\r
1187         {\r
1188                 e.fire_damagepersec = dps;\r
1189                 e.fire_endtime = time + t;\r
1190                 e.fire_deathtype = dt;\r
1191                 e.fire_owner = o;\r
1192                 e.fire_hitsound = FALSE;\r
1193                 return d;\r
1194         }\r
1195 }\r
1196 \r
1197 void Fire_ApplyDamage(entity e)\r
1198 {\r
1199         float t, d, hi, ty;\r
1200         entity o;\r
1201 \r
1202         if not(Fire_IsBurning(e))\r
1203                 return;\r
1204 \r
1205         o = e.owner;\r
1206         while(o.owner)\r
1207                 o = o.owner;\r
1208         if(clienttype(o) == CLIENTTYPE_NOTACLIENT)\r
1209                 o = e.fire_owner;\r
1210 \r
1211         // water and slime stop fire\r
1212         if(e.waterlevel)\r
1213         if(e.watertype != CONTENT_LAVA)\r
1214                 e.fire_endtime = 0;\r
1215 \r
1216         t = min(frametime, e.fire_endtime - time);\r
1217         d = e.fire_damagepersec * t;\r
1218 \r
1219         hi = e.fire_owner.hitsound;\r
1220         ty = e.fire_owner.typehitsound;\r
1221         Damage(e, e, e.fire_owner, d, e.fire_deathtype, e.origin, '0 0 0');\r
1222         if(e.fire_hitsound && e.fire_owner)\r
1223         {\r
1224                 e.fire_owner.hitsound = hi;\r
1225                 e.fire_owner.typehitsound = ty;\r
1226         }\r
1227         e.fire_hitsound = TRUE;\r
1228 \r
1229         Damage_RecordDamage(e.fire_owner, e.fire_deathtype, d);\r
1230 \r
1231         if not(IS_INDEPENDENT_PLAYER(e))\r
1232         FOR_EACH_PLAYER(other) if(e != other)\r
1233         {\r
1234                 if(other.classname == "player")\r
1235                 if(other.deadflag == DEAD_NO)\r
1236                 if not(IS_INDEPENDENT_PLAYER(other))\r
1237                 if(boxesoverlap(e.absmin, e.absmax, other.absmin, other.absmax))\r
1238                 {\r
1239                         t = cvar("g_balance_firetransfer_time") * (e.fire_endtime - time);\r
1240                         d = cvar("g_balance_firetransfer_damage") * e.fire_damagepersec * t;\r
1241                         Fire_AddDamage(other, o, d, t, DEATH_FIRE);\r
1242                 }\r
1243         }\r
1244 }\r
1245 \r
1246 void Fire_ApplyEffect(entity e)\r
1247 {\r
1248         if(Fire_IsBurning(e))\r
1249                 e.effects |= EF_FLAME;\r
1250         else\r
1251                 e.effects &~= EF_FLAME;\r
1252 }\r
1253 \r
1254 void fireburner_think()\r
1255 {\r
1256         // for players, this is done in the regular loop\r
1257         if(wasfreed(self.owner))\r
1258         {\r
1259                 remove(self);\r
1260                 return;\r
1261         }\r
1262         Fire_ApplyEffect(self.owner);\r
1263         if(!Fire_IsBurning(self.owner))\r
1264         {\r
1265                 self.owner.fire_burner = world;\r
1266                 remove(self);\r
1267                 return;\r
1268         }\r
1269         Fire_ApplyDamage(self.owner);\r
1270         self.nextthink = time;\r
1271 }\r