]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/monsters/monster/golem.qc
Merge branch 'master' into Mario/monsters
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / monsters / monster / golem.qc
1 #include "golem.qh"
2
3 #ifdef SVQC
4 float autocvar_g_monster_golem_health;
5 float autocvar_g_monster_golem_damageforcescale = 0.1;
6 float autocvar_g_monster_golem_attack_smash_damage;
7 float autocvar_g_monster_golem_attack_smash_range;
8 float autocvar_g_monster_golem_attack_claw_damage;
9 float autocvar_g_monster_golem_attack_lightning_damage;
10 float autocvar_g_monster_golem_attack_lightning_damage_zap = 15;
11 float autocvar_g_monster_golem_attack_lightning_force;
12 float autocvar_g_monster_golem_attack_lightning_radius;
13 float autocvar_g_monster_golem_attack_lightning_radius_zap;
14 float autocvar_g_monster_golem_attack_lightning_speed;
15 float autocvar_g_monster_golem_attack_lightning_speed_up;
16 float autocvar_g_monster_golem_speed_stop;
17 float autocvar_g_monster_golem_speed_run;
18 float autocvar_g_monster_golem_speed_walk;
19
20 /*
21 const float golem_anim_stand            = 0;
22 const float golem_anim_walk             = 1;
23 const float golem_anim_run              = 2;
24 const float golem_anim_smash            = 3;
25 const float golem_anim_swingr   = 4;
26 const float golem_anim_swingl   = 5;
27 const float golem_anim_magic            = 6;
28 const float golem_anim_pain             = 7;
29 const float golem_anim_death            = 8;
30 */
31
32 .float golem_lastattack; // delay attacks separately
33
34 void M_Golem_Attack_Smash(entity this)
35 {
36         makevectors(this.angles);
37         Send_Effect(EFFECT_EXPLOSION_MEDIUM, (this.origin + (v_forward * 150)) - ('0 0 1' * this.maxs.z), '0 0 0', 1);
38         sound(this, CH_SHOTS, SND_ROCKET_IMPACT, VOL_BASE, ATTEN_NORM);
39
40         // RadiusDamage does NOT support custom starting location, which means we must use this hack...
41
42         tracebox(this.origin + v_forward * 50, this.mins * 0.5, this.maxs * 0.5, this.origin + v_forward * autocvar_g_monster_golem_attack_smash_range, MOVE_NORMAL, this);
43
44         if(trace_ent.takedamage)
45                 Damage(trace_ent, this, this, (autocvar_g_monster_golem_attack_smash_damage) * MONSTER_SKILLMOD(this), DEATH_MONSTER_GOLEM_SMASH.m_id, trace_ent.origin, normalize(trace_ent.origin - this.origin));
46 }
47
48 void M_Golem_Attack_Swing(entity this)
49 {
50         Monster_Attack_Melee(this, this.enemy, (autocvar_g_monster_golem_attack_claw_damage), ((random() >= 0.5) ? this.anim_melee2 : this.anim_melee3), this.attack_range, 0.8, DEATH_MONSTER_GOLEM_CLAW.m_id, true);
51 }
52
53 void M_Golem_Attack_Lightning_Explode(entity this, entity directhitentity)
54 {
55         sound(this, CH_SHOTS, SND_ELECTRO_IMPACT, VOL_BASE, ATTEN_NORM);
56         Send_Effect(EFFECT_ELECTRO_IMPACT, this.origin, '0 0 0', 1);
57
58         this.event_damage = func_null;
59         this.takedamage = DAMAGE_NO;
60         set_movetype(this, MOVETYPE_NONE);
61         this.velocity = '0 0 0';
62
63         if(this.move_movetype == MOVETYPE_NONE)
64                 this.velocity = this.oldvelocity;
65
66         RadiusDamage (this, this.realowner, (autocvar_g_monster_golem_attack_lightning_damage), (autocvar_g_monster_golem_attack_lightning_damage), (autocvar_g_monster_golem_attack_lightning_radius),
67                                         NULL, NULL, (autocvar_g_monster_golem_attack_lightning_force), this.projectiledeathtype, directhitentity);
68
69         FOREACH_ENTITY_RADIUS(this.origin, autocvar_g_monster_golem_attack_lightning_radius_zap, it != this.realowner && it.takedamage,
70         {
71                 te_csqc_lightningarc(this.origin, it.origin);
72                 Damage(it, this, this.realowner, (autocvar_g_monster_golem_attack_lightning_damage_zap) * MONSTER_SKILLMOD(this), DEATH_MONSTER_GOLEM_ZAP.m_id, it.origin, '0 0 0');
73         });
74
75         setthink(this, SUB_Remove);
76         this.nextthink = time + 0.2;
77 }
78
79 void M_Golem_Attack_Lightning_Explode_use(entity this, entity actor, entity trigger)
80 {
81         M_Golem_Attack_Lightning_Explode(this, trigger);
82 }
83
84 void M_Golem_Attack_Lightning_Damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, vector hitloc, vector force)
85 {
86         if (this.health <= 0)
87                 return;
88
89         if (!W_CheckProjectileDamage(inflictor.realowner, this.realowner, deathtype, -1)) // no exceptions
90                 return; // g_projectiles_damage says to halt
91
92         this.health = this.health - damage;
93
94         if (this.health <= 0)
95                 W_PrepareExplosionByDamage(this, attacker, adaptor_think2use);
96 }
97
98 void M_Golem_Attack_Lightning_Touch(entity this, entity toucher)
99 {
100         PROJECTILE_TOUCH(this, toucher);
101
102         this.use(this, NULL, toucher);
103 }
104
105 void M_Golem_Attack_Lightning_Think(entity this)
106 {
107         this.nextthink = time;
108         if (time > this.cnt)
109         {
110                 M_Golem_Attack_Lightning_Explode(this, NULL);
111                 return;
112         }
113 }
114
115 void M_Golem_Attack_Lightning(entity this)
116 {
117         entity gren;
118
119         monster_makevectors(this, this.enemy);
120
121         gren = new(grenade);
122         gren.owner = gren.realowner = this;
123         gren.bot_dodge = true;
124         gren.bot_dodgerating = (autocvar_g_monster_golem_attack_lightning_damage);
125         set_movetype(gren, MOVETYPE_BOUNCE);
126         PROJECTILE_MAKETRIGGER(gren);
127         gren.projectiledeathtype = DEATH_MONSTER_GOLEM_ZAP.m_id;
128         setorigin(gren, CENTER_OR_VIEWOFS(this));
129         setsize(gren, '-8 -8 -8', '8 8 8');
130         gren.scale = 2.5;
131
132         gren.cnt = time + 5;
133         gren.nextthink = time;
134         setthink(gren, M_Golem_Attack_Lightning_Think);
135         gren.use = M_Golem_Attack_Lightning_Explode_use;
136         settouch(gren, M_Golem_Attack_Lightning_Touch);
137
138         gren.takedamage = DAMAGE_YES;
139         gren.health = 50;
140         gren.damageforcescale = 0;
141         gren.event_damage = M_Golem_Attack_Lightning_Damage;
142         gren.damagedbycontents = true;
143         IL_PUSH(g_damagedbycontents, gren);
144         gren.missile_flags = MIF_SPLASH | MIF_ARC;
145         W_SetupProjVelocity_Explicit(gren, v_forward, v_up, (autocvar_g_monster_golem_attack_lightning_speed), (autocvar_g_monster_golem_attack_lightning_speed_up), 0, 0, false);
146
147         gren.angles = vectoangles (gren.velocity);
148         gren.flags = FL_PROJECTILE;
149         IL_PUSH(g_projectiles, gren);
150         IL_PUSH(g_bot_dodge, gren);
151
152         CSQCProjectile(gren, true, PROJECTILE_GOLEM_LIGHTNING, true);
153 }
154
155 .int state;
156
157 bool M_Golem_Attack(int attack_type, entity actor, entity targ, .entity weaponentity)
158 {
159         switch(attack_type)
160         {
161                 case MONSTER_ATTACK_MELEE:
162                 {
163                         int swing_cnt = bound(1, floor(random() * 4), 3);
164                         Monster_Delay(actor, swing_cnt, 0.5, M_Golem_Attack_Swing);
165                         actor.anim_finished = actor.attack_finished_single[0] = time + (0.5 * swing_cnt); // set this for the delay
166                         return true;
167                 }
168                 case MONSTER_ATTACK_RANGED:
169                 {
170                         float randomness = random();
171
172                         if(time >= actor.golem_lastattack) // golem doesn't attack much
173                         if(IS_ONGROUND(actor))
174                         if(randomness <= 0.5 && vdist(actor.enemy.origin - actor.origin, <=, autocvar_g_monster_golem_attack_smash_range))
175                         {
176                                 setanim(actor, actor.anim_melee2, true, true, false);
177                                 Monster_Delay(actor, 1, 0.7, M_Golem_Attack_Smash);
178                                 actor.attack_finished_single[0] = time + 1.1;
179                                 actor.anim_finished = time + 1.1;
180                                 actor.state = MONSTER_ATTACK_MELEE; // kinda a melee attack
181                                 actor.golem_lastattack = time + 3 + random() * 1.5;
182                                 return true;
183                         }
184                         else if(randomness <= 0.1 && vdist(actor.enemy.origin - actor.origin, >=, autocvar_g_monster_golem_attack_smash_range * 1.5)) // small chance, don't want this spammed
185                         {
186                                 setanim(actor, actor.anim_shoot, true, true, false);
187                                 actor.state = MONSTER_ATTACK_MELEE; // maybe we should rename this to something more general
188                                 actor.attack_finished_single[0] = time + 1.1;
189                                 actor.anim_finished = 1.1;
190                                 actor.golem_lastattack = time + 3 + random() * 1.5;
191                                 Monster_Delay(actor, 1, 0.6, M_Golem_Attack_Lightning);
192                                 return true;
193                         }
194
195                         return false;
196                 }
197         }
198
199         return false;
200 }
201
202 spawnfunc(monster_golem) { Monster_Spawn(this, true, MON_GOLEM.monsterid); }
203 // compatibility
204 spawnfunc(monster_shambler) { spawnfunc_monster_golem(this); }
205 #endif // SVQC
206
207 #ifdef SVQC
208 METHOD(Golem, mr_think, bool(Golem this, entity actor))
209 {
210     TC(Golem, this);
211     return true;
212 }
213
214 METHOD(Golem, mr_pain, float(Golem this, entity actor, float damage_take, entity attacker, float deathtype))
215 {
216     TC(Golem, this);
217     actor.pain_finished = time + 0.5;
218     setanim(actor, actor.anim_pain1, true, true, false);
219     return damage_take;
220 }
221
222 METHOD(Golem, mr_death, bool(Golem this, entity actor))
223 {
224     TC(Golem, this);
225     setanim(actor, actor.anim_die1, false, true, true);
226     return true;
227 }
228 #endif
229 #ifdef GAMEQC
230 METHOD(Golem, mr_anim, bool(Golem this, entity actor))
231 {
232     TC(Golem, this);
233     vector none = '0 0 0';
234     actor.anim_idle = animfixfps(actor, '0 1 1', none);
235     actor.anim_walk = animfixfps(actor, '1 1 1', none);
236     actor.anim_run = animfixfps(actor, '2 1 1', none);
237     actor.anim_melee1 = animfixfps(actor, '3 1 5', none); // analyze models and set framerate
238     actor.anim_melee2 = animfixfps(actor, '4 1 5', none); // analyze models and set framerate
239     actor.anim_melee3 = animfixfps(actor, '5 1 5', none); // analyze models and set framerate
240     //actor.anim_melee4 = animfixfps(actor, '6 1 5', none); // analyze models and set framerate
241     actor.anim_pain1 = animfixfps(actor, '7 1 2', none); // 0.5 seconds
242     actor.anim_pain2 = animfixfps(actor, '8 1 2', none); // 0.5 seconds
243     //actor.anim_pain3 = animfixfps(actor, '9 1 2', none); // 0.5 seconds
244     //actor.anim_pain4 = animfixfps(actor, '10 1 2', none); // 0.5 seconds
245     //actor.anim_pain5 = animfixfps(actor, '11 1 2', none); // 0.5 seconds
246     //actor.anim_sight = animfixfps(actor, '12 1 5', none); // analyze models and set framerate
247     actor.anim_die1 = animfixfps(actor, '13 1 0.5', none); // 2 seconds
248     actor.anim_die2 = animfixfps(actor, '14 1 0.5', none); // 2 seconds
249     //actor.anim_dead = animfixfps(actor, '15 1 0.5', none); // 2 seconds
250     //actor.anim_dieback = animfixfps(actor, '16 1 0.5', none); // 2 seconds
251     //actor.anim_deadback = animfixfps(actor, '17 1 0.5', none); // 2 seconds
252     //actor.anim_dead2 = animfixfps(actor, '18 1 0.5', none); // 2 seconds
253     //actor.anim_dead3 = animfixfps(actor, '19 1 0.5', none); // 2 seconds
254     //actor.anim_dead4 = animfixfps(actor, '20 1 0.5', none); // 2 seconds
255     //actor.anim_dead5 = animfixfps(actor, '21 1 0.5', none); // 2 seconds
256     //actor.anim_dead6 = animfixfps(actor, '22 1 0.5', none); // 2 seconds
257     return true;
258 }
259 #endif
260 #ifdef SVQC
261 .float animstate_endtime;
262 METHOD(Golem, mr_setup, bool(Golem this, entity actor))
263 {
264     TC(Golem, this);
265     if(!actor.health) actor.health = (autocvar_g_monster_golem_health);
266     if(!actor.attack_range) actor.attack_range = 150;
267     if(!actor.speed) { actor.speed = (autocvar_g_monster_golem_speed_walk); }
268     if(!actor.speed2) { actor.speed2 = (autocvar_g_monster_golem_speed_run); }
269     if(!actor.stopspeed) { actor.stopspeed = (autocvar_g_monster_golem_speed_stop); }
270     if(!actor.damageforcescale) { actor.damageforcescale = (autocvar_g_monster_golem_damageforcescale); }
271
272     actor.monster_loot = ITEM_HealthMega;
273     actor.weapon = WEP_ELECTRO.m_id; // matches attacks better than WEP_VORTEX
274
275     setanim(actor, actor.anim_shoot, false, true, true);
276     actor.spawn_time = actor.animstate_endtime;
277     actor.spawnshieldtime = actor.spawn_time;
278     actor.monster_attackfunc = M_Golem_Attack;
279
280     return true;
281 }
282 #endif