]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/weapons/weapon/electro.qc
Merge branch 'master' into Mario/stats_eloranking
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / weapons / weapon / electro.qc
1 #include "electro.qh"
2
3 #ifdef SVQC
4
5 void W_Electro_TriggerCombo(vector org, float rad, entity own)
6 {
7         entity e = WarpZone_FindRadius(org, rad, !WEP_CVAR(electro, combo_comboradius_thruwall));
8         while(e)
9         {
10                 if(e.classname == "electro_orb")
11                 {
12                         // do we allow thruwall triggering?
13                         if(WEP_CVAR(electro, combo_comboradius_thruwall))
14                         {
15                                 // if distance is greater than thruwall distance, check to make sure it's not through a wall
16                                 if(vdist(e.WarpZone_findradius_dist, >, WEP_CVAR(electro, combo_comboradius_thruwall)))
17                                 {
18                                         WarpZone_TraceLine(org, e.origin, MOVE_NOMONSTERS, e);
19                                         if(trace_fraction != 1)
20                                         {
21                                                 // trigger is through a wall and outside of thruwall range, abort
22                                                 e = e.chain;
23                                                 continue;
24                                         }
25                                 }
26                         }
27
28                         // change owner to whoever caused the combo explosion
29                         e.realowner = own;
30                         e.takedamage = DAMAGE_NO;
31                         e.classname = "electro_orb_chain";
32
33                         // now set the next one to trigger as well
34                         setthink(e, W_Electro_ExplodeCombo);
35
36                         // delay combo chains, looks cooler
37                         e.nextthink =
38                                 (
39                                         time
40                                         +
41                                         (WEP_CVAR(electro, combo_speed) ?
42                                                 (vlen(e.WarpZone_findradius_dist) / WEP_CVAR(electro, combo_speed))
43                                                 :
44                                                 0
45                                         )
46                                 );
47                 }
48                 e = e.chain;
49         }
50 }
51
52 void W_Electro_ExplodeCombo(entity this)
53 {
54         W_Electro_TriggerCombo(this.origin, WEP_CVAR(electro, combo_comboradius), this.realowner);
55
56         this.event_damage = func_null;
57
58         RadiusDamage(
59                 this,
60                 this.realowner,
61                 WEP_CVAR(electro, combo_damage),
62                 WEP_CVAR(electro, combo_edgedamage),
63                 WEP_CVAR(electro, combo_radius),
64                 NULL,
65                 NULL,
66                 WEP_CVAR(electro, combo_force),
67                 WEP_ELECTRO.m_id | HITTYPE_BOUNCE, // use THIS type for a combo because primary can't bounce
68                 this.weaponentity_fld,
69                 NULL
70         );
71
72         delete(this);
73 }
74
75 void W_Electro_Explode(entity this, entity directhitentity)
76 {
77         if(directhitentity.takedamage == DAMAGE_AIM)
78                 if(IS_PLAYER(directhitentity))
79                         if(DIFF_TEAM(this.realowner, directhitentity))
80                                 if(!IS_DEAD(directhitentity))
81                                         if(IsFlying(directhitentity))
82                                                 Send_Notification(NOTIF_ONE, this.realowner, MSG_ANNCE, ANNCE_ACHIEVEMENT_ELECTROBITCH);
83
84         this.event_damage = func_null;
85         this.takedamage = DAMAGE_NO;
86
87         if(this.move_movetype == MOVETYPE_BOUNCE || this.classname == "electro_orb") // TODO: classname is more reliable anyway?
88         {
89                 RadiusDamage(
90                         this,
91                         this.realowner,
92                         WEP_CVAR_SEC(electro, damage),
93                         WEP_CVAR_SEC(electro, edgedamage),
94                         WEP_CVAR_SEC(electro, radius),
95                         NULL,
96                         NULL,
97                         WEP_CVAR_SEC(electro, force),
98                         this.projectiledeathtype,
99                         this.weaponentity_fld,
100                         directhitentity
101                 );
102         }
103         else
104         {
105                 W_Electro_TriggerCombo(this.origin, WEP_CVAR_PRI(electro, comboradius), this.realowner);
106                 RadiusDamage(
107                         this,
108                         this.realowner,
109                         WEP_CVAR_PRI(electro, damage),
110                         WEP_CVAR_PRI(electro, edgedamage),
111                         WEP_CVAR_PRI(electro, radius),
112                         NULL,
113                         NULL,
114                         WEP_CVAR_PRI(electro, force),
115                         this.projectiledeathtype,
116                         this.weaponentity_fld,
117                         directhitentity
118                 );
119         }
120
121         delete(this);
122 }
123
124 void W_Electro_Explode_use(entity this, entity actor, entity trigger)
125 {
126         W_Electro_Explode(this, trigger);
127 }
128
129 void W_Electro_TouchExplode(entity this, entity toucher)
130 {
131         PROJECTILE_TOUCH(this, toucher);
132         W_Electro_Explode(this, toucher);
133 }
134
135
136 void sys_phys_update_single(entity this);
137
138 void W_Electro_Bolt_Think(entity this)
139 {
140         // sys_phys_update_single(this);
141         if(time >= this.ltime)
142         {
143                 this.use(this, NULL, NULL);
144                 return;
145         }
146
147         if(WEP_CVAR_PRI(electro, midaircombo_radius))
148         {
149                 float found = 0;
150                 entity e = WarpZone_FindRadius(this.origin, WEP_CVAR_PRI(electro, midaircombo_radius), true);
151
152                 // loop through nearby orbs and trigger them
153                 while(e)
154                 {
155                         if(e.classname == "electro_orb")
156                         {
157                                 // change owner to whoever caused the combo explosion
158                                 e.realowner = this.realowner;
159                                 e.takedamage = DAMAGE_NO;
160                                 e.classname = "electro_orb_chain";
161
162                                 // now set the next one to trigger as well
163                                 setthink(e, W_Electro_ExplodeCombo);
164
165                                 // delay combo chains, looks cooler
166                                 e.nextthink =
167                                         (
168                                                 time
169                                                 +
170                                                 (WEP_CVAR(electro, combo_speed) ?
171                                                         (vlen(e.WarpZone_findradius_dist) / WEP_CVAR(electro, combo_speed))
172                                                         :
173                                                         0
174                                                 )
175                                         );
176
177                                 ++found;
178                         }
179                         e = e.chain;
180                 }
181
182                 // if we triggered an orb, should we explode? if not, lets try again next time
183                 if(found && WEP_CVAR_PRI(electro, midaircombo_explode))
184                         { this.use(this, NULL, NULL); }
185                 else
186                         { this.nextthink = min(time + WEP_CVAR_PRI(electro, midaircombo_interval), this.ltime); }
187         }
188         else { this.nextthink = this.ltime; }
189         // this.nextthink = time;
190 }
191
192 void W_Electro_Attack_Bolt(Weapon thiswep, entity actor, .entity weaponentity)
193 {
194         entity proj;
195
196         W_DecreaseAmmo(thiswep, actor, WEP_CVAR_PRI(electro, ammo), weaponentity);
197
198         W_SetupShot_ProjectileSize(
199                 actor,
200                 weaponentity,
201                 '0 0 -3',
202                 '0 0 -3',
203                 false,
204                 2,
205                 SND_ELECTRO_FIRE,
206                 CH_WEAPON_A,
207                 WEP_CVAR_PRI(electro, damage),
208                 thiswep.m_id
209         );
210
211         Send_Effect(EFFECT_ELECTRO_MUZZLEFLASH, w_shotorg, w_shotdir * 1000, 1);
212
213         proj = new(electro_bolt);
214         proj.owner = proj.realowner = actor;
215         proj.bot_dodge = true;
216         proj.bot_dodgerating = WEP_CVAR_PRI(electro, damage);
217         proj.use = W_Electro_Explode_use;
218         setthink(proj, W_Electro_Bolt_Think);
219         proj.nextthink = time;
220         proj.ltime = time + WEP_CVAR_PRI(electro, lifetime);
221         PROJECTILE_MAKETRIGGER(proj);
222         proj.projectiledeathtype = thiswep.m_id;
223         proj.weaponentity_fld = weaponentity;
224         setorigin(proj, w_shotorg);
225
226         // if (IS_CSQC)
227         set_movetype(proj, MOVETYPE_FLY);
228         W_SetupProjVelocity_PRI(proj, electro);
229         proj.angles = vectoangles(proj.velocity);
230         settouch(proj, W_Electro_TouchExplode);
231         setsize(proj, '0 0 -3', '0 0 -3');
232         proj.flags = FL_PROJECTILE;
233         IL_PUSH(g_projectiles, proj);
234         IL_PUSH(g_bot_dodge, proj);
235         proj.missile_flags = MIF_SPLASH;
236
237         CSQCProjectile(proj, true, PROJECTILE_ELECTRO_BEAM, true);
238
239         MUTATOR_CALLHOOK(EditProjectile, actor, proj);
240         // proj.com_phys_pos = proj.origin;
241         // proj.com_phys_vel = proj.velocity;
242 }
243
244 void W_Electro_Orb_Stick(entity this, entity to)
245 {
246         entity newproj = spawn();
247         newproj.classname = this.classname;
248
249         newproj.bot_dodge = this.bot_dodge;
250         newproj.bot_dodgerating = this.bot_dodgerating;
251
252         newproj.owner = this.owner;
253         newproj.realowner = this.realowner;
254         setsize(newproj, this.mins, this.maxs);
255         setorigin(newproj, this.origin);
256         setmodel(newproj, MDL_PROJECTILE_ELECTRO);
257         newproj.angles = vectoangles(-trace_plane_normal); // face against the surface
258
259         newproj.takedamage = this.takedamage;
260         newproj.damageforcescale = this.damageforcescale;
261         SetResourceExplicit(newproj, RES_HEALTH, GetResource(this, RES_HEALTH));
262         newproj.event_damage = this.event_damage;
263         newproj.spawnshieldtime = this.spawnshieldtime;
264         newproj.damagedbycontents = true;
265         IL_PUSH(g_damagedbycontents, newproj);
266
267         set_movetype(newproj, MOVETYPE_NONE); // lock the orb in place
268         newproj.projectiledeathtype = this.projectiledeathtype;
269         newproj.weaponentity_fld = this.weaponentity_fld;
270
271         settouch(newproj, func_null);
272         setthink(newproj, getthink(this));
273         newproj.nextthink = this.nextthink;
274         newproj.use = this.use;
275         newproj.flags = this.flags;
276         IL_PUSH(g_projectiles, newproj);
277         IL_PUSH(g_bot_dodge, newproj);
278
279         delete(this);
280
281         if(to)
282                 SetMovetypeFollow(newproj, to);
283 }
284
285 void W_Electro_Orb_Touch(entity this, entity toucher)
286 {
287         PROJECTILE_TOUCH(this, toucher);
288         if(toucher.takedamage == DAMAGE_AIM && WEP_CVAR_SEC(electro, touchexplode))
289                 { W_Electro_Explode(this, toucher); }
290         else if(toucher.owner != this.owner && toucher.classname != this.classname) // don't stick to player's other projectiles!
291         {
292                 //UpdateCSQCProjectile(this);
293                 spamsound(this, CH_SHOTS, SND_ELECTRO_BOUNCE, VOL_BASE, ATTEN_NORM);
294                 this.projectiledeathtype |= HITTYPE_BOUNCE;
295
296                 if(WEP_CVAR_SEC(electro, stick))
297                         W_Electro_Orb_Stick(this, toucher);
298         }
299 }
300
301 void W_Electro_Orb_Damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, .entity weaponentity, vector hitloc, vector force)
302 {
303         if(GetResource(this, RES_HEALTH) <= 0)
304                 return;
305
306         // note: combos are usually triggered by W_Electro_TriggerCombo, not damage
307         float is_combo = (inflictor.classname == "electro_orb_chain" || inflictor.classname == "electro_bolt");
308
309         if(!W_CheckProjectileDamage(inflictor.realowner, this.realowner, deathtype, (is_combo ? 1 : -1)))
310                 return; // g_projectiles_damage says to halt
311
312         TakeResource(this, RES_HEALTH, damage);
313         if(GetResource(this, RES_HEALTH) <= 0)
314         {
315                 this.takedamage = DAMAGE_NO;
316                 this.nextthink = time;
317                 if(is_combo)
318                 {
319                         // change owner to whoever caused the combo explosion
320                         this.realowner = inflictor.realowner;
321                         this.classname = "electro_orb_chain";
322                         setthink(this, W_Electro_ExplodeCombo);
323                         this.nextthink = time +
324                                 (
325                                         // bound the length, inflictor may be in a galaxy far far away (warpzones)
326                                         min(
327                                                 WEP_CVAR(electro, combo_radius),
328                                                 vlen(this.origin - inflictor.origin)
329                                         )
330                                         /
331                                         // delay combo chains, looks cooler
332                                         WEP_CVAR(electro, combo_speed)
333                                 );
334                 }
335                 else
336                 {
337                         this.use = W_Electro_Explode_use;
338                         setthink(this, adaptor_think2use); // not _hittype_splash, as this runs "immediately"
339                 }
340         }
341 }
342
343 void W_Electro_Attack_Orb(Weapon thiswep, entity actor, .entity weaponentity)
344 {
345         W_DecreaseAmmo(thiswep, actor, WEP_CVAR_SEC(electro, ammo), weaponentity);
346
347         W_SetupShot_ProjectileSize(
348                 actor,
349                 weaponentity,
350                 '-4 -4 -4',
351                 '4 4 4',
352                 false,
353                 2,
354                 SND_ELECTRO_FIRE2,
355                 CH_WEAPON_A,
356                 WEP_CVAR_SEC(electro, damage),
357                 thiswep.m_id | HITTYPE_SECONDARY
358         );
359
360         w_shotdir = v_forward; // no TrueAim for grenades please
361
362         Send_Effect(EFFECT_ELECTRO_MUZZLEFLASH, w_shotorg, w_shotdir * 1000, 1);
363
364         entity proj = new(electro_orb);
365         proj.owner = proj.realowner = actor;
366         proj.use = W_Electro_Explode_use;
367         setthink(proj, adaptor_think2use_hittype_splash);
368         proj.bot_dodge = true;
369         proj.bot_dodgerating = WEP_CVAR_SEC(electro, damage);
370         proj.nextthink = time + WEP_CVAR_SEC(electro, lifetime);
371         PROJECTILE_MAKETRIGGER(proj);
372         proj.projectiledeathtype = thiswep.m_id | HITTYPE_SECONDARY;
373         proj.weaponentity_fld = weaponentity;
374         setorigin(proj, w_shotorg);
375
376         //proj.glow_size = 50;
377         //proj.glow_color = 45;
378         set_movetype(proj, MOVETYPE_BOUNCE);
379         W_SetupProjVelocity_UP_SEC(proj, electro);
380         settouch(proj, W_Electro_Orb_Touch);
381         setsize(proj, '-4 -4 -4', '4 4 4');
382         proj.takedamage = DAMAGE_YES;
383         proj.damageforcescale = WEP_CVAR_SEC(electro, damageforcescale);
384         SetResourceExplicit(proj, RES_HEALTH, WEP_CVAR_SEC(electro, health));
385         proj.event_damage = W_Electro_Orb_Damage;
386         proj.flags = FL_PROJECTILE;
387         IL_PUSH(g_projectiles, proj);
388         IL_PUSH(g_bot_dodge, proj);
389         proj.damagedbycontents = (WEP_CVAR_SEC(electro, damagedbycontents));
390         if(proj.damagedbycontents)
391                 IL_PUSH(g_damagedbycontents, proj);
392
393         proj.bouncefactor = WEP_CVAR_SEC(electro, bouncefactor);
394         proj.bouncestop = WEP_CVAR_SEC(electro, bouncestop);
395         proj.missile_flags = MIF_SPLASH | MIF_ARC;
396
397         CSQCProjectile(proj, true, PROJECTILE_ELECTRO, false); // no culling, it has sound
398
399         MUTATOR_CALLHOOK(EditProjectile, actor, proj);
400 }
401
402 void W_Electro_CheckAttack(Weapon thiswep, entity actor, .entity weaponentity, int fire)
403 {
404         if(actor.(weaponentity).electro_count > 1)
405         if(PHYS_INPUT_BUTTON_ATCK2(actor))
406         if(weapon_prepareattack(thiswep, actor, weaponentity, true, -1))
407         {
408                 W_Electro_Attack_Orb(thiswep, actor, weaponentity);
409                 actor.(weaponentity).electro_count -= 1;
410                 weapon_thinkf(actor, weaponentity, WFRAME_FIRE2, WEP_CVAR_SEC(electro, animtime), W_Electro_CheckAttack);
411                 return;
412         }
413         // WEAPONTODO: when the player releases the button, cut down the length of refire2?
414         w_ready(thiswep, actor, weaponentity, fire);
415 }
416
417 .float bot_secondary_electromooth;
418
419 METHOD(Electro, wr_aim, void(entity thiswep, entity actor, .entity weaponentity))
420 {
421     PHYS_INPUT_BUTTON_ATCK(actor) = PHYS_INPUT_BUTTON_ATCK2(actor) = false;
422     if(vdist(actor.origin - actor.enemy.origin, >, 1000)) { actor.bot_secondary_electromooth = 0; }
423     if(actor.bot_secondary_electromooth == 0)
424     {
425         float shoot;
426
427         if(WEP_CVAR_PRI(electro, speed))
428             shoot = bot_aim(actor, weaponentity, WEP_CVAR_PRI(electro, speed), 0, WEP_CVAR_PRI(electro, lifetime), false);
429         else
430             shoot = bot_aim(actor, weaponentity, 1000000, 0, 0.001, false);
431
432         if(shoot)
433         {
434             PHYS_INPUT_BUTTON_ATCK(actor) = true;
435             if(random() < 0.01) actor.bot_secondary_electromooth = 1;
436         }
437     }
438     else
439     {
440         if(bot_aim(actor, weaponentity, WEP_CVAR_SEC(electro, speed), WEP_CVAR_SEC(electro, speed_up), WEP_CVAR_SEC(electro, lifetime), true))
441         {
442             PHYS_INPUT_BUTTON_ATCK2(actor) = true;
443             if(random() < 0.03) actor.bot_secondary_electromooth = 0;
444         }
445     }
446 }
447 METHOD(Electro, wr_think, void(entity thiswep, entity actor, .entity weaponentity, int fire))
448 {
449     if(autocvar_g_balance_electro_reload_ammo) // forced reload // WEAPONTODO
450     {
451         float ammo_amount = 0;
452         if(actor.(weaponentity).clip_load >= WEP_CVAR_PRI(electro, ammo))
453             ammo_amount = 1;
454         if(actor.(weaponentity).clip_load >= WEP_CVAR_SEC(electro, ammo))
455             ammo_amount += 1;
456
457         if(!ammo_amount)
458         {
459             thiswep.wr_reload(thiswep, actor, weaponentity);
460             return;
461         }
462     }
463
464     if(fire & 1)
465     {
466         if(weapon_prepareattack(thiswep, actor, weaponentity, false, WEP_CVAR_PRI(electro, refire)))
467         {
468                 W_Electro_Attack_Bolt(thiswep, actor, weaponentity);
469                 weapon_thinkf(actor, weaponentity, WFRAME_FIRE1, WEP_CVAR_PRI(electro, animtime), w_ready);
470         }
471     }
472     else if(fire & 2)
473     {
474         if(time >= actor.(weaponentity).electro_secondarytime)
475         if(weapon_prepareattack(thiswep, actor, weaponentity, true, WEP_CVAR_SEC(electro, refire)))
476         {
477             W_Electro_Attack_Orb(thiswep, actor, weaponentity);
478             actor.(weaponentity).electro_count = WEP_CVAR_SEC(electro, count);
479             weapon_thinkf(actor, weaponentity, WFRAME_FIRE2, WEP_CVAR_SEC(electro, animtime), W_Electro_CheckAttack);
480             actor.(weaponentity).electro_secondarytime = time + WEP_CVAR_SEC(electro, refire2) * W_WeaponRateFactor(actor);
481         }
482     }
483 }
484 METHOD(Electro, wr_checkammo1, bool(entity thiswep, entity actor, .entity weaponentity))
485 {
486     float ammo_amount = GetResource(actor, thiswep.ammo_type) >= WEP_CVAR_PRI(electro, ammo);
487     ammo_amount += actor.(weaponentity).(weapon_load[thiswep.m_id]) >= WEP_CVAR_PRI(electro, ammo);
488     return ammo_amount;
489 }
490 METHOD(Electro, wr_checkammo2, bool(entity thiswep, entity actor, .entity weaponentity))
491 {
492     float ammo_amount;
493     if(WEP_CVAR(electro, combo_safeammocheck)) // true if you can fire at least one secondary blob AND one primary shot after it, otherwise false.
494     {
495         ammo_amount = GetResource(actor, thiswep.ammo_type) >= WEP_CVAR_SEC(electro, ammo) + WEP_CVAR_PRI(electro, ammo);
496         ammo_amount += actor.(weaponentity).(weapon_load[thiswep.m_id]) >= WEP_CVAR_SEC(electro, ammo) + WEP_CVAR_PRI(electro, ammo);
497     }
498     else
499     {
500         ammo_amount = GetResource(actor, thiswep.ammo_type) >= WEP_CVAR_SEC(electro, ammo);
501         ammo_amount += actor.(weaponentity).(weapon_load[thiswep.m_id]) >= WEP_CVAR_SEC(electro, ammo);
502     }
503     return ammo_amount;
504 }
505 METHOD(Electro, wr_resetplayer, void(entity thiswep, entity actor))
506 {
507     for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
508     {
509         .entity weaponentity = weaponentities[slot];
510         actor.(weaponentity).electro_secondarytime = time;
511     }
512 }
513 METHOD(Electro, wr_reload, void(entity thiswep, entity actor, .entity weaponentity))
514 {
515     W_Reload(actor, weaponentity, min(WEP_CVAR_PRI(electro, ammo), WEP_CVAR_SEC(electro, ammo)), SND_RELOAD);
516 }
517 METHOD(Electro, wr_suicidemessage, Notification(entity thiswep))
518 {
519     if(w_deathtype & HITTYPE_SECONDARY)
520         return WEAPON_ELECTRO_SUICIDE_ORBS;
521     else
522         return WEAPON_ELECTRO_SUICIDE_BOLT;
523 }
524 METHOD(Electro, wr_killmessage, Notification(entity thiswep))
525 {
526     if(w_deathtype & HITTYPE_SECONDARY)
527     {
528         return WEAPON_ELECTRO_MURDER_ORBS;
529     }
530     else
531     {
532         if(w_deathtype & HITTYPE_BOUNCE)
533             return WEAPON_ELECTRO_MURDER_COMBO;
534         else
535             return WEAPON_ELECTRO_MURDER_BOLT;
536     }
537 }
538
539 #endif
540 #ifdef CSQC
541
542 METHOD(Electro, wr_impacteffect, void(entity thiswep, entity actor))
543 {
544     vector org2;
545     org2 = w_org + w_backoff * 6;
546     if(w_deathtype & HITTYPE_SECONDARY)
547     {
548         pointparticles(EFFECT_ELECTRO_BALLEXPLODE, org2, '0 0 0', 1);
549         if(!w_issilent)
550             sound(actor, CH_SHOTS, SND_ELECTRO_IMPACT, VOL_BASE, ATTEN_NORM);
551     }
552     else
553     {
554         if(w_deathtype & HITTYPE_BOUNCE)
555         {
556             // this is sent as "primary (w_deathtype & HITTYPE_BOUNCE)" to distinguish it from (w_deathtype & HITTYPE_SECONDARY) bounced balls
557             pointparticles(EFFECT_ELECTRO_COMBO, org2, '0 0 0', 1);
558             if(!w_issilent)
559                 sound(actor, CH_SHOTS, SND_ELECTRO_IMPACT_COMBO, VOL_BASE, ATTEN_NORM);
560         }
561         else
562         {
563             pointparticles(EFFECT_ELECTRO_IMPACT, org2, '0 0 0', 1);
564             if(!w_issilent)
565                 sound(actor, CH_SHOTS, SND_ELECTRO_IMPACT, VOL_BASE, ATTEN_NORM);
566         }
567     }
568 }
569
570 #endif