6 float Damage_DamageInfo_SendEntity(entity to, float sf)
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);
20 void Damage_DamageInfo(vector org, float coredamage, float edgedamage, float rad, vector force, float deathtype, entity dmgowner)
22 // TODO maybe call this from non-edgedamage too?
23 // TODO maybe make the client do the particle effects for the weapons and the impact sounds using this info?
27 if(!sound_allowed(MSG_BROADCAST, dmgowner))
32 e.projectiledeathtype = deathtype;
34 e.dmg_edge = edgedamage;
36 e.dmg_force = vlen(force);
39 e.oldorigin_x = compressShortVector(e.velocity);
41 Net_LinkEntity(e, FALSE, 0.2, Damage_DamageInfo_SendEntity);
44 #define DAMAGE_CENTERPRINT_SPACER NEWLINES
46 float checkrules_firstblood;
49 float damage_goodhits;
50 float damage_gooddamage;
52 float damage_headshotbonus; // bonus multiplier for head shots, set to 0 after use
55 .float teamkill_complain;
56 .float teamkill_soundtime;
57 .entity teamkill_soundsource;
59 .float taunt_soundtime;
62 float IsDifferentTeam(entity a, entity b)
77 float IsFlying(entity a)
79 if(a.flags & FL_ONGROUND)
81 if(a.waterlevel >= WATERLEVEL_SWIMMING)
83 traceline(a.origin, a.origin - '0 0 48', MOVE_NORMAL, a);
84 if(trace_fraction < 1)
89 vector GetHeadshotMins(entity targ)
91 return '-0.5 0 0' * PL_HEAD_x + '0 -0.5 0' * PL_HEAD_y + '0 0 1' * (targ.maxs_z - PL_HEAD_z);
93 vector GetHeadshotMaxs(entity targ)
95 return '0.5 0 0' * PL_HEAD_x + '0 0.5 0' * PL_HEAD_y + '0 0 1' * targ.maxs_z;
98 void UpdateFrags(entity player, float f)
100 PlayerTeamScore_AddScore(player, f);
103 // NOTE: f=0 means still count as a (positive) kill, but count no frags for it
104 void W_SwitchWeapon_Force(entity e, float w);
105 void GiveFrags (entity attacker, entity targ, float f)
109 // TODO route through PlayerScores instead
117 PlayerScore_Add(attacker, SP_SUICIDES, 1);
122 PlayerScore_Add(attacker, SP_KILLS, -1); // or maybe add a teamkills field?
123 PlayerStats_Event(attacker, PLAYERSTATS_KILLS, -1);
129 PlayerScore_Add(attacker, SP_KILLS, 1);
130 PlayerStats_Event(attacker, PLAYERSTATS_KILLS, 1);
133 PlayerScore_Add(targ, SP_DEATHS, 1);
136 if(autocvar_g_arena_roundbased)
139 if(targ != attacker) // not for suicides
140 if(g_weaponarena_random)
142 // after a frag, choose another random weapon set
144 w = warmup_start_weapons;
148 attacker.weapons = randombits(w - (w & W_WeaponBit(attacker.weapon)), g_weaponarena_random, TRUE);
149 if(attacker.weapons < 0)
151 // error from randombits: no weapon available
152 // this means we can just give ALL weapons
153 attacker.weapons = w;
155 if not(attacker.weapons & W_WeaponBit(attacker.weapon))
156 W_SwitchWeapon_Force(attacker, w_getbestweapon(attacker));
159 // FIXME fix the mess this is (we have REAL points now!)
163 frag_attacker = attacker;
166 if(MUTATOR_CALLHOOK(GiveFragsForKill))
176 f = RunematchHandleFrags(attacker, targ, f);
182 tl = PlayerScore_Add(targ, SP_LMS_LIVES, -1);
183 if(tl < lms_lowest_lives)
184 lms_lowest_lives = tl;
188 lms_next_place = player_count;
189 PlayerScore_Add(targ, SP_LMS_RANK, lms_next_place); // won't ever spawn again
196 if(g_ctf_ignore_frags)
201 attacker.totalfrags += f;
204 UpdateFrags(attacker, f);
207 string AppendItemcodes(string s, entity player)
212 // w = player.switchweapon;
214 w = player.cnt; // previous weapon!
215 s = strcat(s, ftos(w));
216 if(time < player.strength_finished)
218 if(time < player.invincible_finished)
220 if(player.flagcarried != world)
222 if(player.BUTTON_CHAT)
227 s = strcat(s, "|", ftos(player.runes));
231 void LogDeath(string mode, float deathtype, entity killer, entity killed)
234 if(!autocvar_sv_eventlog)
236 s = strcat(":kill:", mode);
237 s = strcat(s, ":", ftos(killer.playerid));
238 s = strcat(s, ":", ftos(killed.playerid));
239 s = strcat(s, ":type=", ftos(deathtype));
240 s = strcat(s, ":items=");
241 s = AppendItemcodes(s, killer);
244 s = strcat(s, ":victimitems=");
245 s = AppendItemcodes(s, killed);
250 void Send_KillNotification (string s1, string s2, string s3, float msg, float type)
252 WriteByte(MSG_ALL, SVC_TEMPENTITY);
253 WriteByte(MSG_ALL, TE_CSQC_NOTIFY);
254 WriteByte(MSG_ALL, CSQC_KILLNOTIFY);
255 WriteString(MSG_ALL, s1);
256 WriteString(MSG_ALL, s2);
257 WriteString(MSG_ALL, s3);
258 WriteShort(MSG_ALL, msg);
259 WriteByte(MSG_ALL, type);
262 // Function is used to send a generic centerprint whose content CSQC gets to decide (gentle version or not in the below cases)
263 void Send_CSQC_Centerprint(entity e, string s1, string s2, float msg, float type)
265 if (clienttype(e) == CLIENTTYPE_REAL)
268 WRITESPECTATABLE_MSG_ONE({
269 WriteByte(MSG_ONE, SVC_TEMPENTITY);
270 WriteByte(MSG_ONE, TE_CSQC_NOTIFY);
271 WriteByte(MSG_ONE, CSQC_CENTERPRINT);
272 WriteString(MSG_ONE, s1);
273 WriteString(MSG_ONE, s2);
274 WriteShort(MSG_ONE, msg);
275 WriteByte(MSG_ONE, type);
280 void Obituary (entity attacker, entity inflictor, entity targ, float deathtype)
285 if (targ.classname == "player" || targ.classname == "corpse")
287 if (targ.classname == "corpse")
292 a = attacker.netname;
294 if (targ == attacker) // suicides
296 if (deathtype == DEATH_TEAMCHANGE || deathtype == DEATH_AUTOTEAMCHANGE)
297 msg = ColoredTeamName(targ.team); // TODO: check if needed?
298 Send_CSQC_Centerprint(targ, msg, "", deathtype, MSG_SUICIDE);
300 if(deathtype != DEATH_TEAMCHANGE && deathtype != DEATH_QUIET)
302 LogDeath("suicide", deathtype, targ, targ);
303 GiveFrags(attacker, targ, -1);
306 if (targ.killcount > 2)
307 msg = ftos(targ.killcount);
308 if(teams_matter && deathtype == DEATH_MIRRORDAMAGE)
310 if(attacker.team == COLOR_TEAM1)
311 deathtype = KILL_TEAM_RED;
313 deathtype = KILL_TEAM_BLUE;
316 Send_KillNotification(s, msg, ftos(w), deathtype, MSG_SUICIDE);
318 else if (attacker.classname == "player" || attacker.classname == "gib")
320 if(teams_matter && attacker.team == targ.team)
322 if(attacker.team == COLOR_TEAM1)
323 type = KILL_TEAM_RED;
325 type = KILL_TEAM_BLUE;
327 GiveFrags(attacker, targ, -1);
329 Send_CSQC_Centerprint(attacker, s, "", type, MSG_KILL);
331 if (targ.killcount > 2) {
332 msg = ftos(targ.killcount);
335 if (attacker.killcount > 2) {
336 msg = ftos(attacker.killcount);
337 type = KILL_TEAM_SPREE;
339 Send_KillNotification(a, s, msg, type, MSG_KILL);
341 attacker.killcount = 0;
343 LogDeath("tk", deathtype, attacker, targ);
347 if (!checkrules_firstblood)
349 checkrules_firstblood = TRUE;
350 Send_KillNotification(a, "", "", KILL_FIRST_BLOOD, MSG_KILL);
351 // TODO: make these print a newline if they dont
352 Send_CSQC_Centerprint(attacker, "", "", KILL_FIRST_BLOOD, MSG_KILL);
353 Send_CSQC_Centerprint(targ, "", "", KILL_FIRST_VICTIM, MSG_KILL);
356 if((autocvar_sv_fragmessage_information_typefrag) && (targ.BUTTON_CHAT)) {
357 Send_CSQC_Centerprint(attacker, s, GetAdvancedDeathReports(targ), KILL_TYPEFRAG, MSG_KILL);
358 Send_CSQC_Centerprint(targ, a, GetAdvancedDeathReports(attacker), KILL_TYPEFRAGGED, MSG_KILL);
360 Send_CSQC_Centerprint(attacker, s, GetAdvancedDeathReports(targ), KILL_FRAG, MSG_KILL);
361 Send_CSQC_Centerprint(targ, a, GetAdvancedDeathReports(attacker), KILL_FRAGGED, MSG_KILL);
364 attacker.taunt_soundtime = time + 1;
367 if (deathtype == DEATH_CUSTOM)
370 msg = inflictor.message2;
372 if(strstrofs(msg, "%", 0) < 0)
373 msg = strcat("%s ", msg, " by %s");
375 Send_KillNotification(a, s, msg, deathtype, MSG_KILL);
377 if(g_ctf && targ.flagcarried)
379 UpdateFrags(attacker, ctf_score_value("score_kill"));
380 PlayerScore_Add(attacker, SP_CTF_FCKILLS, 1);
381 GiveFrags(attacker, targ, 0); // for logging
384 GiveFrags(attacker, targ, 1);
386 if (targ.killcount > 2) {
387 Send_KillNotification(s, ftos(targ.killcount), a, KILL_END_SPREE, MSG_SPREE);
390 attacker.killcount = attacker.killcount + 1;
392 if (attacker.killcount > 2) {
393 Send_KillNotification(a, ftos(attacker.killcount), "", KILL_SPREE, MSG_SPREE);
395 else if (attacker.killcount == 3)
397 Send_KillNotification(a, "", "", KILL_SPREE_3, MSG_SPREE);
398 AnnounceTo(attacker, "03kills");
400 else if (attacker.killcount == 5)
402 Send_KillNotification(a, "", "", KILL_SPREE_5, MSG_SPREE);
403 AnnounceTo(attacker, "05kills");
405 else if (attacker.killcount == 10)
407 Send_KillNotification(a, "", "", KILL_SPREE_10, MSG_SPREE);
408 AnnounceTo(attacker, "10kills");
410 else if (attacker.killcount == 15)
412 Send_KillNotification(a, "", "", KILL_SPREE_15, MSG_SPREE);
413 AnnounceTo(attacker, "15kills");
415 else if (attacker.killcount == 20)
417 Send_KillNotification(a, "", "", KILL_SPREE_20, MSG_SPREE);
418 AnnounceTo(attacker, "20kills");
420 else if (attacker.killcount == 25)
422 Send_KillNotification(a, "", "", KILL_SPREE_25, MSG_SPREE);
423 AnnounceTo(attacker, "25kills");
425 else if (attacker.killcount == 30)
427 Send_KillNotification(a, "", "", KILL_SPREE_30, MSG_SPREE);
428 AnnounceTo(attacker, "30kills");
430 LogDeath("frag", deathtype, attacker, targ);
435 Send_CSQC_Centerprint(targ, "", "", deathtype, MSG_KILL_ACTION);
436 if (deathtype == DEATH_HURTTRIGGER && inflictor.message != "")
437 msg = inflictor.message;
438 else if (deathtype == DEATH_CUSTOM)
440 if(strstrofs(msg, "%", 0) < 0)
441 msg = strcat("%s ", msg);
443 GiveFrags(targ, targ, -1);
444 if(PlayerScore_Add(targ, SP_SCORE, 0) == -5) {
445 AnnounceTo(targ, "botlike");
447 Send_KillNotification(s, msg, "", deathtype, MSG_KILL_ACTION);
449 if (targ.killcount > 2)
450 Send_KillNotification(s, ftos(targ.killcount), "", 0, MSG_KILL_ACTION_SPREE);
452 LogDeath("accident", deathtype, targ, targ);
455 targ.death_origin = targ.origin;
457 targ.killer_origin = attacker.origin;
459 // FIXME: this should go in PutClientInServer
465 // these are updated by each Damage call for use in button triggering and such
467 entity damage_inflictor;
468 entity damage_attacker;
471 void Damage (entity targ, entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force)
476 entity attacker_save;
480 if (gameover || targ.killcount == -666)
483 local entity oldself;
487 damage_inflictor = inflictor;
488 damage_attacker = attacker;
489 attacker_save = attacker;
491 if(targ.classname == "player")
494 if(targ.hook.aiment == attacker)
495 RemoveGrapplingHook(targ); // STOP THAT, you parasite!
497 // special rule: gravity bomb does not hit team mates (other than for disconnecting the hook)
498 if(DEATH_ISWEAPON(deathtype, WEP_HOOK) || DEATH_ISWEAPON(deathtype, WEP_TUBA))
500 if(targ.classname == "player")
501 if not(IsDifferentTeam(targ, attacker))
508 if(deathtype == DEATH_KILL || deathtype == DEATH_TEAMCHANGE || deathtype == DEATH_AUTOTEAMCHANGE || deathtype == DEATH_QUIET)
510 // These are ALWAYS lethal
511 // No damage modification here
512 // Instead, prepare the victim for his death...
514 targ.spawnshieldtime = 0;
515 targ.health = 0.9; // this is < 1
516 targ.flags -= targ.flags & FL_GODMODE;
519 else if(deathtype == DEATH_MIRRORDAMAGE || deathtype == DEATH_NOAMMO)
525 if (targ.classname == "player")
526 if (attacker.classname == "player")
529 damage = damage * bound(0.1, (skill + 5) * 0.1, 1);
531 // nullify damage if teamplay is on
532 if(deathtype != DEATH_TELEFRAG)
533 if(attacker.classname == "player")
535 if(targ.classname == "player" && targ != attacker && (IS_INDEPENDENT_PLAYER(attacker) || IS_INDEPENDENT_PLAYER(targ)))
540 else if(teams_matter && attacker.team == targ.team)
542 if(autocvar_teamplay_mode == 1)
544 else if(attacker != targ)
546 if(autocvar_teamplay_mode == 3)
548 else if(autocvar_teamplay_mode == 4)
550 if(targ.classname == "player" && targ.deadflag == DEAD_NO)
552 teamdamage0 = max(attacker.dmg_team, autocvar_g_teamdamage_threshold);
553 attacker.dmg_team = attacker.dmg_team + damage;
554 if(attacker.dmg_team > teamdamage0 && !g_ca)
555 mirrordamage = autocvar_g_mirrordamage * (attacker.dmg_team - teamdamage0);
556 mirrorforce = autocvar_g_mirrordamage * vlen(force);
559 if(autocvar_g_friendlyfire == 0)
565 damage = autocvar_g_friendlyfire * damage;
566 // mirrordamage will be used LATER
575 if(targ.classname == "player")
576 if(attacker.classname == "player")
579 targ.lms_traveled_distance = autocvar_g_lms_campcheck_distance;
580 attacker.lms_traveled_distance = autocvar_g_lms_campcheck_distance;
583 if(targ.classname == "player")
586 if ((deathtype == DEATH_FALL) ||
587 (deathtype == DEATH_DROWN) ||
588 (deathtype == DEATH_SLIME) ||
589 (deathtype == DEATH_LAVA) ||
590 (!DEATH_ISWEAPON(deathtype, WEP_LASER) && damage > 0 && damage < 100))
597 if (targ.armorvalue && (deathtype == WEP_MINSTANEX) && damage)
599 targ.armorvalue -= 1;
600 centerprint(targ, strcat(DAMAGE_CENTERPRINT_SPACER, "^3Remaining extra lives: ",ftos(targ.armorvalue)));
603 attacker.hitsound += 1; // TODO change this to a future specific hitsound for armor hit
605 if (DEATH_ISWEAPON(deathtype, WEP_LASER))
608 if (targ != attacker)
610 if ((targ.health >= 1) && (targ.classname == "player"))
611 centerprint(attacker, strcat(DAMAGE_CENTERPRINT_SPACER, "Secondary fire inflicts no damage!"));
621 if not(DEATH_ISSPECIAL(deathtype))
623 damage *= g_weapondamagefactor;
624 mirrordamage *= g_weapondamagefactor;
625 force = force * g_weaponforcefactor;
626 mirrorforce *= g_weaponforcefactor;
629 // should this be changed at all? If so, in what way?
630 frag_attacker = attacker;
632 frag_damage = damage;
634 frag_deathtype = deathtype;
635 MUTATOR_CALLHOOK(PlayerDamage_Calculate);
636 damage = frag_damage;
639 // apply strength multiplier
640 if ((attacker.items & IT_STRENGTH) && !g_minstagib)
644 damage = damage * autocvar_g_balance_powerup_strength_selfdamage;
645 force = force * autocvar_g_balance_powerup_strength_selfforce;
649 damage = damage * autocvar_g_balance_powerup_strength_damage;
650 force = force * autocvar_g_balance_powerup_strength_force;
654 // apply invincibility multiplier
655 if (targ.items & IT_INVINCIBLE && !g_minstagib)
656 damage = damage * autocvar_g_balance_powerup_invincible_takedamage;
658 if (targ == attacker)
660 if(g_ca || (g_cts && !autocvar_g_cts_selfdamage))
663 damage = damage * autocvar_g_balance_selfdamagepercent; // Partial damage if the attacker hits himself
666 // CTF: reduce damage/force
671 damage = damage * autocvar_g_ctf_flagcarrier_selfdamage;
672 force = force * autocvar_g_ctf_flagcarrier_selfforce;
677 // apply strength rune
678 if (attacker.runes & RUNE_STRENGTH)
680 if(attacker.runes & CURSE_WEAK) // have both curse & rune
682 damage = damage * autocvar_g_balance_rune_strength_combo_damage;
683 force = force * autocvar_g_balance_rune_strength_combo_force;
687 damage = damage * autocvar_g_balance_rune_strength_damage;
688 force = force * autocvar_g_balance_rune_strength_force;
691 else if (attacker.runes & CURSE_WEAK)
693 damage = damage * autocvar_g_balance_curse_weak_damage;
694 force = force * autocvar_g_balance_curse_weak_force;
697 // apply defense rune
698 if (targ.runes & RUNE_DEFENSE)
700 if (targ.runes & CURSE_VULNER) // have both curse & rune
701 damage = damage * autocvar_g_balance_rune_defense_combo_takedamage;
703 damage = damage * autocvar_g_balance_rune_defense_takedamage;
705 else if (targ.runes & CURSE_VULNER)
706 damage = damage * autocvar_g_balance_curse_vulner_takedamage;
712 if(targ.takedamage == DAMAGE_AIM)
715 if(targ.classname == "player")
718 // find height of hit on player axis
719 // if above view_ofs and below maxs, and also in the middle half of the bbox, it is head shot
720 vector headmins, headmaxs, org;
721 org = antilag_takebackorigin(targ, time - ANTILAG_LATENCY(attacker));
722 headmins = org + GetHeadshotMins(targ);
723 headmaxs = org + GetHeadshotMaxs(targ);
724 if(trace_hits_box(railgun_start, railgun_end, headmins, headmaxs))
726 deathtype |= HITTYPE_HEADSHOT;
729 else if(targ.classname == "turret_head")
731 deathtype |= HITTYPE_HEADSHOT;
733 if(deathtype & HITTYPE_HEADSHOT)
734 damage *= 1 + damage_headshotbonus;
736 if(targ.classname == "player")
738 if(IsDifferentTeam(targ, attacker))
742 if(attacker.weapon != WEP_ELECTRO && attacker.weapon != WEP_LASER || ((attacker.weapon == WEP_ELECTRO && autocvar_g_balance_electro_lightning || attacker.weapon == WEP_LASER) && attacker.prevhitsound + autocvar_sv_hitsound_antispam_time < time))
745 attacker.typehitsound += 1;
747 attacker.hitsound += 1;
748 attacker.prevhitsound = time;
751 damage_goodhits += 1;
752 damage_gooddamage += damage;
754 if not(DEATH_ISSPECIAL(deathtype))
761 if(targ.items & IT_STRENGTH)
764 if(deathtype & HITTYPE_HEADSHOT)
768 PlayerScore_Add(attacker, SP_SCORE, damage * autocvar_g_ca_damage2score_multiplier);
773 if(deathtype != DEATH_FIRE)
774 attacker.typehitsound += 1;
776 if(time > attacker.teamkill_complain)
778 attacker.teamkill_complain = time + 5;
779 attacker.teamkill_soundtime = time + 0.4;
780 attacker.teamkill_soundsource = targ;
788 if (self.damageforcescale)
790 if (self.classname != "player" || time >= self.spawnshieldtime || g_midair)
792 self.velocity = self.velocity + self.damageforcescale * force;
793 self.flags &~= FL_ONGROUND;
794 UpdateCSQCProjectile(self);
797 if (damage != 0 || (self.damageforcescale && vlen(force)))
798 if (self.event_damage)
799 self.event_damage (inflictor, attacker, damage, deathtype, hitloc, force);
802 if(targ.classname == "player" && attacker.classname == "player" && attacker != targ && attacker.health > 2)
806 if (attacker.runes & RUNE_VAMPIRE)
808 // apply vampire rune
809 if (attacker.runes & CURSE_EMPATHY) // have the curse too
811 //attacker.health = attacker.health + damage * autocvar_g_balance_rune_vampire_combo_absorb;
812 attacker.health = bound(
813 autocvar_g_balance_curse_empathy_minhealth, // LA: was 3, now 40
814 attacker.health + damage * autocvar_g_balance_rune_vampire_combo_absorb,
815 autocvar_g_balance_rune_vampire_maxhealth); // LA: was 1000, now 500
819 //attacker.health = attacker.health + damage * autocvar_g_balance_rune_vampire_absorb;
820 attacker.health = bound(
821 attacker.health, // LA: was 3, but changed so that you can't lose health
822 // empathy won't let you gain health in the same way...
823 attacker.health + damage * autocvar_g_balance_rune_vampire_absorb,
824 autocvar_g_balance_rune_vampire_maxhealth); // LA: was 1000, now 500
827 // apply empathy curse
828 else if (attacker.runes & CURSE_EMPATHY)
830 attacker.health = bound(
831 autocvar_g_balance_curse_empathy_minhealth, // LA: was 3, now 20
832 attacker.health + damage * autocvar_g_balance_curse_empathy_takedamage,
838 // apply mirror damage if any
839 if(mirrordamage > 0 || mirrorforce > 0)
841 attacker = attacker_save;
845 // just lose extra LIVES, don't kill the player for mirror damage
846 if(attacker.armorvalue > 0)
848 attacker.armorvalue = attacker.armorvalue - 1;
849 centerprint(attacker, strcat(DAMAGE_CENTERPRINT_SPACER, "^3Remaining extra lives: ",ftos(attacker.armorvalue)));
850 attacker.hitsound += 1;
854 force = normalize(attacker.origin + attacker.view_ofs - hitloc) * mirrorforce;
855 Damage(attacker, inflictor, attacker, mirrordamage, DEATH_MIRRORDAMAGE, attacker.origin, force);
859 float RadiusDamage_running;
860 float RadiusDamage (entity inflictor, entity attacker, float coredamage, float edgedamage, float rad, entity ignore, float forceintensity, float deathtype, entity directhitentity)
861 // Returns total damage applies to creatures
871 float total_damage_to_creatures;
876 float stat_damagedone;
878 if(RadiusDamage_running)
880 backtrace("RadiusDamage called recursively! Expect stuff to go HORRIBLY wrong.");
884 RadiusDamage_running = 1;
886 tfloordmg = autocvar_g_throughfloor_damage;
887 tfloorforce = autocvar_g_throughfloor_force;
889 blastorigin = (inflictor.origin + (inflictor.mins + inflictor.maxs) * 0.5);
890 total_damage_to_creatures = 0;
892 if(deathtype != (WEP_HOOK | HITTYPE_SECONDARY | HITTYPE_BOUNCE)) // only send gravity bomb damage once
893 if(DEATH_WEAPONOF(deathtype) != WEP_TUBA) // do not send tuba damage (bandwidth hog)
895 force = inflictor.velocity;
899 force = normalize(force);
900 if(forceintensity >= 0)
901 Damage_DamageInfo(blastorigin, coredamage, edgedamage, rad, forceintensity * force, deathtype, attacker);
903 Damage_DamageInfo(blastorigin, coredamage, edgedamage, -rad, (-forceintensity) * force, deathtype, attacker);
908 targ = WarpZone_FindRadius (blastorigin, rad, FALSE);
912 if (targ != inflictor)
913 if (ignore != targ) if(targ.takedamage)
915 // LordHavoc: measure distance to nearest point on target (not origin)
916 // (this guarentees 100% damage on a touch impact)
917 nearest = targ.WarpZone_findradius_nearest;
918 diff = targ.WarpZone_findradius_dist;
919 // round up a little on the damage to ensure full damage on impacts
920 // and turn the distance into a fraction of the radius
921 power = 1 - ((vlen (diff) - 2) / rad);
923 //bprint(ftos(power));
924 //if (targ == attacker)
925 // print(ftos(power), "\n");
930 finaldmg = coredamage * power + edgedamage * (1 - power);
937 local float hitratio;
939 local vector myblastorigin;
940 myblastorigin = WarpZone_TransformOrigin(targ, blastorigin);
941 center = targ.origin + (targ.mins + targ.maxs) * 0.5;
942 // if it's a player, use the view origin as reference
943 if (targ.classname == "player")
944 center = targ.origin + targ.view_ofs;
945 force = normalize(center - myblastorigin);
946 force = force * (finaldmg / coredamage) * forceintensity;
947 // test line of sight to multiple positions on box,
948 // and do damage if any of them hit
950 if (targ.classname == "player")
951 total = ceil(bound(1, finaldmg, 50));
953 total = ceil(bound(1, finaldmg/10, 5));
958 //traceline(targ.WarpZone_findradius_findorigin, nearest, MOVE_NOMONSTERS, inflictor);
959 WarpZone_TraceLine(blastorigin, WarpZone_UnTransformOrigin(targ, nearest), MOVE_NOMONSTERS, inflictor);
960 if (trace_fraction == 1 || trace_ent == targ)
964 hitloc = hitloc + nearest;
968 nearest_x = targ.origin_x + targ.mins_x + random() * targ.size_x;
969 nearest_y = targ.origin_y + targ.mins_y + random() * targ.size_y;
970 nearest_z = targ.origin_z + targ.mins_z + random() * targ.size_z;
973 nearest = hitloc * (1 / max(1, hits));
974 hitratio = (hits / total);
975 a = bound(0, tfloordmg + (1-tfloordmg) * hitratio, 1);
976 finaldmg = finaldmg * a;
977 a = bound(0, tfloorforce + (1-tfloorforce) * hitratio, 1);
980 // laser force adjustments :P
981 if(DEATH_WEAPONOF(deathtype) == WEP_LASER)
986 float force_velocitybiasramp;
987 float force_velocitybias;
989 force_velocitybiasramp = autocvar_sv_maxspeed;
990 if(deathtype & HITTYPE_SECONDARY)
992 force_zscale = autocvar_g_balance_laser_secondary_force_zscale;
993 force_velocitybias = autocvar_g_balance_laser_secondary_force_velocitybias;
997 force_zscale = autocvar_g_balance_laser_primary_force_zscale;
998 force_velocitybias = autocvar_g_balance_laser_primary_force_velocitybias;
1001 vel = targ.velocity;
1003 vel = normalize(vel) * bound(0, vlen(vel) / force_velocitybiasramp, 1) * force_velocitybias;
1007 normalize(normalize(force) + vel);
1009 force_z *= force_zscale;
1012 //if (targ == attacker)
1014 // print("hits ", ftos(hits), " / ", ftos(total));
1015 // print(" finaldmg ", ftos(finaldmg), " force ", vtos(force));
1016 // print(" (", ftos(a), ")\n");
1018 if(hits || tfloordmg || tfloorforce)
1022 total_damage_to_creatures += finaldmg;
1024 if(accuracy_isgooddamage(attacker, targ))
1025 stat_damagedone += finaldmg;
1028 if(targ == directhitentity || DEATH_ISSPECIAL(deathtype))
1029 Damage (targ, inflictor, attacker, finaldmg, deathtype, nearest, force);
1031 Damage (targ, inflictor, attacker, finaldmg, deathtype | HITTYPE_SPLASH, nearest, force);
1039 RadiusDamage_running = 0;
1041 if(!DEATH_ISSPECIAL(deathtype))
1042 accuracy_add(attacker, DEATH_WEAPONOFWEAPONDEATH(deathtype), 0, min(coredamage, stat_damagedone));
1044 return total_damage_to_creatures;
1047 .float fire_damagepersec;
1048 .float fire_endtime;
1049 .float fire_deathtype;
1051 .float fire_hitsound;
1052 .entity fire_burner;
1054 void fireburner_think();
1056 float Fire_IsBurning(entity e)
1058 return (time < e.fire_endtime);
1061 float Fire_AddDamage(entity e, entity o, float d, float t, float dt)
1064 float maxtime, mintime, maxdamage, mindamage, maxdps, mindps, totaldamage, totaltime;
1066 if(e.classname == "player")
1075 // print("adding a fire burner to ", e.classname, "\n");
1076 e.fire_burner = spawn();
1077 e.fire_burner.classname = "fireburner";
1078 e.fire_burner.think = fireburner_think;
1079 e.fire_burner.nextthink = time;
1080 e.fire_burner.owner = e;
1086 if(Fire_IsBurning(e))
1088 mintime = e.fire_endtime - time;
1089 maxtime = max(mintime, t);
1091 mindps = e.fire_damagepersec;
1092 maxdps = max(mindps, dps);
1094 if(maxtime > mintime || maxdps > mindps)
1096 mindamage = mindps * mintime;
1097 maxdamage = mindamage + d;
1099 // interval [mintime, maxtime] * [mindps, maxdps]
1101 // [mindamage, maxdamage]
1104 if(maxdamage >= maxtime * maxdps)
1106 totaltime = maxtime;
1107 totaldamage = maxtime * maxdps;
1109 // this branch increases totaldamage if either t > mintime, or dps > mindps
1113 // maxdamage is inside the interval!
1114 // first, try to use mindps; only if this fails, increase dps as needed
1115 totaltime = min(maxdamage / mindps, maxtime); // maxdamage / mindps >= mindamage / mindps = mintime
1116 totaldamage = maxdamage;
1117 // can totaldamage / totaltime be >= maxdps?
1118 // max(mindps, maxdamage / maxtime) >= maxdps?
1119 // we know maxdamage < maxtime * maxdps
1122 // this branch ALWAYS increases totaldamage, but requires maxdamage < maxtime * maxdps
1125 // total conditions for increasing:
1126 // maxtime > mintime OR maxdps > mindps OR maxtime * maxdps > maxdamage
1128 // if maxtime = mintime, maxdps = mindps
1130 // maxdamage = mindamage + d
1131 // mindamage = mindps * mintime = maxdps * maxtime < maxdamage!
1132 // so the last condition is not needed
1134 e.fire_damagepersec = totaldamage / totaltime;
1135 e.fire_endtime = time + totaltime;
1136 if(totaldamage > 1.2 * mindamage)
1138 e.fire_deathtype = dt;
1139 if(e.fire_owner != o)
1142 e.fire_hitsound = FALSE;
1145 if(accuracy_isgooddamage(o, e))
1146 accuracy_add(o, DEATH_WEAPONOFWEAPONDEATH(dt), 0, max(0, totaldamage - mindamage));
1147 return max(0, totaldamage - mindamage); // can never be negative, but to make sure
1154 e.fire_damagepersec = dps;
1155 e.fire_endtime = time + t;
1156 e.fire_deathtype = dt;
1158 e.fire_hitsound = FALSE;
1159 if(accuracy_isgooddamage(o, e))
1160 accuracy_add(o, DEATH_WEAPONOFWEAPONDEATH(dt), 0, d);
1165 void Fire_ApplyDamage(entity e)
1170 if not(Fire_IsBurning(e))
1173 for(t = 0, o = e.owner; o.owner && t < 16; o = o.owner, ++t);
1174 if(clienttype(o) == CLIENTTYPE_NOTACLIENT)
1177 // water and slime stop fire
1179 if(e.watertype != CONTENT_LAVA)
1182 t = min(frametime, e.fire_endtime - time);
1183 d = e.fire_damagepersec * t;
1185 hi = e.fire_owner.hitsound;
1186 ty = e.fire_owner.typehitsound;
1187 Damage(e, e, e.fire_owner, d, e.fire_deathtype, e.origin, '0 0 0');
1188 if(e.fire_hitsound && e.fire_owner)
1190 e.fire_owner.hitsound = hi;
1191 e.fire_owner.typehitsound = ty;
1193 e.fire_hitsound = TRUE;
1195 if not(IS_INDEPENDENT_PLAYER(e))
1196 FOR_EACH_PLAYER(other) if(e != other)
1198 if(other.classname == "player")
1199 if(other.deadflag == DEAD_NO)
1200 if not(IS_INDEPENDENT_PLAYER(other))
1201 if(boxesoverlap(e.absmin, e.absmax, other.absmin, other.absmax))
1203 t = autocvar_g_balance_firetransfer_time * (e.fire_endtime - time);
1204 d = autocvar_g_balance_firetransfer_damage * e.fire_damagepersec * t;
1205 Fire_AddDamage(other, o, d, t, DEATH_FIRE);
1210 void Fire_ApplyEffect(entity e)
1212 if(Fire_IsBurning(e))
1213 e.effects |= EF_FLAME;
1215 e.effects &~= EF_FLAME;
1218 void fireburner_think()
1220 // for players, this is done in the regular loop
1221 if(wasfreed(self.owner))
1226 Fire_ApplyEffect(self.owner);
1227 if(!Fire_IsBurning(self.owner))
1229 self.owner.fire_burner = world;
1233 Fire_ApplyDamage(self.owner);
1234 self.nextthink = time;