]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/g_damage.qc
Streamline the frag message notification to also use spree_cen arg
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / g_damage.qc
1 .float dmg;
2 .float dmg_edge;
3 .float dmg_force;
4 .float dmg_radius;
5
6 float Damage_DamageInfo_SendEntity(entity to, float sf)
7 {
8         WriteByte(MSG_ENTITY, ENT_CLIENT_DAMAGEINFO);
9         WriteShort(MSG_ENTITY, self.projectiledeathtype);
10         WriteCoord(MSG_ENTITY, floor(self.origin_x));
11         WriteCoord(MSG_ENTITY, floor(self.origin_y));
12         WriteCoord(MSG_ENTITY, floor(self.origin_z));
13         WriteByte(MSG_ENTITY, bound(1, self.dmg, 255));
14         WriteByte(MSG_ENTITY, bound(0, self.dmg_radius, 255));
15         WriteByte(MSG_ENTITY, bound(1, self.dmg_edge, 255));
16         WriteShort(MSG_ENTITY, self.oldorigin_x);
17         WriteByte(MSG_ENTITY, self.species);
18         return TRUE;
19 }
20
21 void Damage_DamageInfo(vector org, float coredamage, float edgedamage, float rad, vector force, float deathtype, float bloodtype, entity dmgowner)
22 {
23         // TODO maybe call this from non-edgedamage too?
24         // TODO maybe make the client do the particle effects for the weapons and the impact sounds using this info?
25
26         entity e;
27
28         if(!sound_allowed(MSG_BROADCAST, dmgowner))
29                 deathtype |= 0x8000;
30
31         e = spawn();
32         setorigin(e, org);
33         e.projectiledeathtype = deathtype;
34         e.dmg = coredamage;
35         e.dmg_edge = edgedamage;
36         e.dmg_radius = rad;
37         e.dmg_force = vlen(force);
38         e.velocity = force;
39         e.oldorigin_x = compressShortVector(e.velocity);
40         e.species = bloodtype;
41
42         Net_LinkEntity(e, FALSE, 0.2, Damage_DamageInfo_SendEntity);
43 }
44
45 float checkrules_firstblood;
46
47 float yoda;
48 float damage_goodhits;
49 float damage_gooddamage;
50
51 .float dmg_team;
52 .float teamkill_complain;
53 .float teamkill_soundtime;
54 .entity teamkill_soundsource;
55 .entity pusher;
56 .float istypefrag;
57 .float taunt_soundtime;
58
59
60 float IsDifferentTeam(entity a, entity b)
61 {
62         if(teamplay)
63         {
64                 if(a.team == b.team)
65                         return 0;
66         }
67         else
68         {
69                 if(a == b)
70                         return 0;
71         }
72         return 1;
73 }
74
75 float IsFlying(entity a)
76 {
77         if(a.flags & FL_ONGROUND)
78                 return 0;
79         if(a.waterlevel >= WATERLEVEL_SWIMMING)
80                 return 0;
81         traceline(a.origin, a.origin - '0 0 48', MOVE_NORMAL, a);
82         if(trace_fraction < 1)
83                 return 0;
84         return 1;
85 }
86
87 void UpdateFrags(entity player, float f)
88 {
89         PlayerTeamScore_AddScore(player, f);
90 }
91
92 // NOTE: f=0 means still count as a (positive) kill, but count no frags for it
93 void W_SwitchWeapon_Force(entity e, float w);
94 entity GiveFrags_randomweapons;
95 void GiveFrags (entity attacker, entity targ, float f, float deathtype)
96 {
97         // TODO route through PlayerScores instead
98         if(gameover) return;
99
100         if(f < 0)
101         {
102                 if(targ == attacker)
103                 {
104                         // suicide
105                         PlayerScore_Add(attacker, SP_SUICIDES, 1);
106                 }
107                 else
108                 {
109                         // teamkill
110                         PlayerScore_Add(attacker, SP_KILLS, -1); // or maybe add a teamkills field?
111                 }
112         }
113         else
114         {
115                 // regular frag
116                 PlayerScore_Add(attacker, SP_KILLS, 1);
117                 if(targ.playerid)
118                         PlayerStats_Event(attacker, sprintf("kills-%d", targ.playerid), 1);
119         }
120
121         PlayerScore_Add(targ, SP_DEATHS, 1);
122
123         if(g_arena || g_ca)
124                 if(autocvar_g_arena_roundbased)
125                         return;
126
127         if(targ != attacker) // not for suicides
128         if(g_weaponarena_random)
129         {
130                 // after a frag, exchange the current weapon (or the culprit, if detectable) by a new random weapon
131                 float culprit;
132                 culprit = DEATH_WEAPONOF(deathtype);
133                 if(!culprit)
134                         culprit = attacker.weapon;
135                 else if(!WEPSET_CONTAINS_EW(attacker, culprit))
136                         culprit = attacker.weapon;
137
138                 if(g_weaponarena_random_with_laser && culprit == WEP_LASER)
139                 {
140                         // no exchange
141                 }
142                 else
143                 {
144                         if(!GiveFrags_randomweapons)
145                         {
146                                 GiveFrags_randomweapons = spawn();
147                                 GiveFrags_randomweapons.classname = "GiveFrags_randomweapons";
148                         }
149
150                         if(inWarmupStage)
151                                 WEPSET_COPY_EA(GiveFrags_randomweapons, warmup_start_weapons);
152                         else
153                                 WEPSET_COPY_EA(GiveFrags_randomweapons, start_weapons);
154
155                         // all others (including the culprit): remove
156                         WEPSET_ANDNOT_EE(GiveFrags_randomweapons, attacker);
157                         WEPSET_ANDNOT_EW(GiveFrags_randomweapons, culprit);
158
159                         // among the remaining ones, choose one by random
160                         W_RandomWeapons(GiveFrags_randomweapons, 1);
161
162                         if(!WEPSET_EMPTY_E(GiveFrags_randomweapons))
163                         {
164                                 WEPSET_OR_EE(attacker, GiveFrags_randomweapons);
165                                 WEPSET_ANDNOT_EW(attacker, culprit);
166                         }
167                 }
168
169                 // after a frag, choose another random weapon set
170                 if not(WEPSET_CONTAINS_EW(attacker, attacker.weapon))
171                         W_SwitchWeapon_Force(attacker, w_getbestweapon(attacker));
172         }
173
174         // FIXME fix the mess this is (we have REAL points now!)
175         entity oldself;
176         oldself = self;
177         self = attacker;
178         frag_attacker = attacker;
179         frag_target = targ;
180         frag_score = f;
181         if(MUTATOR_CALLHOOK(GiveFragsForKill))
182         {
183                 f = frag_score;
184                 self = oldself;
185         }
186         else
187         {
188                 self = oldself;
189                 if(g_runematch)
190                 {
191                         f = RunematchHandleFrags(attacker, targ, f);
192                 }
193                 else if(g_lms)
194                 {
195                         // remove a life
196                         float tl;
197                         tl = PlayerScore_Add(targ, SP_LMS_LIVES, -1);
198                         if(tl < lms_lowest_lives)
199                                 lms_lowest_lives = tl;
200                         if(tl <= 0)
201                         {
202                                 if(!lms_next_place)
203                                         lms_next_place = player_count;
204                                 else
205                                         lms_next_place = min(lms_next_place, player_count);
206                                 PlayerScore_Add(targ, SP_LMS_RANK, lms_next_place); // won't ever spawn again
207                                 --lms_next_place;
208                         }
209                         f = 0;
210                 }
211         }
212
213         attacker.totalfrags += f;
214
215         if(f)
216                 UpdateFrags(attacker, f);
217 }
218
219 /*string Obituary_ExtraFragInfo(entity player) // Extra fragmessage information
220 {
221         string health_output = string_null;
222         string ping_output = string_null;
223         string handicap_output = string_null;
224         string output = string_null;
225
226         if(autocvar_sv_fraginfo && ((autocvar_sv_fraginfo == 2) || inWarmupStage))
227         {
228                 // health/armor of attacker (person who killed you)
229                 if(autocvar_sv_fraginfo_stats && (player.health >= 1))
230                         health_output = strcat("^7(Health ^1", ftos(rint(player.health)), "^7 / Armor ^2", ftos(rint(player.armorvalue)), "^7)");
231                 
232                 // ping display
233                 if(autocvar_sv_fraginfo_ping)
234                         ping_output = ((clienttype(player) == CLIENTTYPE_BOT) ? "^2Bot" : strcat("Ping ", ((player.ping >= 150) ? "^1" : "^2"), ftos(rint(player.ping)), "ms"));
235                         
236                 // handicap display 
237                 if(autocvar_sv_fraginfo_handicap) 
238                 {
239                         if(autocvar_sv_fraginfo_handicap == 2)  
240                                 handicap_output = strcat(output, strcat("Handicap ^2", ((player.cvar_cl_handicap <= 1) ? "Off" : ftos(rint(player.cvar_cl_handicap)))));
241                         else if(player.cvar_cl_handicap) // with _handicap 1, only show this if there actually is a handicap enabled.   
242                                 handicap_output = strcat("Handicap ^2", ftos(rint(player.cvar_cl_handicap)));
243                 }
244                 
245                 // format the string
246                 output = strcat(health_output, (health_output ? ((ping_output || handicap_output) ? " ^7(" : "") : ((ping_output || handicap_output) ? "^7(" : "")), 
247                         ping_output, (handicap_output ? "^7 / " : ""), 
248                         handicap_output, ((ping_output || handicap_output) ? "^7)" : ""));
249                 
250                 // add new line to the beginning if there is a message
251                 if(output) { output = strcat("\n", output); }
252         }
253         
254         return output;
255 }*/
256
257 string AppendItemcodes(string s, entity player)
258 {
259         float w;
260         w = player.weapon;
261         //if(w == 0)
262         //      w = player.switchweapon;
263         if(w == 0)
264                 w = player.cnt; // previous weapon!
265         s = strcat(s, ftos(w));
266         if(time < player.strength_finished)
267                 s = strcat(s, "S");
268         if(time < player.invincible_finished)
269                 s = strcat(s, "I");
270         if(player.flagcarried != world)
271                 s = strcat(s, "F");
272         if(player.BUTTON_CHAT)
273                 s = strcat(s, "T");
274         if(player.kh_next)
275                 s = strcat(s, "K");
276         if(player.runes)
277                 s = strcat(s, "|", ftos(player.runes));
278         return s;
279 }
280
281 void LogDeath(string mode, float deathtype, entity killer, entity killed)
282 {
283         string s;
284         if(!autocvar_sv_eventlog)
285                 return;
286         s = strcat(":kill:", mode);
287         s = strcat(s, ":", ftos(killer.playerid));
288         s = strcat(s, ":", ftos(killed.playerid));
289         s = strcat(s, ":type=", Deathtype_Name(deathtype));
290         s = strcat(s, ":items=");
291         s = AppendItemcodes(s, killer);
292         if(killed != killer)
293         {
294                 s = strcat(s, ":victimitems=");
295                 s = AppendItemcodes(s, killed);
296         }
297         GameLogEcho(s);
298 }
299
300 #define INFO_NO_MSG 0
301
302 void Obituary_SpecialDeath(entity notif_target, float murder, float deathtype, string s1, string s2, float f1, float f2, float f3)
303 {
304         float handled = 0, hits = 0;
305         if(DEATH_ISSPECIAL(deathtype))
306         {
307                 #define DEATHTYPE(name,msg_death,msg_death_by,position) \
308                         { if(deathtype == max(0, name)) \
309                         { \
310                                 #if msg_death != NO_MSG \
311                                         if not(murder) \
312                                         { \
313                                                 Send_Notification_WOVA(NOTIF_ONE, notif_target, MSG_DEATH, msg_death, s1, s2, "", "", f1, f2, f3, 0); \
314                                                 Send_Notification_WOVA(NOTIF_ANY_EXCEPT, notif_target, MSG_INFO, INFO_##msg_death, s1, s2, "", "", f1, f2, f3, 0); \
315                                                 ++handled; \
316                                         } \
317                                 #endif \
318                                 #if msg_death_by != NO_MSG \
319                                         if(murder) \
320                                         { \
321                                                 Send_Notification_WOVA(NOTIF_ONE, notif_target, MSG_DEATH, msg_death_by, s1, s2, "", "", f1, f2, f3, 0); \
322                                                 Send_Notification_WOVA(NOTIF_ANY_EXCEPT, notif_target, MSG_INFO, INFO_##msg_death_by, s1, s2, "", "", f1, f2, f3, 0); \
323                                                 ++handled; \
324                                         } \
325                                 #endif \
326                                 ++hits; \
327                         } }
328
329                 DEATHTYPES
330                 #undef DEATHTYPE
331                 
332                 if not(hits)
333                 {
334                         backtrace("Obituary_SpecialDeath(): Unhandled deathtype- Please notify Samual!\n");
335                 }
336                 if not(handled)
337                 {
338                         dprint(sprintf("Obituary_SpecialDeath(): ^1Deathtype ^7(%s-%d)^1 has no notification!\n", Deathtype_Name(deathtype), deathtype));
339                         return;
340                 }
341         }
342 }
343
344 float w_deathtype;
345 float Obituary_WeaponDeath(entity notif_target, float murder, float deathtype, string s1, string s2, float f1, float f2)
346 {
347         float death_weapon = DEATH_WEAPONOF(deathtype);
348
349         if(death_weapon)
350         {
351                 w_deathtype = deathtype;
352                 float death_message = weapon_action(death_weapon, ((murder) ? WR_KILLMESSAGE : WR_SUICIDEMESSAGE));
353                 w_deathtype = FALSE;
354
355                 if(death_message)
356                 {
357                         Send_Notification_WOVA(NOTIF_ONE, notif_target, MSG_WEAPON, death_message, s1, s2, "", "", f1, f2, 0, 0);
358                         Send_Notification_WOVA(NOTIF_ANY_EXCEPT, notif_target, MSG_INFO, msg_weapon_notifs[death_message - 1].nent_msginfo.nent_id, s1, s2, "", "", f1, f2, 0, 0);
359                         //print(Get_Field_Value(F_INFVAL, MSG_WEAPON, death_message), "\n");
360                 }
361                 else { dprint(sprintf("Obituary_WeaponDeath(): ^1Deathtype ^7(%s-%d)^1 has no notification for weapon %d!\n", Deathtype_Name(deathtype), deathtype, death_weapon)); }
362
363                 return TRUE;
364         }
365         return FALSE;
366 }
367
368 void Obituary(entity attacker, entity inflictor, entity targ, float deathtype)
369 {
370         // Sanity check
371         if not(targ.classname == STR_PLAYER) { backtrace("Obituary called on non-player?!\n"); return; }
372
373         // Declarations
374         string s1 = "", s2 = "";
375         float f1 = 0, f2 = 0, f3 = 0;
376         float notif_firstblood = FALSE;
377
378         //dprint(sprintf("Obituary(): Deathtype = %s (%d), Attacker = %s, Inflictor = %s, Target = %s...\n", Deathtype_Name(deathtype), deathtype, attacker.netname, inflictor.netname, targ.netname));
379
380         // =======
381         // SUICIDE
382         // =======
383         if(targ == attacker)
384         {
385                 if(DEATH_ISSPECIAL(deathtype))
386                 {
387                         if(deathtype == DEATH_TEAMCHANGE || deathtype == DEATH_AUTOTEAMCHANGE)
388                         {
389                                 s1 = targ.netname;
390                                 f1 = targ.team;
391                         }
392                         else
393                         {
394                                 switch(deathtype)
395                                 {
396                                         case DEATH_MIRRORDAMAGE:
397                                         {
398                                                 s1 = targ.netname;
399                                                 f1 = targ.killcount;
400                                                 break;
401                                         }
402                                         
403                                         default:
404                                         {
405                                                 s1 = targ.netname;
406                                                 f1 = targ.killcount;
407                                                 s2 = "";
408                                                 f2 = f3 = 0;
409                                                 break;
410                                         }
411                                 }
412                                 LogDeath("suicide", deathtype, targ, targ);
413                                 GiveFrags(attacker, targ, -1, deathtype);
414                         }
415                         
416                         Obituary_SpecialDeath(targ, FALSE, deathtype, s1, s2, f1, f2, 0);
417                 }
418                 else if not(Obituary_WeaponDeath(targ, FALSE, deathtype, targ.netname, "", targ.killcount, 0))
419                 {
420                         backtrace("SUICIDE: what the hell happened here?\n");
421                 }
422         }
423
424         // ======
425         // MURDER
426         // ======
427         else if(attacker.classname == "player")
428         {
429                 s1 = attacker.netname;
430                 s2 = targ.netname;
431                 
432                 if(!IsDifferentTeam(attacker, targ))
433                 {
434                         LogDeath("tk", deathtype, attacker, targ);
435                         GiveFrags(attacker, targ, -1, deathtype);
436
437                         attacker.killcount = 0;
438                         
439                         Send_Notification(NOTIF_ONE, attacker, MSG_CENTER, CENTER_DEATH_TEAMKILL_FRAG, s2);
440                         Send_Notification(NOTIF_ONE, targ, MSG_CENTER, CENTER_DEATH_TEAMKILL_FRAGGED, s1);
441                         Send_Notification(NOTIF_ANY, world, MSG_INFO, APP_TEAM_NUM_4(targ.team, INFO_DEATH_TEAMKILL_), s2, s1, targ.killcount);
442
443                         // In this case, the death message will ALWAYS be "foo was betrayed by bar"
444                         // No need for specific death/weapon messages...
445                 }
446                 else
447                 {
448                         LogDeath("frag", deathtype, attacker, targ);
449                         GiveFrags(attacker, targ, 1, deathtype);
450
451                         attacker.taunt_soundtime = time + 1;
452                         attacker.killcount = attacker.killcount + 1;
453
454                         #define SPREE_ITEM(counta,countb,center,normal,gentle) \
455                                 case counta: \
456                                 { \
457                                         AnnounceTo(attacker, strcat(#countb, "kills")); \
458                                         PlayerStats_Event(attacker, PLAYERSTATS_ACHIEVEMENT_KILL_SPREE_##counta, 1); \
459                                         break; \
460                                 }
461                         switch(attacker.killcount)
462                         {
463                                 KILL_SPREE_LIST
464                                 default: break;
465                         }
466                         #undef SPREE_ITEM
467
468                         if(!checkrules_firstblood)
469                         {
470                                 checkrules_firstblood = TRUE;
471                                 notif_firstblood = TRUE; // modify the current messages so that they too show firstblood information
472                                 PlayerStats_Event(attacker, PLAYERSTATS_ACHIEVEMENT_FIRSTBLOOD, 1);
473                                 PlayerStats_Event(targ, PLAYERSTATS_ACHIEVEMENT_FIRSTVICTIM, 1);
474                         }
475
476                         /*if(notif_firstblood) // first blood, no kill sprees yet
477                         {
478                                 if(targ.istypefrag)
479                                 {
480                                         if(attacker.FRAG_VERBOSE)
481                                                 Send_Notification(NOTIF_ONE, attacker, MSG_CENTER, CENTER_DEATH_MURDER_TYPEFRAG_FIRST_VERBOSE, targ.netname, -1, (IS_BOT_CLIENT(targ) ? NO_MSG : targ.ping));
482                                         else
483                                                 Send_Notification(NOTIF_ONE, attacker, MSG_CENTER, CENTER_DEATH_MURDER_TYPEFRAG_FIRST, targ.netname, -1);
484
485                                         if(targ.FRAG_VERBOSE)
486                                                 Send_Notification(NOTIF_ONE, targ, MSG_CENTER, CENTER_DEATH_MURDER_TYPEFRAGGED_FIRST_VERBOSE, attacker.netname, -2, attacker.health, attacker.armorvalue, (IS_BOT_CLIENT(attacker) ? NO_MSG : attacker.ping));
487                                         else
488                                                 Send_Notification(NOTIF_ONE, targ, MSG_CENTER, CENTER_DEATH_MURDER_TYPEFRAGGED_FIRST, attacker.netname, -2);
489                                 }
490                                 else
491                                 {
492                                         if(attacker.FRAG_VERBOSE)
493                                                 Send_Notification(NOTIF_ONE, attacker, MSG_CENTER, CENTER_DEATH_MURDER_FRAG_FIRST_VERBOSE, targ.netname, -1, (IS_BOT_CLIENT(targ) ? NO_MSG : targ.ping));
494                                         else
495                                                 Send_Notification(NOTIF_ONE, attacker, MSG_CENTER, CENTER_DEATH_MURDER_FRAG_FIRST, targ.netname, -1);
496
497                                         if(targ.FRAG_VERBOSE)
498                                                 Send_Notification(NOTIF_ONE, targ, MSG_CENTER, CENTER_DEATH_MURDER_FRAGGED_FIRST_VERBOSE, attacker.netname, -2, attacker.health, attacker.armorvalue, (IS_BOT_CLIENT(attacker) ? NO_MSG : attacker.ping));
499                                         else
500                                                 Send_Notification(NOTIF_ONE, targ, MSG_CENTER, CENTER_DEATH_MURDER_FRAGGED_FIRST, attacker.netname, -2);
501                                 }
502
503                                 // -1 means firstblood
504                                 if not(Obituary_WeaponDeath(targ, TRUE, deathtype, targ.netname, attacker.netname, -1, -1))
505                                         Obituary_SpecialDeath(targ, TRUE, deathtype, targ.netname, attacker.netname, -1, -1, 0);
506                         }
507                         else // normal frags, kill sprees listed
508                         {
509                                 if(targ.istypefrag)
510                                 {
511                                         if(attacker.FRAG_VERBOSE)
512                                                 Send_Notification(NOTIF_ONE, attacker, MSG_CENTER, CENTER_DEATH_MURDER_TYPEFRAG_VERBOSE, targ.netname, attacker.killcount, (IS_BOT_CLIENT(targ) ? NO_MSG : targ.ping));
513                                         else
514                                                 Send_Notification(NOTIF_ONE, attacker, MSG_CENTER, CENTER_DEATH_MURDER_TYPEFRAG, targ.netname, attacker.killcount);
515
516                                         if(targ.FRAG_VERBOSE)
517                                                 Send_Notification(NOTIF_ONE, targ, MSG_CENTER, CENTER_DEATH_MURDER_TYPEFRAGGED_VERBOSE, attacker.netname, 0, attacker.health, attacker.armorvalue, (IS_BOT_CLIENT(attacker) ? NO_MSG : attacker.ping));
518                                         else
519                                                 Send_Notification(NOTIF_ONE, targ, MSG_CENTER, CENTER_DEATH_MURDER_TYPEFRAGGED, attacker.netname, 0);
520                                 }
521                                 else
522                                 {
523                                         if(attacker.FRAG_VERBOSE)
524                                                 Send_Notification(NOTIF_ONE, attacker, MSG_CENTER, CENTER_DEATH_MURDER_FRAG_VERBOSE, targ.netname, attacker.killcount, (IS_BOT_CLIENT(targ) ? NO_MSG : targ.ping));
525                                         else
526                                                 Send_Notification(NOTIF_ONE, attacker, MSG_CENTER, CENTER_DEATH_MURDER_FRAG, targ.netname, attacker.killcount);
527
528                                         if(targ.FRAG_VERBOSE)
529                                                 Send_Notification(NOTIF_ONE, targ, MSG_CENTER, CENTER_DEATH_MURDER_FRAGGED_VERBOSE, attacker.netname, 0, attacker.health, attacker.armorvalue, (IS_BOT_CLIENT(attacker) ? NO_MSG : attacker.ping));
530                                         else
531                                                 Send_Notification(NOTIF_ONE, targ, MSG_CENTER, CENTER_DEATH_MURDER_FRAGGED, attacker.netname, 0);
532                                 }
533
534                                 if not(Obituary_WeaponDeath(targ, TRUE, deathtype, targ.netname, attacker.netname, targ.killcount, attacker.killcount))
535                                         Obituary_SpecialDeath(targ, TRUE, deathtype, targ.netname, attacker.netname, targ.killcount, attacker.killcount, 0);
536                         }*/
537
538                         float kill_count_to_attacker;
539                         float kill_count_to_target;
540                         if(notif_firstblood)
541                         {
542                                 kill_count_to_attacker = -1;
543                                 kill_count_to_target = -2;
544                         }
545                         else
546                         {
547                                 kill_count_to_attacker = attacker.killcount;
548                                 kill_count_to_target = 0;
549                         }
550
551                         if(targ.istypefrag)
552                         {
553                                 if(attacker.FRAG_VERBOSE)
554                                         Send_Notification(NOTIF_ONE, attacker, MSG_CENTER, CENTER_DEATH_MURDER_TYPEFRAG_VERBOSE, targ.netname, kill_count_to_attacker, (IS_BOT_CLIENT(targ) ? NO_MSG : targ.ping));
555                                 else
556                                         Send_Notification(NOTIF_ONE, attacker, MSG_CENTER, CENTER_DEATH_MURDER_TYPEFRAG, targ.netname, kill_count_to_attacker);
557
558                                 if(targ.FRAG_VERBOSE)
559                                         Send_Notification(NOTIF_ONE, targ, MSG_CENTER, CENTER_DEATH_MURDER_TYPEFRAGGED_VERBOSE, attacker.netname, kill_count_to_target, attacker.health, attacker.armorvalue, (IS_BOT_CLIENT(attacker) ? NO_MSG : attacker.ping));
560                                 else
561                                         Send_Notification(NOTIF_ONE, targ, MSG_CENTER, CENTER_DEATH_MURDER_TYPEFRAGGED, attacker.netname, kill_count_to_target);
562                         }
563                         else
564                         {
565                                 if(attacker.FRAG_VERBOSE)
566                                         Send_Notification(NOTIF_ONE, attacker, MSG_CENTER, CENTER_DEATH_MURDER_FRAG_VERBOSE, targ.netname, kill_count_to_attacker, (IS_BOT_CLIENT(targ) ? NO_MSG : targ.ping));
567                                 else
568                                         Send_Notification(NOTIF_ONE, attacker, MSG_CENTER, CENTER_DEATH_MURDER_FRAG, targ.netname, kill_count_to_attacker);
569
570                                 if(targ.FRAG_VERBOSE)
571                                         Send_Notification(NOTIF_ONE, targ, MSG_CENTER, CENTER_DEATH_MURDER_FRAGGED_VERBOSE, attacker.netname, kill_count_to_target, attacker.health, attacker.armorvalue, (IS_BOT_CLIENT(attacker) ? NO_MSG : attacker.ping));
572                                 else
573                                         Send_Notification(NOTIF_ONE, targ, MSG_CENTER, CENTER_DEATH_MURDER_FRAGGED, attacker.netname, kill_count_to_target);
574                         }
575
576                         if not(Obituary_WeaponDeath(targ, TRUE, deathtype, targ.netname, attacker.netname, targ.killcount, kill_count_to_attacker))
577                                 Obituary_SpecialDeath(targ, TRUE, deathtype, targ.netname, attacker.netname, targ.killcount, kill_count_to_attacker, 0);
578                 }
579         }
580
581         // =============
582         // ACCIDENT/TRAP
583         // =============
584         else
585         {
586                 switch(deathtype)
587                 {
588                         // For now, we're just forcing HURTTRIGGER to behave as "DEATH_VOID" and giving it no special options...
589                         // Later on you will only be able to make custom messages using DEATH_CUSTOM,
590                         // and there will be a REAL DEATH_VOID implementation which mappers will use.
591                         /*case DEATH_HURTTRIGGER:
592                         {
593                                 s1 = targ.netname;
594                                 s2 = inflictor.message;
595                                 if(strstrofs(s2, "%", 0) < 0) { s2 = strcat("%s ", s2); }
596                                 break;
597                         }*/
598
599                         case DEATH_CUSTOM:
600                         {
601                                 s1 = targ.netname;
602                                 s2 = deathmessage;
603                                 f1 = targ.killcount;
604                                 if(strstrofs(s2, "%", 0) < 0) { s2 = strcat("%s ", s2); }
605                                 f2 = f3 = 0;
606                                 break;
607                         }
608                         
609                         default:
610                         {
611                                 s1 = targ.netname;
612                                 f1 = targ.killcount;
613                                 s2 = "";
614                                 f2 = f3 = 0;
615                                 break;
616                         }
617                 }
618
619                 LogDeath("accident", deathtype, targ, targ);
620                 GiveFrags(targ, targ, -1, deathtype);
621
622                 if(PlayerScore_Add(targ, SP_SCORE, 0) == -5)
623                 {
624                         AnnounceTo(targ, "botlike");
625                         PlayerStats_Event(attacker, PLAYERSTATS_ACHIEVEMENT_BOTLIKE, 1);
626                 }
627
628                 Obituary_SpecialDeath(targ, FALSE, deathtype, s1, s2, f1, f2, f3);
629         }
630
631         // Set final information for the death
632         targ.death_origin = targ.origin;
633         if(targ != attacker) { targ.killer_origin = attacker.origin; }
634         if(targ.killcount) { targ.killcount = 0; }
635 }
636
637 // these are updated by each Damage call for use in button triggering and such
638 entity damage_targ;
639 entity damage_inflictor;
640 entity damage_attacker;
641
642 void Damage (entity targ, entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force)
643 {
644         float mirrordamage;
645         float mirrorforce;
646         float teamdamage0;
647         entity attacker_save;
648         mirrordamage = 0;
649         mirrorforce = 0;
650
651         if (gameover || targ.killcount == -666)
652                 return;
653
654         entity oldself;
655         oldself = self;
656         self = targ;
657         damage_targ = targ;
658         damage_inflictor = inflictor;
659         damage_attacker = attacker;
660                 attacker_save = attacker;
661
662         if(targ.classname == "player")
663                 if(targ.hook)
664                         if(targ.hook.aiment)
665                                 if(targ.hook.aiment == attacker)
666                                         RemoveGrapplingHook(targ); // STOP THAT, you parasite!
667
668         // special rule: gravity bomb does not hit team mates (other than for disconnecting the hook)
669         if(DEATH_ISWEAPON(deathtype, WEP_HOOK) || DEATH_ISWEAPON(deathtype, WEP_TUBA))
670         {
671                 if(targ.classname == "player")
672                         if not(IsDifferentTeam(targ, attacker))
673                         {
674                                 self = oldself;
675                                 return;
676                         }
677         }
678
679         if(deathtype == DEATH_KILL || deathtype == DEATH_TEAMCHANGE || deathtype == DEATH_AUTOTEAMCHANGE)
680         {
681                 // These are ALWAYS lethal
682                 // No damage modification here
683                 // Instead, prepare the victim for his death...
684                 targ.armorvalue = 0;
685                 targ.spawnshieldtime = 0;
686                 targ.health = 0.9; // this is < 1
687                 targ.flags -= targ.flags & FL_GODMODE;
688                 damage = 100000;
689         }
690         else if(deathtype == DEATH_MIRRORDAMAGE || deathtype == DEATH_NOAMMO)
691         {
692                 // no processing
693         }
694         else
695         {
696                 /*
697                 skill based bot damage? gtfo. (tZork)
698                 if (targ.classname == "player")
699                 if (attacker.classname == "player")
700                 if (!targ.isbot)
701                 if (attacker.isbot)
702                         damage = damage * bound(0.1, (skill + 5) * 0.1, 1);
703         */
704         
705                 // nullify damage if teamplay is on
706                 if(deathtype != DEATH_TELEFRAG)
707                 if(attacker.classname == "player")
708                 {
709                         if(targ.classname == "player" && targ != attacker && (IS_INDEPENDENT_PLAYER(attacker) || IS_INDEPENDENT_PLAYER(targ)))
710                         {
711                                 damage = 0;
712                                 force = '0 0 0';
713                         }
714                         else if(!IsDifferentTeam(attacker, targ))
715                         {
716                                 if(autocvar_teamplay_mode == 1)
717                                         damage = 0;
718                                 else if(attacker != targ)
719                                 {
720                                         if(autocvar_teamplay_mode == 3)
721                                                 damage = 0;
722                                         else if(autocvar_teamplay_mode == 4)
723                                         {
724                                                 if(targ.classname == "player" && targ.deadflag == DEAD_NO)
725                                                 {
726                                                         teamdamage0 = max(attacker.dmg_team, autocvar_g_teamdamage_threshold);
727                                                         attacker.dmg_team = attacker.dmg_team + damage;
728                                                         if(attacker.dmg_team > teamdamage0 && !g_ca)
729                                                                 mirrordamage = autocvar_g_mirrordamage * (attacker.dmg_team - teamdamage0);
730                                                         mirrorforce = autocvar_g_mirrordamage * vlen(force);
731                                                         if(g_minstagib)
732                                                         {
733                                                                 if(autocvar_g_friendlyfire == 0)
734                                                                         damage = 0;
735                                                         }
736                                                         else if(g_ca)
737                                                                 damage = 0;
738                                                         else
739                                                                 damage = autocvar_g_friendlyfire * damage;
740                                                         // mirrordamage will be used LATER
741
742                                                         if(autocvar_g_mirrordamage_virtual)
743                                                         {
744                                                                 vector v  = healtharmor_applydamage(attacker.armorvalue, autocvar_g_balance_armor_blockpercent, mirrordamage);
745                                                                 attacker.dmg_take += v_x;
746                                                                 attacker.dmg_save += v_y;
747                                                                 attacker.dmg_inflictor = inflictor;
748                                                                 mirrordamage = v_z; // = 0, to make fteqcc stfu
749                                                                 mirrorforce = 0;
750                                                         }
751
752                                                         if(autocvar_g_friendlyfire_virtual)
753                                                         {
754                                                                 vector v = healtharmor_applydamage(targ.armorvalue, autocvar_g_balance_armor_blockpercent, damage);
755                                                                 targ.dmg_take += v_x;
756                                                                 targ.dmg_save += v_y;
757                                                                 targ.dmg_inflictor = inflictor;
758                                                                 damage = 0;
759                                                                 if(!autocvar_g_friendlyfire_virtual_force)
760                                                                         force = '0 0 0';
761                                                         }
762                                                 }
763                                                 else
764                                                         damage = 0;
765                                         }
766                                 }
767                         }
768                 }
769
770                 if(targ.classname == "player")
771                 if(attacker.classname == "player")
772                 if(attacker != targ)
773                 {
774                         targ.lms_traveled_distance = autocvar_g_lms_campcheck_distance;
775                         attacker.lms_traveled_distance = autocvar_g_lms_campcheck_distance;
776                 }
777
778                 if(targ.classname == "player")
779                 if (g_minstagib)
780                 {
781                         if ((deathtype == DEATH_FALL)  ||
782                                 (deathtype == DEATH_DROWN) ||
783                                 (deathtype == DEATH_SLIME) ||
784                                 (deathtype == DEATH_LAVA)  ||
785                                 (!DEATH_ISWEAPON(deathtype, WEP_LASER) && damage > 0 && damage < 100))
786                         {
787                                 self = oldself;
788                                 return;
789                         }
790                         if(damage > 0)
791                             damage = 10000;
792                         if (targ.armorvalue && (deathtype == WEP_MINSTANEX) && damage)
793                         {
794                                 targ.armorvalue -= 1;
795                                 centerprint(targ, strcat("^3Remaining extra lives: ",ftos(targ.armorvalue)));
796                                 damage = 0;
797                                 targ.hitsound += 1;
798                                 attacker.hitsound += 1; // TODO change this to a future specific hitsound for armor hit
799                         }
800                         if (DEATH_ISWEAPON(deathtype, WEP_LASER))
801                         {
802                                 damage = 0;
803                                 mirrordamage = 0;
804                                 if (targ != attacker)
805                                 {
806                                         if ((targ.health >= 1) && (targ.classname == "player"))
807                                                 centerprint(attacker, "Secondary fire inflicts no damage!");
808                                         force = '0 0 0';
809                                         // keep mirrorforce
810                                         attacker = targ;
811                                 }
812                         }
813                 }
814
815                 if not(DEATH_ISSPECIAL(deathtype))
816                 {
817                         damage *= g_weapondamagefactor;
818                         mirrordamage *= g_weapondamagefactor;
819                         force = force * g_weaponforcefactor;
820                         mirrorforce *= g_weaponforcefactor;
821                 }
822                 
823                 // should this be changed at all? If so, in what way?
824                 frag_attacker = attacker;
825                 frag_target = targ;
826                 frag_damage = damage;
827                 frag_force = force;
828         frag_deathtype = deathtype;
829                 MUTATOR_CALLHOOK(PlayerDamage_Calculate);
830                 damage = frag_damage;
831                 force = frag_force;
832                 
833                 // apply strength multiplier
834                 if ((attacker.items & IT_STRENGTH) && !g_minstagib)
835                 {
836                         if(targ == attacker)
837                         {
838                                 damage = damage * autocvar_g_balance_powerup_strength_selfdamage;
839                                 force = force * autocvar_g_balance_powerup_strength_selfforce;
840                         }
841                         else
842                         {
843                                 damage = damage * autocvar_g_balance_powerup_strength_damage;
844                                 force = force * autocvar_g_balance_powerup_strength_force;
845                         }
846                 }
847
848                 // apply invincibility multiplier
849                 if (targ.items & IT_INVINCIBLE && !g_minstagib)
850                         damage = damage * autocvar_g_balance_powerup_invincible_takedamage;
851
852                 if (targ == attacker)
853                 {
854                         if(g_ca || (g_cts && !autocvar_g_cts_selfdamage))
855                                 damage = 0;
856                         else
857                                 damage = damage * autocvar_g_balance_selfdamagepercent; // Partial damage if the attacker hits himself
858                 }
859
860                 if(g_runematch)
861                 {
862                         // apply strength rune
863                         if (attacker.runes & RUNE_STRENGTH)
864                         {
865                                 if(attacker.runes & CURSE_WEAK) // have both curse & rune
866                                 {
867                                         damage = damage * autocvar_g_balance_rune_strength_combo_damage;
868                                         force = force * autocvar_g_balance_rune_strength_combo_force;
869                                 }
870                                 else
871                                 {
872                                         damage = damage * autocvar_g_balance_rune_strength_damage;
873                                         force = force * autocvar_g_balance_rune_strength_force;
874                                 }
875                         }
876                         else if (attacker.runes & CURSE_WEAK)
877                         {
878                                 damage = damage * autocvar_g_balance_curse_weak_damage;
879                                 force = force * autocvar_g_balance_curse_weak_force;
880                         }
881
882                         // apply defense rune
883                         if (targ.runes & RUNE_DEFENSE)
884                         {
885                                 if (targ.runes & CURSE_VULNER) // have both curse & rune
886                                         damage = damage * autocvar_g_balance_rune_defense_combo_takedamage;
887                                 else
888                                         damage = damage * autocvar_g_balance_rune_defense_takedamage;
889                         }
890                         else if (targ.runes & CURSE_VULNER)
891                                 damage = damage * autocvar_g_balance_curse_vulner_takedamage;
892                 }
893
894                 // count the damage
895                 if(attacker)
896                 if(!targ.deadflag)
897                 if(targ.takedamage == DAMAGE_AIM)
898                 if(targ != attacker)
899                 {
900                         entity victim;
901                         if((targ.vehicle_flags & VHF_ISVEHICLE) && targ.owner)
902                                 victim = targ.owner;
903                         else
904                                 victim = targ;
905
906                         if(victim.classname == "player" || victim.turrcaps_flags & TFL_TURRCAPS_ISTURRET)
907                         {
908                                 if(IsDifferentTeam(victim, attacker))
909                                 {
910                                         if(damage > 0)
911                                         {
912                                                 if(deathtype != DEATH_FIRE)
913                                                 {
914                                                         if(victim.BUTTON_CHAT)
915                                                                 attacker.typehitsound += 1;
916                                                         else
917                                                                 attacker.hitsound += 1;
918                                                 }
919
920                                                 damage_goodhits += 1;
921                                                 damage_gooddamage += damage;
922
923                                                 if not(DEATH_ISSPECIAL(deathtype))
924                                                 {
925                                                         if(targ.classname == "player") // don't do this for vehicles
926                                                         if(!g_minstagib)
927                                                         if(IsFlying(victim))
928                                                                 yoda = 1;
929
930                                                         if(g_minstagib)
931                                                         if(victim.items & IT_STRENGTH)
932                                                                 yoda = 1;
933                                                 }
934                                         }
935                                 }
936                                 else
937                                 {
938                                         if(deathtype != DEATH_FIRE)
939                                         {
940                                                 attacker.typehitsound += 1;
941                                         }
942                                         if(mirrordamage > 0)
943                                                 if(time > attacker.teamkill_complain)
944                                                 {
945                                                         attacker.teamkill_complain = time + 5;
946                                                         attacker.teamkill_soundtime = time + 0.4;
947                                                         attacker.teamkill_soundsource = targ;
948                                                 }
949                                 }
950                         }
951                 }
952         }
953
954         // apply push
955         if (self.damageforcescale)
956         if (vlen(force))
957         if (self.classname != "player" || time >= self.spawnshieldtime || g_midair)
958         {
959                 vector farce = damage_explosion_calcpush(self.damageforcescale * force, self.velocity, autocvar_g_balance_damagepush_speedfactor);
960                 if(self.movetype == MOVETYPE_PHYSICS)
961                 {
962                         entity farcent;
963                         farcent = spawn();
964                         farcent.classname = "farce";
965                         farcent.enemy = self;
966                         farcent.movedir = farce * 10;
967                         if(self.mass)
968                                 farcent.movedir = farcent.movedir * self.mass;
969                         farcent.origin = hitloc;
970                         farcent.forcetype = FORCETYPE_FORCEATPOS;
971                         farcent.nextthink = time + 0.1;
972                         farcent.think = SUB_Remove;
973                 }
974                 else
975                         self.velocity = self.velocity + farce;
976                 self.flags &~= FL_ONGROUND;
977                 UpdateCSQCProjectile(self);
978         }
979         // apply damage
980         if (damage != 0 || (self.damageforcescale && vlen(force)))
981         if (self.event_damage)
982                 self.event_damage (inflictor, attacker, damage, deathtype, hitloc, force);
983         self = oldself;
984
985         if(targ.classname == "player" && attacker.classname == "player" && attacker != targ && attacker.health > 2)
986         {
987                 if(g_runematch)
988                 {
989                         if (attacker.runes & RUNE_VAMPIRE)
990                         {
991                         // apply vampire rune
992                                 if (attacker.runes & CURSE_EMPATHY) // have the curse too
993                                 {
994                                         //attacker.health = attacker.health + damage * autocvar_g_balance_rune_vampire_combo_absorb;
995                                         attacker.health = bound(
996                                                 autocvar_g_balance_curse_empathy_minhealth, // LA: was 3, now 40
997                                                 attacker.health + damage * autocvar_g_balance_rune_vampire_combo_absorb,
998                                                 autocvar_g_balance_rune_vampire_maxhealth);     // LA: was 1000, now 500
999                                 }
1000                                 else
1001                                 {
1002                                         //attacker.health = attacker.health + damage * autocvar_g_balance_rune_vampire_absorb;
1003                                         attacker.health = bound(
1004                                                 attacker.health,        // LA: was 3, but changed so that you can't lose health
1005                                                                                         // empathy won't let you gain health in the same way...
1006                                                 attacker.health + damage * autocvar_g_balance_rune_vampire_absorb,
1007                                                 autocvar_g_balance_rune_vampire_maxhealth);     // LA: was 1000, now 500
1008                                         }
1009                         }
1010                         // apply empathy curse
1011                         else if (attacker.runes & CURSE_EMPATHY)
1012                         {
1013                                 attacker.health = bound(
1014                                         autocvar_g_balance_curse_empathy_minhealth, // LA: was 3, now 20
1015                                         attacker.health + damage * autocvar_g_balance_curse_empathy_takedamage,
1016                                         attacker.health);
1017                         }
1018                 }
1019         }
1020
1021         // apply mirror damage if any
1022         if(mirrordamage > 0 || mirrorforce > 0)
1023         {
1024                 attacker = attacker_save;
1025                 if(g_minstagib)
1026                 if(mirrordamage > 0)
1027                 {
1028                         // just lose extra LIVES, don't kill the player for mirror damage
1029                         if(attacker.armorvalue > 0)
1030                         {
1031                                 attacker.armorvalue = attacker.armorvalue - 1;
1032                                 centerprint(attacker, strcat("^3Remaining extra lives: ",ftos(attacker.armorvalue)));
1033                                 attacker.hitsound += 1;
1034                         }
1035                         mirrordamage = 0;
1036                 }
1037
1038                 force = normalize(attacker.origin + attacker.view_ofs - hitloc) * mirrorforce;
1039                 Damage(attacker, inflictor, attacker, mirrordamage, DEATH_MIRRORDAMAGE, attacker.origin, force);
1040         }
1041 }
1042
1043 float RadiusDamage_running;
1044 float RadiusDamage (entity inflictor, entity attacker, float coredamage, float edgedamage, float rad, entity ignore, float forceintensity, float deathtype, entity directhitentity)
1045         // Returns total damage applies to creatures
1046 {
1047         entity  targ;
1048         vector  blastorigin;
1049         vector  force;
1050         float   total_damage_to_creatures;
1051         entity  next;
1052         float   tfloordmg;
1053         float   tfloorforce;
1054
1055         float stat_damagedone;
1056
1057         if(RadiusDamage_running)
1058         {
1059                 backtrace("RadiusDamage called recursively! Expect stuff to go HORRIBLY wrong.");
1060                 return 0;
1061         }
1062
1063         RadiusDamage_running = 1;
1064
1065         tfloordmg = autocvar_g_throughfloor_damage;
1066         tfloorforce = autocvar_g_throughfloor_force;
1067
1068         blastorigin = (inflictor.origin + (inflictor.mins + inflictor.maxs) * 0.5);
1069         total_damage_to_creatures = 0;
1070
1071         if(deathtype != (WEP_HOOK | HITTYPE_SECONDARY | HITTYPE_BOUNCE)) // only send gravity bomb damage once
1072                 if(DEATH_WEAPONOF(deathtype) != WEP_TUBA) // do not send tuba damage (bandwidth hog)
1073                 {
1074                         force = inflictor.velocity;
1075                         if(vlen(force) == 0)
1076                                 force = '0 0 -1';
1077                         else
1078                                 force = normalize(force);
1079                         if(forceintensity >= 0)
1080                                 Damage_DamageInfo(blastorigin, coredamage, edgedamage, rad, forceintensity * force, deathtype, 0, attacker);
1081                         else
1082                                 Damage_DamageInfo(blastorigin, coredamage, edgedamage, -rad, (-forceintensity) * force, deathtype, 0, attacker);
1083                 }
1084
1085         stat_damagedone = 0;
1086
1087         targ = WarpZone_FindRadius (blastorigin, rad + MAX_DAMAGEEXTRARADIUS, FALSE);
1088         while (targ)
1089         {
1090                 next = targ.chain;
1091                 if (targ != inflictor)
1092                         if (ignore != targ) if(targ.takedamage)
1093                         {
1094                                 vector nearest;
1095                                 vector diff;
1096                                 float power;
1097
1098                                 // LordHavoc: measure distance to nearest point on target (not origin)
1099                                 // (this guarentees 100% damage on a touch impact)
1100                                 nearest = targ.WarpZone_findradius_nearest;
1101                                 diff = targ.WarpZone_findradius_dist;
1102                                 // round up a little on the damage to ensure full damage on impacts
1103                                 // and turn the distance into a fraction of the radius
1104                                 power = 1 - ((vlen (diff) - bound(MIN_DAMAGEEXTRARADIUS, targ.damageextraradius, MAX_DAMAGEEXTRARADIUS)) / rad);
1105                                 //bprint(" ");
1106                                 //bprint(ftos(power));
1107                                 //if (targ == attacker)
1108                                 //      print(ftos(power), "\n");
1109                                 if (power > 0)
1110                                 {
1111                                         float finaldmg;
1112                                         if (power > 1)
1113                                                 power = 1;
1114                                         finaldmg = coredamage * power + edgedamage * (1 - power);
1115                                         if (finaldmg > 0)
1116                                         {
1117                                                 float a;
1118                                                 float c;
1119                                                 vector hitloc;
1120                                                 vector myblastorigin;
1121                                                 vector center;
1122
1123                                                 myblastorigin = WarpZone_TransformOrigin(targ, blastorigin);
1124
1125                                                 // if it's a player, use the view origin as reference
1126                                                 center = CENTER_OR_VIEWOFS(targ);
1127
1128                                                 force = normalize(center - myblastorigin);
1129                                                 force = force * (finaldmg / coredamage) * forceintensity;
1130                                                 hitloc = nearest;
1131
1132                                                 if(targ != directhitentity)
1133                                                 {
1134                                                         float hits;
1135                                                         float total;
1136                                                         float hitratio;
1137                                                         float mininv_f, mininv_d;
1138
1139                                                         // test line of sight to multiple positions on box,
1140                                                         // and do damage if any of them hit
1141                                                         hits = 0;
1142
1143                                                         // we know: max stddev of hitratio = 1 / (2 * sqrt(n))
1144                                                         // so for a given max stddev:
1145                                                         // n = (1 / (2 * max stddev of hitratio))^2
1146
1147                                                         mininv_d = (finaldmg * (1-tfloordmg)) / autocvar_g_throughfloor_damage_max_stddev;
1148                                                         mininv_f = (vlen(force) * (1-tfloorforce)) / autocvar_g_throughfloor_force_max_stddev;
1149
1150                                                         if(autocvar_g_throughfloor_debug)
1151                                                                 print(sprintf("THROUGHFLOOR: D=%f F=%f max(dD)=1/%f max(dF)=1/%f", finaldmg, vlen(force), mininv_d, mininv_f));
1152
1153                                                         total = 0.25 * pow(max(mininv_f, mininv_d), 2);
1154
1155                                                         if(autocvar_g_throughfloor_debug)
1156                                                                 print(sprintf(" steps=%f", total));
1157
1158                                                         if (targ.classname == "player")
1159                                                                 total = ceil(bound(autocvar_g_throughfloor_min_steps_player, total, autocvar_g_throughfloor_max_steps_player));
1160                                                         else
1161                                                                 total = ceil(bound(autocvar_g_throughfloor_min_steps_other, total, autocvar_g_throughfloor_max_steps_other));
1162
1163                                                         if(autocvar_g_throughfloor_debug)
1164                                                                 print(sprintf(" steps=%f dD=%f dF=%f", total, finaldmg * (1-tfloordmg) / (2 * sqrt(total)), vlen(force) * (1-tfloorforce) / (2 * sqrt(total))));
1165
1166                                                         for(c = 0; c < total; ++c)
1167                                                         {
1168                                                                 //traceline(targ.WarpZone_findradius_findorigin, nearest, MOVE_NOMONSTERS, inflictor);
1169                                                                 WarpZone_TraceLine(blastorigin, WarpZone_UnTransformOrigin(targ, nearest), MOVE_NOMONSTERS, inflictor);
1170                                                                 if (trace_fraction == 1 || trace_ent == targ)
1171                                                                 {
1172                                                                         ++hits;
1173                                                                         if (hits > 1)
1174                                                                                 hitloc = hitloc + nearest;
1175                                                                         else
1176                                                                                 hitloc = nearest;
1177                                                                 }
1178                                                                 nearest_x = targ.origin_x + targ.mins_x + random() * targ.size_x;
1179                                                                 nearest_y = targ.origin_y + targ.mins_y + random() * targ.size_y;
1180                                                                 nearest_z = targ.origin_z + targ.mins_z + random() * targ.size_z;
1181                                                         }
1182
1183                                                         nearest = hitloc * (1 / max(1, hits));
1184                                                         hitratio = (hits / total);
1185                                                         a = bound(0, tfloordmg + (1-tfloordmg) * hitratio, 1);
1186                                                         finaldmg = finaldmg * a;
1187                                                         a = bound(0, tfloorforce + (1-tfloorforce) * hitratio, 1);
1188                                                         force = force * a;
1189
1190                                                         if(autocvar_g_throughfloor_debug)
1191                                                                 print(sprintf(" D=%f F=%f\n", finaldmg, vlen(force)));
1192                                                 }
1193
1194                                                 // laser force adjustments :P
1195                                                 if(DEATH_WEAPONOF(deathtype) == WEP_LASER)
1196                                                 {
1197                                                         if (targ == attacker)
1198                                                         {
1199                                                                 vector vel;
1200
1201                                                                 float force_zscale;
1202                                                                 float force_velocitybiasramp;
1203                                                                 float force_velocitybias;
1204
1205                                                                 force_velocitybiasramp = autocvar_sv_maxspeed;
1206                                                                 if(deathtype & HITTYPE_SECONDARY)
1207                                                                 {
1208                                                                         force_zscale = autocvar_g_balance_laser_secondary_force_zscale;
1209                                                                         force_velocitybias = autocvar_g_balance_laser_secondary_force_velocitybias;
1210                                                                 }
1211                                                                 else
1212                                                                 {
1213                                                                         force_zscale = autocvar_g_balance_laser_primary_force_zscale;
1214                                                                         force_velocitybias = autocvar_g_balance_laser_primary_force_velocitybias;
1215                                                                 }
1216
1217                                                                 vel = targ.velocity;
1218                                                                 vel_z = 0;
1219                                                                 vel = normalize(vel) * bound(0, vlen(vel) / force_velocitybiasramp, 1) * force_velocitybias;
1220                                                                 force =
1221                                                                         vlen(force)
1222                                                                         *
1223                                                                         normalize(normalize(force) + vel);
1224
1225                                                                 force_z *= force_zscale;
1226                                                         }
1227                                                         else
1228                                                         {
1229                                                                 if(deathtype & HITTYPE_SECONDARY)
1230                                                                 {
1231                                                                         force *= autocvar_g_balance_laser_secondary_force_other_scale;
1232                                                                 }
1233                                                                 else
1234                                                                 {
1235                                                                         force *= autocvar_g_balance_laser_primary_force_other_scale;
1236                                                                 }
1237                                                         }
1238                                                 }
1239
1240                                                 //if (targ == attacker)
1241                                                 //{
1242                                                 //      print("hits ", ftos(hits), " / ", ftos(total));
1243                                                 //      print(" finaldmg ", ftos(finaldmg), " force ", vtos(force));
1244                                                 //      print(" (", ftos(a), ")\n");
1245                                                 //}
1246                                                 if(finaldmg || vlen(force))
1247                                                 {
1248                                                         if(targ.iscreature)
1249                                                         {
1250                                                                 total_damage_to_creatures += finaldmg;
1251
1252                                                                 if(accuracy_isgooddamage(attacker, targ))
1253                                                                         stat_damagedone += finaldmg;
1254                                                         }
1255
1256                                                         if(targ == directhitentity || DEATH_ISSPECIAL(deathtype))
1257                                                                 Damage (targ, inflictor, attacker, finaldmg, deathtype, nearest, force);
1258                                                         else
1259                                                                 Damage (targ, inflictor, attacker, finaldmg, deathtype | HITTYPE_SPLASH, nearest, force);
1260                                                 }
1261                                         }
1262                                 }
1263                         }
1264                 targ = next;
1265         }
1266
1267         RadiusDamage_running = 0;
1268
1269         if(!DEATH_ISSPECIAL(deathtype))
1270                 accuracy_add(attacker, DEATH_WEAPONOFWEAPONDEATH(deathtype), 0, min(coredamage, stat_damagedone));
1271
1272         return total_damage_to_creatures;
1273 }
1274
1275 .float fire_damagepersec;
1276 .float fire_endtime;
1277 .float fire_deathtype;
1278 .entity fire_owner;
1279 .float fire_hitsound;
1280 .entity fire_burner;
1281
1282 void fireburner_think();
1283
1284 float Fire_IsBurning(entity e)
1285 {
1286         return (time < e.fire_endtime);
1287 }
1288
1289 float Fire_AddDamage(entity e, entity o, float d, float t, float dt)
1290 {
1291         float dps;
1292         float maxtime, mintime, maxdamage, mindamage, maxdps, mindps, totaldamage, totaltime;
1293
1294         if(e.classname == "player")
1295         {
1296                 if(e.deadflag)
1297                         return -1;
1298         }
1299         else
1300         {
1301                 if(!e.fire_burner)
1302                 {
1303                         // print("adding a fire burner to ", e.classname, "\n");
1304                         e.fire_burner = spawn();
1305                         e.fire_burner.classname = "fireburner";
1306                         e.fire_burner.think = fireburner_think;
1307                         e.fire_burner.nextthink = time;
1308                         e.fire_burner.owner = e;
1309                 }
1310         }
1311
1312         t = max(t, 0.1);
1313         dps = d / t;
1314         if(Fire_IsBurning(e))
1315         {
1316                 mintime = e.fire_endtime - time;
1317                 maxtime = max(mintime, t);
1318
1319                 mindps = e.fire_damagepersec;
1320                 maxdps = max(mindps, dps);
1321
1322                 if(maxtime > mintime || maxdps > mindps)
1323                 {
1324                         // Constraints:
1325                         
1326                         // damage we have right now
1327                         mindamage = mindps * mintime;
1328
1329                         // damage we want to get
1330                         maxdamage = mindamage + d;
1331
1332                         // but we can't exceed maxtime * maxdps!
1333                         totaldamage = min(maxdamage, maxtime * maxdps);
1334
1335                         // LEMMA:
1336                         // Look at:
1337                         // totaldamage = min(mindamage + d, maxtime * maxdps)
1338                         // We see:
1339                         // totaldamage <= maxtime * maxdps
1340                         // ==> totaldamage / maxdps <= maxtime.
1341                         // We also see:
1342                         // totaldamage / mindps = min(mindamage / mindps + d, maxtime * maxdps / mindps)
1343                         //                     >= min(mintime, maxtime)
1344                         // ==> totaldamage / maxdps >= mintime.
1345
1346                         /*
1347                         // how long do we damage then?
1348                         // at least as long as before
1349                         // but, never exceed maxdps
1350                         totaltime = max(mintime, totaldamage / maxdps); // always <= maxtime due to lemma
1351                         */
1352
1353                         // alternate:
1354                         // at most as long as maximum allowed
1355                         // but, never below mindps
1356                         totaltime = min(maxtime, totaldamage / mindps); // always >= mintime due to lemma
1357
1358                         // assuming t > mintime, dps > mindps:
1359                         // we get d = t * dps = maxtime * maxdps
1360                         // totaldamage = min(maxdamage, maxtime * maxdps) = min(... + d, maxtime * maxdps) = maxtime * maxdps
1361                         // totaldamage / maxdps = maxtime
1362                         // totaldamage / mindps > totaldamage / maxdps = maxtime
1363                         // FROM THIS:
1364                         // a) totaltime = max(mintime, maxtime) = maxtime
1365                         // b) totaltime = min(maxtime, totaldamage / maxdps) = maxtime
1366
1367                         // assuming t <= mintime:
1368                         // we get maxtime = mintime
1369                         // a) totaltime = max(mintime, ...) >= mintime, also totaltime <= maxtime by the lemma, therefore totaltime = mintime = maxtime
1370                         // b) totaltime = min(maxtime, ...) <= maxtime, also totaltime >= mintime by the lemma, therefore totaltime = mintime = maxtime
1371
1372                         // assuming dps <= mindps:
1373                         // we get mindps = maxdps.
1374                         // With this, the lemma says that mintime <= totaldamage / mindps = totaldamage / maxdps <= maxtime.
1375                         // a) totaltime = max(mintime, totaldamage / maxdps) = totaldamage / maxdps
1376                         // b) totaltime = min(maxtime, totaldamage / mindps) = totaldamage / maxdps
1377
1378                         e.fire_damagepersec = totaldamage / totaltime;
1379                         e.fire_endtime = time + totaltime;
1380                         if(totaldamage > 1.2 * mindamage)
1381                         {
1382                                 e.fire_deathtype = dt;
1383                                 if(e.fire_owner != o)
1384                                 {
1385                                         e.fire_owner = o;
1386                                         e.fire_hitsound = FALSE;
1387                                 }
1388                         }
1389                         if(accuracy_isgooddamage(o, e))
1390                                 accuracy_add(o, DEATH_WEAPONOFWEAPONDEATH(dt), 0, max(0, totaldamage - mindamage));
1391                         return max(0, totaldamage - mindamage); // can never be negative, but to make sure
1392                 }
1393                 else
1394                         return 0;
1395         }
1396         else
1397         {
1398                 e.fire_damagepersec = dps;
1399                 e.fire_endtime = time + t;
1400                 e.fire_deathtype = dt;
1401                 e.fire_owner = o;
1402                 e.fire_hitsound = FALSE;
1403                 if(accuracy_isgooddamage(o, e))
1404                         accuracy_add(o, DEATH_WEAPONOFWEAPONDEATH(dt), 0, d);
1405                 return d;
1406         }
1407 }
1408
1409 void Fire_ApplyDamage(entity e)
1410 {
1411         float t, d, hi, ty;
1412         entity o;
1413
1414         if not(Fire_IsBurning(e))
1415                 return;
1416
1417         for(t = 0, o = e.owner; o.owner && t < 16; o = o.owner, ++t);
1418         if(clienttype(o) == CLIENTTYPE_NOTACLIENT)
1419                 o = e.fire_owner;
1420
1421         // water and slime stop fire
1422         if(e.waterlevel)
1423         if(e.watertype != CONTENT_LAVA)
1424                 e.fire_endtime = 0;
1425
1426         // ice stops fire
1427         if(e.freezetag_frozen)
1428                 e.fire_endtime = 0;
1429
1430         t = min(frametime, e.fire_endtime - time);
1431         d = e.fire_damagepersec * t;
1432
1433         hi = e.fire_owner.hitsound;
1434         ty = e.fire_owner.typehitsound;
1435         Damage(e, e, e.fire_owner, d, e.fire_deathtype, e.origin, '0 0 0');
1436         if(e.fire_hitsound && e.fire_owner)
1437         {
1438                 e.fire_owner.hitsound = hi;
1439                 e.fire_owner.typehitsound = ty;
1440         }
1441         e.fire_hitsound = TRUE;
1442
1443         if not(IS_INDEPENDENT_PLAYER(e))
1444         FOR_EACH_PLAYER(other) if(e != other)
1445         {
1446                 if(other.classname == "player")
1447                 if(other.deadflag == DEAD_NO)
1448                 if not(IS_INDEPENDENT_PLAYER(other))
1449                 if(boxesoverlap(e.absmin, e.absmax, other.absmin, other.absmax))
1450                 {
1451                         t = autocvar_g_balance_firetransfer_time * (e.fire_endtime - time);
1452                         d = autocvar_g_balance_firetransfer_damage * e.fire_damagepersec * t;
1453                         Fire_AddDamage(other, o, d, t, DEATH_FIRE);
1454                 }
1455         }
1456 }
1457
1458 void Fire_ApplyEffect(entity e)
1459 {
1460         if(Fire_IsBurning(e))
1461                 e.effects |= EF_FLAME;
1462         else
1463                 e.effects &~= EF_FLAME;
1464 }
1465
1466 void fireburner_think()
1467 {
1468         // for players, this is done in the regular loop
1469         if(wasfreed(self.owner))
1470         {
1471                 remove(self);
1472                 return;
1473         }
1474         Fire_ApplyEffect(self.owner);
1475         if(!Fire_IsBurning(self.owner))
1476         {
1477                 self.owner.fire_burner = world;
1478                 remove(self);
1479                 return;
1480         }
1481         Fire_ApplyDamage(self.owner);
1482         self.nextthink = time;
1483 }