]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/monsters/sv_monsters.qc
e7056f6c6cf6d5986cca83c2073bd07402f26167
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / monsters / sv_monsters.qc
1 #include "sv_monsters.qh"
2
3 #include <lib/warpzone/common.qh>
4 #include "../constants.qh"
5 #include "../teams.qh"
6 #include "../util.qh"
7 #include "all.qh"
8 #include "../physics/movelib.qh"
9 #include "../weapons/_mod.qh"
10 #include <server/autocvars.qh>
11 #include <server/defs.qh>
12 #include "../deathtypes/all.qh"
13 #include <server/mutators/_mod.qh>
14 #include <server/steerlib.qh>
15 #include "../turrets/sv_turrets.qh"
16 #include "../turrets/util.qh"
17 #include "../vehicles/all.qh"
18 #include <server/campaign.qh>
19 #include <server/command/_mod.qh>
20 #include "../mapobjects/triggers.qh"
21 #include <lib/csqcmodel/sv_model.qh>
22 #include <server/round_handler.qh>
23 #include <server/weapons/_mod.qh>
24
25 void monsters_setstatus(entity this)
26 {
27         STAT(MONSTERS_TOTAL, this) = monsters_total;
28         STAT(MONSTERS_KILLED, this) = monsters_killed;
29 }
30
31 void monster_dropitem(entity this, entity attacker)
32 {
33         if(!this.candrop || !this.monster_loot)
34                 return;
35
36         vector org = CENTER_OR_VIEWOFS(this);
37         entity e = spawn();
38         Item_SetLoot(e, true);
39         e.spawnfunc_checked = true;
40
41         e.monster_loot = this.monster_loot;
42
43         MUTATOR_CALLHOOK(MonsterDropItem, this, e, attacker);
44         e = M_ARGV(1, entity);
45
46         if(e && e.monster_loot)
47         {
48                 e.noalign = true;
49                 StartItem(e, e.monster_loot);
50                 e.gravity = 1;
51                 setorigin(e, org);
52                 e.velocity = randomvec() * 175 + '0 0 325';
53                 e.item_spawnshieldtime = time + 0.7;
54                 SUB_SetFade(e, time + autocvar_g_monsters_drop_time, 1);
55         }
56 }
57
58 bool monster_facing(entity this, entity targ)
59 {
60         // relies on target having an origin
61         makevectors(this.angles);
62         vector targ_org = targ.origin, my_org = this.origin;
63         if(autocvar_g_monsters_target_infront_2d)
64         {
65                 targ_org = vec2(targ_org);
66                 my_org = vec2(my_org);
67         }
68         float dot = normalize(targ_org - my_org) * v_forward;
69
70         return !(dot <= autocvar_g_monsters_target_infront_range);
71 }
72
73 void monster_makevectors(entity this, entity targ)
74 {
75         if(IS_MONSTER(this))
76         {
77                 vector v = targ.origin + (targ.mins + targ.maxs) * 0.5;
78                 this.v_angle = vectoangles(v - (this.origin + this.view_ofs));
79                 this.v_angle_x = -this.v_angle_x;
80         }
81
82         makevectors(this.v_angle);
83 }
84
85 // ===============
86 // Target handling
87 // ===============
88
89 bool Monster_ValidTarget(entity this, entity targ, bool skipfacing)
90 {
91         // ensure we're not checking nonexistent monster/target
92         if(!this || !targ) { return false; }
93
94         if((targ == this)
95         || (time < game_starttime) // monsters do nothing before match has started
96         || (targ.takedamage == DAMAGE_NO)
97         || (game_stopped)
98         || (targ.items & IT_INVISIBILITY)
99         || (IS_SPEC(targ) || IS_OBSERVER(targ)) // don't attack spectators
100         || (!IS_VEHICLE(targ) && (IS_DEAD(targ) || IS_DEAD(this) || GetResourceAmount(targ, RESOURCE_HEALTH) <= 0 || GetResourceAmount(this, RESOURCE_HEALTH) <= 0))
101         || (this.monster_follow == targ || targ.monster_follow == this)
102         || (!IS_VEHICLE(targ) && (targ.flags & FL_NOTARGET))
103         || (!autocvar_g_monsters_typefrag && PHYS_INPUT_BUTTON_CHAT(targ))
104         || (IS_VEHICLE(targ) && !((Monsters_from(this.monsterid)).spawnflags & MON_FLAG_RANGED)) // melee vs vehicle is useless
105         || (SAME_TEAM(targ, this))
106         || (STAT(FROZEN, targ))
107         || (targ.alpha != 0 && targ.alpha < 0.5)
108         || (autocvar_g_monsters_lineofsight && !checkpvs(this.origin + this.view_ofs, targ)) // enemy cannot be seen
109         || (MUTATOR_CALLHOOK(MonsterValidTarget, this, targ))
110         )
111         {
112                 // if any of the above checks fail, target is not valid
113                 return false;
114         }
115
116         vector targ_origin = ((targ.absmin + targ.absmax) * 0.5);
117         traceline(this.origin + this.view_ofs, targ_origin, MOVE_NOMONSTERS, this); // TODO: maybe we can rely a bit on PVS data instead?
118
119         if(trace_fraction < 1 && trace_ent != targ)
120                 return false; // solid
121
122         if(!skipfacing && (autocvar_g_monsters_target_infront || (this.spawnflags & MONSTERFLAG_INFRONT)))
123         if(this.enemy != targ)
124         {
125                 if(!monster_facing(this, targ))
126                         return false;
127         }
128
129         return true; // this target is valid!
130 }
131
132 entity Monster_FindTarget(entity this)
133 {
134         if(MUTATOR_CALLHOOK(MonsterFindTarget)) { return this.enemy; } // Handled by a mutator
135
136         entity closest_target = NULL;
137         vector my_center = CENTER_OR_VIEWOFS(this);
138
139         // find the closest acceptable target to pass to
140         IL_EACH(g_monster_targets, it.monster_attack,
141         {
142                 float trange = this.target_range;
143                 if(PHYS_INPUT_BUTTON_CROUCH(it))
144                         trange *= 0.75; // TODO cvar this
145                 vector theirmid = (it.absmin + it.absmax) * 0.5;
146                 if(vdist(theirmid - this.origin, >, trange))
147                         continue;
148                 if(!Monster_ValidTarget(this, it, false))
149                         continue;
150
151                 // if it's a player, use the view origin as reference (stolen from RadiusDamage functions in g_damage.qc)
152                 vector targ_center = CENTER_OR_VIEWOFS(it);
153
154                 if(closest_target)
155                 {
156                         vector closest_target_center = CENTER_OR_VIEWOFS(closest_target);
157                         if(vlen2(my_center - targ_center) < vlen2(my_center - closest_target_center))
158                                 { closest_target = it; }
159                 }
160                 else { closest_target = it; }
161         });
162
163         return closest_target;
164 }
165
166 void monster_setupcolors(entity this)
167 {
168         if(IS_PLAYER(this.realowner))
169                 this.colormap = this.realowner.colormap;
170         else if(teamplay && this.team)
171                 this.colormap = 1024 + (this.team - 1) * 17;
172         else
173         {
174                 if(this.monster_skill <= MONSTER_SKILL_EASY)
175                         this.colormap = 1029;
176                 else if(this.monster_skill <= MONSTER_SKILL_MEDIUM)
177                         this.colormap = 1027;
178                 else if(this.monster_skill <= MONSTER_SKILL_HARD)
179                         this.colormap = 1038;
180                 else if(this.monster_skill <= MONSTER_SKILL_INSANE)
181                         this.colormap = 1028;
182                 else if(this.monster_skill <= MONSTER_SKILL_NIGHTMARE)
183                         this.colormap = 1032;
184                 else
185                         this.colormap = 1024;
186         }
187
188         if(this.colormap > 0)
189                 this.glowmod = colormapPaletteColor(this.colormap & 0x0F, false);
190         else
191                 this.glowmod = '1 1 1';
192 }
193
194 void monster_changeteam(entity this, int newteam)
195 {
196         if(!teamplay) { return; }
197
198         this.team = newteam;
199         if(!this.monster_attack)
200                 IL_PUSH(g_monster_targets, this);
201         this.monster_attack = true; // new team, activate attacking
202         monster_setupcolors(this);
203
204         if(this.sprite)
205         {
206                 WaypointSprite_UpdateTeamRadar(this.sprite, RADARICON_DANGER, ((newteam) ? Team_ColorRGB(newteam) : '1 0 0'));
207
208                 this.sprite.team = newteam;
209                 this.sprite.SendFlags |= 1;
210         }
211 }
212
213 .void(entity) monster_delayedfunc;
214 void Monster_Delay_Action(entity this)
215 {
216         // TODO: maybe do check for facing here
217         if(Monster_ValidTarget(this.owner, this.owner.enemy, false)) { this.monster_delayedfunc(this.owner); }
218
219         if(this.cnt > 1)
220         {
221                 this.cnt -= 1;
222                 setthink(this, Monster_Delay_Action);
223                 this.nextthink = time + this.count;
224         }
225         else
226         {
227                 setthink(this, SUB_Remove);
228                 this.nextthink = time;
229         }
230 }
231
232 void Monster_Delay(entity this, int repeat_count, float defer_amnt, void(entity) func)
233 {
234         // deferred attacking, checks if monster is still alive and target is still valid before attacking
235         entity e = spawn();
236
237         setthink(e, Monster_Delay_Action);
238         e.nextthink = time + defer_amnt;
239         e.count = defer_amnt;
240         e.owner = this;
241         e.monster_delayedfunc = func;
242         e.cnt = repeat_count;
243 }
244
245
246 // ==============
247 // Monster sounds
248 // ==============
249
250 string get_monster_model_datafilename(string m, float sk, string fil)
251 {
252         if(m)
253                 m = strcat(m, "_");
254         else
255                 m = "models/monsters/*_";
256         if(sk >= 0)
257                 m = strcat(m, ftos(sk));
258         else
259                 m = strcat(m, "*");
260         return strcat(m, ".", fil);
261 }
262
263 void Monster_Sound_Precache(string f)
264 {
265         float fh;
266         string s;
267         fh = fopen(f, FILE_READ);
268         if(fh < 0)
269                 return;
270         while((s = fgets(fh)))
271         {
272                 if(tokenize_console(s) != 3)
273                 {
274                         //LOG_DEBUG("Invalid sound info line: ", s); // probably a comment, no need to spam warnings
275                         continue;
276                 }
277                 PrecacheGlobalSound(strcat(argv(1), " ", argv(2)));
278         }
279         fclose(fh);
280 }
281
282 void Monster_Sounds_Precache(entity this)
283 {
284         string m = (Monsters_from(this.monsterid)).m_model.model_str();
285         float globhandle, n, i;
286         string f;
287
288         globhandle = search_begin(strcat(m, "_*.sounds"), true, false);
289         if (globhandle < 0)
290                 return;
291         n = search_getsize(globhandle);
292         for (i = 0; i < n; ++i)
293         {
294                 //print(search_getfilename(globhandle, i), "\n");
295                 f = search_getfilename(globhandle, i);
296                 Monster_Sound_Precache(f);
297         }
298         search_end(globhandle);
299 }
300
301 void Monster_Sounds_Clear(entity this)
302 {
303 #define _MSOUND(m) strfree(this.monstersound_##m);
304         ALLMONSTERSOUNDS
305 #undef _MSOUND
306 }
307
308 .string Monster_Sound_SampleField(string type)
309 {
310         GetMonsterSoundSampleField_notFound = 0;
311         switch(type)
312         {
313 #define _MSOUND(m) case #m: return monstersound_##m;
314                 ALLMONSTERSOUNDS
315 #undef _MSOUND
316         }
317         GetMonsterSoundSampleField_notFound = 1;
318         return string_null;
319 }
320
321 bool Monster_Sounds_Load(entity this, string f, int first)
322 {
323         string s;
324         var .string field;
325         float fh = fopen(f, FILE_READ);
326         if(fh < 0)
327         {
328                 //LOG_DEBUG("Monster sound file not found: ", f); // no biggie, monster has no sounds, let's not spam it
329                 return false;
330         }
331         while((s = fgets(fh)))
332         {
333                 if(tokenize_console(s) != 3)
334                         continue;
335                 field = Monster_Sound_SampleField(argv(0));
336                 if(GetMonsterSoundSampleField_notFound)
337                         continue;
338                 strcpy(this.(field), strcat(argv(1), " ", argv(2)));
339         }
340         fclose(fh);
341         return true;
342 }
343
344 .int skin_for_monstersound;
345 void Monster_Sounds_Update(entity this)
346 {
347         if(this.skin == this.skin_for_monstersound) { return; }
348
349         this.skin_for_monstersound = this.skin;
350         Monster_Sounds_Clear(this);
351         if(!Monster_Sounds_Load(this, get_monster_model_datafilename(this.model, this.skin, "sounds"), 0))
352                 Monster_Sounds_Load(this, get_monster_model_datafilename(this.model, 0, "sounds"), 0);
353 }
354
355 void Monster_Sound(entity this, .string samplefield, float sound_delay, bool delaytoo, float chan)
356 {
357         if(!autocvar_g_monsters_sounds) { return; }
358
359         if(delaytoo)
360         if(time < this.msound_delay)
361                 return; // too early
362         string sample = this.(samplefield);
363         if (sample != "") sample = GlobalSound_sample(sample, random());
364         float myscale = ((this.scale) ? this.scale : 1); // safety net
365         // TODO: change volume depending on size too?
366         sound7(this, chan, sample, VOL_BASE, ATTEN_NORM, 100 / myscale, 0);
367
368         this.msound_delay = time + sound_delay;
369 }
370
371
372 // =======================
373 // Monster attack handlers
374 // =======================
375
376 bool Monster_Attack_Melee(entity this, entity targ, float damg, vector anim, float er, float animtime, int deathtype, bool dostop)
377 {
378         if(dostop && IS_MONSTER(this)) { this.state = MONSTER_ATTACK_MELEE; }
379
380         setanim(this, anim, false, true, false);
381
382         if(this.animstate_endtime > time && IS_MONSTER(this))
383                 this.attack_finished_single[0] = this.anim_finished = this.animstate_endtime;
384         else
385                 this.attack_finished_single[0] = this.anim_finished = time + animtime;
386
387         monster_makevectors(this, targ);
388
389         traceline(this.origin + this.view_ofs, this.origin + v_forward * er, 0, this);
390
391         if(trace_ent.takedamage)
392                 Damage(trace_ent, this, this, damg * MONSTER_SKILLMOD(this), deathtype, DMG_NOWEP, trace_ent.origin, normalize(trace_ent.origin - this.origin));
393
394         return true;
395 }
396
397 bool Monster_Attack_Leap_Check(entity this, vector vel)
398 {
399         if(this.state && IS_MONSTER(this))
400                 return false; // already attacking
401         if(!IS_ONGROUND(this))
402                 return false; // not on the ground
403         if(GetResourceAmount(this, RESOURCE_HEALTH) <= 0 || IS_DEAD(this))
404                 return false; // called when dead?
405         if(time < this.attack_finished_single[0])
406                 return false; // still attacking
407
408         vector old = this.velocity;
409
410         this.velocity = vel;
411         tracetoss(this, this);
412         this.velocity = old;
413         if(trace_ent != this.enemy)
414                 return false;
415
416         return true;
417 }
418
419 bool Monster_Attack_Leap(entity this, vector anm, void(entity this, entity toucher) touchfunc, vector vel, float animtime)
420 {
421         if(!Monster_Attack_Leap_Check(this, vel))
422                 return false;
423
424         setanim(this, anm, false, true, false);
425
426         if(this.animstate_endtime > time && IS_MONSTER(this))
427                 this.attack_finished_single[0] = this.anim_finished = this.animstate_endtime;
428         else
429                 this.attack_finished_single[0] = this.anim_finished = time + animtime;
430
431         if(IS_MONSTER(this))
432                 this.state = MONSTER_ATTACK_RANGED;
433         settouch(this, touchfunc);
434         this.origin_z += 1;
435         this.velocity = vel;
436         UNSET_ONGROUND(this);
437
438         return true;
439 }
440
441 void Monster_Attack_Check(entity this, entity targ, .entity weaponentity)
442 {
443         int slot = weaponslot(weaponentity);
444
445         if((!this || !targ)
446         || (!this.monster_attackfunc)
447         || (time < this.attack_finished_single[slot])
448         || ((autocvar_g_monsters_target_infront || (this.spawnflags & MONSTERFLAG_INFRONT)) && !monster_facing(this, targ))
449         ) { return; }
450
451         if(vdist(targ.origin - this.origin, <=, this.attack_range))
452         {
453                 int attack_success = this.monster_attackfunc(MONSTER_ATTACK_MELEE, this, targ, weaponentity);
454                 if(attack_success == 1)
455                         Monster_Sound(this, monstersound_melee, 0, false, CH_VOICE);
456                 else if(attack_success > 0)
457                         return;
458         }
459
460         if(vdist(targ.origin - this.origin, >, this.attack_range))
461         {
462                 int attack_success = this.monster_attackfunc(MONSTER_ATTACK_RANGED, this, targ, weaponentity);
463                 if(attack_success == 1)
464                         Monster_Sound(this, monstersound_melee, 0, false, CH_VOICE);
465                 else if(attack_success > 0)
466                         return;
467         }
468 }
469
470
471 // ======================
472 // Main monster functions
473 // ======================
474
475 void Monster_UpdateModel(entity this)
476 {
477         // assume some defaults
478         /*this.anim_idle   = animfixfps(this, '0 1 0.01', '0 0 0');
479         this.anim_walk   = animfixfps(this, '1 1 0.01', '0 0 0');
480         this.anim_run    = animfixfps(this, '2 1 0.01', '0 0 0');
481         this.anim_fire1  = animfixfps(this, '3 1 0.01', '0 0 0');
482         this.anim_fire2  = animfixfps(this, '4 1 0.01', '0 0 0');
483         this.anim_melee  = animfixfps(this, '5 1 0.01', '0 0 0');
484         this.anim_pain1  = animfixfps(this, '6 1 0.01', '0 0 0');
485         this.anim_pain2  = animfixfps(this, '7 1 0.01', '0 0 0');
486         this.anim_die1   = animfixfps(this, '8 1 0.01', '0 0 0');
487         this.anim_die2   = animfixfps(this, '9 1 0.01', '0 0 0');*/
488
489         // then get the real values
490         Monster mon = Monsters_from(this.monsterid);
491         mon.mr_anim(mon, this);
492 }
493
494 void Monster_Touch(entity this, entity toucher)
495 {
496         if(toucher == NULL) { return; }
497
498         if(toucher.monster_attack && this.enemy != toucher && !IS_MONSTER(toucher) && time >= this.spawn_time)
499         if(Monster_ValidTarget(this, toucher, true))
500                 this.enemy = toucher;
501 }
502
503 void Monster_Miniboss_Check(entity this)
504 {
505         if(MUTATOR_CALLHOOK(MonsterCheckBossFlag, this))
506                 return;
507
508         float chance = random() * 100;
509
510         // g_monsters_miniboss_chance cvar or spawnflags 64 causes a monster to be a miniboss
511         if ((this.spawnflags & MONSTERFLAG_MINIBOSS) || (chance < autocvar_g_monsters_miniboss_chance))
512         {
513                 GiveResource(this, RESOURCE_HEALTH, autocvar_g_monsters_miniboss_healthboost);
514                 this.effects |= EF_RED;
515                 if(!this.weapon)
516                         this.weapon = WEP_VORTEX.m_id;
517         }
518 }
519
520 bool Monster_Respawn_Check(entity this)
521 {
522         if(this.deadflag == DEAD_DEAD) // don't call when monster isn't dead
523         if(MUTATOR_CALLHOOK(MonsterRespawn, this))
524                 return true; // enabled by a mutator
525
526         if(this.spawnflags & MONSTERFLAG_NORESPAWN)
527                 return false;
528
529         if(!autocvar_g_monsters_respawn)
530                 return false;
531
532         return true;
533 }
534
535 void Monster_Respawn(entity this) { Monster_Spawn(this, true, this.monsterid); }
536
537 .vector pos1, pos2;
538
539 void Monster_Dead_Fade(entity this)
540 {
541         if(Monster_Respawn_Check(this))
542         {
543                 this.spawnflags |= MONSTERFLAG_RESPAWNED;
544                 setthink(this, Monster_Respawn);
545                 this.nextthink = time + this.respawntime;
546                 this.monster_lifetime = 0;
547                 this.deadflag = DEAD_RESPAWNING;
548                 if(this.spawnflags & MONSTER_RESPAWN_DEATHPOINT)
549                 {
550                         this.pos1 = this.origin;
551                         this.pos2 = this.angles;
552                 }
553                 this.event_damage = func_null;
554                 this.event_heal = func_null;
555                 this.takedamage = DAMAGE_NO;
556                 setorigin(this, this.pos1);
557                 this.angles = this.pos2;
558                 SetResourceAmountExplicit(this, RESOURCE_HEALTH, this.max_health);
559                 setmodel(this, MDL_Null);
560         }
561         else
562         {
563                 // number of monsters spawned with mobspawn command
564                 totalspawned -= 1;
565
566                 SUB_SetFade(this, time + 3, 1);
567         }
568 }
569
570 void Monster_Use(entity this, entity actor, entity trigger)
571 {
572         if(Monster_ValidTarget(this, actor, true)) { this.enemy = actor; }
573 }
574
575 .float pass_distance;
576 vector Monster_Move_Target(entity this, entity targ)
577 {
578         // enemy is always preferred target
579         if(this.enemy)
580         {
581                 vector targ_origin = ((this.enemy.absmin + this.enemy.absmax) * 0.5);
582                 targ_origin = WarpZone_RefSys_TransformOrigin(this.enemy, this, targ_origin); // origin of target as seen by the monster (us)
583                 WarpZone_TraceLine(this.origin, targ_origin, MOVE_NOMONSTERS, this);
584
585                 // cases where the enemy may have changed their state (don't need to check everything here)
586                 if((!this.enemy)
587                         || (IS_DEAD(this.enemy) || GetResourceAmount(this.enemy, RESOURCE_HEALTH) < 1)
588                         || (STAT(FROZEN, this.enemy))
589                         || (this.enemy.flags & FL_NOTARGET)
590                         || (this.enemy.alpha < 0.5 && this.enemy.alpha != 0)
591                         || (this.enemy.takedamage == DAMAGE_NO)
592                         || (vdist(this.origin - targ_origin, >, this.target_range))
593                         || ((trace_fraction < 1) && (trace_ent != this.enemy)))
594                 {
595                         this.enemy = NULL;
596                         //this.pass_distance = 0;
597                 }
598
599                 if(this.enemy)
600                 {
601                         /*WarpZone_TrailParticles(NULL, particleeffectnum(EFFECT_RED_PASS), this.origin, targ_origin);
602                         print("Trace origin: ", vtos(targ_origin), "\n");
603                         print("Target origin: ", vtos(this.enemy.origin), "\n");
604                         print("My origin: ", vtos(this.origin), "\n"); */
605
606                         this.monster_movestate = MONSTER_MOVE_ENEMY;
607                         this.last_trace = time + 1.2;
608                         if(this.monster_moveto)
609                                 return this.monster_moveto; // assumes code is properly setting this when monster has an enemy
610                         else
611                                 return targ_origin;
612                 }
613
614                 /*makevectors(this.angles);
615                 this.monster_movestate = MONSTER_MOVE_ENEMY;
616                 this.last_trace = time + 1.2;
617                 return this.enemy.origin; */
618         }
619
620         switch(this.monster_moveflags)
621         {
622                 case MONSTER_MOVE_FOLLOW:
623                 {
624                         this.monster_movestate = MONSTER_MOVE_FOLLOW;
625                         this.last_trace = time + 0.3;
626                         return (this.monster_follow) ? this.monster_follow.origin : this.origin;
627                 }
628                 case MONSTER_MOVE_SPAWNLOC:
629                 {
630                         this.monster_movestate = MONSTER_MOVE_SPAWNLOC;
631                         this.last_trace = time + 2;
632                         return this.pos1;
633                 }
634                 case MONSTER_MOVE_NOMOVE:
635                 {
636                         if(this.monster_moveto)
637                         {
638                                 this.last_trace = time + 0.5;
639                                 return this.monster_moveto;
640                         }
641                         else
642                         {
643                                 this.monster_movestate = MONSTER_MOVE_NOMOVE;
644                                 this.last_trace = time + 2;
645                         }
646                         return this.origin;
647                 }
648                 default:
649                 case MONSTER_MOVE_WANDER:
650                 {
651                         vector pos;
652                         this.monster_movestate = MONSTER_MOVE_WANDER;
653
654                         if(this.monster_moveto)
655                         {
656                                 this.last_trace = time + 0.5;
657                                 pos = this.monster_moveto;
658                         }
659                         else if(targ)
660                         {
661                                 this.last_trace = time + 0.5;
662                                 pos = targ.origin;
663                         }
664                         else
665                         {
666                                 this.last_trace = time + this.wander_delay;
667
668                                 this.angles_y = rint(random() * 500);
669                                 makevectors(this.angles);
670                                 pos = this.origin + v_forward * this.wander_distance;
671
672                                 if(((this.flags & FL_FLY) && (this.spawnflags & MONSTERFLAG_FLY_VERTICAL)) || (this.flags & FL_SWIM))
673                                 {
674                                         pos.z = random() * 200;
675                                         if(random() >= 0.5)
676                                                 pos.z *= -1;
677                                 }
678                         }
679
680                         return pos;
681                 }
682         }
683 }
684
685 .entity draggedby;
686 .entity target2;
687
688 void Monster_Move(entity this, float runspeed, float walkspeed, float stpspeed)
689 {
690         // update goal entity if lost
691         if(this.target2 && this.target2 != "" && this.goalentity.targetname != this.target2)
692                 this.goalentity = find(NULL, targetname, this.target2);
693
694         if(STAT(FROZEN, this))
695         {
696                 movelib_brake_simple(this, stpspeed);
697                 setanim(this, this.anim_idle, true, false, false);
698                 return; // no physics while frozen!
699         }
700
701         if(this.flags & FL_SWIM)
702         {
703                 if(this.waterlevel < WATERLEVEL_WETFEET)
704                 {
705                         if(time >= this.last_trace)
706                         {
707                                 this.last_trace = time + 0.4;
708
709                                 Damage (this, NULL, NULL, 2, DEATH_DROWN.m_id, DMG_NOWEP, this.origin, '0 0 0');
710                                 this.angles = '90 90 0';
711                                 if(random() < 0.5)
712                                 {
713                                         this.velocity_y += random() * 50;
714                                         this.velocity_x -= random() * 50;
715                                 }
716                                 else
717                                 {
718                                         this.velocity_y -= random() * 50;
719                                         this.velocity_x += random() * 50;
720                                 }
721                                 this.velocity_z += random() * 150;
722                         }
723
724
725                         set_movetype(this, MOVETYPE_BOUNCE);
726                         //this.velocity_z = -200;
727
728                         return;
729                 }
730                 else if(this.move_movetype == MOVETYPE_BOUNCE)
731                 {
732                         this.angles_x = 0;
733                         set_movetype(this, MOVETYPE_WALK);
734                 }
735         }
736
737         entity targ = this.goalentity;
738
739         if (MUTATOR_CALLHOOK(MonsterMove, this, runspeed, walkspeed, targ)
740                 || game_stopped
741                 || this.draggedby != NULL
742                 || (round_handler_IsActive() && !round_handler_IsRoundStarted())
743                 || time < game_starttime
744                 || (autocvar_g_campaign && !campaign_bots_may_start)
745                 || time < this.spawn_time)
746         {
747                 runspeed = walkspeed = 0;
748                 if(time >= this.spawn_time)
749                         setanim(this, this.anim_idle, true, false, false);
750                 movelib_brake_simple(this, stpspeed);
751                 return;
752         }
753
754         targ = M_ARGV(3, entity);
755         runspeed = bound(0, M_ARGV(1, float) * MONSTER_SKILLMOD(this), runspeed * 2.5); // limit maxspeed to prevent craziness
756         walkspeed = bound(0, M_ARGV(2, float) * MONSTER_SKILLMOD(this), walkspeed * 2.5); // limit maxspeed to prevent craziness
757
758         if(teamplay && autocvar_g_monsters_teams)
759         if(DIFF_TEAM(this.monster_follow, this))
760                 this.monster_follow = NULL;
761
762         if(this.state == MONSTER_ATTACK_RANGED && IS_ONGROUND(this))
763         {
764                 this.state = 0;
765                 settouch(this, Monster_Touch);
766         }
767
768         if(this.state && time >= this.attack_finished_single[0])
769                 this.state = 0; // attack is over
770
771         if(this.state != MONSTER_ATTACK_MELEE) // don't move if set
772         if(time >= this.last_trace || this.enemy) // update enemy or rider instantly
773                 this.moveto = Monster_Move_Target(this, targ);
774
775         if(!this.enemy)
776                 Monster_Sound(this, monstersound_idle, 7, true, CH_VOICE);
777
778         if(this.state == MONSTER_ATTACK_MELEE)
779                 this.moveto = this.origin;
780
781         if(this.enemy && this.enemy.vehicle)
782                 runspeed = 0;
783
784         if(!(this.spawnflags & MONSTERFLAG_FLY_VERTICAL) && !(this.flags & FL_SWIM))
785                 this.moveto_z = this.origin_z;
786
787         fixedmakevectors(this.angles);
788         float vz = this.velocity_z;
789
790         if(!turret_closetotarget(this, this.moveto))
791         {
792                 bool do_run = (this.enemy || this.monster_moveto);
793                 movelib_move_simple(this, v_forward, ((do_run) ? runspeed : walkspeed), 0.4);
794
795                 if(time > this.pain_finished && time > this.anim_finished)
796                 if(!this.state)
797                 if(vdist(this.velocity, >, 10))
798                         setanim(this, ((do_run) ? this.anim_run : this.anim_walk), true, false, false);
799                 else
800                         setanim(this, this.anim_idle, true, false, false);
801         }
802         else
803         {
804                 entity e = this.goalentity; //find(NULL, targetname, this.target2);
805                 if(e.target2 && e.target2 != "")
806                         this.target2 = e.target2;
807                 else if(e.target && e.target != "") // compatibility
808                         this.target2 = e.target;
809
810                 movelib_brake_simple(this, stpspeed);
811                 if(time > this.anim_finished && time > this.pain_finished)
812                 if(!this.state)
813                 if(vdist(this.velocity, <=, 30))
814                         setanim(this, this.anim_idle, true, false, false);
815         }
816
817         if(!((this.flags & FL_FLY) || (this.flags & FL_SWIM)))
818                 this.velocity_z = vz;
819
820         this.steerto = steerlib_attract2(this, ((this.monster_face) ? this.monster_face : this.moveto), 0.5, 500, 0.95);
821
822         vector real_angle = vectoangles(this.steerto) - this.angles;
823         float turny = 25;
824         if(this.state == MONSTER_ATTACK_MELEE)
825                 turny = 0;
826         if(turny)
827         {
828                 turny = bound(turny * -1, shortangle_f(real_angle.y, this.angles.y), turny);
829                 this.angles_y += turny;
830         }
831 }
832
833 void Monster_Remove(entity this)
834 {
835         if(IS_CLIENT(this))
836                 return; // don't remove it?
837
838         if(!this) { return; }
839
840         if(!MUTATOR_CALLHOOK(MonsterRemove, this))
841                 Send_Effect(EFFECT_ITEM_PICKUP, this.origin, '0 0 0', 1);
842
843         for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
844         {
845                 .entity weaponentity = weaponentities[slot];
846                 if(this.(weaponentity))
847                         delete(this.(weaponentity));
848         }
849         if(this.iceblock) { delete(this.iceblock); }
850         WaypointSprite_Kill(this.sprite);
851         delete(this);
852 }
853
854 void Monster_Dead_Think(entity this)
855 {
856         this.nextthink = time + this.ticrate;
857
858         Monster mon = Monsters_from(this.monsterid);
859         mon.mr_deadthink(mon, this);
860
861         if(this.monster_lifetime != 0)
862         if(time >= this.monster_lifetime)
863         {
864                 Monster_Dead_Fade(this);
865                 return;
866         }
867 }
868
869 void Monster_Appear(entity this, entity actor, entity trigger)
870 {
871         this.enemy = actor;
872         Monster_Spawn(this, false, this.monsterid);
873 }
874
875 bool Monster_Appear_Check(entity this, int monster_id)
876 {
877         if(!(this.spawnflags & MONSTERFLAG_APPEAR))
878                 return false;
879
880         setthink(this, func_null);
881         this.monsterid = monster_id; // set so this monster is properly registered (otherwise, normal initialization is used)
882         this.nextthink = 0;
883         this.use = Monster_Appear;
884         this.flags = FL_MONSTER; // set so this monster can get butchered
885
886         return true;
887 }
888
889 void Monster_Reset(entity this)
890 {
891         setorigin(this, this.pos1);
892         this.angles = this.pos2;
893
894         Unfreeze(this); // remove any icy remains
895
896         SetResourceAmountExplicit(this, RESOURCE_HEALTH, this.max_health);
897         this.velocity = '0 0 0';
898         this.enemy = NULL;
899         this.goalentity = NULL;
900         this.attack_finished_single[0] = 0;
901         this.moveto = this.origin;
902 }
903
904 void Monster_Dead_Damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, .entity weaponentity, vector hitloc, vector force)
905 {
906         TakeResource(this, RESOURCE_HEALTH, damage);
907
908         Violence_GibSplash_At(hitloc, force, 2, bound(0, damage, 200) / 16, this, attacker);
909
910         if(GetResourceAmount(this, RESOURCE_HEALTH) <= -50) // 100 health until gone?
911         {
912                 Violence_GibSplash_At(hitloc, force, 2, bound(0, damage, 200) / 16, this, attacker);
913
914                 // number of monsters spawned with mobspawn command
915                 totalspawned -= 1;
916
917                 setthink(this, SUB_Remove);
918                 this.nextthink = time + 0.1;
919                 this.event_damage = func_null;
920         }
921 }
922
923 void Monster_Dead(entity this, entity attacker, float gibbed)
924 {
925         setthink(this, Monster_Dead_Think);
926         this.nextthink = time;
927         this.monster_lifetime = time + 5;
928
929         if(STAT(FROZEN, this))
930         {
931                 Unfreeze(this); // remove any icy remains
932                 SetResourceAmountExplicit(this, RESOURCE_HEALTH, 0); // reset by Unfreeze (TODO)
933         }
934
935         monster_dropitem(this, attacker);
936
937         Monster_Sound(this, monstersound_death, 0, false, CH_VOICE);
938
939         if(!(this.spawnflags & MONSTERFLAG_SPAWNED) && !(this.spawnflags & MONSTERFLAG_RESPAWNED))
940                 monsters_killed += 1;
941
942         if(IS_PLAYER(attacker))
943         if(autocvar_g_monsters_score_spawned || !((this.spawnflags & MONSTERFLAG_SPAWNED) || (this.spawnflags & MONSTERFLAG_RESPAWNED)))
944                 GameRules_scoring_add(attacker, SCORE, +autocvar_g_monsters_score_kill);
945
946         if(gibbed)
947         {
948                 // number of monsters spawned with mobspawn command
949                 totalspawned -= 1;
950         }
951
952         if(!gibbed && this.mdl_dead && this.mdl_dead != "")
953                 _setmodel(this, this.mdl_dead);
954
955         this.event_damage       = ((gibbed) ? func_null : Monster_Dead_Damage);
956         this.event_heal         = func_null;
957         this.solid                      = SOLID_CORPSE;
958         this.takedamage         = DAMAGE_AIM;
959         this.deadflag           = DEAD_DEAD;
960         this.enemy                      = NULL;
961         set_movetype(this, MOVETYPE_TOSS);
962         this.moveto                     = this.origin;
963         settouch(this, Monster_Touch); // reset incase monster was pouncing
964         this.reset                      = func_null;
965         this.state                      = 0;
966         this.attack_finished_single[0] = 0;
967         this.effects = 0;
968         this.dphitcontentsmask &= ~DPCONTENTS_BODY;
969
970         if(!((this.flags & FL_FLY) || (this.flags & FL_SWIM)))
971                 this.velocity = '0 0 0';
972
973         CSQCModel_UnlinkEntity(this);
974
975         Monster mon = Monsters_from(this.monsterid);
976         mon.mr_death(mon, this);
977
978         if(this.candrop && this.weapon)
979         {
980                 .entity weaponentity = weaponentities[0]; // TODO: unhardcode
981                 W_ThrowNewWeapon(this, this.weapon, 0, this.origin, randomvec() * 150 + '0 0 325', weaponentity);
982         }
983 }
984
985 void Monster_Damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, .entity weaponentity, vector hitloc, vector force)
986 {
987         if((this.spawnflags & MONSTERFLAG_INVINCIBLE) && deathtype != DEATH_KILL.m_id && !ITEM_DAMAGE_NEEDKILL(deathtype))
988                 return;
989
990         if(STAT(FROZEN, this) && deathtype != DEATH_KILL.m_id && deathtype != DEATH_NADE_ICE_FREEZE.m_id)
991                 return;
992
993         //if(time < this.pain_finished && deathtype != DEATH_KILL.m_id)
994                 //return;
995
996         if(time < this.spawnshieldtime && deathtype != DEATH_KILL.m_id)
997                 return;
998
999         if(deathtype == DEATH_FALL.m_id && this.draggedby != NULL)
1000                 return;
1001
1002         vector v = healtharmor_applydamage(100, GetResourceAmount(this, RESOURCE_ARMOR) / 100, deathtype, damage);
1003         float take = v.x;
1004         //float save = v.y;
1005
1006         Monster mon = Monsters_from(this.monsterid);
1007         take = mon.mr_pain(mon, this, take, attacker, deathtype);
1008
1009         if(take)
1010         {
1011                 TakeResource(this, RESOURCE_HEALTH, take);
1012                 Monster_Sound(this, monstersound_pain, 1.2, true, CH_PAIN);
1013         }
1014
1015         if(this.sprite)
1016                 WaypointSprite_UpdateHealth(this.sprite, GetResourceAmount(this, RESOURCE_HEALTH));
1017
1018         this.dmg_time = time;
1019
1020         if(deathtype != DEATH_DROWN.m_id && deathtype != DEATH_FIRE.m_id && sound_allowed(MSG_BROADCAST, attacker))
1021                 spamsound (this, CH_PAIN, SND_BODYIMPACT1, VOL_BASE, ATTEN_NORM);  // FIXME: PLACEHOLDER
1022
1023         this.velocity += force * this.damageforcescale;
1024
1025         if(deathtype != DEATH_DROWN.m_id && take)
1026         {
1027                 Violence_GibSplash_At(hitloc, force, 2, bound(0, take, 200) / 16, this, attacker);
1028                 if (take > 50)
1029                         Violence_GibSplash_At(hitloc, force * -0.1, 3, 1, this, attacker);
1030                 if (take > 100)
1031                         Violence_GibSplash_At(hitloc, force * -0.2, 3, 1, this, attacker);
1032         }
1033
1034         if(GetResourceAmount(this, RESOURCE_HEALTH) <= 0)
1035         {
1036                 if(deathtype == DEATH_KILL.m_id)
1037                         this.candrop = false; // killed by mobkill command
1038
1039                 // TODO: fix this?
1040                 SUB_UseTargets(this, attacker, this.enemy);
1041                 this.target2 = this.oldtarget2; // reset to original target on death, incase we respawn
1042
1043                 Monster_Dead(this, attacker, (GetResourceAmount(this, RESOURCE_HEALTH) <= -100 || deathtype == DEATH_KILL.m_id));
1044
1045                 WaypointSprite_Kill(this.sprite);
1046
1047                 MUTATOR_CALLHOOK(MonsterDies, this, attacker, deathtype);
1048
1049                 if(GetResourceAmount(this, RESOURCE_HEALTH) <= -100 || deathtype == DEATH_KILL.m_id) // check if we're already gibbed
1050                 {
1051                         Violence_GibSplash(this, 1, 0.5, attacker);
1052
1053                         setthink(this, SUB_Remove);
1054                         this.nextthink = time + 0.1;
1055                 }
1056         }
1057 }
1058
1059 bool Monster_Heal(entity targ, entity inflictor, float amount, float limit)
1060 {
1061         float true_limit = ((limit != RESOURCE_LIMIT_NONE) ? limit : targ.max_health);
1062         if(GetResourceAmount(targ, RESOURCE_HEALTH) <= 0 || GetResourceAmount(targ, RESOURCE_HEALTH) >= true_limit)
1063                 return false;
1064
1065         GiveResourceWithLimit(targ, RESOURCE_HEALTH, amount, true_limit);
1066         if(targ.sprite)
1067                 WaypointSprite_UpdateHealth(targ.sprite, GetResourceAmount(targ, RESOURCE_HEALTH));
1068         return true;
1069 }
1070
1071 // don't check for enemies, just keep walking in a straight line
1072 void Monster_Move_2D(entity this, float mspeed, bool allow_jumpoff)
1073 {
1074         if(game_stopped || (round_handler_IsActive() && !round_handler_IsRoundStarted()) || this.draggedby != NULL || time < game_starttime || (autocvar_g_campaign && !campaign_bots_may_start) || time < this.spawn_time)
1075         {
1076                 mspeed = 0;
1077                 if(time >= this.spawn_time)
1078                         setanim(this, this.anim_idle, true, false, false);
1079                 movelib_brake_simple(this, 0.6);
1080                 return;
1081         }
1082
1083         makevectors(this.angles);
1084         vector a = CENTER_OR_VIEWOFS(this);
1085         vector b = CENTER_OR_VIEWOFS(this) + v_forward * 32;
1086
1087         traceline(a, b, MOVE_NORMAL, this);
1088
1089         bool reverse = false;
1090         if(trace_fraction != 1.0)
1091                 reverse = true;
1092         if(trace_ent && IS_PLAYER(trace_ent) && !(trace_ent.items & ITEM_Strength.m_itemid))
1093                 reverse = false;
1094         if(trace_ent && IS_MONSTER(trace_ent))
1095                 reverse = true;
1096
1097         // TODO: fix this... tracing is broken if the floor is thin
1098         /*
1099         if(!allow_jumpoff)
1100         {
1101                 a = b - '0 0 32';
1102                 traceline(b, a, MOVE_WORLDONLY, this);
1103                 if(trace_fraction == 1.0)
1104                         reverse = true;
1105         } */
1106
1107         if(reverse)
1108         {
1109                 this.angles_y = anglemods(this.angles_y - 180);
1110                 makevectors(this.angles);
1111         }
1112
1113         movelib_move_simple_gravity(this, v_forward, mspeed, 1);
1114
1115         if(time > this.pain_finished && time > this.attack_finished_single[0])
1116         if(vdist(this.velocity, >, 10))
1117                 setanim(this, this.anim_walk, true, false, false);
1118         else
1119                 setanim(this, this.anim_idle, true, false, false);
1120 }
1121
1122 void Monster_Anim(entity this)
1123 {
1124         int deadbits = (this.anim_state & (ANIMSTATE_DEAD1 | ANIMSTATE_DEAD2));
1125         if(IS_DEAD(this))
1126         {
1127                 if (!deadbits)
1128                 {
1129                         // Decide on which death animation to use.
1130                         if(random() < 0.5)
1131                                 deadbits = ANIMSTATE_DEAD1;
1132                         else
1133                                 deadbits = ANIMSTATE_DEAD2;
1134                 }
1135         }
1136         else
1137         {
1138                 // Clear a previous death animation.
1139                 deadbits = 0;
1140         }
1141         int animbits = deadbits;
1142         if(STAT(FROZEN, this))
1143                 animbits |= ANIMSTATE_FROZEN;
1144         if(this.crouch)
1145                 animbits |= ANIMSTATE_DUCK; // not that monsters can crouch currently...
1146         animdecide_setstate(this, animbits, false);
1147         animdecide_setimplicitstate(this, (IS_ONGROUND(this)));
1148
1149         /* // weapon entities for monsters?
1150         if (this.weaponentity)
1151         {
1152                 updateanim(this.weaponentity);
1153                 if (!this.weaponentity.animstate_override)
1154                         setanim(this.weaponentity, this.weaponentity.anim_idle, true, false, false);
1155         }
1156         */
1157 }
1158
1159 void Monster_Frozen_Think(entity this)
1160 {
1161         if(STAT(FROZEN, this) == 2)
1162         {
1163                 STAT(REVIVE_PROGRESS, this) = bound(0, STAT(REVIVE_PROGRESS, this) + this.ticrate * this.revive_speed, 1);
1164                 SetResourceAmountExplicit(this, RESOURCE_HEALTH, max(1, STAT(REVIVE_PROGRESS, this) * this.max_health));
1165                 this.iceblock.alpha = bound(0.2, 1 - STAT(REVIVE_PROGRESS, this), 1);
1166
1167                 if(!(this.spawnflags & MONSTERFLAG_INVINCIBLE) && this.sprite)
1168                         WaypointSprite_UpdateHealth(this.sprite, GetResourceAmount(this, RESOURCE_HEALTH));
1169
1170                 if(STAT(REVIVE_PROGRESS, this) >= 1)
1171                         Unfreeze(this);
1172         }
1173         else if(STAT(FROZEN, this) == 3)
1174         {
1175                 STAT(REVIVE_PROGRESS, this) = bound(0, STAT(REVIVE_PROGRESS, this) - this.ticrate * this.revive_speed, 1);
1176                 SetResourceAmountExplicit(this, RESOURCE_HEALTH, max(0, autocvar_g_nades_ice_health + (this.max_health-autocvar_g_nades_ice_health) * STAT(REVIVE_PROGRESS, this)));
1177
1178                 if(!(this.spawnflags & MONSTERFLAG_INVINCIBLE) && this.sprite)
1179                         WaypointSprite_UpdateHealth(this.sprite, GetResourceAmount(this, RESOURCE_HEALTH));
1180
1181                 if(GetResourceAmount(this, RESOURCE_HEALTH) < 1)
1182                 {
1183                         Unfreeze(this);
1184                         SetResourceAmountExplicit(this, RESOURCE_HEALTH, 0);
1185                         if(this.event_damage)
1186                                 this.event_damage(this, this, this.frozen_by, 1, DEATH_NADE_ICE_FREEZE.m_id, DMG_NOWEP, this.origin, '0 0 0');
1187                 }
1188
1189                 else if ( STAT(REVIVE_PROGRESS, this) <= 0 )
1190                         Unfreeze(this);
1191         }
1192         // otherwise, no revival!
1193
1194         this.enemy = NULL; // TODO: save enemy, and attack when revived?
1195 }
1196
1197 void Monster_Enemy_Check(entity this)
1198 {
1199         if(!this.enemy)
1200         {
1201                 this.enemy = Monster_FindTarget(this);
1202                 if(this.enemy)
1203                 {
1204                         WarpZone_RefSys_Copy(this.enemy, this);
1205                         WarpZone_RefSys_AddInverse(this.enemy, this); // wz1^-1 ... wzn^-1 receiver
1206                         // update move target immediately?
1207                         this.moveto = WarpZone_RefSys_TransformOrigin(this.enemy, this, (0.5 * (this.enemy.absmin + this.enemy.absmax)));
1208                         this.monster_moveto = '0 0 0';
1209                         this.monster_face = '0 0 0';
1210
1211                         //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)));
1212                         Monster_Sound(this, monstersound_sight, 0, false, CH_VOICE);
1213                 }
1214         }
1215 }
1216
1217 void Monster_Think(entity this)
1218 {
1219         setthink(this, Monster_Think);
1220         this.nextthink = time + this.ticrate;
1221
1222         if(this.monster_lifetime && time >= this.monster_lifetime)
1223         {
1224                 Damage(this, this, this, GetResourceAmount(this, RESOURCE_HEALTH) + this.max_health, DEATH_KILL.m_id, DMG_NOWEP, this.origin, this.origin);
1225                 return;
1226         }
1227
1228         if(STAT(FROZEN, this))
1229                 Monster_Frozen_Think(this);
1230         else if(time >= this.last_enemycheck)
1231         {
1232                 Monster_Enemy_Check(this);
1233                 this.last_enemycheck = time + 1; // check for enemies every second
1234         }
1235
1236         Monster mon = Monsters_from(this.monsterid);
1237         if(mon.mr_think(mon, this))
1238         {
1239                 Monster_Move(this, this.speed2, this.speed, this.stopspeed);
1240
1241                 .entity weaponentity = weaponentities[0]; // TODO?
1242                 Monster_Attack_Check(this, this.enemy, weaponentity);
1243         }
1244
1245         Monster_Anim(this);
1246
1247         CSQCMODEL_AUTOUPDATE(this);
1248 }
1249
1250 bool Monster_Spawn_Setup(entity this)
1251 {
1252         Monster mon = Monsters_from(this.monsterid);
1253         mon.mr_setup(mon, this);
1254
1255         // ensure some basic needs are met
1256         if(!GetResourceAmount(this, RESOURCE_HEALTH)) { SetResourceAmountExplicit(this, RESOURCE_HEALTH, 100); }
1257         if(!GetResourceAmount(this, RESOURCE_ARMOR)) { SetResourceAmountExplicit(this, RESOURCE_ARMOR, bound(0.2, 0.5 * MONSTER_SKILLMOD(this), 0.9)); }
1258         if(!this.target_range) { this.target_range = autocvar_g_monsters_target_range; }
1259         if(!this.respawntime) { this.respawntime = autocvar_g_monsters_respawn_delay; }
1260         if(!this.monster_moveflags) { this.monster_moveflags = MONSTER_MOVE_WANDER; }
1261         if(!this.attack_range) { this.attack_range = autocvar_g_monsters_attack_range; }
1262         if(!this.damageforcescale) { this.damageforcescale = autocvar_g_monsters_damageforcescale; }
1263
1264         if(!(this.spawnflags & MONSTERFLAG_RESPAWNED))
1265         {
1266                 Monster_Miniboss_Check(this);
1267                 SetResourceAmountExplicit(this, RESOURCE_HEALTH, GetResourceAmount(this, RESOURCE_HEALTH) * MONSTER_SKILLMOD(this));
1268
1269                 if(!this.skin)
1270                         this.skin = rint(random() * 4);
1271         }
1272
1273         this.max_health = GetResourceAmount(this, RESOURCE_HEALTH);
1274         this.pain_finished = this.nextthink;
1275         this.last_enemycheck = this.spawn_time + random(); // slight delay
1276
1277         if(IS_PLAYER(this.monster_follow))
1278                 this.effects |= EF_DIMLIGHT;
1279
1280         if(!this.wander_delay) { this.wander_delay = 2; }
1281         if(!this.wander_distance) { this.wander_distance = 600; }
1282
1283         Monster_Sounds_Precache(this);
1284         Monster_Sounds_Update(this);
1285
1286         if(teamplay)
1287         {
1288                 if(!this.monster_attack)
1289                         IL_PUSH(g_monster_targets, this);
1290                 this.monster_attack = true; // we can have monster enemies in team games
1291         }
1292
1293         Monster_Sound(this, monstersound_spawn, 0, false, CH_VOICE);
1294
1295         if(autocvar_g_monsters_healthbars)
1296         {
1297                 entity wp = WaypointSprite_Spawn(WP_Monster, 0, 1024, this, '0 0 1' * (this.maxs.z + 15), NULL, this.team, this, sprite, true, RADARICON_DANGER);
1298                 wp.wp_extra = this.monsterid;
1299                 wp.colormod = ((this.team) ? Team_ColorRGB(this.team) : '1 0 0');
1300                 if(!(this.spawnflags & MONSTERFLAG_INVINCIBLE))
1301                 {
1302                         WaypointSprite_UpdateMaxHealth(this.sprite, this.max_health);
1303                         WaypointSprite_UpdateHealth(this.sprite, GetResourceAmount(this, RESOURCE_HEALTH));
1304                 }
1305         }
1306
1307         setthink(this, Monster_Think);
1308         this.nextthink = time + this.ticrate;
1309
1310         if(MUTATOR_CALLHOOK(MonsterSpawn, this))
1311                 return false;
1312
1313         return true;
1314 }
1315
1316 bool Monster_Spawn(entity this, bool check_appear, int mon_id)
1317 {
1318         // setup the basic required properties for a monster
1319         entity mon = Monsters_from(mon_id);
1320         if(!mon.monsterid) { return false; } // invalid monster
1321
1322         if(!autocvar_g_monsters) { Monster_Remove(this); return false; }
1323
1324         if(!(this.spawnflags & MONSTERFLAG_RESPAWNED))
1325         {
1326                 IL_PUSH(g_monsters, this);
1327                 if(this.mdl && this.mdl != "")
1328                         precache_model(this.mdl);
1329                 if(this.mdl_dead && this.mdl_dead != "")
1330                         precache_model(this.mdl_dead);
1331         }
1332
1333         if(check_appear && Monster_Appear_Check(this, mon_id)) { return true; } // return true so the monster isn't removed
1334
1335         if(!this.monster_skill)
1336                 this.monster_skill = cvar("g_monsters_skill");
1337
1338         // support for quake style removing monsters based on skill
1339         if(this.monster_skill == MONSTER_SKILL_EASY) if(this.spawnflags & MONSTERSKILL_NOTEASY) { Monster_Remove(this); return false; }
1340         if(this.monster_skill == MONSTER_SKILL_MEDIUM) if(this.spawnflags & MONSTERSKILL_NOTMEDIUM) { Monster_Remove(this); return false; }
1341         if(this.monster_skill == MONSTER_SKILL_HARD) if(this.spawnflags & MONSTERSKILL_NOTHARD) { Monster_Remove(this); return false; }
1342
1343         if(this.team && !teamplay)
1344                 this.team = 0;
1345
1346         if(!(this.spawnflags & MONSTERFLAG_SPAWNED)) // naturally spawned monster
1347         if(!(this.spawnflags & MONSTERFLAG_RESPAWNED)) // don't count re-spawning monsters either
1348                 monsters_total += 1;
1349
1350         if(this.mdl && this.mdl != "")
1351                 _setmodel(this, this.mdl);
1352         else
1353                 setmodel(this, mon.m_model);
1354
1355         this.flags                              = FL_MONSTER;
1356         this.classname                  = "monster";
1357         this.takedamage                 = DAMAGE_AIM;
1358         if(!this.bot_attack)
1359                 IL_PUSH(g_bot_targets, this);
1360         this.bot_attack                 = true;
1361         this.iscreature                 = true;
1362         this.teleportable               = true;
1363         if(!this.damagedbycontents)
1364                 IL_PUSH(g_damagedbycontents, this);
1365         this.damagedbycontents  = true;
1366         this.monsterid                  = mon_id;
1367         this.event_damage               = Monster_Damage;
1368         this.event_heal                 = Monster_Heal;
1369         settouch(this, Monster_Touch);
1370         this.use                                = Monster_Use;
1371         this.solid                              = SOLID_BBOX;
1372         set_movetype(this, MOVETYPE_WALK);
1373         this.spawnshieldtime    = time + autocvar_g_monsters_spawnshieldtime;
1374         this.enemy                              = NULL;
1375         this.velocity                   = '0 0 0';
1376         this.moveto                             = this.origin;
1377         this.pos1                               = this.origin;
1378         this.pos2                               = this.angles;
1379         this.reset                              = Monster_Reset;
1380         this.netname                    = mon.netname;
1381         this.monster_attackfunc = mon.monster_attackfunc;
1382         this.monster_name               = mon.monster_name;
1383         this.candrop                    = true;
1384         this.oldtarget2                 = this.target2;
1385         //this.pass_distance            = 0;
1386         this.deadflag                   = DEAD_NO;
1387         this.spawn_time                 = time;
1388         this.gravity                    = 1;
1389         this.monster_moveto             = '0 0 0';
1390         this.monster_face               = '0 0 0';
1391         this.dphitcontentsmask  = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_BOTCLIP | DPCONTENTS_MONSTERCLIP;
1392
1393         if(!this.noalign) { this.noalign = ((mon.spawnflags & MONSTER_TYPE_FLY) || (mon.spawnflags & MONSTER_TYPE_SWIM)); }
1394         if(!this.scale) { this.scale = 1; }
1395         if(autocvar_g_monsters_edit) { this.grab = 1; }
1396         if(autocvar_g_fullbrightplayers) { this.effects |= EF_FULLBRIGHT; }
1397         if(autocvar_g_nodepthtestplayers) { this.effects |= EF_NODEPTHTEST; }
1398         if(mon.spawnflags & MONSTER_TYPE_SWIM) { this.flags |= FL_SWIM; }
1399
1400         if(autocvar_g_monsters_playerclip_collisions)
1401                 this.dphitcontentsmask |= DPCONTENTS_PLAYERCLIP;
1402
1403         if(mon.spawnflags & MONSTER_TYPE_FLY)
1404         {
1405                 this.flags |= FL_FLY;
1406                 set_movetype(this, MOVETYPE_FLY);
1407         }
1408
1409         if((mon.spawnflags & MONSTER_SIZE_QUAKE) && autocvar_g_monsters_quake_resize && !(this.spawnflags & MONSTERFLAG_RESPAWNED))
1410                 this.scale *= 1.3;
1411
1412         setsize(this, mon.m_mins * this.scale, mon.m_maxs * this.scale);
1413         this.view_ofs                   = '0 0 0.7' * (this.maxs_z * 0.5);
1414
1415         this.ticrate = bound(sys_frametime, ((!this.ticrate) ? autocvar_g_monsters_think_delay : this.ticrate), 60);
1416
1417         Monster_UpdateModel(this);
1418
1419         if(!Monster_Spawn_Setup(this))
1420         {
1421                 Monster_Remove(this);
1422                 return false;
1423         }
1424
1425         if(!this.noalign)
1426         {
1427                 setorigin(this, this.origin + '0 0 20');
1428                 tracebox(this.origin + '0 0 64', this.mins, this.maxs, this.origin - '0 0 10000', MOVE_WORLDONLY, this);
1429                 setorigin(this, trace_endpos);
1430         }
1431
1432         if(!(this.spawnflags & MONSTERFLAG_RESPAWNED))
1433                 monster_setupcolors(this);
1434
1435         CSQCMODEL_AUTOINIT(this);
1436
1437         return true;
1438 }