]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/weapons/w_shockwave.qc
Add todo comment
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / weapons / w_shockwave.qc
1 #ifdef REGISTER_WEAPON
2 REGISTER_WEAPON(
3 /* WEP_##id */ SHOCKWAVE,
4 /* function */ W_Shockwave,
5 /* ammotype */ ammo_none,
6 /* impulse  */ 2,
7 /* flags    */ WEP_FLAG_NORMAL | WEP_TYPE_HITSCAN,
8 /* rating   */ BOT_PICKUP_RATING_LOW,
9 /* color        */ '0.5 0.25 0',
10 /* model    */ "shotgun",
11 /* netname  */ "shockwave",
12 /* fullname */ _("Shockwave")
13 );
14
15 #define SHOCKWAVE_SETTINGS(w_cvar,w_prop) SHOCKWAVE_SETTINGS_LIST(w_cvar, w_prop, SHOCKWAVE, shockwave)
16 #define SHOCKWAVE_SETTINGS_LIST(w_cvar,w_prop,id,sn) \
17         w_cvar(id, sn, NONE, blast_animtime) \
18         w_cvar(id, sn, NONE, blast_damage) \
19         w_cvar(id, sn, NONE, blast_distance) \
20         w_cvar(id, sn, NONE, blast_edgedamage) \
21         w_cvar(id, sn, NONE, blast_force) \
22         w_cvar(id, sn, NONE, blast_force_forwardbias) \
23         w_cvar(id, sn, NONE, blast_force_zscale) \
24         w_cvar(id, sn, NONE, blast_jump_damage) \
25         w_cvar(id, sn, NONE, blast_jump_edgedamage) \
26         w_cvar(id, sn, NONE, blast_jump_force) \
27         w_cvar(id, sn, NONE, blast_jump_force_velocitybias) \
28         w_cvar(id, sn, NONE, blast_jump_force_zscale) \
29         w_cvar(id, sn, NONE, blast_jump_multiplier_accuracy) \
30         w_cvar(id, sn, NONE, blast_jump_multiplier_distance) \
31         w_cvar(id, sn, NONE, blast_jump_multiplier_min) \
32         w_cvar(id, sn, NONE, blast_jump_radius) \
33         w_cvar(id, sn, NONE, blast_multiplier_accuracy) \
34         w_cvar(id, sn, NONE, blast_multiplier_distance) \
35         w_cvar(id, sn, NONE, blast_multiplier_min) \
36         w_cvar(id, sn, NONE, blast_refire) \
37         w_cvar(id, sn, NONE, blast_splash_damage) \
38         w_cvar(id, sn, NONE, blast_splash_edgedamage) \
39         w_cvar(id, sn, NONE, blast_splash_force) \
40         w_cvar(id, sn, NONE, blast_splash_force_forwardbias) \
41         w_cvar(id, sn, NONE, blast_splash_multiplier_accuracy) \
42         w_cvar(id, sn, NONE, blast_splash_multiplier_distance) \
43         w_cvar(id, sn, NONE, blast_splash_multiplier_min) \
44         w_cvar(id, sn, NONE, blast_splash_radius) \
45         w_cvar(id, sn, NONE, blast_spread_max) \
46         w_cvar(id, sn, NONE, blast_spread_min) \
47         w_cvar(id, sn, NONE, melee_animtime) \
48         w_cvar(id, sn, NONE, melee_damage) \
49         w_cvar(id, sn, NONE, melee_delay) \
50         w_cvar(id, sn, NONE, melee_force) \
51         w_cvar(id, sn, NONE, melee_multihit) \
52         w_cvar(id, sn, NONE, melee_no_doubleslap) \
53         w_cvar(id, sn, NONE, melee_nonplayerdamage) \
54         w_cvar(id, sn, NONE, melee_range) \
55         w_cvar(id, sn, NONE, melee_refire) \
56         w_cvar(id, sn, NONE, melee_swing_side) \
57         w_cvar(id, sn, NONE, melee_swing_up) \
58         w_cvar(id, sn, NONE, melee_time) \
59         w_cvar(id, sn, NONE, melee_traces) \
60         w_prop(id, sn, float,  switchdelay_raise, switchdelay_raise) \
61         w_prop(id, sn, float,  switchdelay_drop, switchdelay_drop) \
62         w_prop(id, sn, string, weaponreplace, weaponreplace) \
63         w_prop(id, sn, float,  weaponstart, weaponstart) \
64         w_prop(id, sn, float,  weaponstartoverride, weaponstartoverride)
65
66 #ifdef SVQC
67 SHOCKWAVE_SETTINGS(WEP_ADD_CVAR, WEP_ADD_PROP)
68 #endif
69 #else
70 #ifdef SVQC
71 void spawnfunc_weapon_shockwave()
72 {
73         //if(autocvar_sv_q3acompat_machineshockwaveswap) // WEAPONTODO
74         if(autocvar_sv_q3acompat_machineshotgunswap)
75         if(self.classname != "droppedweapon")
76         {
77                 weapon_defaultspawnfunc(WEP_MACHINEGUN);
78                 return;
79         }
80         weapon_defaultspawnfunc(WEP_SHOCKWAVE);
81 }
82
83 #define MAX_SHOCKWAVE_HITS 5
84
85 .float swing_prev;
86 .entity swing_alreadyhit;
87 .float shockwave_blasttime;
88 entity shockwave_hit[MAX_SHOCKWAVE_HITS];
89 float shockwave_hit_damage[MAX_SHOCKWAVE_HITS];
90 vector shockwave_hit_force[MAX_SHOCKWAVE_HITS];
91
92 // MELEE ATTACK MODE
93 void W_Shockwave_Melee_Think()
94 {
95         // declarations
96         float i, f, swing, swing_factor, swing_damage, meleetime, is_player;
97         entity target_victim;
98         vector targpos;
99
100         // check to see if we can still continue, otherwise give up now
101         if((self.realowner.deadflag != DEAD_NO) && WEP_CVAR(shockwave, melee_no_doubleslap))
102         {
103                 remove(self);
104                 return;
105         }
106
107         // set start time of melee
108         if(!self.cnt)
109         {
110                 self.cnt = time; 
111                 W_PlayStrengthSound(self.realowner);
112         }
113
114         // update values for v_* vectors
115         makevectors(self.realowner.v_angle);
116         
117         // calculate swing percentage based on time
118         meleetime = WEP_CVAR(shockwave, melee_time) * W_WeaponRateFactor();
119         swing = bound(0, (self.cnt + meleetime - time) / meleetime, 10);
120         f = ((1 - swing) * WEP_CVAR(shockwave, melee_traces));
121         
122         // perform the traces needed for this frame 
123         for(i=self.swing_prev; i < f; ++i)
124         {
125                 swing_factor = ((1 - (i / WEP_CVAR(shockwave, melee_traces))) * 2 - 1);
126                 
127                 targpos = (self.realowner.origin + self.realowner.view_ofs 
128                         + (v_forward * WEP_CVAR(shockwave, melee_range))
129                         + (v_up * swing_factor * WEP_CVAR(shockwave, melee_swing_up))
130                         + (v_right * swing_factor * WEP_CVAR(shockwave, melee_swing_side)));
131
132                 WarpZone_traceline_antilag(
133                         self.realowner,
134                         (self.realowner.origin + self.realowner.view_ofs),
135                         targpos,
136                         FALSE,
137                         self.realowner,
138                         ANTILAG_LATENCY(self.realowner)
139                 );
140                 
141                 // draw lightning beams for debugging
142                 te_lightning2(world, targpos, self.realowner.origin + self.realowner.view_ofs + v_forward * 5 - v_up * 5); 
143                 te_customflash(targpos, 40,  2, '1 1 1');
144                 
145                 is_player = (trace_ent.classname == "player" || trace_ent.classname == "body");
146
147                 if((trace_fraction < 1) // if trace is good, apply the damage and remove self if necessary
148                         && (trace_ent.takedamage == DAMAGE_AIM)  
149                         && (trace_ent != self.swing_alreadyhit)
150                         && (is_player || WEP_CVAR(shockwave, melee_nonplayerdamage)))
151                 {
152                         target_victim = trace_ent; // so it persists through other calls
153                         
154                         if(is_player) // this allows us to be able to nerf the non-player damage done in e.g. assault or onslaught
155                                 swing_damage = (WEP_CVAR(shockwave, melee_damage) * min(1, swing_factor + 1));
156                         else
157                                 swing_damage = (WEP_CVAR(shockwave, melee_nonplayerdamage) * min(1, swing_factor + 1));
158
159                         // trigger damage with this calculated info
160                         Damage(
161                                 target_victim,
162                                 self.realowner,
163                                 self.realowner, 
164                                 swing_damage,
165                                 (WEP_SHOCKWAVE | HITTYPE_SECONDARY), 
166                                 (self.realowner.origin + self.realowner.view_ofs), 
167                                 (v_forward * WEP_CVAR(shockwave, melee_force))
168                         );
169
170                         // handle accuracy
171                         if(accuracy_isgooddamage(self.realowner, target_victim))
172                                 { accuracy_add(self.realowner, WEP_SHOCKWAVE, 0, swing_damage); }
173
174                         #ifdef DEBUG_SHOCKWAVE
175                         print(sprintf(
176                                 "MELEE: %s hitting %s with %f damage (factor: %f) at %f time.\n",
177                                 self.realowner.netname,
178                                 target_victim.netname,
179                                 swing_damage,
180                                 swing_factor,
181                                 time
182                         ));
183                         #endif
184
185                         // allow multiple hits with one swing, but not against the same player twice
186                         if(WEP_CVAR(shockwave, melee_multihit))
187                         {
188                                 self.swing_alreadyhit = target_victim;
189                                 continue; // move along to next trace
190                         }
191                         else
192                         {
193                                 remove(self);
194                                 return;
195                         }
196                 }
197         }
198         
199         if(time >= self.cnt + meleetime)
200         {
201                 // melee is finished
202                 remove(self);
203                 return;
204         }
205         else
206         {
207                 // set up next frame 
208                 self.swing_prev = i;
209                 self.nextthink = time;
210         }
211 }
212
213 void W_Shockwave_Melee()
214 {
215         sound(self, CH_WEAPON_A, "weapons/shotgun_melee.wav", VOL_BASE, ATTN_NORM);
216         weapon_thinkf(WFRAME_FIRE2, WEP_CVAR(shockwave, melee_animtime), w_ready);
217
218         entity meleetemp;
219         meleetemp = spawn();
220         meleetemp.owner = meleetemp.realowner = self;
221         meleetemp.think = W_Shockwave_Melee_Think;
222         meleetemp.nextthink = time + WEP_CVAR(shockwave, melee_delay) * W_WeaponRateFactor();
223         W_SetupShot_Range(self, TRUE, 0, "", 0, WEP_CVAR(shockwave, melee_damage), WEP_CVAR(shockwave, melee_range));
224 }
225
226 // SHOCKWAVE ATTACK MODE
227 float W_Shockwave_Attack_CheckSpread(
228         vector targetorg,
229         vector nearest_on_line,
230         vector sw_shotorg,
231         vector attack_endpos)
232 {
233         float spreadlimit;
234         float distance_of_attack = vlen(sw_shotorg - attack_endpos);
235         float distance_from_line = vlen(targetorg - nearest_on_line);
236         
237         spreadlimit = (distance_of_attack ? min(1, (vlen(sw_shotorg - nearest_on_line) / distance_of_attack)) : 1);
238         spreadlimit =
239                 (
240                         (WEP_CVAR(shockwave, blast_spread_min) * (1 - spreadlimit))
241                         +
242                         (WEP_CVAR(shockwave, blast_spread_max) * spreadlimit)
243                 );
244
245         if(
246                 (spreadlimit && (distance_from_line <= spreadlimit))
247                 &&
248                 ((vlen(normalize(targetorg - sw_shotorg) - normalize(attack_endpos - sw_shotorg)) * RAD2DEG) <= 90)
249         )
250                 { return bound(0, (distance_from_line / spreadlimit), 1); }
251         else
252                 { return FALSE; }
253 }
254
255 float W_Shockwave_Attack_IsVisible(
256         entity head,
257         vector nearest_on_line,
258         vector sw_shotorg,
259         vector attack_endpos)
260 {
261         vector nearest_to_attacker = head.WarpZone_findradius_nearest;
262         vector center = (head.origin + (head.mins + head.maxs) * 0.5);
263         vector corner;
264         float i;
265
266         // STEP ONE: Check if the nearest point is clear
267         if(W_Shockwave_Attack_CheckSpread(nearest_to_attacker, nearest_on_line, sw_shotorg, attack_endpos))
268         {
269                 WarpZone_TraceLine(sw_shotorg, nearest_to_attacker, MOVE_NOMONSTERS, self);
270                 if(trace_fraction == 1) { return TRUE; } // yes, the nearest point is clear and we can allow the damage
271         }
272
273         // STEP TWO: Check if shotorg to center point is clear
274         if(W_Shockwave_Attack_CheckSpread(center, nearest_on_line, sw_shotorg, attack_endpos))
275         {
276                 WarpZone_TraceLine(sw_shotorg, center, MOVE_NOMONSTERS, self);
277                 if(trace_fraction == 1) { return TRUE; } // yes, the center point is clear and we can allow the damage
278         }
279
280         // STEP THREE: Check each corner to see if they are clear
281         for(i=1; i<=8; ++i)
282         {
283                 corner = get_corner_position(head, i);
284                 if(W_Shockwave_Attack_CheckSpread(corner, nearest_on_line, sw_shotorg, attack_endpos))
285                 {
286                         WarpZone_TraceLine(sw_shotorg, corner, MOVE_NOMONSTERS, self);
287                         if(trace_fraction == 1) { return TRUE; } // yes, this corner is clear and we can allow the damage
288                 }
289         }
290
291         return FALSE;
292 }
293
294 float W_Shockwave_Attack_CheckHit(
295         float queue,
296         entity head,
297         vector final_force,
298         float final_damage)
299 {
300         // WEAPONTODO: check if we hit MAX_SHOCKWAVE_HITS 
301         if(!head) { return FALSE; }
302         float i;
303
304         ++queue;
305         
306         for(i = 1; i <= queue; ++i)
307         {
308                 if(shockwave_hit[i] == head)
309                 {
310                         if(vlen(final_force) > vlen(shockwave_hit_force[i])) { shockwave_hit_force[i] = final_force; }
311                         if(final_damage > shockwave_hit_damage[i]) { shockwave_hit_damage[i] = final_damage; }
312                         return FALSE;
313                 }
314         }
315
316         shockwave_hit[queue] = head;
317         shockwave_hit_force[queue] = final_force;
318         shockwave_hit_damage[queue] = final_damage;
319         return TRUE;
320 }
321
322 void W_Shockwave_Attack()
323 {
324         // declarations
325         float multiplier, multiplier_from_accuracy, multiplier_from_distance;
326         float final_damage;
327         vector final_force, center, vel;
328         entity head;
329
330         float i, queue = 0;
331         
332         // set up the shot direction
333         W_SetupShot(self, FALSE, 3, "weapons/lasergun_fire.wav", CH_WEAPON_B, WEP_CVAR(shockwave, blast_damage));
334         vector attack_endpos = (w_shotorg + (w_shotdir * WEP_CVAR(shockwave, blast_distance)));
335         WarpZone_TraceLine(w_shotorg, attack_endpos, MOVE_NOMONSTERS, self);
336         vector attack_hitpos = trace_endpos;
337         float distance_to_end = vlen(w_shotorg - attack_endpos);
338         float distance_to_hit = vlen(w_shotorg - attack_hitpos);
339         //entity transform = WarpZone_trace_transform;
340
341         // do the firing effect now
342         //SendCSQCShockwaveParticle(attack_endpos); // WEAPONTODO
343         Damage_DamageInfo(
344                 attack_hitpos,
345                 WEP_CVAR(shockwave, blast_splash_damage),
346                 WEP_CVAR(shockwave, blast_splash_edgedamage),
347                 WEP_CVAR(shockwave, blast_splash_radius),
348                 w_shotdir * WEP_CVAR(shockwave, blast_splash_force),
349                 WEP_SHOCKWAVE,
350                 0,
351                 self
352         );
353
354         // splash damage/jumping trace
355         head = WarpZone_FindRadius(
356                 attack_hitpos,
357                 max(
358                         WEP_CVAR(shockwave, blast_splash_radius),
359                         WEP_CVAR(shockwave, blast_jump_radius)
360                 ),
361                 FALSE
362         );
363         
364         while(head)
365         {
366                 if(head.takedamage)
367                 {
368                         float distance_to_head = vlen(attack_hitpos - head.WarpZone_findradius_nearest);
369                         
370                         if((head == self) && (distance_to_head <= WEP_CVAR(shockwave, blast_jump_radius)))
371                         {
372                                 // ========================
373                                 //  BLAST JUMP CALCULATION
374                                 // ========================
375                                 
376                                 // calculate importance of distance and accuracy for this attack
377                                 multiplier_from_accuracy = (1 -
378                                         (distance_to_head ?
379                                                 min(1, (distance_to_head / WEP_CVAR(shockwave, blast_jump_radius)))
380                                                 :
381                                                 0
382                                         )
383                                 );
384                                 multiplier_from_distance = (1 -
385                                         (distance_to_hit ?
386                                                 min(1, (distance_to_hit / distance_to_end))
387                                                 :
388                                                 0
389                                         )
390                                 );
391                                 multiplier =
392                                         max(
393                                                 WEP_CVAR(shockwave, blast_jump_multiplier_min),
394                                                 (
395                                                         (multiplier_from_accuracy * WEP_CVAR(shockwave, blast_jump_multiplier_accuracy))
396                                                         +
397                                                         (multiplier_from_distance * WEP_CVAR(shockwave, blast_jump_multiplier_distance))
398                                                 )
399                                         );
400
401                                 // calculate damage from multiplier: 1 = "highest" damage, 0 = "lowest" edgedamage
402                                 final_damage =
403                                         (
404                                                 (WEP_CVAR(shockwave, blast_jump_damage) * multiplier)
405                                                 +
406                                                 (WEP_CVAR(shockwave, blast_jump_edgedamage) * (1 - multiplier))
407                                         );
408
409                                 // figure out the direction of force
410                                 vel = normalize(combine_to_vector(head.velocity_x, head.velocity_y, 0));
411                                 vel *=
412                                         (
413                                                 bound(0, (vlen(vel) / autocvar_sv_maxspeed), 1)
414                                                 *
415                                                 WEP_CVAR(shockwave, blast_jump_force_velocitybias)
416                                         );
417                                 final_force = normalize((CENTER_OR_VIEWOFS(head) - attack_hitpos) + vel);
418
419                                 // now multiply the direction by force units
420                                 final_force *= (WEP_CVAR(shockwave, blast_jump_force) * multiplier);
421                                 final_force_z *= WEP_CVAR(shockwave, blast_jump_force_zscale);
422
423                                 // trigger damage with this calculated info
424                                 Damage(
425                                         head,
426                                         self,
427                                         self,
428                                         final_damage,
429                                         WEP_SHOCKWAVE,
430                                         head.origin,
431                                         final_force
432                                 );
433
434                                 #ifdef DEBUG_SHOCKWAVE
435                                 print(sprintf(
436                                         "SELF HIT: multiplier = %f, damage = %f, force = %f... "
437                                         "multiplier_from_accuracy = %f, multiplier_from_distance = %f.\n",
438                                         multiplier,
439                                         final_damage,
440                                         vlen(final_force),
441                                         multiplier_from_accuracy,
442                                         multiplier_from_distance
443                                 ));
444                                 #endif
445                         }
446                         else if(distance_to_head <= WEP_CVAR(shockwave, blast_splash_radius))
447                         {
448                                 // ==========================
449                                 //  BLAST SPLASH CALCULATION
450                                 // ==========================
451                                 
452                                 // calculate importance of distance and accuracy for this attack
453                                 multiplier_from_accuracy = (1 -
454                                         (distance_to_head ?
455                                                 min(1, (distance_to_head / WEP_CVAR(shockwave, blast_splash_radius)))
456                                                 :
457                                                 0
458                                         )
459                                 );
460                                 multiplier_from_distance = (1 -
461                                         (distance_to_hit ?
462                                                 min(1, (distance_to_hit / distance_to_end))
463                                                 :
464                                                 0
465                                         )
466                                 );
467                                 multiplier =
468                                         max(
469                                                 WEP_CVAR(shockwave, blast_splash_multiplier_min),
470                                                 (
471                                                         (multiplier_from_accuracy * WEP_CVAR(shockwave, blast_splash_multiplier_accuracy))
472                                                         +
473                                                         (multiplier_from_distance * WEP_CVAR(shockwave, blast_splash_multiplier_distance))
474                                                 )
475                                         );
476
477                                 // calculate damage from multiplier: 1 = "highest" damage, 0 = "lowest" edgedamage
478                                 final_damage =
479                                         (
480                                                 (WEP_CVAR(shockwave, blast_splash_damage) * multiplier)
481                                                 +
482                                                 (WEP_CVAR(shockwave, blast_splash_edgedamage) * (1 - multiplier))
483                                         );
484
485                                 // figure out the direction of force
486                                 final_force = (w_shotdir * WEP_CVAR(shockwave, blast_splash_force_forwardbias));
487                                 final_force = normalize(CENTER_OR_VIEWOFS(head) - (attack_hitpos - final_force));
488                                 //te_lightning2(world, attack_hitpos, (attack_hitpos + (final_force * 200)));
489
490                                 // now multiply the direction by force units
491                                 final_force *= (WEP_CVAR(shockwave, blast_splash_force) * multiplier);
492                                 final_force_z *= WEP_CVAR(shockwave, blast_force_zscale);
493
494                                 // queue damage with this calculated info
495                                 if(W_Shockwave_Attack_CheckHit(queue, head, final_force, final_damage)) { ++queue; }
496
497                                 #ifdef DEBUG_SHOCKWAVE
498                                 print(sprintf(
499                                         "SPLASH HIT: multiplier = %f, damage = %f, force = %f... "
500                                         "multiplier_from_accuracy = %f, multiplier_from_distance = %f.\n",
501                                         multiplier,
502                                         final_damage,
503                                         vlen(final_force),
504                                         multiplier_from_accuracy,
505                                         multiplier_from_distance
506                                 ));
507                                 #endif
508                         }
509                 }
510                 head = head.chain;
511         }
512
513         // cone damage trace
514         head = WarpZone_FindRadius(w_shotorg, WEP_CVAR(shockwave, blast_distance), FALSE);
515         while(head)
516         {
517                 if((head != self) && head.takedamage)
518                 {
519                         // ========================
520                         //  BLAST CONE CALCULATION
521                         // ========================
522
523                         // if it's a player, use the view origin as reference (stolen from RadiusDamage functions in g_damage.qc) 
524                         center = CENTER_OR_VIEWOFS(head);
525
526                         // find the closest point on the enemy to the center of the attack
527                         float ang; // angle between shotdir and h
528                         float h; // hypotenuse, which is the distance between attacker to head
529                         float a; // adjacent side, which is the distance between attacker and the point on w_shotdir that is closest to head.origin
530                         
531                         h = vlen(center - self.origin);
532                         ang = acos(dotproduct(normalize(center - self.origin), w_shotdir));
533                         a = h * cos(ang);
534                         // WEAPONTODO: replace with simpler method
535
536                         vector nearest_on_line = (w_shotorg + a * w_shotdir);
537                         vector nearest_to_attacker = WarpZoneLib_NearestPointOnBox(center + head.mins, center + head.maxs, nearest_on_line);
538                         float distance_to_target = vlen(w_shotorg - nearest_to_attacker); // WEAPONTODO: use the findradius function for this
539
540                         if((distance_to_target <= WEP_CVAR(shockwave, blast_distance)) 
541                                 && (W_Shockwave_Attack_IsVisible(head, nearest_on_line, w_shotorg, attack_endpos)))
542                         {
543                                 // calculate importance of distance and accuracy for this attack
544                                 multiplier_from_accuracy = (1 -
545                                         W_Shockwave_Attack_CheckSpread(
546                                                 nearest_to_attacker,
547                                                 nearest_on_line,
548                                                 w_shotorg,
549                                                 attack_endpos
550                                         )
551                                 );
552                                 multiplier_from_distance = (1 -
553                                         (distance_to_hit ?
554                                                 min(1, (distance_to_target / distance_to_end))
555                                                 :
556                                                 0
557                                         )
558                                 );
559                                 multiplier =
560                                         max(
561                                                 WEP_CVAR(shockwave, blast_multiplier_min),
562                                                 (
563                                                         (multiplier_from_accuracy * WEP_CVAR(shockwave, blast_multiplier_accuracy))
564                                                         +
565                                                         (multiplier_from_distance * WEP_CVAR(shockwave, blast_multiplier_distance))
566                                                 )
567                                         );
568
569                                 // calculate damage from multiplier: 1 = "highest" damage, 0 = "lowest" edgedamage
570                                 final_damage =
571                                         (
572                                                 (WEP_CVAR(shockwave, blast_damage) * multiplier)
573                                                 +
574                                                 (WEP_CVAR(shockwave, blast_edgedamage) * (1 - multiplier))
575                                         );
576
577                                 // figure out the direction of force
578                                 final_force = (w_shotdir * WEP_CVAR(shockwave, blast_force_forwardbias));
579                                 final_force = normalize(center - (nearest_on_line - final_force));
580                                 //te_lightning2(world, nearest_on_line, (attack_hitpos + (final_force * 200)));
581
582                                 // now multiply the direction by force units
583                                 final_force *= (WEP_CVAR(shockwave, blast_force) * multiplier);
584                                 final_force_z *= WEP_CVAR(shockwave, blast_force_zscale);
585
586                                 // queue damage with this calculated info
587                                 if(W_Shockwave_Attack_CheckHit(queue, head, final_force, final_damage)) { ++queue; }
588
589                                 #ifdef DEBUG_SHOCKWAVE
590                                 print(sprintf(
591                                         "BLAST HIT: multiplier = %f, damage = %f, force = %f... "
592                                         "multiplier_from_accuracy = %f, multiplier_from_distance = %f.\n",
593                                         multiplier,
594                                         final_damage,
595                                         vlen(final_force),
596                                         multiplier_from_accuracy,
597                                         multiplier_from_distance
598                                 ));
599                                 #endif
600                         }
601                 }
602                 head = head.chain;
603         }
604
605         for(i = 1; i <= queue; ++i)
606         {
607                 head = shockwave_hit[i];
608                 final_force = shockwave_hit_force[i];
609                 final_damage = shockwave_hit_damage[i];
610                 
611                 Damage(
612                         head,
613                         self,
614                         self,
615                         final_damage,
616                         WEP_SHOCKWAVE,
617                         head.origin,
618                         final_force
619                 );
620                 
621                 #ifdef DEBUG_SHOCKWAVE
622                 print(sprintf(
623                         "SHOCKWAVE by %s: damage = %f, force = %f.\n",
624                         self.netname,
625                         final_damage,
626                         vlen(final_force)
627                 ));
628                 #endif
629                 
630                 shockwave_hit[i] = world;
631                 shockwave_hit_force[i] = '0 0 0';
632                 shockwave_hit_damage[i] = 0;
633         }
634 }
635
636 float W_Shockwave(float req)
637 {
638         switch(req)
639         {
640                 case WR_AIM:
641                 {
642                         if(vlen(self.origin - self.enemy.origin) <= WEP_CVAR(shockwave, melee_range))
643                                 { self.BUTTON_ATCK2 = bot_aim(1000000, 0, 0.001, FALSE); }
644                         else
645                                 { self.BUTTON_ATCK = bot_aim(1000000, 0, 0.001, FALSE); }
646                         
647                         return TRUE;
648                 }
649                 case WR_THINK:
650                 {
651                         if(self.BUTTON_ATCK)
652                         {
653                                 if(time >= self.shockwave_blasttime) // handle refire separately so the secondary can be fired straight after a primary
654                                 {
655                                         if(weapon_prepareattack(0, WEP_CVAR(shockwave, blast_animtime)))
656                                         {
657                                                 W_Shockwave_Attack();
658                                                 self.shockwave_blasttime = time + WEP_CVAR(shockwave, blast_refire) * W_WeaponRateFactor();
659                                                 weapon_thinkf(WFRAME_FIRE1, WEP_CVAR(shockwave, blast_animtime), w_ready);
660                                         }
661                                 }
662                         }
663                         else if(self.BUTTON_ATCK2)
664                         {
665                                 //if(self.clip_load >= 0) // we are not currently reloading
666                                 if(!self.crouch) // no crouchmelee please
667                                 if(weapon_prepareattack(1, WEP_CVAR(shockwave, melee_refire)))
668                                 {
669                                         // attempt forcing playback of the anim by switching to another anim (that we never play) here...
670                                         weapon_thinkf(WFRAME_FIRE1, 0, W_Shockwave_Melee);
671                                 }
672                         }
673                         
674                         return TRUE;
675                 }
676                 case WR_INIT:
677                 {
678                         precache_model("models/uziflash.md3");
679                         precache_model("models/weapons/g_shockwave.md3");
680                         precache_model("models/weapons/v_shockwave.md3");
681                         precache_model("models/weapons/h_shockwave.iqm");
682                         precache_sound("misc/itempickup.wav");
683                         precache_sound("weapons/shockwave_fire.wav");
684                         precache_sound("weapons/shockwave_melee.wav");
685                         SHOCKWAVE_SETTINGS(WEP_SKIPCVAR, WEP_SET_PROP)
686                         return TRUE;
687                 }
688                 case WR_CHECKAMMO1:
689                 case WR_CHECKAMMO2:
690                 {
691                         // shockwave has infinite ammo
692                         return TRUE;
693                 }
694                 case WR_CONFIG:
695                 {
696                         SHOCKWAVE_SETTINGS(WEP_CONFIG_WRITE_CVARS, WEP_CONFIG_WRITE_PROPS)
697                         return TRUE;
698                 }
699                 case WR_SUICIDEMESSAGE:
700                 {
701                         return WEAPON_THINKING_WITH_PORTALS;
702                 }
703                 case WR_KILLMESSAGE:
704                 {
705                         if(w_deathtype & HITTYPE_SECONDARY)
706                                 return WEAPON_SHOCKWAVE_MURDER_SLAP;
707                         else
708                                 return WEAPON_SHOCKWAVE_MURDER;
709                 }
710         }
711         return TRUE;
712 }
713 #endif
714 #ifdef CSQC
715 float W_Shockwave(float req)
716 {
717         switch(req)
718         {
719                 case WR_IMPACTEFFECT:
720                 {
721                         vector org2;
722                         org2 = w_org + w_backoff * 2;
723                         pointparticles(particleeffectnum("shockwave_impact"), org2, w_backoff * 1000, 1);
724                         return TRUE;
725                 }
726                 case WR_INIT:
727                 {
728                         //precache_sound("weapons/ric1.wav");
729                         //precache_sound("weapons/ric2.wav");
730                         //precache_sound("weapons/ric3.wav");
731                         return FALSE;
732                 }
733                 case WR_ZOOMRETICLE:
734                 {
735                         // no weapon specific image for this weapon
736                         return FALSE;
737                 }
738         }
739         return TRUE;
740 }
741 #endif
742 #endif