]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/weapons/weapon/vortex.qc
Merge branch 'Mario/wepent_experimental' into Mario/wepent_experimental_2
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / weapons / weapon / vortex.qc
1 #include "vortex.qh"
2 #ifndef IMPLEMENTATION
3 CLASS(Vortex, Weapon)
4 /* ammotype  */ ATTRIB(Vortex, ammo_field, .int, ammo_cells);
5 /* impulse   */ ATTRIB(Vortex, impulse, int, 7);
6 /* flags     */ ATTRIB(Vortex, spawnflags, int, WEP_FLAG_NORMAL | WEP_FLAG_RELOADABLE | WEP_TYPE_HITSCAN);
7 /* rating    */ ATTRIB(Vortex, bot_pickupbasevalue, float, BOT_PICKUP_RATING_HIGH);
8 /* color     */ ATTRIB(Vortex, wpcolor, vector, '0.5 1 1');
9 /* modelname */ ATTRIB(Vortex, mdl, string, "nex");
10 #ifdef GAMEQC
11 /* model     */ ATTRIB(Vortex, m_model, Model, MDL_VORTEX_ITEM);
12 #endif
13 /* crosshair */ ATTRIB(Vortex, w_crosshair, string, "gfx/crosshairnex");
14 /* crosshair */ ATTRIB(Vortex, w_crosshair_size, float, 0.65);
15 /* reticle   */ ATTRIB(Vortex, w_reticle, string, "gfx/reticle_nex");
16 /* wepimg    */ ATTRIB(Vortex, model2, string, "weaponnex");
17 /* refname   */ ATTRIB(Vortex, netname, string, "vortex");
18 /* wepname   */ ATTRIB(Vortex, m_name, string, _("Vortex"));
19
20 #define X(BEGIN, P, END, class, prefix) \
21         BEGIN(class) \
22                 P(class, prefix, ammo, float, BOTH) \
23                 P(class, prefix, animtime, float, BOTH) \
24                 P(class, prefix, chargepool, float, SEC) \
25                 P(class, prefix, chargepool_pause_regen, float, SEC) \
26                 P(class, prefix, chargepool_regen, float, SEC) \
27                 P(class, prefix, charge, float, NONE) \
28                 P(class, prefix, charge_animlimit, float, NONE) \
29                 P(class, prefix, charge_limit, float, NONE) \
30                 P(class, prefix, charge_maxspeed, float, NONE) \
31                 P(class, prefix, charge_mindmg, float, NONE) \
32                 P(class, prefix, charge_minspeed, float, NONE) \
33                 P(class, prefix, charge_rate, float, NONE) \
34                 P(class, prefix, charge_rot_pause, float, NONE) \
35                 P(class, prefix, charge_rot_rate, float, NONE) \
36                 P(class, prefix, charge_shot_multiplier, float, NONE) \
37                 P(class, prefix, charge_start, float, NONE) \
38                 P(class, prefix, charge_velocity_rate, float, NONE) \
39                 P(class, prefix, damagefalloff_forcehalflife, float, BOTH) \
40                 P(class, prefix, damagefalloff_halflife, float, BOTH) \
41                 P(class, prefix, damagefalloff_maxdist, float, BOTH) \
42                 P(class, prefix, damagefalloff_mindist, float, BOTH) \
43                 P(class, prefix, damage, float, BOTH) \
44                 P(class, prefix, force, float, BOTH) \
45                 P(class, prefix, refire, float, BOTH) \
46                 P(class, prefix, secondary, float, NONE) \
47                 P(class, prefix, reload_ammo, float, NONE) \
48         P(class, prefix, reload_time, float, NONE) \
49         P(class, prefix, switchdelay_raise, float, NONE) \
50         P(class, prefix, switchdelay_drop, float, NONE) \
51         P(class, prefix, weaponreplace, string, NONE) \
52         P(class, prefix, weaponstart, float, NONE) \
53         P(class, prefix, weaponstartoverride, float, NONE) \
54         P(class, prefix, weaponthrowable, float, NONE) \
55         END()
56     W_PROPS(X, Vortex, vortex)
57 #undef X
58
59 ENDCLASS(Vortex)
60 REGISTER_WEAPON(VORTEX, vortex, NEW(Vortex));
61
62
63 #ifdef SVQC
64
65 .float vortex_lasthit;
66 #endif
67 #endif
68 #ifdef IMPLEMENTATION
69
70 REGISTER_STAT(WEP_CVAR_vortex_charge, bool, WEP_CVAR(vortex, charge))
71 REGISTER_STAT(WEP_CVAR_vortex_charge_animlimit, float, WEP_CVAR(vortex, charge_animlimit))
72
73 #if defined(GAMEQC)
74 float autocvar_g_weapon_charge_colormod_red_full;
75 float autocvar_g_weapon_charge_colormod_red_half;
76 float autocvar_g_weapon_charge_colormod_green_full;
77 float autocvar_g_weapon_charge_colormod_blue_full;
78 float autocvar_g_weapon_charge_colormod_blue_half;
79 float autocvar_g_weapon_charge_colormod_green_half;
80 float autocvar_g_weapon_charge_colormod_hdrmultiplier;
81
82 METHOD(Vortex, wr_glow, vector(Vortex this, entity actor, entity wepent))
83 {
84         if (!STAT(WEP_CVAR_vortex_charge, actor)) return '0 0 0';
85         float charge = wepent.vortex_charge;
86         float animlimit = STAT(WEP_CVAR_vortex_charge_animlimit, actor);
87         vector g;
88         g.x = autocvar_g_weapon_charge_colormod_hdrmultiplier * autocvar_g_weapon_charge_colormod_red_half * min(1, charge / animlimit);
89         g.y = autocvar_g_weapon_charge_colormod_hdrmultiplier * autocvar_g_weapon_charge_colormod_green_half * min(1, charge / animlimit);
90         g.z = autocvar_g_weapon_charge_colormod_hdrmultiplier * autocvar_g_weapon_charge_colormod_blue_half * min(1, charge / animlimit);
91         if (charge > animlimit)
92         {
93                 g.x += autocvar_g_weapon_charge_colormod_hdrmultiplier * autocvar_g_weapon_charge_colormod_red_full * (charge - animlimit) / (1 - animlimit);
94                 g.y += autocvar_g_weapon_charge_colormod_hdrmultiplier * autocvar_g_weapon_charge_colormod_green_full * (charge - animlimit) / (1 - animlimit);
95                 g.z += autocvar_g_weapon_charge_colormod_hdrmultiplier * autocvar_g_weapon_charge_colormod_blue_full * (charge - animlimit) / (1 - animlimit);
96         }
97         return g;
98 }
99 #endif
100
101 REGISTER_NET_TEMP(TE_CSQC_VORTEXBEAMPARTICLE)
102
103 #if defined(SVQC)
104 void SendCSQCVortexBeamParticle(float charge) {
105         vector v;
106         v = WarpZone_UnTransformOrigin(WarpZone_trace_transform, trace_endpos);
107         WriteHeader(MSG_BROADCAST, TE_CSQC_VORTEXBEAMPARTICLE);
108         WriteCoord(MSG_BROADCAST, w_shotorg.x);
109         WriteCoord(MSG_BROADCAST, w_shotorg.y);
110         WriteCoord(MSG_BROADCAST, w_shotorg.z);
111         WriteCoord(MSG_BROADCAST, v.x);
112         WriteCoord(MSG_BROADCAST, v.y);
113         WriteCoord(MSG_BROADCAST, v.z);
114         WriteByte(MSG_BROADCAST, bound(0, 255 * charge, 255));
115 }
116 #elif defined(CSQC)
117 NET_HANDLE(TE_CSQC_VORTEXBEAMPARTICLE, bool isNew)
118 {
119         vector shotorg, endpos;
120         float charge;
121         shotorg.x = ReadCoord(); shotorg.y = ReadCoord(); shotorg.z = ReadCoord();
122         endpos.x = ReadCoord(); endpos.y = ReadCoord(); endpos.z = ReadCoord();
123         charge = ReadByte() / 255.0;
124
125         pointparticles(EFFECT_VORTEX_MUZZLEFLASH, shotorg, normalize(endpos - shotorg) * 1000, 1);
126
127         //draw either the old v2.3 beam or the new beam
128         charge = sqrt(charge); // divide evenly among trail spacing and alpha
129         particles_alphamin = particles_alphamax = particles_fade = charge;
130
131         if(!MUTATOR_CALLHOOK(Particles_VortexBeam, shotorg, endpos))
132         if(autocvar_cl_particles_oldvortexbeam && (STAT(ALLOW_OLDVORTEXBEAM) || isdemo()))
133                 WarpZone_TrailParticles_WithMultiplier(NULL, particleeffectnum(EFFECT_VORTEX_BEAM_OLD), shotorg, endpos, 1, PARTICLES_USEALPHA | PARTICLES_USEFADE);
134         else
135                 WarpZone_TrailParticles_WithMultiplier(NULL, particleeffectnum(EFFECT_VORTEX_BEAM), shotorg, endpos, 1, PARTICLES_USEALPHA | PARTICLES_USEFADE);
136         return true;
137 }
138 #endif
139
140 #ifdef SVQC
141 spawnfunc(weapon_vortex) { weapon_defaultspawnfunc(this, WEP_VORTEX); }
142 spawnfunc(weapon_nex) { spawnfunc_weapon_vortex(this); }
143
144 REGISTER_MUTATOR(vortex_charge, true);
145
146 MUTATOR_HOOKFUNCTION(vortex_charge, GetPressedKeys)
147 {
148     entity player = M_ARGV(0, entity);
149
150         // WEAPONTODO
151         float xyspeed = vlen(vec2(player.velocity));
152     .entity weaponentity = weaponentities[0]; // TODO: unhardcode
153         if (player.(weaponentity).m_weapon == WEP_VORTEX && WEP_CVAR(vortex, charge) && WEP_CVAR(vortex, charge_velocity_rate) && xyspeed > WEP_CVAR(vortex, charge_minspeed))
154         {
155                 // add a maximum of charge_velocity_rate when going fast (f = 1), gradually increasing from minspeed (f = 0) to maxspeed
156                 xyspeed = min(xyspeed, WEP_CVAR(vortex, charge_maxspeed));
157                 float f = (xyspeed - WEP_CVAR(vortex, charge_minspeed)) / (WEP_CVAR(vortex, charge_maxspeed) - WEP_CVAR(vortex, charge_minspeed));
158                 // add the extra charge
159                 player.(weaponentity).vortex_charge = min(1, player.(weaponentity).vortex_charge + WEP_CVAR(vortex, charge_velocity_rate) * f * PHYS_INPUT_TIMELENGTH);
160         }
161 }
162
163 void W_Vortex_Attack(Weapon thiswep, entity actor, .entity weaponentity, float issecondary)
164 {
165         float mydmg, myforce, mymindist, mymaxdist, myhalflife, myforcehalflife, myammo, charge;
166
167         mydmg = WEP_CVAR_BOTH(vortex, !issecondary, damage);
168         myforce = WEP_CVAR_BOTH(vortex, !issecondary, force);
169         mymindist = WEP_CVAR_BOTH(vortex, !issecondary, damagefalloff_mindist);
170         mymaxdist = WEP_CVAR_BOTH(vortex, !issecondary, damagefalloff_maxdist);
171         myhalflife = WEP_CVAR_BOTH(vortex, !issecondary, damagefalloff_halflife);
172         myforcehalflife = WEP_CVAR_BOTH(vortex, !issecondary, damagefalloff_forcehalflife);
173         myammo = WEP_CVAR_BOTH(vortex, !issecondary, ammo);
174
175         float flying;
176         flying = IsFlying(actor); // do this BEFORE to make the trace values from FireRailgunBullet last
177
178         if(WEP_CVAR(vortex, charge))
179         {
180                 charge = WEP_CVAR(vortex, charge_mindmg) / mydmg + (1 - WEP_CVAR(vortex, charge_mindmg) / mydmg) * actor.(weaponentity).vortex_charge;
181                 actor.(weaponentity).vortex_charge *= WEP_CVAR(vortex, charge_shot_multiplier); // do this AFTER setting mydmg/myforce
182                 // O RLY? -- divVerent
183                 // YA RLY -- FruitieX
184         }
185         else
186                 charge = 1;
187         mydmg *= charge;
188         myforce *= charge;
189
190         W_SetupShot(actor, weaponentity, true, 5, SND_NEXFIRE, CH_WEAPON_A, mydmg);
191         if(charge > WEP_CVAR(vortex, charge_animlimit) && WEP_CVAR(vortex, charge_animlimit)) // if the Vortex is overcharged, we play an extra sound
192         {
193                 sound(actor, CH_WEAPON_B, SND_NEXCHARGE, VOL_BASE * (charge - 0.5 * WEP_CVAR(vortex, charge_animlimit)) / (1 - 0.5 * WEP_CVAR(vortex, charge_animlimit)), ATTN_NORM);
194         }
195
196         yoda = 0;
197         damage_goodhits = 0;
198         FireRailgunBullet(actor, weaponentity, w_shotorg, w_shotorg + w_shotdir * MAX_SHOT_DISTANCE, mydmg, myforce, mymindist, mymaxdist, myhalflife, myforcehalflife, WEP_VORTEX.m_id);
199
200         if(yoda && flying)
201                 Send_Notification(NOTIF_ONE, actor, MSG_ANNCE, ANNCE_ACHIEVEMENT_YODA);
202         if(damage_goodhits && actor.vortex_lasthit)
203         {
204                 Send_Notification(NOTIF_ONE, actor, MSG_ANNCE, ANNCE_ACHIEVEMENT_IMPRESSIVE);
205                 damage_goodhits = 0; // only every second time
206         }
207
208         actor.vortex_lasthit = damage_goodhits;
209
210         //beam and muzzle flash done on client
211         SendCSQCVortexBeamParticle(charge);
212
213         W_DecreaseAmmo(thiswep, actor, myammo, weaponentity);
214 }
215
216 .float vortex_chargepool_pauseregen_finished;
217
218 METHOD(Vortex, wr_aim, void(entity thiswep, entity actor))
219 {
220     if(bot_aim(actor, 1000000, 0, 1, false))
221         PHYS_INPUT_BUTTON_ATCK(actor) = true;
222     else
223     {
224         if(WEP_CVAR(vortex, charge))
225             PHYS_INPUT_BUTTON_ATCK2(actor) = true;
226     }
227 }
228 METHOD(Vortex, wr_think, void(entity thiswep, entity actor, .entity weaponentity, int fire))
229 {
230     if(WEP_CVAR(vortex, charge) && actor.(weaponentity).vortex_charge < WEP_CVAR(vortex, charge_limit))
231         actor.(weaponentity).vortex_charge = min(1, actor.(weaponentity).vortex_charge + WEP_CVAR(vortex, charge_rate) * frametime / W_TICSPERFRAME);
232
233     if(weaponslot(weaponentity) == 0)
234         actor.vortex_charge = actor.(weaponentity).vortex_charge;
235
236     if(WEP_CVAR_SEC(vortex, chargepool))
237         if(actor.(weaponentity).vortex_chargepool_ammo < 1)
238         {
239             if(actor.vortex_chargepool_pauseregen_finished < time)
240                 actor.(weaponentity).vortex_chargepool_ammo = min(1, actor.(weaponentity).vortex_chargepool_ammo + WEP_CVAR_SEC(vortex, chargepool_regen) * frametime / W_TICSPERFRAME);
241             actor.pauseregen_finished = max(actor.pauseregen_finished, time + WEP_CVAR_SEC(vortex, chargepool_pause_regen));
242         }
243
244     if(weaponslot(weaponentity) == 0)
245         actor.vortex_chargepool_ammo = actor.(weaponentity).vortex_chargepool_ammo;
246
247     if(autocvar_g_balance_vortex_reload_ammo && actor.(weaponentity).clip_load < min(WEP_CVAR_PRI(vortex, ammo), WEP_CVAR_SEC(vortex, ammo))) { // forced reload
248         thiswep.wr_reload(thiswep, actor, weaponentity);
249     } else
250     {
251         if(fire & 1)
252         {
253             if(weapon_prepareattack(thiswep, actor, weaponentity, false, WEP_CVAR_PRI(vortex, refire)))
254             {
255                 W_Vortex_Attack(thiswep, actor, weaponentity, 0);
256                 weapon_thinkf(actor, weaponentity, WFRAME_FIRE1, WEP_CVAR_PRI(vortex, animtime), w_ready);
257             }
258         }
259         if((WEP_CVAR(vortex, charge) && !WEP_CVAR(vortex, secondary)) ? (PHYS_INPUT_BUTTON_ZOOM(actor) | PHYS_INPUT_BUTTON_ZOOMSCRIPT(actor)) : (fire & 2))
260         {
261             if(WEP_CVAR(vortex, charge))
262             {
263                 actor.(weaponentity).vortex_charge_rottime = time + WEP_CVAR(vortex, charge_rot_pause);
264                 float dt = frametime / W_TICSPERFRAME;
265
266                 if(actor.(weaponentity).vortex_charge < 1)
267                 {
268                     if(WEP_CVAR_SEC(vortex, chargepool))
269                     {
270                         if(WEP_CVAR_SEC(vortex, ammo))
271                         {
272                             // always deplete if secondary is held
273                             actor.vortex_chargepool_ammo = max(0, actor.vortex_chargepool_ammo - WEP_CVAR_SEC(vortex, ammo) * dt);
274
275                             dt = min(dt, (1 - actor.(weaponentity).vortex_charge) / WEP_CVAR(vortex, charge_rate));
276                             actor.vortex_chargepool_pauseregen_finished = time + WEP_CVAR_SEC(vortex, chargepool_pause_regen);
277                             dt = min(dt, actor.vortex_chargepool_ammo);
278                             dt = max(0, dt);
279
280                             actor.(weaponentity).vortex_charge += dt * WEP_CVAR(vortex, charge_rate);
281                         }
282                     }
283
284                     else if(WEP_CVAR_SEC(vortex, ammo))
285                     {
286                         if(fire & 2) // only eat ammo when the button is pressed
287                         {
288                             dt = min(dt, (1 - actor.(weaponentity).vortex_charge) / WEP_CVAR(vortex, charge_rate));
289                             if(!(actor.items & IT_UNLIMITED_WEAPON_AMMO))
290                             {
291                                 // if this weapon is reloadable, decrease its load. Else decrease the player's ammo
292                                 if(autocvar_g_balance_vortex_reload_ammo)
293                                 {
294                                     dt = min(dt, (actor.(weaponentity).clip_load - WEP_CVAR_PRI(vortex, ammo)) / WEP_CVAR_SEC(vortex, ammo));
295                                     dt = max(0, dt);
296                                     if(dt > 0)
297                                     {
298                                         actor.(weaponentity).clip_load = max(WEP_CVAR_SEC(vortex, ammo), actor.(weaponentity).clip_load - WEP_CVAR_SEC(vortex, ammo) * dt);
299                                     }
300                                     actor.(weapon_load[WEP_VORTEX.m_id]) = actor.(weaponentity).clip_load;
301                                 }
302                                 else
303                                 {
304                                     dt = min(dt, (actor.(thiswep.ammo_field) - WEP_CVAR_PRI(vortex, ammo)) / WEP_CVAR_SEC(vortex, ammo));
305                                     dt = max(0, dt);
306                                     if(dt > 0)
307                                     {
308                                         actor.(thiswep.ammo_field) = max(WEP_CVAR_SEC(vortex, ammo), actor.(thiswep.ammo_field) - WEP_CVAR_SEC(vortex, ammo) * dt);
309                                     }
310                                 }
311                             }
312                             actor.(weaponentity).vortex_charge += dt * WEP_CVAR(vortex, charge_rate);
313                         }
314                     }
315
316                     else
317                     {
318                         dt = min(dt, (1 - actor.(weaponentity).vortex_charge) / WEP_CVAR(vortex, charge_rate));
319                         actor.(weaponentity).vortex_charge += dt * WEP_CVAR(vortex, charge_rate);
320                     }
321                 }
322             }
323             else if(WEP_CVAR(vortex, secondary))
324             {
325                 if(weapon_prepareattack(thiswep, actor, weaponentity, false, WEP_CVAR_SEC(vortex, refire)))
326                 {
327                     W_Vortex_Attack(thiswep, actor, weaponentity, 1);
328                     weapon_thinkf(actor, weaponentity, WFRAME_FIRE1, WEP_CVAR_SEC(vortex, animtime), w_ready);
329                 }
330             }
331         }
332     }
333 }
334 METHOD(Vortex, wr_setup, void(entity thiswep, entity actor))
335 {
336     actor.vortex_lasthit = 0;
337 }
338 METHOD(Vortex, wr_checkammo1, bool(entity thiswep, entity actor, .entity weaponentity))
339 {
340     float ammo_amount = actor.(thiswep.ammo_field) >= WEP_CVAR_PRI(vortex, ammo);
341     ammo_amount += (autocvar_g_balance_vortex_reload_ammo && actor.(weapon_load[WEP_VORTEX.m_id]) >= WEP_CVAR_PRI(vortex, ammo));
342     return ammo_amount;
343 }
344 METHOD(Vortex, wr_checkammo2, bool(entity thiswep, entity actor, .entity weaponentity))
345 {
346     if(WEP_CVAR(vortex, secondary))
347     {
348         // don't allow charging if we don't have enough ammo
349         float ammo_amount = actor.(thiswep.ammo_field) >= WEP_CVAR_SEC(vortex, ammo);
350         ammo_amount += actor.(weapon_load[WEP_VORTEX.m_id]) >= WEP_CVAR_SEC(vortex, ammo);
351         return ammo_amount;
352     }
353     else
354     {
355         return false; // zoom is not a fire mode
356     }
357 }
358 METHOD(Vortex, wr_resetplayer, void(entity thiswep, entity actor))
359 {
360     if (WEP_CVAR(vortex, charge)) {
361         if (WEP_CVAR_SEC(vortex, chargepool)) {
362             actor.vortex_chargepool_ammo = 1;
363         }
364         actor.vortex_charge = WEP_CVAR(vortex, charge_start);
365         for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
366         {
367             .entity weaponentity = weaponentities[slot];
368             actor.(weaponentity).vortex_charge = WEP_CVAR(vortex, charge_start);
369
370             if (WEP_CVAR_SEC(vortex, chargepool))
371                 actor.(weaponentity).vortex_chargepool_ammo = 1;
372         }
373     }
374     actor.vortex_lasthit = 0;
375 }
376 METHOD(Vortex, wr_reload, void(entity thiswep, entity actor, .entity weaponentity))
377 {
378     W_Reload(actor, weaponentity, min(WEP_CVAR_PRI(vortex, ammo), WEP_CVAR_SEC(vortex, ammo)), SND_RELOAD);
379 }
380 METHOD(Vortex, wr_suicidemessage, Notification(entity thiswep))
381 {
382     return WEAPON_THINKING_WITH_PORTALS;
383 }
384 METHOD(Vortex, wr_killmessage, Notification(entity thiswep))
385 {
386     return WEAPON_VORTEX_MURDER;
387 }
388 METHOD(Vortex, wr_zoom, bool(entity thiswep, entity actor))
389 {
390     return PHYS_INPUT_BUTTON_ATCK2(actor) && !WEP_CVAR(vortex, secondary);
391 }
392
393 #endif
394 #ifdef CSQC
395
396 METHOD(Vortex, wr_impacteffect, void(entity thiswep, entity actor))
397 {
398     entity this = actor;
399     vector org2 = w_org + w_backoff * 6;
400     pointparticles(EFFECT_VORTEX_IMPACT, org2, '0 0 0', 1);
401     if(!w_issilent)
402         sound(this, CH_SHOTS, SND_NEXIMPACT, VOL_BASE, ATTN_NORM);
403 }
404 METHOD(Vortex, wr_init, void(entity thiswep))
405 {
406     if(autocvar_cl_reticle && autocvar_cl_reticle_weapon)
407     {
408         precache_pic("gfx/reticle_nex");
409     }
410 }
411 METHOD(Vortex, wr_zoom, bool(entity thiswep, entity actor))
412 {
413     if(button_zoom || zoomscript_caught || (!WEP_CVAR(vortex, secondary) && button_attack2))
414     {
415         return true;
416     }
417     else
418     {
419         // no weapon specific image for this weapon
420         return false;
421     }
422 }
423
424 #endif
425 #endif