4 #include <lib/warpzone/common.qh>
5 #include "../constants.qh"
9 #include "sv_monsters.qh"
10 #include "../physics/movelib.qh"
11 #include "../weapons/all.qh"
12 #include <server/autocvars.qh>
13 #include <server/defs.qh>
14 #include "../deathtypes/all.qh"
15 #include <server/mutators/all.qh>
16 #include <server/steerlib.qh>
17 #include "../turrets/sv_turrets.qh"
18 #include "../turrets/util.qh"
19 #include "../vehicles/all.qh"
20 #include <server/campaign.qh>
21 #include <server/command/common.qh>
22 #include <server/command/cmd.qh>
23 #include "../triggers/triggers.qh"
24 #include <lib/csqcmodel/sv_model.qh>
25 #include <server/round_handler.qh>
28 void monsters_setstatus(entity this)
30 this.stat_monsters_total = monsters_total;
31 this.stat_monsters_killed = monsters_killed;
34 void monster_dropitem(entity this, entity attacker)
36 if(!this.candrop || !this.monster_loot)
39 vector org = this.origin + ((this.mins + this.maxs) * 0.5);
40 entity e = new(droppedweapon); // use weapon handling to remove it on touch
41 e.spawnfunc_checked = true;
43 e.monster_loot = this.monster_loot;
45 MUTATOR_CALLHOOK(MonsterDropItem, this, e, attacker);
46 e = M_ARGV(1, entity);
48 if(e && e.monster_loot)
53 set_movetype(e, MOVETYPE_TOSS);
56 e.velocity = randomvec() * 175 + '0 0 325';
57 e.item_spawnshieldtime = time + 0.7;
58 SUB_SetFade(e, time + autocvar_g_monsters_drop_time, 1);
62 void monster_makevectors(entity this, entity targ)
66 vector v = targ.origin + (targ.mins + targ.maxs) * 0.5;
67 this.v_angle = vectoangles(v - (this.origin + this.view_ofs));
68 this.v_angle_x = -this.v_angle_x;
71 makevectors(this.v_angle);
78 bool Monster_ValidTarget(entity this, entity targ)
80 // ensure we're not checking nonexistent monster/target
81 if(!this || !targ) { return false; }
84 || (autocvar_g_monsters_lineofsight && !checkpvs(this.origin + this.view_ofs, targ)) // enemy cannot be seen
85 || (IS_VEHICLE(targ) && !((get_monsterinfo(this.monsterid)).spawnflags & MON_FLAG_RANGED)) // melee vs vehicle is useless
86 || (time < game_starttime) // monsters do nothing before match has started
87 || (targ.takedamage == DAMAGE_NO)
88 || (targ.items & IT_INVISIBILITY)
89 || (IS_SPEC(targ) || IS_OBSERVER(targ)) // don't attack spectators
90 || (!IS_VEHICLE(targ) && (IS_DEAD(targ) || IS_DEAD(this) || targ.health <= 0 || this.health <= 0))
91 || (this.monster_follow == targ || targ.monster_follow == this)
92 || (!IS_VEHICLE(targ) && (targ.flags & FL_NOTARGET))
93 || (!autocvar_g_monsters_typefrag && PHYS_INPUT_BUTTON_CHAT(targ))
94 || (SAME_TEAM(targ, this))
95 || (STAT(FROZEN, targ))
96 || (targ.alpha != 0 && targ.alpha < 0.5)
99 // if any of the above checks fail, target is not valid
103 traceline(this.origin + this.view_ofs, targ.origin, 0, this);
105 if((trace_fraction < 1) && (trace_ent != targ))
108 if(autocvar_g_monsters_target_infront || (this.spawnflags & MONSTERFLAG_INFRONT))
109 if(this.enemy != targ)
113 makevectors (this.angles);
114 dot = normalize (targ.origin - this.origin) * v_forward;
116 if(dot <= autocvar_g_monsters_target_infront_range) { return false; }
119 return true; // this target is valid!
122 entity Monster_FindTarget(entity mon)
124 if(MUTATOR_CALLHOOK(MonsterFindTarget)) { return mon.enemy; } // Handled by a mutator
126 entity closest_target = NULL;
128 // find the closest acceptable target to pass to
129 FOREACH_ENTITY_RADIUS(mon.origin, mon.target_range, it.monster_attack,
131 if(Monster_ValidTarget(mon, it))
133 // if it's a player, use the view origin as reference (stolen from RadiusDamage functions in g_damage.qc)
134 vector head_center = CENTER_OR_VIEWOFS(it);
135 vector ent_center = CENTER_OR_VIEWOFS(mon);
139 vector closest_target_center = CENTER_OR_VIEWOFS(closest_target);
140 if(vlen2(ent_center - head_center) < vlen2(ent_center - closest_target_center))
141 { closest_target = it; }
143 else { closest_target = it; }
147 return closest_target;
150 void monster_setupcolors(entity mon)
152 if(IS_PLAYER(mon.realowner))
153 mon.colormap = mon.realowner.colormap;
154 else if(teamplay && mon.team)
155 mon.colormap = 1024 + (mon.team - 1) * 17;
158 if(mon.monster_skill <= MONSTER_SKILL_EASY)
160 else if(mon.monster_skill <= MONSTER_SKILL_MEDIUM)
162 else if(mon.monster_skill <= MONSTER_SKILL_HARD)
164 else if(mon.monster_skill <= MONSTER_SKILL_INSANE)
166 else if(mon.monster_skill <= MONSTER_SKILL_NIGHTMARE)
173 void monster_changeteam(entity ent, float newteam)
175 if(!teamplay) { return; }
178 ent.monster_attack = true; // new team, activate attacking
179 monster_setupcolors(ent);
183 WaypointSprite_UpdateTeamRadar(ent.sprite, RADARICON_DANGER, ((newteam) ? Team_ColorRGB(newteam) : '1 0 0'));
185 ent.sprite.team = newteam;
186 ent.sprite.SendFlags |= 1;
190 .void(entity) monster_delayedfunc;
191 void Monster_Delay_Action(entity this)
193 if(Monster_ValidTarget(this.owner, this.owner.enemy)) { this.monster_delayedfunc(this.owner); }
198 setthink(this, Monster_Delay_Action);
199 this.nextthink = time + this.count;
203 setthink(this, SUB_Remove);
204 this.nextthink = time;
208 void Monster_Delay(entity this, int repeat_count, float defer_amnt, void(entity) func)
210 // deferred attacking, checks if monster is still alive and target is still valid before attacking
213 setthink(e, Monster_Delay_Action);
214 e.nextthink = time + defer_amnt;
215 e.count = defer_amnt;
217 e.monster_delayedfunc = func;
218 e.cnt = repeat_count;
226 string get_monster_model_datafilename(string m, float sk, string fil)
231 m = "models/monsters/*_";
233 m = strcat(m, ftos(sk));
236 return strcat(m, ".", fil);
239 void Monster_Sound_Precache(string f)
243 fh = fopen(f, FILE_READ);
246 while((s = fgets(fh)))
248 if(tokenize_console(s) != 3)
250 LOG_TRACE("Invalid sound info line: ", s, "\n");
253 PrecacheGlobalSound(strcat(argv(1), " ", argv(2)));
258 void Monster_Sounds_Precache(entity this)
260 string m = (Monsters_from(this.monsterid)).m_model.model_str();
261 float globhandle, n, i;
264 globhandle = search_begin(strcat(m, "_*.sounds"), true, false);
267 n = search_getsize(globhandle);
268 for (i = 0; i < n; ++i)
270 //print(search_getfilename(globhandle, i), "\n");
271 f = search_getfilename(globhandle, i);
272 Monster_Sound_Precache(f);
274 search_end(globhandle);
277 void Monster_Sounds_Clear(entity this)
279 #define _MSOUND(m) if(this.monstersound_##m) { strunzone(this.monstersound_##m); this.monstersound_##m = string_null; }
284 .string Monster_Sound_SampleField(string type)
286 GetMonsterSoundSampleField_notFound = 0;
289 #define _MSOUND(m) case #m: return monstersound_##m;
293 GetMonsterSoundSampleField_notFound = 1;
297 bool Monster_Sounds_Load(entity this, string f, int first)
302 fh = fopen(f, FILE_READ);
305 LOG_TRACE("Monster sound file not found: ", f, "\n");
308 while((s = fgets(fh)))
310 if(tokenize_console(s) != 3)
312 field = Monster_Sound_SampleField(argv(0));
313 if(GetMonsterSoundSampleField_notFound)
316 strunzone(this.(field));
317 this.(field) = strzone(strcat(argv(1), " ", argv(2)));
323 .int skin_for_monstersound;
324 void Monster_Sounds_Update(entity this)
326 if(this.skin == this.skin_for_monstersound) { return; }
328 this.skin_for_monstersound = this.skin;
329 Monster_Sounds_Clear(this);
330 if(!Monster_Sounds_Load(this, get_monster_model_datafilename(this.model, this.skin, "sounds"), 0))
331 Monster_Sounds_Load(this, get_monster_model_datafilename(this.model, 0, "sounds"), 0);
334 void Monster_Sound(entity this, .string samplefield, float sound_delay, float delaytoo, float chan)
336 if(!autocvar_g_monsters_sounds) { return; }
339 if(time < this.msound_delay)
341 GlobalSound_string(this, this.(samplefield), chan, VOL_BASE, VOICETYPE_PLAYERSOUND);
343 this.msound_delay = time + sound_delay;
347 // =======================
348 // Monster attack handlers
349 // =======================
351 bool Monster_Attack_Melee(entity this, entity targ, float damg, vector anim, float er, float animtime, int deathtype, bool dostop)
353 if(dostop && IS_MONSTER(this)) { this.state = MONSTER_ATTACK_MELEE; }
355 setanim(this, anim, false, true, false);
357 if(this.animstate_endtime > time && IS_MONSTER(this))
358 this.attack_finished_single[0] = this.anim_finished = this.animstate_endtime;
360 this.attack_finished_single[0] = this.anim_finished = time + animtime;
362 monster_makevectors(this, targ);
364 traceline(this.origin + this.view_ofs, this.origin + v_forward * er, 0, this);
366 if(trace_ent.takedamage)
367 Damage(trace_ent, this, this, damg * MONSTER_SKILLMOD(this), deathtype, trace_ent.origin, normalize(trace_ent.origin - this.origin));
372 bool Monster_Attack_Leap_Check(entity this, vector vel)
374 if(this.state && IS_MONSTER(this))
375 return false; // already attacking
376 if(!IS_ONGROUND(this))
377 return false; // not on the ground
378 if(this.health <= 0 || IS_DEAD(this))
379 return false; // called when dead?
380 if(time < this.attack_finished_single[0])
381 return false; // still attacking
383 vector old = this.velocity;
386 tracetoss(this, this);
388 if (trace_ent != this.enemy)
394 bool Monster_Attack_Leap(entity this, vector anm, void(entity this, entity toucher) touchfunc, vector vel, float animtime)
396 if(!Monster_Attack_Leap_Check(this, vel))
399 setanim(this, anm, false, true, false);
401 if(this.animstate_endtime > time && (this.flags & FL_MONSTER))
402 this.attack_finished_single[0] = this.anim_finished = this.animstate_endtime;
404 this.attack_finished_single[0] = this.anim_finished = time + animtime;
406 if(this.flags & FL_MONSTER)
407 this.state = MONSTER_ATTACK_RANGED;
408 settouch(this, touchfunc);
411 UNSET_ONGROUND(this);
416 void Monster_Attack_Check(entity this, entity targ)
418 if((this == NULL || targ == NULL)
419 || (!this.monster_attackfunc)
420 || (time < this.attack_finished_single[0])
423 if(vdist(targ.origin - this.origin, <=, this.attack_range))
425 bool attack_success = this.monster_attackfunc(MONSTER_ATTACK_MELEE, this, targ);
426 if(attack_success == 1)
427 Monster_Sound(this, monstersound_melee, 0, false, CH_VOICE);
428 else if(attack_success > 0)
432 if(vdist(targ.origin - this.origin, >, this.attack_range))
434 float attack_success = this.monster_attackfunc(MONSTER_ATTACK_RANGED, this, targ);
435 if(attack_success == 1)
436 Monster_Sound(this, monstersound_melee, 0, false, CH_VOICE);
437 else if(attack_success > 0)
443 // ======================
444 // Main monster functions
445 // ======================
447 void Monster_UpdateModel(entity this)
449 // assume some defaults
450 /*this.anim_idle = animfixfps(this, '0 1 0.01', '0 0 0');
451 this.anim_walk = animfixfps(this, '1 1 0.01', '0 0 0');
452 this.anim_run = animfixfps(this, '2 1 0.01', '0 0 0');
453 this.anim_fire1 = animfixfps(this, '3 1 0.01', '0 0 0');
454 this.anim_fire2 = animfixfps(this, '4 1 0.01', '0 0 0');
455 this.anim_melee = animfixfps(this, '5 1 0.01', '0 0 0');
456 this.anim_pain1 = animfixfps(this, '6 1 0.01', '0 0 0');
457 this.anim_pain2 = animfixfps(this, '7 1 0.01', '0 0 0');
458 this.anim_die1 = animfixfps(this, '8 1 0.01', '0 0 0');
459 this.anim_die2 = animfixfps(this, '9 1 0.01', '0 0 0');*/
461 // then get the real values
462 Monster mon = get_monsterinfo(this.monsterid);
463 mon.mr_anim(mon, this);
466 void Monster_Touch(entity this, entity toucher)
468 if(toucher == NULL) { return; }
470 if(toucher.monster_attack)
471 if(this.enemy != toucher)
472 if(!IS_MONSTER(toucher))
473 if(Monster_ValidTarget(this, toucher))
474 this.enemy = toucher;
477 void Monster_Miniboss_Check(entity this)
479 if(MUTATOR_CALLHOOK(MonsterCheckBossFlag, this))
482 float chance = random() * 100;
484 // g_monsters_miniboss_chance cvar or spawnflags 64 causes a monster to be a miniboss
485 if ((this.spawnflags & MONSTERFLAG_MINIBOSS) || (chance < autocvar_g_monsters_miniboss_chance))
487 this.health += autocvar_g_monsters_miniboss_healthboost;
488 this.effects |= EF_RED;
490 this.weapon = WEP_VORTEX.m_id;
494 bool Monster_Respawn_Check(entity this)
496 if(this.deadflag == DEAD_DEAD) // don't call when monster isn't dead
497 if(MUTATOR_CALLHOOK(MonsterRespawn, this))
498 return true; // enabled by a mutator
500 if(this.spawnflags & MONSTERFLAG_NORESPAWN)
503 if(!autocvar_g_monsters_respawn)
509 void Monster_Respawn(entity this) { Monster_Spawn(this, this.monsterid); }
511 void Monster_Dead_Fade(entity this)
513 if(Monster_Respawn_Check(this))
515 this.spawnflags |= MONSTERFLAG_RESPAWNED;
516 setthink(this, Monster_Respawn);
517 this.nextthink = time + this.respawntime;
518 this.monster_lifetime = 0;
519 this.deadflag = DEAD_RESPAWNING;
520 if(this.spawnflags & MONSTER_RESPAWN_DEATHPOINT)
522 this.pos1 = this.origin;
523 this.pos2 = this.angles;
525 this.event_damage = func_null;
526 this.takedamage = DAMAGE_NO;
527 setorigin(this, this.pos1);
528 this.angles = this.pos2;
529 this.health = this.max_health;
530 setmodel(this, MDL_Null);
534 // number of monsters spawned with mobspawn command
537 SUB_SetFade(this, time + 3, 1);
541 void Monster_Use(entity this, entity actor, entity trigger)
543 if(Monster_ValidTarget(this, actor)) { this.enemy = actor; }
546 vector Monster_Move_Target(entity this, entity targ)
548 // enemy is always preferred target
551 vector targ_origin = ((this.enemy.absmin + this.enemy.absmax) * 0.5);
552 targ_origin = WarpZone_RefSys_TransformOrigin(this.enemy, this, targ_origin); // origin of target as seen by the monster (us)
553 WarpZone_TraceLine(this.origin, targ_origin, MOVE_NOMONSTERS, this);
555 if((this.enemy == NULL)
556 || (IS_DEAD(this.enemy) || this.enemy.health < 1)
557 || (STAT(FROZEN, this.enemy))
558 || (this.enemy.flags & FL_NOTARGET)
559 || (this.enemy.alpha < 0.5 && this.enemy.alpha != 0)
560 || (this.enemy.takedamage == DAMAGE_NO)
561 || (vdist(this.origin - targ_origin, >, this.target_range))
562 || ((trace_fraction < 1) && (trace_ent != this.enemy)))
565 this.pass_distance = 0;
570 /*WarpZone_TrailParticles(NULL, particleeffectnum(EFFECT_RED_PASS), this.origin, targ_origin);
571 print("Trace origin: ", vtos(targ_origin), "\n");
572 print("Target origin: ", vtos(this.enemy.origin), "\n");
573 print("My origin: ", vtos(this.origin), "\n"); */
575 this.monster_movestate = MONSTER_MOVE_ENEMY;
576 this.last_trace = time + 1.2;
577 if(this.monster_moveto)
578 return this.monster_moveto; // assumes code is properly setting this when monster has an enemy
583 /*makevectors(this.angles);
584 this.monster_movestate = MONSTER_MOVE_ENEMY;
585 this.last_trace = time + 1.2;
586 return this.enemy.origin; */
589 switch(this.monster_moveflags)
591 case MONSTER_MOVE_FOLLOW:
593 this.monster_movestate = MONSTER_MOVE_FOLLOW;
594 this.last_trace = time + 0.3;
595 return (this.monster_follow) ? this.monster_follow.origin : this.origin;
597 case MONSTER_MOVE_SPAWNLOC:
599 this.monster_movestate = MONSTER_MOVE_SPAWNLOC;
600 this.last_trace = time + 2;
603 case MONSTER_MOVE_NOMOVE:
605 if(this.monster_moveto)
607 this.last_trace = time + 0.5;
608 return this.monster_moveto;
612 this.monster_movestate = MONSTER_MOVE_NOMOVE;
613 this.last_trace = time + 2;
618 case MONSTER_MOVE_WANDER:
621 this.monster_movestate = MONSTER_MOVE_WANDER;
623 if(this.monster_moveto)
625 this.last_trace = time + 0.5;
626 pos = this.monster_moveto;
630 this.last_trace = time + 0.5;
635 this.last_trace = time + this.wander_delay;
637 this.angles_y = rint(random() * 500);
638 makevectors(this.angles);
639 pos = this.origin + v_forward * this.wander_distance;
641 if(((this.flags & FL_FLY) && (this.spawnflags & MONSTERFLAG_FLY_VERTICAL)) || (this.flags & FL_SWIM))
643 pos.z = random() * 200;
654 void Monster_CalculateVelocity(entity this, vector to, vector from, float turnrate, float movespeed)
656 float current_distance = vlen((('1 0 0' * to.x) + ('0 1 0' * to.y)) - (('1 0 0' * from.x) + ('0 1 0' * from.y))); // for the sake of this check, exclude Z axis
657 float initial_height = 0; //min(50, (targ_distance * tanh(20)));
658 float current_height = (initial_height * min(1, (this.pass_distance) ? (current_distance / this.pass_distance) : current_distance));
659 //print("current_height = ", ftos(current_height), ", initial_height = ", ftos(initial_height), ".\n");
662 if(current_height) // make sure we can actually do this arcing path
664 targpos = (to + ('0 0 1' * current_height));
665 WarpZone_TraceLine(this.origin, targpos, MOVE_NOMONSTERS, this);
666 if(trace_fraction < 1)
668 //print("normal arc line failed, trying to find new pos...");
669 WarpZone_TraceLine(to, targpos, MOVE_NOMONSTERS, this);
670 targpos = (trace_endpos + '0 0 -10');
671 WarpZone_TraceLine(this.origin, targpos, MOVE_NOMONSTERS, this);
672 if(trace_fraction < 1) { targpos = to; /* print(" ^1FAILURE^7, reverting to original direction.\n"); */ }
673 /*else { print(" ^3SUCCESS^7, using new arc line.\n"); } */
676 else { targpos = to; }
678 //this.angles = normalize(('0 1 0' * to_y) - ('0 1 0' * from_y));
680 vector desired_direction = normalize(targpos - from);
681 if(turnrate) { this.velocity = (normalize(normalize(this.velocity) + (desired_direction * 50)) * movespeed); }
682 else { this.velocity = (desired_direction * movespeed); }
684 //this.steerto = steerlib_attract2(targpos, 0.5, 500, 0.95);
685 //this.angles = vectoangles(this.velocity);
688 void Monster_Move(entity this, float runspeed, float walkspeed, float stpspeed)
690 if(this.target2) { this.goalentity = find(NULL, targetname, this.target2); }
694 if(STAT(FROZEN, this) == 2)
696 this.revive_progress = bound(0, this.revive_progress + this.ticrate * this.revive_speed, 1);
697 this.health = max(1, this.revive_progress * this.max_health);
698 this.iceblock.alpha = bound(0.2, 1 - this.revive_progress, 1);
700 if(!(this.spawnflags & MONSTERFLAG_INVINCIBLE) && this.sprite)
701 WaypointSprite_UpdateHealth(this.sprite, this.health);
703 movelib_brake_simple(this, stpspeed);
704 setanim(this, this.anim_idle, true, false, false);
707 this.nextthink = time + this.ticrate;
709 if(this.revive_progress >= 1)
714 else if(STAT(FROZEN, this) == 3)
716 this.revive_progress = bound(0, this.revive_progress - this.ticrate * this.revive_speed, 1);
717 this.health = max(0, autocvar_g_nades_ice_health + (this.max_health-autocvar_g_nades_ice_health) * this.revive_progress );
719 if(!(this.spawnflags & MONSTERFLAG_INVINCIBLE) && this.sprite)
720 WaypointSprite_UpdateHealth(this.sprite, this.health);
722 movelib_brake_simple(this, stpspeed);
723 setanim(this, this.anim_idle, true, false, false);
726 this.nextthink = time + this.ticrate;
732 if(this.event_damage)
733 this.event_damage(this, this, this.frozen_by, 1, DEATH_NADE_ICE_FREEZE.m_id, this.origin, '0 0 0');
736 else if ( this.revive_progress <= 0 )
742 if(this.flags & FL_SWIM)
744 if(this.waterlevel < WATERLEVEL_WETFEET)
746 if(time >= this.last_trace)
748 this.last_trace = time + 0.4;
750 Damage (this, NULL, NULL, 2, DEATH_DROWN.m_id, this.origin, '0 0 0');
751 this.angles = '90 90 0';
754 this.velocity_y += random() * 50;
755 this.velocity_x -= random() * 50;
759 this.velocity_y -= random() * 50;
760 this.velocity_x += random() * 50;
762 this.velocity_z += random() * 150;
766 set_movetype(this, MOVETYPE_BOUNCE);
767 //this.velocity_z = -200;
771 else if(this.move_movetype == MOVETYPE_BOUNCE)
774 set_movetype(this, MOVETYPE_WALK);
778 targ = this.goalentity;
780 if (MUTATOR_CALLHOOK(MonsterMove, this, runspeed, walkspeed, targ)
782 || this.draggedby != NULL
783 || (round_handler_IsActive() && !round_handler_IsRoundStarted())
784 || time < game_starttime
785 || (autocvar_g_campaign && !campaign_bots_may_start)
786 || time < this.spawn_time)
788 runspeed = walkspeed = 0;
789 if(time >= this.spawn_time)
790 setanim(this, this.anim_idle, true, false, false);
791 movelib_brake_simple(this, stpspeed);
795 targ = M_ARGV(3, entity);
796 runspeed = bound(0, M_ARGV(1, float) * MONSTER_SKILLMOD(this), runspeed * 2.5); // limit maxspeed to prevent craziness
797 walkspeed = bound(0, M_ARGV(2, float) * MONSTER_SKILLMOD(this), walkspeed * 2.5); // limit maxspeed to prevent craziness
800 if(autocvar_g_monsters_teams)
801 if(DIFF_TEAM(this.monster_follow, this))
802 this.monster_follow = NULL;
804 if(time >= this.last_enemycheck)
808 this.enemy = Monster_FindTarget(this);
811 WarpZone_RefSys_Copy(this.enemy, this);
812 WarpZone_RefSys_AddInverse(this.enemy, this); // wz1^-1 ... wzn^-1 receiver
813 this.moveto = WarpZone_RefSys_TransformOrigin(this.enemy, this, (0.5 * (this.enemy.absmin + this.enemy.absmax)));
814 this.monster_moveto = '0 0 0';
815 this.monster_face = '0 0 0';
817 this.pass_distance = vlen((('1 0 0' * this.enemy.origin_x) + ('0 1 0' * this.enemy.origin_y)) - (('1 0 0' * this.origin_x) + ('0 1 0' * this.origin_y)));
818 Monster_Sound(this, monstersound_sight, 0, false, CH_VOICE);
822 this.last_enemycheck = time + 1; // check for enemies every second
825 if(this.state == MONSTER_ATTACK_RANGED && IS_ONGROUND(this))
828 settouch(this, Monster_Touch);
831 if(this.state && time >= this.attack_finished_single[0])
832 this.state = 0; // attack is over
834 if(this.state != MONSTER_ATTACK_MELEE) // don't move if set
835 if(time >= this.last_trace || this.enemy) // update enemy or rider instantly
836 this.moveto = Monster_Move_Target(this, targ);
839 Monster_Sound(this, monstersound_idle, 7, true, CH_VOICE);
841 if(this.state == MONSTER_ATTACK_MELEE)
842 this.moveto = this.origin;
844 if(this.enemy && this.enemy.vehicle)
847 if(!(this.spawnflags & MONSTERFLAG_FLY_VERTICAL) && !(this.flags & FL_SWIM))
848 this.moveto_z = this.origin_z;
850 if(vdist(this.origin - this.moveto, >, 100))
852 float do_run = (this.enemy || this.monster_moveto);
853 if(IS_ONGROUND(this) || ((this.flags & FL_FLY) || (this.flags & FL_SWIM)))
854 Monster_CalculateVelocity(this, this.moveto, this.origin, true, ((do_run) ? runspeed : walkspeed));
856 if(time > this.pain_finished) // TODO: use anim_finished instead!
858 if(time > this.anim_finished)
859 if(vdist(this.velocity, >, 10))
860 setanim(this, ((do_run) ? this.anim_run : this.anim_walk), true, false, false);
862 setanim(this, this.anim_idle, true, false, false);
866 entity e = find(NULL, targetname, this.target2);
868 this.target2 = e.target2;
870 this.target2 = e.target;
872 movelib_brake_simple(this, stpspeed);
873 if(time > this.anim_finished)
874 if(time > this.pain_finished)
876 if(vdist(this.velocity, <=, 30))
877 setanim(this, this.anim_idle, true, false, false);
880 this.steerto = steerlib_attract2(this, ((this.monster_face) ? this.monster_face : this.moveto), 0.5, 500, 0.95);
882 vector real_angle = vectoangles(this.steerto) - this.angles;
884 if(this.state == MONSTER_ATTACK_MELEE)
888 turny = bound(turny * -1, shortangle_f(real_angle.y, this.angles.y), turny);
889 this.angles_y += turny;
892 Monster_Attack_Check(this, this.enemy);
895 void Monster_Remove(entity this)
898 return; // don't remove it?
900 .entity weaponentity = weaponentities[0];
901 if(!this) { return; }
903 if(!MUTATOR_CALLHOOK(MonsterRemove, this))
904 Send_Effect(EFFECT_ITEM_PICKUP, this.origin, '0 0 0', 1);
906 if(this.(weaponentity)) { remove(this.(weaponentity)); }
907 if(this.iceblock) { remove(this.iceblock); }
908 WaypointSprite_Kill(this.sprite);
912 void Monster_Dead_Think(entity this)
914 this.nextthink = time + this.ticrate;
916 if(this.monster_lifetime != 0)
917 if(time >= this.monster_lifetime)
919 Monster_Dead_Fade(this);
924 void Monster_Appear(entity this, entity actor, entity trigger)
927 this.spawnflags &= ~MONSTERFLAG_APPEAR; // otherwise, we get an endless loop
928 Monster_Spawn(this, this.monsterid);
931 bool Monster_Appear_Check(entity this, int monster_id)
933 if(!(this.spawnflags & MONSTERFLAG_APPEAR))
936 setthink(this, func_null);
937 this.monsterid = monster_id; // set so this monster is properly registered (otherwise, normal initialization is used)
939 this.use = Monster_Appear;
940 this.flags = FL_MONSTER; // set so this monster can get butchered
945 void Monster_Reset(entity this)
947 setorigin(this, this.pos1);
948 this.angles = this.pos2;
950 Unfreeze(this); // remove any icy remains
952 this.health = this.max_health;
953 this.velocity = '0 0 0';
955 this.goalentity = NULL;
956 this.attack_finished_single[0] = 0;
957 this.moveto = this.origin;
960 void Monster_Dead_Damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, vector hitloc, vector force)
962 this.health -= damage;
964 Violence_GibSplash_At(hitloc, force, 2, bound(0, damage, 200) / 16, this, attacker);
966 if(this.health <= -50) // 100 health until gone?
968 Violence_GibSplash_At(hitloc, force, 2, bound(0, damage, 200) / 16, this, attacker);
970 // number of monsters spawned with mobspawn command
973 setthink(this, SUB_Remove);
974 this.nextthink = time + 0.1;
975 this.event_damage = func_null;
979 void Monster_Dead(entity this, entity attacker, float gibbed)
981 setthink(this, Monster_Dead_Think);
982 this.nextthink = time;
983 this.monster_lifetime = time + 5;
985 if(STAT(FROZEN, this))
987 Unfreeze(this); // remove any icy remains
988 this.health = 0; // reset by Unfreeze
991 monster_dropitem(this, attacker);
993 Monster_Sound(this, monstersound_death, 0, false, CH_VOICE);
995 if(!(this.spawnflags & MONSTERFLAG_SPAWNED) && !(this.spawnflags & MONSTERFLAG_RESPAWNED))
996 monsters_killed += 1;
998 if(IS_PLAYER(attacker))
999 if(autocvar_g_monsters_score_spawned || !((this.spawnflags & MONSTERFLAG_SPAWNED) || (this.spawnflags & MONSTERFLAG_RESPAWNED)))
1000 PlayerScore_Add(attacker, SP_SCORE, +autocvar_g_monsters_score_kill);
1004 // number of monsters spawned with mobspawn command
1008 this.event_damage = ((gibbed) ? func_null : Monster_Dead_Damage);
1009 this.solid = SOLID_CORPSE;
1010 this.takedamage = DAMAGE_AIM;
1011 this.deadflag = DEAD_DEAD;
1013 this.move_movetype = MOVETYPE_TOSS;
1014 this.moveto = this.origin;
1015 settouch(this, Monster_Touch); // reset incase monster was pouncing
1016 this.reset = func_null;
1018 this.attack_finished_single[0] = 0;
1021 if(!((this.flags & FL_FLY) || (this.flags & FL_SWIM)))
1022 this.velocity = '0 0 0';
1024 CSQCModel_UnlinkEntity(this);
1026 Monster mon = get_monsterinfo(this.monsterid);
1027 mon.mr_death(mon, this);
1029 if(this.candrop && this.weapon)
1030 W_ThrowNewWeapon(this, this.weapon, 0, this.origin, randomvec() * 150 + '0 0 325');
1033 void Monster_Damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, vector hitloc, vector force)
1035 if((this.spawnflags & MONSTERFLAG_INVINCIBLE) && deathtype != DEATH_KILL.m_id && !ITEM_DAMAGE_NEEDKILL(deathtype))
1038 if(STAT(FROZEN, this) && deathtype != DEATH_KILL.m_id && deathtype != DEATH_NADE_ICE_FREEZE.m_id)
1041 //if(time < this.pain_finished && deathtype != DEATH_KILL.m_id)
1044 if(time < this.spawnshieldtime && deathtype != DEATH_KILL.m_id)
1047 if(deathtype == DEATH_FALL.m_id && this.draggedby != NULL)
1053 v = healtharmor_applydamage(100, this.armorvalue / 100, deathtype, damage);
1057 Monster mon = get_monsterinfo(this.monsterid);
1058 take = mon.mr_pain(mon, this, take, attacker, deathtype);
1062 this.health -= take;
1063 Monster_Sound(this, monstersound_pain, 1.2, true, CH_PAIN);
1067 WaypointSprite_UpdateHealth(this.sprite, this.health);
1069 this.dmg_time = time;
1071 if(sound_allowed(MSG_BROADCAST, attacker) && deathtype != DEATH_DROWN.m_id)
1072 spamsound (this, CH_PAIN, SND(BODYIMPACT1), VOL_BASE, ATTEN_NORM); // FIXME: PLACEHOLDER
1074 this.velocity += force * this.damageforcescale;
1076 if(deathtype != DEATH_DROWN.m_id && take)
1078 Violence_GibSplash_At(hitloc, force, 2, bound(0, take, 200) / 16, this, attacker);
1080 Violence_GibSplash_At(hitloc, force * -0.1, 3, 1, this, attacker);
1082 Violence_GibSplash_At(hitloc, force * -0.2, 3, 1, this, attacker);
1085 if(this.health <= 0)
1087 if(deathtype == DEATH_KILL.m_id)
1088 this.candrop = false; // killed by mobkill command
1091 SUB_UseTargets(this, attacker, this.enemy);
1092 this.target2 = this.oldtarget2; // reset to original target on death, incase we respawn
1094 Monster_Dead(this, attacker, (this.health <= -100 || deathtype == DEATH_KILL.m_id));
1096 WaypointSprite_Kill(this.sprite);
1098 MUTATOR_CALLHOOK(MonsterDies, this, attacker, deathtype);
1100 if(this.health <= -100 || deathtype == DEATH_KILL.m_id) // check if we're already gibbed
1102 Violence_GibSplash(this, 1, 0.5, attacker);
1104 setthink(this, SUB_Remove);
1105 this.nextthink = time + 0.1;
1110 // don't check for enemies, just keep walking in a straight line
1111 void Monster_Move_2D(entity this, float mspeed, bool allow_jumpoff)
1113 if(gameover || (round_handler_IsActive() && !round_handler_IsRoundStarted()) || this.draggedby != NULL || time < game_starttime || (autocvar_g_campaign && !campaign_bots_may_start) || time < this.spawn_time)
1116 if(time >= this.spawn_time)
1117 setanim(this, this.anim_idle, true, false, false);
1118 movelib_brake_simple(this, 0.6);
1122 float reverse = false;
1125 makevectors(this.angles);
1126 a = this.origin + '0 0 16';
1127 b = this.origin + '0 0 16' + v_forward * 32;
1129 traceline(a, b, MOVE_NORMAL, this);
1131 if(trace_fraction != 1.0)
1136 if(IS_PLAYER(trace_ent) && !(trace_ent.items & IT_STRENGTH))
1140 // TODO: fix this... tracing is broken if the floor is thin
1145 traceline(b, a, MOVE_WORLDONLY, this);
1146 if(trace_fraction == 1.0)
1152 this.angles_y = anglemods(this.angles_y - 180);
1153 makevectors(this.angles);
1156 movelib_move_simple_gravity(this, v_forward, mspeed, 1);
1158 if(time > this.pain_finished)
1159 if(time > this.attack_finished_single[0])
1160 if(vdist(this.velocity, >, 10))
1161 setanim(this, this.anim_walk, true, false, false);
1163 setanim(this, this.anim_idle, true, false, false);
1166 void Monster_Anim(entity this)
1168 int deadbits = (this.anim_state & (ANIMSTATE_DEAD1 | ANIMSTATE_DEAD2));
1173 // Decide on which death animation to use.
1175 deadbits = ANIMSTATE_DEAD1;
1177 deadbits = ANIMSTATE_DEAD2;
1182 // Clear a previous death animation.
1185 int animbits = deadbits;
1186 if(STAT(FROZEN, this))
1187 animbits |= ANIMSTATE_FROZEN;
1189 animbits |= ANIMSTATE_DUCK; // not that monsters can crouch currently...
1190 animdecide_setstate(this, animbits, false);
1191 animdecide_setimplicitstate(this, (IS_ONGROUND(this)));
1193 /* // weapon entities for monsters?
1194 if (this.weaponentity)
1196 updateanim(this.weaponentity);
1197 if (!this.weaponentity.animstate_override)
1198 setanim(this.weaponentity, this.weaponentity.anim_idle, true, false, false);
1203 void Monster_Think(entity this)
1205 setthink(this, Monster_Think);
1206 this.nextthink = this.ticrate;
1208 if(this.monster_lifetime)
1209 if(time >= this.monster_lifetime)
1211 Damage(this, this, this, this.health + this.max_health, DEATH_KILL.m_id, this.origin, this.origin);
1215 Monster mon = get_monsterinfo(this.monsterid);
1216 if(mon.mr_think(mon, this))
1217 Monster_Move(this, this.speed2, this.speed, this.stopspeed);
1221 CSQCMODEL_AUTOUPDATE(this);
1224 bool Monster_Spawn_Setup(entity this)
1226 Monster mon = Monsters_from(this.monsterid);
1227 mon.mr_setup(mon, this);
1229 // ensure some basic needs are met
1230 if(!this.health) { this.health = 100; }
1231 if(!this.armorvalue) { this.armorvalue = bound(0.2, 0.5 * MONSTER_SKILLMOD(this), 0.9); }
1232 if(!this.target_range) { this.target_range = autocvar_g_monsters_target_range; }
1233 if(!this.respawntime) { this.respawntime = autocvar_g_monsters_respawn_delay; }
1234 if(!this.monster_moveflags) { this.monster_moveflags = MONSTER_MOVE_WANDER; }
1235 if(!this.attack_range) { this.attack_range = autocvar_g_monsters_attack_range; }
1236 if(!this.damageforcescale) { this.damageforcescale = autocvar_g_monsters_damageforcescale; }
1238 if(!(this.spawnflags & MONSTERFLAG_RESPAWNED))
1240 Monster_Miniboss_Check(this);
1241 this.health *= MONSTER_SKILLMOD(this);
1244 this.skin = rint(random() * 4);
1247 this.max_health = this.health;
1248 this.pain_finished = this.nextthink;
1250 if(IS_PLAYER(this.monster_follow))
1251 this.effects |= EF_DIMLIGHT;
1253 if(!this.wander_delay) { this.wander_delay = 2; }
1254 if(!this.wander_distance) { this.wander_distance = 600; }
1256 Monster_Sounds_Precache(this);
1257 Monster_Sounds_Update(this);
1260 this.monster_attack = true; // we can have monster enemies in team games
1262 Monster_Sound(this, monstersound_spawn, 0, false, CH_VOICE);
1264 if(autocvar_g_monsters_healthbars)
1266 entity wp = WaypointSprite_Spawn(WP_Monster, 0, 1024, this, '0 0 1' * (this.maxs.z + 15), NULL, this.team, this, sprite, true, RADARICON_DANGER);
1267 wp.wp_extra = this.monsterid;
1268 wp.colormod = ((this.team) ? Team_ColorRGB(this.team) : '1 0 0');
1269 if(!(this.spawnflags & MONSTERFLAG_INVINCIBLE))
1271 WaypointSprite_UpdateMaxHealth(this.sprite, this.max_health);
1272 WaypointSprite_UpdateHealth(this.sprite, this.health);
1276 setthink(this, Monster_Think);
1277 this.nextthink = time + this.ticrate;
1279 if(MUTATOR_CALLHOOK(MonsterSpawn, this))
1285 bool Monster_Spawn(entity this, int mon_id)
1287 // setup the basic required properties for a monster
1288 entity mon = Monsters_from(mon_id);
1289 if(!mon.monsterid) { return false; } // invalid monster
1291 if(!autocvar_g_monsters) { Monster_Remove(this); return false; }
1293 if(Monster_Appear_Check(this, mon_id)) { return true; } // return true so the monster isn't removed
1295 if(!this.monster_skill)
1296 this.monster_skill = cvar("g_monsters_skill");
1298 // support for quake style removing monsters based on skill
1299 if(this.monster_skill == MONSTER_SKILL_EASY) if(this.spawnflags & MONSTERSKILL_NOTEASY) { Monster_Remove(this); return false; }
1300 if(this.monster_skill == MONSTER_SKILL_MEDIUM) if(this.spawnflags & MONSTERSKILL_NOTMEDIUM) { Monster_Remove(this); return false; }
1301 if(this.monster_skill == MONSTER_SKILL_HARD) if(this.spawnflags & MONSTERSKILL_NOTHARD) { Monster_Remove(this); return false; }
1303 if(this.team && !teamplay)
1306 if(!(this.spawnflags & MONSTERFLAG_SPAWNED)) // naturally spawned monster
1307 if(!(this.spawnflags & MONSTERFLAG_RESPAWNED)) // don't count re-spawning monsters either
1308 monsters_total += 1;
1310 setmodel(this, mon.m_model);
1311 this.flags = FL_MONSTER;
1312 this.classname = "monster";
1313 this.takedamage = DAMAGE_AIM;
1314 this.bot_attack = true;
1315 this.iscreature = true;
1316 this.teleportable = true;
1317 this.damagedbycontents = true;
1318 this.monsterid = mon_id;
1319 this.event_damage = Monster_Damage;
1320 settouch(this, Monster_Touch);
1321 this.use = Monster_Use;
1322 this.solid = SOLID_BBOX;
1323 this.move_movetype = MOVETYPE_WALK;
1324 this.spawnshieldtime = time + autocvar_g_monsters_spawnshieldtime;
1326 this.velocity = '0 0 0';
1327 this.moveto = this.origin;
1328 this.pos1 = this.origin;
1329 this.pos2 = this.angles;
1330 this.reset = Monster_Reset;
1331 this.netname = mon.netname;
1332 this.monster_attackfunc = mon.monster_attackfunc;
1333 this.monster_name = mon.monster_name;
1334 this.candrop = true;
1335 this.view_ofs = '0 0 0.7' * (this.maxs_z * 0.5);
1336 this.oldtarget2 = this.target2;
1337 this.pass_distance = 0;
1338 this.deadflag = DEAD_NO;
1339 this.noalign = ((mon.spawnflags & MONSTER_TYPE_FLY) || (mon.spawnflags & MONSTER_TYPE_SWIM));
1340 this.spawn_time = time;
1342 this.monster_moveto = '0 0 0';
1343 this.monster_face = '0 0 0';
1344 this.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_BOTCLIP | DPCONTENTS_MONSTERCLIP;
1346 if(!this.scale) { this.scale = 1; }
1347 if(autocvar_g_monsters_edit) { this.grab = 1; }
1348 if(autocvar_g_fullbrightplayers) { this.effects |= EF_FULLBRIGHT; }
1349 if(autocvar_g_nodepthtestplayers) { this.effects |= EF_NODEPTHTEST; }
1350 if(mon.spawnflags & MONSTER_TYPE_SWIM) { this.flags |= FL_SWIM; }
1352 if(autocvar_g_playerclip_collisions)
1353 this.dphitcontentsmask |= DPCONTENTS_PLAYERCLIP;
1355 if(mon.spawnflags & MONSTER_TYPE_FLY)
1357 this.flags |= FL_FLY;
1358 set_movetype(this, MOVETYPE_FLY);
1361 if(!(this.spawnflags & MONSTERFLAG_RESPAWNED))
1363 if(mon.spawnflags & MONSTER_SIZE_BROKEN)
1366 if(mon.spawnflags & MONSTER_SIZE_QUAKE)
1367 if(autocvar_g_monsters_quake_resize)
1371 setsize(this, mon.mins * this.scale, mon.maxs * this.scale);
1373 this.ticrate = bound(sys_frametime, ((!this.ticrate) ? autocvar_g_monsters_think_delay : this.ticrate), 60);
1375 Monster_UpdateModel(this);
1377 if(!Monster_Spawn_Setup(this))
1379 Monster_Remove(this);
1385 setorigin(this, this.origin + '0 0 20');
1386 tracebox(this.origin + '0 0 64', this.mins, this.maxs, this.origin - '0 0 10000', MOVE_WORLDONLY, this);
1387 setorigin(this, trace_endpos);
1390 if(!(this.spawnflags & MONSTERFLAG_RESPAWNED))
1391 monster_setupcolors(this);
1393 CSQCMODEL_AUTOINIT(this);