]> de.git.xonotic.org Git - voretournament/voretournament.git/blob - data/qcsrc/server/g_damage.qc
Base regurgitation probability on the amount of damage dealt to the predator. eg...
[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                 // if a predator is taking damage, check if he should regurgitate his prey, based on the damage he took\r
697                 if(cvar("g_balance_vore_escapeprobability"))\r
698                 {\r
699                         entity e;\r
700                         FOR_EACH_PLAYER(e)\r
701                         {\r
702                                 if(e.predator == targ)\r
703                                 if(random() < cvar("g_balance_vore_escapeprobability") * damage)\r
704                                         Vore_Regurgitate(e);\r
705                         }\r
706                 }\r
707 \r
708                 // nullify damage if teamplay is on\r
709                 if(deathtype != DEATH_TELEFRAG)\r
710                 if(attacker.classname == "player")\r
711                 {\r
712                         if(targ.classname == "player" && targ != attacker && (IS_INDEPENDENT_PLAYER(attacker) || IS_INDEPENDENT_PLAYER(targ)))\r
713                         {\r
714                                 damage = 0;\r
715                                 force = '0 0 0';\r
716                         }\r
717                         else if(attacker.team == targ.team)\r
718                         {\r
719                                 if(teamplay == 1)\r
720                                         damage = 0;\r
721                                 else if(attacker != targ)\r
722                                 {\r
723                                         if(teamplay == 3)\r
724                                                 damage = 0;\r
725                                         else if(teamplay == 4)\r
726                                         {\r
727                                                 if(targ.classname == "player" && targ.deadflag == DEAD_NO)\r
728                                                 {\r
729                                                         teamdamage0 = max(attacker.dmg_team, cvar("g_teamdamage_threshold"));\r
730                                                         attacker.dmg_team = attacker.dmg_team + damage;\r
731                                                         if(attacker.dmg_team > teamdamage0 && !g_ca)\r
732                                                                 mirrordamage = cvar("g_mirrordamage") * (attacker.dmg_team - teamdamage0);\r
733                                                         mirrorforce = cvar("g_mirrordamage") * vlen(force);\r
734                                                         if(g_ca)\r
735                                                                 damage = 0;\r
736                                                         else\r
737                                                                 damage = cvar("g_friendlyfire") * damage;\r
738                                                         // mirrordamage will be used LATER\r
739                                                 }\r
740                                                 else\r
741                                                         damage = 0;\r
742                                         }\r
743                                 }\r
744                         }\r
745                 }\r
746 \r
747                 if(targ.classname == "player")\r
748                 if(attacker.classname == "player")\r
749                 if(attacker != targ)\r
750                 {\r
751                         targ.lms_traveled_distance = cvar("g_lms_campcheck_distance");\r
752                         attacker.lms_traveled_distance = cvar("g_lms_campcheck_distance");\r
753                 }\r
754 \r
755                 if not(DEATH_ISSPECIAL(deathtype))\r
756                 {\r
757                         damage *= g_weapondamagefactor;\r
758                         mirrordamage *= g_weapondamagefactor;\r
759                         force = force * g_weaponforcefactor;\r
760                         mirrorforce *= g_weaponforcefactor;\r
761                 }\r
762 \r
763                 // apply strength multiplier\r
764                 if ((attacker.items & IT_STRENGTH))\r
765                 {\r
766                         if(targ == attacker)\r
767                         {\r
768                                 damage = damage * cvar("g_balance_powerup_strength_selfdamage");\r
769                                 force = force * cvar("g_balance_powerup_strength_selfforce");\r
770                         }\r
771                         else\r
772                         {\r
773                                 damage = damage * cvar("g_balance_powerup_strength_damage");\r
774                                 force = force * cvar("g_balance_powerup_strength_force");\r
775                         }\r
776                 }\r
777 \r
778                 // apply invincibility multiplier\r
779                 if (targ.items & IT_INVINCIBLE)\r
780                         damage = damage * cvar("g_balance_powerup_invincible_takedamage");\r
781 \r
782                 if (targ == attacker)\r
783                 {\r
784                         if(g_ca || (g_cts && !cvar("g_cts_selfdamage")))\r
785                                 damage = 0;\r
786                         else\r
787                                 damage = damage * cvar("g_balance_selfdamagepercent");  // Partial damage if the attacker hits himself\r
788                 }\r
789 \r
790                 // CTF: reduce damage/force\r
791                 if(g_ctf)\r
792                 if(targ == attacker)\r
793                 if(targ.flagcarried)\r
794                 {\r
795                         damage = damage * cvar("g_ctf_flagcarrier_selfdamage");\r
796                         force = force * cvar("g_ctf_flagcarrier_selfforce");\r
797                 }\r
798 \r
799                 // count the damage\r
800                 if(attacker)\r
801                 if(!targ.deadflag)\r
802                 if(targ.takedamage == DAMAGE_AIM)\r
803                 if(targ != attacker)\r
804                 {\r
805                         if(targ.classname == "player")\r
806                         {\r
807                                 // HEAD SHOT:\r
808                                 // find height of hit on player axis\r
809                                 // if above view_ofs and below maxs, and also in the middle half of the bbox, it is head shot\r
810                                 vector headmins, headmaxs, org;\r
811                                 org = antilag_takebackorigin(targ, time - ANTILAG_LATENCY(attacker));\r
812                                 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
813                                 headmaxs = org + '0.6 0 0' * targ.maxs_x + '0 0.6 0' * targ.maxs_y + '0 0 1' * targ.maxs_z;\r
814                                 if(trace_hits_box(railgun_start, railgun_end, headmins, headmaxs))\r
815                                 {\r
816                                         deathtype |= HITTYPE_HEADSHOT;\r
817                                 }\r
818                         }\r
819                         else if(targ.classname == "turret_head")\r
820                         {\r
821                                 deathtype |= HITTYPE_HEADSHOT;\r
822                         }\r
823                         if(deathtype & HITTYPE_HEADSHOT)\r
824                                 damage *= 1 + damage_headshotbonus;\r
825 \r
826                         if(targ.classname == "player")\r
827                         {\r
828                                 if(IsDifferentTeam(targ, attacker))\r
829                                 {\r
830                                         if(damage > 0)\r
831                                         {\r
832                                                 if(targ.BUTTON_CHAT)\r
833                                                         attacker.typehitsound += 1;\r
834                                                 else\r
835                                                         attacker.hitsound += 1;\r
836 \r
837                                                 damage_goodhits += 1;\r
838                                                 damage_gooddamage += damage;\r
839 \r
840                                                 if not(DEATH_ISSPECIAL(deathtype))\r
841                                                 {\r
842                                                         if(IsFlying(targ))\r
843                                                                 yoda = 1;\r
844 \r
845                                                         if(deathtype & HITTYPE_HEADSHOT)\r
846                                                                 headshot = 1;\r
847                                                 }\r
848                                         }\r
849                                 }\r
850                                 else\r
851                                 {\r
852                                         if(deathtype != DEATH_FIRE)\r
853                                                 attacker.typehitsound += 1;\r
854                                         if(time > attacker.teamkill_complain)\r
855                                         {\r
856                                                 attacker.teamkill_complain = time + 5;\r
857                                                 attacker.teamkill_soundtime = time + 0.4;\r
858                                                 attacker.teamkill_soundsource = targ;\r
859                                         }\r
860                                 }\r
861                         }\r
862                 }\r
863         }\r
864 \r
865         // apply push\r
866         if (self.damageforcescale)\r
867         if (vlen(force))\r
868         if (self.classname != "player" || time >= self.spawnshieldtime || g_midair)\r
869         {\r
870                 self.velocity = self.velocity + self.damageforcescale * force;\r
871                 self.flags &~= FL_ONGROUND;\r
872                 UpdateCSQCProjectile(self);\r
873         }\r
874         // apply damage\r
875         if (damage != 0 || (self.damageforcescale && vlen(force)))\r
876         if (self.event_damage)\r
877                 self.event_damage (inflictor, attacker, damage, deathtype, hitloc, force);\r
878         self = oldself;\r
879 \r
880         if(targ.classname == "player" && attacker.classname == "player" && attacker != targ && attacker.health > 2)\r
881         {\r
882                 // Savage: vampire mode\r
883                 if (g_vampire)\r
884                 if (time >= self.spawnshieldtime)\r
885                 if (deathtype != DEATH_DIGESTION) // a different vampire system is used for this\r
886                 {\r
887                         attacker.health += damage;\r
888                 }\r
889         }\r
890 \r
891         // apply mirror damage if any\r
892         if(mirrordamage > 0 || mirrorforce > 0)\r
893         {\r
894                 attacker = attacker_save;\r
895                 force = normalize(attacker.origin + attacker.view_ofs - hitloc) * mirrorforce;\r
896                 Damage(attacker, inflictor, attacker, mirrordamage, DEATH_MIRRORDAMAGE, attacker.origin, force);\r
897         }\r
898 }\r
899 \r
900 vector NearestPointOnBox(entity box, vector org)\r
901 {\r
902         vector m1, m2, nearest;\r
903 \r
904         m1 = box.mins + box.origin;\r
905         m2 = box.maxs + box.origin;\r
906 \r
907         nearest_x = bound(m1_x, org_x, m2_x);\r
908         nearest_y = bound(m1_y, org_y, m2_y);\r
909         nearest_z = bound(m1_z, org_z, m2_z);\r
910 \r
911         return nearest;\r
912 }\r
913 \r
914 void Damage_RecordDamage(entity attacker, float deathtype, float damage)\r
915 {\r
916         float weaponid;\r
917         weaponid = DEATH_WEAPONOF(deathtype);\r
918 \r
919         if not(inWarmupStage)\r
920         if (weaponid)\r
921         if ((clienttype(attacker) == CLIENTTYPE_REAL) | (clienttype(attacker) == CLIENTTYPE_BOT)) {\r
922                 attacker.stats_hit[weaponid - 1] += damage;\r
923                 attacker.stat_hit = weaponid + 64 * floor(attacker.stats_hit[weaponid - 1]);\r
924         }\r
925 }\r
926 \r
927 float RadiusDamage_running;\r
928 float RadiusDamage (entity inflictor, entity attacker, float coredamage, float edgedamage, float rad, entity ignore, float forceintensity, float deathtype, entity directhitentity)\r
929 // Returns total damage applies to creatures\r
930 {\r
931         entity  targ;\r
932         float   finaldmg;\r
933         float   power;\r
934         vector  blastorigin;\r
935         vector  force;\r
936         vector  diff;\r
937         vector  center;\r
938         vector  nearest;\r
939         float   total_damage_to_creatures;\r
940         entity  next;\r
941         float   tfloordmg;\r
942         float   tfloorforce;\r
943 \r
944         float stat_damagedone;\r
945         float stat_maxdamage;\r
946 \r
947         if(RadiusDamage_running)\r
948         {\r
949                 string save;\r
950                 print("RadiusDamage called recursively!\n");\r
951                 print("Expect stuff to go HORRIBLY wrong.\n");\r
952                 print("Causing a stack trace...\n");\r
953                 save = cvar_string("prvm_backtraceforwarnings");\r
954                 cvar_set("prvm_backtraceforwarnings", "1");\r
955                 fclose(-1); // calls VM_Warning\r
956                 cvar_set("prvm_backtraceforwarnings", save);\r
957                 return 0;\r
958         }\r
959 \r
960         RadiusDamage_running = 1;\r
961 \r
962         tfloordmg = cvar("g_throughfloor_damage");\r
963         tfloorforce = cvar("g_throughfloor_force");\r
964 \r
965         blastorigin = (inflictor.origin + (inflictor.mins + inflictor.maxs) * 0.5);\r
966         total_damage_to_creatures = 0;\r
967 \r
968         if(deathtype != (WEP_GRABBER | HITTYPE_SECONDARY | HITTYPE_BOUNCE))\r
969         {\r
970                 force = inflictor.velocity;\r
971                 if(vlen(force) == 0)\r
972                         force = '0 0 -1';\r
973                 else\r
974                         force = normalize(force);\r
975                 if(forceintensity >= 0)\r
976                         Damage_DamageInfo(blastorigin, coredamage, edgedamage, rad, forceintensity * force, deathtype, attacker);\r
977                 else\r
978                         Damage_DamageInfo(blastorigin, coredamage, edgedamage, -rad, (-forceintensity) * force, deathtype, attacker);\r
979         }\r
980 \r
981         stat_damagedone = 0;\r
982         stat_maxdamage = 0;\r
983 \r
984         targ = WarpZone_FindRadius (blastorigin, rad, FALSE);\r
985         while (targ)\r
986         {\r
987                 next = targ.chain;\r
988                 if (targ != inflictor)\r
989                         if (ignore != targ) if(targ.takedamage)\r
990                         {\r
991                                 // LordHavoc: measure distance to nearest point on target (not origin)\r
992                                 // (this guarentees 100% damage on a touch impact)\r
993                                 nearest = targ.WarpZone_findradius_nearest;\r
994                                 diff = targ.WarpZone_findradius_dist;\r
995                                 // round up a little on the damage to ensure full damage on impacts\r
996                                 // and turn the distance into a fraction of the radius\r
997                                 power = 1 - ((vlen (diff) - 2) / rad);\r
998                                 //bprint(" ");\r
999                                 //bprint(ftos(power));\r
1000                                 //if (targ == attacker)\r
1001                                 //      print(ftos(power), "\n");\r
1002                                 if (power > 0)\r
1003                                 {\r
1004                                         if (power > 1)\r
1005                                                 power = 1;\r
1006                                         finaldmg = coredamage * power + edgedamage * (1 - power);\r
1007                                         if (finaldmg > 0)\r
1008                                         {\r
1009                                                 local float a;\r
1010                                                 local float c;\r
1011                                                 local float hits;\r
1012                                                 local float total;\r
1013                                                 local float hitratio;\r
1014                                                 local vector hitloc;\r
1015                                                 local vector myblastorigin;\r
1016                                                 myblastorigin = WarpZone_TransformOrigin(targ, blastorigin);\r
1017                                                 center = targ.origin + (targ.mins + targ.maxs) * 0.5;\r
1018                                                 // if it's a player, use the view origin as reference\r
1019                                                 if (targ.classname == "player")\r
1020                                                         center = targ.origin + targ.view_ofs;\r
1021                                                 force = normalize(center - myblastorigin);\r
1022                                                 force = force * (finaldmg / coredamage) * forceintensity;\r
1023                                                 // test line of sight to multiple positions on box,\r
1024                                                 // and do damage if any of them hit\r
1025                                                 hits = 0;\r
1026                                                 if (targ.classname == "player")\r
1027                                                         total = ceil(bound(1, finaldmg, 50));\r
1028                                                 else\r
1029                                                         total = ceil(bound(1, finaldmg/10, 5));\r
1030                                                 hitloc = nearest;\r
1031                                                 c = 0;\r
1032                                                 while (c < total)\r
1033                                                 {\r
1034                                                         //traceline(targ.WarpZone_findradius_findorigin, nearest, MOVE_NOMONSTERS, inflictor);\r
1035                                                         WarpZone_TraceLine(blastorigin, WarpZone_UnTransformOrigin(targ, nearest), MOVE_NOMONSTERS, inflictor);\r
1036                                                         if (trace_fraction == 1 || trace_ent == targ)\r
1037                                                         {\r
1038                                                                 hits = hits + 1;\r
1039                                                                 if (hits > 1)\r
1040                                                                         hitloc = hitloc + nearest;\r
1041                                                                 else\r
1042                                                                         hitloc = nearest;\r
1043                                                         }\r
1044                                                         nearest_x = targ.origin_x + targ.mins_x + random() * targ.size_x;\r
1045                                                         nearest_y = targ.origin_y + targ.mins_y + random() * targ.size_y;\r
1046                                                         nearest_z = targ.origin_z + targ.mins_z + random() * targ.size_z;\r
1047                                                         c = c + 1;\r
1048                                                 }\r
1049                                                 nearest = hitloc * (1 / max(1, hits));\r
1050                                                 hitratio = (hits / total);\r
1051                                                 a = bound(0, tfloordmg + (1-tfloordmg) * hitratio, 1);\r
1052                                                 finaldmg = finaldmg * a;\r
1053                                                 a = bound(0, tfloorforce + (1-tfloorforce) * hitratio, 1);\r
1054                                                 force = force * a;\r
1055                                                 //if (targ == attacker)\r
1056                                                 //{\r
1057                                                 //      print("hits ", ftos(hits), " / ", ftos(total));\r
1058                                                 //      print(" finaldmg ", ftos(finaldmg), " force ", vtos(force));\r
1059                                                 //      print(" (", ftos(a), ")\n");\r
1060                                                 //}\r
1061                                                 if(hits || tfloordmg || tfloorforce)\r
1062                                                 {\r
1063                                                         if(targ.iscreature)\r
1064                                                         {\r
1065                                                                 total_damage_to_creatures += finaldmg;\r
1066 \r
1067                                                                 if(targ.flags & FL_CLIENT)\r
1068                                                                 if(targ.deadflag == DEAD_NO)\r
1069                                                                 if(targ != attacker)\r
1070                                                                 if(!teamplay || targ.team != attacker.team)\r
1071                                                                 {\r
1072                                                                         stat_damagedone += finaldmg;\r
1073                                                                         stat_maxdamage += coredamage;\r
1074                                                                 }\r
1075                                                         }\r
1076 \r
1077                                                         if(targ == directhitentity || DEATH_ISSPECIAL(deathtype))\r
1078                                                                 Damage (targ, inflictor, attacker, finaldmg, deathtype, nearest, force);\r
1079                                                         else\r
1080                                                                 Damage (targ, inflictor, attacker, finaldmg, deathtype | HITTYPE_SPLASH, nearest, force);\r
1081                                                 }\r
1082                                         }\r
1083                                 }\r
1084                         }\r
1085                 targ = next;\r
1086         }\r
1087 \r
1088         RadiusDamage_running = 0;\r
1089 \r
1090         Damage_RecordDamage(attacker, deathtype, min(stat_maxdamage, stat_damagedone));\r
1091 \r
1092         return total_damage_to_creatures;\r
1093 }\r
1094 \r
1095 .float fire_damagepersec;\r
1096 .float fire_endtime;\r
1097 .float fire_deathtype;\r
1098 .entity fire_owner;\r
1099 .float fire_hitsound;\r
1100 .entity fire_burner;\r
1101 \r
1102 void fireburner_think();\r
1103 \r
1104 float Fire_IsBurning(entity e)\r
1105 {\r
1106         return (time < e.fire_endtime);\r
1107 }\r
1108 \r
1109 float Fire_AddDamage(entity e, entity o, float d, float t, float dt)\r
1110 {\r
1111         float dps;\r
1112         float maxtime, mintime, maxdamage, mindamage, maxdps, mindps, totaldamage, totaltime;\r
1113 \r
1114         if(e.classname == "player")\r
1115         {\r
1116                 if(e.deadflag)\r
1117                         return -1;\r
1118         }\r
1119         else\r
1120         {\r
1121                 if(!e.fire_burner)\r
1122                 {\r
1123                         // print("adding a fire burner to ", e.classname, "\n");\r
1124                         e.fire_burner = spawn();\r
1125                         e.fire_burner.classname = "fireburner";\r
1126                         e.fire_burner.think = fireburner_think;\r
1127                         e.fire_burner.nextthink = time;\r
1128                         e.fire_burner.owner = e;\r
1129                 }\r
1130         }\r
1131 \r
1132         t = max(t, 0.1);\r
1133         dps = d / t;\r
1134         if(Fire_IsBurning(e))\r
1135         {\r
1136                 mintime = e.fire_endtime - time;\r
1137                 maxtime = max(mintime, t);\r
1138 \r
1139                 mindps = e.fire_damagepersec;\r
1140                 maxdps = max(mindps, dps);\r
1141 \r
1142                 if(maxtime > mintime || maxdps > mindps)\r
1143                 {\r
1144                         mindamage = mindps * mintime;\r
1145                         maxdamage = mindamage + d;\r
1146 \r
1147                         // interval [mintime, maxtime] * [mindps, maxdps]\r
1148                         // intersected with\r
1149                         // [mindamage, maxdamage]\r
1150                         // maximum of this!\r
1151 \r
1152                         if(maxdamage >= maxtime * maxdps)\r
1153                         {\r
1154                                 totaltime = maxtime;\r
1155                                 totaldamage = maxtime * maxdps;\r
1156 \r
1157                                 // this branch increases totaldamage if either t > mintime, or dps > mindps\r
1158                         }\r
1159                         else\r
1160                         {\r
1161                                 // maxdamage is inside the interval!\r
1162                                 // first, try to use mindps; only if this fails, increase dps as needed\r
1163                                 totaltime = min(maxdamage / mindps, maxtime); // maxdamage / mindps >= mindamage / mindps = mintime\r
1164                                 totaldamage = maxdamage;\r
1165                                 // can totaldamage / totaltime be >= maxdps?\r
1166                                 // max(mindps, maxdamage / maxtime) >= maxdps?\r
1167                                 // we know maxdamage < maxtime * maxdps\r
1168                                 // so it cannot be\r
1169 \r
1170                                 // this branch ALWAYS increases totaldamage, but requires maxdamage < maxtime * maxdps\r
1171                         }\r
1172 \r
1173                         // total conditions for increasing:\r
1174                         //     maxtime > mintime OR maxdps > mindps OR maxtime * maxdps > maxdamage\r
1175                         // however:\r
1176                         //     if maxtime = mintime, maxdps = mindps\r
1177                         // then:\r
1178                         //     maxdamage = mindamage + d\r
1179                         //     mindamage = mindps * mintime = maxdps * maxtime < maxdamage!\r
1180                         // so the last condition is not needed\r
1181 \r
1182                         e.fire_damagepersec = totaldamage / totaltime;\r
1183                         e.fire_endtime = time + totaltime;\r
1184                         if(totaldamage > 1.2 * mindamage)\r
1185                         {\r
1186                                 e.fire_deathtype = dt;\r
1187                                 if(e.fire_owner != o)\r
1188                                 {\r
1189                                         e.fire_owner = o;\r
1190                                         e.fire_hitsound = FALSE;\r
1191                                 }\r
1192                         }\r
1193                         return max(0, totaldamage - mindamage); // can never be negative, but to make sure\r
1194                 }\r
1195                 else\r
1196                         return 0;\r
1197         }\r
1198         else\r
1199         {\r
1200                 e.fire_damagepersec = dps;\r
1201                 e.fire_endtime = time + t;\r
1202                 e.fire_deathtype = dt;\r
1203                 e.fire_owner = o;\r
1204                 e.fire_hitsound = FALSE;\r
1205                 return d;\r
1206         }\r
1207 }\r
1208 \r
1209 void Fire_ApplyDamage(entity e)\r
1210 {\r
1211         float t, d, hi, ty;\r
1212         entity o;\r
1213 \r
1214         if not(Fire_IsBurning(e))\r
1215                 return;\r
1216 \r
1217         o = e.owner;\r
1218         while(o.owner)\r
1219                 o = o.owner;\r
1220         if(clienttype(o) == CLIENTTYPE_NOTACLIENT)\r
1221                 o = e.fire_owner;\r
1222 \r
1223         // water and slime stop fire\r
1224         if(e.waterlevel)\r
1225         if(e.watertype != CONTENT_LAVA)\r
1226                 e.fire_endtime = 0;\r
1227 \r
1228         t = min(frametime, e.fire_endtime - time);\r
1229         d = e.fire_damagepersec * t;\r
1230 \r
1231         hi = e.fire_owner.hitsound;\r
1232         ty = e.fire_owner.typehitsound;\r
1233         Damage(e, e, e.fire_owner, d, e.fire_deathtype, e.origin, '0 0 0');\r
1234         if(e.fire_hitsound && e.fire_owner)\r
1235         {\r
1236                 e.fire_owner.hitsound = hi;\r
1237                 e.fire_owner.typehitsound = ty;\r
1238         }\r
1239         e.fire_hitsound = TRUE;\r
1240 \r
1241         Damage_RecordDamage(e.fire_owner, e.fire_deathtype, d);\r
1242 \r
1243         if not(IS_INDEPENDENT_PLAYER(e))\r
1244         FOR_EACH_PLAYER(other) if(e != other)\r
1245         {\r
1246                 if(other.classname == "player")\r
1247                 if(other.deadflag == DEAD_NO)\r
1248                 if not(IS_INDEPENDENT_PLAYER(other))\r
1249                 if(boxesoverlap(e.absmin, e.absmax, other.absmin, other.absmax))\r
1250                 {\r
1251                         t = cvar("g_balance_firetransfer_time") * (e.fire_endtime - time);\r
1252                         d = cvar("g_balance_firetransfer_damage") * e.fire_damagepersec * t;\r
1253                         Fire_AddDamage(other, o, d, t, DEATH_FIRE);\r
1254                 }\r
1255         }\r
1256 }\r
1257 \r
1258 void Fire_ApplyEffect(entity e)\r
1259 {\r
1260         if(Fire_IsBurning(e))\r
1261                 e.effects |= EF_FLAME;\r
1262         else\r
1263                 e.effects &~= EF_FLAME;\r
1264 }\r
1265 \r
1266 void fireburner_think()\r
1267 {\r
1268         // for players, this is done in the regular loop\r
1269         if(wasfreed(self.owner))\r
1270         {\r
1271                 remove(self);\r
1272                 return;\r
1273         }\r
1274         Fire_ApplyEffect(self.owner);\r
1275         if(!Fire_IsBurning(self.owner))\r
1276         {\r
1277                 self.owner.fire_burner = world;\r
1278                 remove(self);\r
1279                 return;\r
1280         }\r
1281         Fire_ApplyDamage(self.owner);\r
1282         self.nextthink = time;\r
1283 }\r