]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/mutators/mutator/overkill/rpc.qc
Merge branch 'master' into Lyberta/StandaloneOverkillWeapons
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / mutators / mutator / overkill / rpc.qc
1 #include "rpc.qh"
2
3 #ifdef SVQC
4
5 void W_RocketPropelledChainsaw_Explode(entity this, entity directhitentity)
6 {
7         this.event_damage = func_null;
8         this.takedamage = DAMAGE_NO;
9
10         RadiusDamage(this, this.realowner, WEP_CVAR_PRI(rpc, damage), WEP_CVAR_PRI(rpc, edgedamage), WEP_CVAR_PRI(rpc, radius), NULL, NULL, WEP_CVAR_PRI(rpc, force), this.projectiledeathtype, this.weaponentity_fld, directhitentity);
11
12         delete(this);
13 }
14
15 void W_RocketPropelledChainsaw_Explode_think(entity this)
16 {
17         W_RocketPropelledChainsaw_Explode(this, NULL);
18 }
19
20 void W_RocketPropelledChainsaw_Touch (entity this, entity toucher)
21 {
22         if(WarpZone_Projectile_Touch(this, toucher))
23                 if(wasfreed(this))
24                         return;
25
26         W_RocketPropelledChainsaw_Explode(this, toucher);
27 }
28
29 void W_RocketPropelledChainsaw_Damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, .entity weaponentity, vector hitloc, vector force)
30 {
31         if (this.health <= 0)
32                 return;
33
34         if (!W_CheckProjectileDamage(inflictor.realowner, this.realowner, deathtype, -1)) // no exceptions
35                 return; // g_projectiles_damage says to halt
36
37         this.health = this.health - damage;
38
39         if (this.health <= 0)
40                 W_PrepareExplosionByDamage(this, attacker, W_RocketPropelledChainsaw_Explode_think);
41 }
42
43 void W_RocketPropelledChainsaw_Think(entity this)
44 {
45         if(this.cnt <= time)
46         {
47                 delete(this);
48                 return;
49         }
50
51         float myspeed = vlen(this.velocity);
52         float myspeed_accel = myspeed * sys_frametime;
53         vector mydir = normalize(this.velocity);
54
55         tracebox(this.origin, this.mins, this.maxs, this.origin + mydir * (2 * myspeed_accel), MOVE_NORMAL, this);
56         if(IS_PLAYER(trace_ent))
57                 Damage(trace_ent, this, this.realowner, WEP_CVAR_PRI(rpc, damage2), this.projectiledeathtype, this.weaponentity_fld, this.origin, normalize(this.origin - trace_ent.origin) * WEP_CVAR_PRI(rpc, force));
58
59         this.velocity = mydir * (myspeed + (WEP_CVAR_PRI(rpc, speedaccel) * sys_frametime));
60
61         UpdateCSQCProjectile(this);
62         this.nextthink = time;
63 }
64
65 void W_RocketPropelledChainsaw_Attack (Weapon thiswep, entity actor, .entity weaponentity)
66 {
67         entity missile = spawn(); //WarpZone_RefSys_SpawnSameRefSys(actor);
68         entity flash = spawn ();
69
70         W_DecreaseAmmo(thiswep, actor, WEP_CVAR_PRI(rpc, ammo), weaponentity);
71         W_SetupShot_ProjectileSize(actor, weaponentity, '-3 -3 -3', '3 3 3', false, 5, SND_ROCKET_FIRE, CH_WEAPON_A, WEP_CVAR_PRI(rpc, damage), WEP_RPC.m_id);
72         Send_Effect(EFFECT_ROCKET_MUZZLEFLASH, w_shotorg, w_shotdir * 1000, 1);
73         PROJECTILE_MAKETRIGGER(missile);
74
75         missile.owner = missile.realowner = actor;
76         missile.bot_dodge = true;
77         missile.bot_dodgerating = WEP_CVAR_PRI(rpc, damage) * 2;
78
79         missile.takedamage = DAMAGE_YES;
80         missile.damageforcescale = WEP_CVAR_PRI(rpc, damageforcescale);
81         missile.health = WEP_CVAR_PRI(rpc, health);
82         missile.event_damage = W_RocketPropelledChainsaw_Damage;
83         missile.damagedbycontents = true;
84         IL_PUSH(g_damagedbycontents, missile);
85         set_movetype(missile, MOVETYPE_FLY);
86
87         missile.projectiledeathtype = WEP_RPC.m_id;
88         missile.weaponentity_fld = weaponentity;
89         setsize (missile, '-3 -3 -3', '3 3 3'); // give it some size so it can be shot
90
91         setorigin(missile, w_shotorg - v_forward * 3); // move it back so it hits the wall at the right point
92         W_SetupProjVelocity_Basic(missile, WEP_CVAR_PRI(rpc, speed), 0);
93
94         settouch(missile, W_RocketPropelledChainsaw_Touch);
95
96         setthink(missile, W_RocketPropelledChainsaw_Think);
97         missile.cnt = time + WEP_CVAR_PRI(rpc, lifetime);
98         missile.nextthink = time;
99         missile.flags = FL_PROJECTILE;
100         IL_PUSH(g_projectiles, missile);
101         IL_PUSH(g_bot_dodge, missile);
102
103         CSQCProjectile(missile, true, PROJECTILE_RPC, false);
104
105         setmodel(flash, MDL_RPC_MUZZLEFLASH); // precision set below
106         SUB_SetFade (flash, time, 0.1);
107         flash.effects = EF_ADDITIVE | EF_FULLBRIGHT | EF_LOWPRECISION;
108         W_AttachToShotorg(actor, weaponentity, flash, '5 0 0');
109
110         MUTATOR_CALLHOOK(EditProjectile, actor, missile);
111 }
112
113 METHOD(RocketPropelledChainsaw, wr_aim, void(entity thiswep, entity actor, .entity weaponentity))
114 {
115     PHYS_INPUT_BUTTON_ATCK(actor) = bot_aim(actor, weaponentity, WEP_CVAR_PRI(rpc, speed), 0, WEP_CVAR_PRI(rpc, lifetime), false);
116 }
117
118 METHOD(RocketPropelledChainsaw, wr_think, void(entity thiswep, entity actor, .entity weaponentity, int fire))
119 {
120         if ((WEP_CVAR_SEC(rpc, refire_type) == 1) && (fire & 2) && (time >= actor.jump_interval))
121         {
122                 // Secondary uses it's own refire timer if refire_type is 1.
123                 actor.jump_interval = time + WEP_CVAR_SEC(rpc, refire) * W_WeaponRateFactor(actor);
124                 // Ugly hack to reuse the fire mode of the blaster.
125                 makevectors(actor.v_angle);
126                 Weapon oldwep = actor.(weaponentity).m_weapon; // we can't avoid this hack
127                 actor.(weaponentity).m_weapon = WEP_BLASTER;
128                 W_Blaster_Attack(
129                         actor,
130                         weaponentity,
131                         WEP_BLASTER.m_id | HITTYPE_SECONDARY,
132                         WEP_CVAR_SEC(rpc, shotangle),
133                         WEP_CVAR_SEC(rpc, damage),
134                         WEP_CVAR_SEC(rpc, edgedamage),
135                         WEP_CVAR_SEC(rpc, radius),
136                         WEP_CVAR_SEC(rpc, force),
137                         WEP_CVAR_SEC(rpc, speed),
138                         WEP_CVAR_SEC(rpc, spread),
139                         WEP_CVAR_SEC(rpc, delay),
140                         WEP_CVAR_SEC(rpc, lifetime)
141                 );
142                 actor.(weaponentity).m_weapon = oldwep;
143                 if ((actor.(weaponentity).wframe == WFRAME_IDLE) ||
144                         (actor.(weaponentity).wframe == WFRAME_FIRE2))
145                 {
146                         // Set secondary fire animation.
147                         vector a = '0 0 0';
148                         actor.(weaponentity).wframe = WFRAME_FIRE2;
149                         a = actor.(weaponentity).anim_fire2;
150                         a.z *= g_weaponratefactor;
151                         FOREACH_CLIENT(true, LAMBDA(
152                                 if (it == actor || (IS_SPEC(it) && it.enemy == actor))
153                                 {
154                                         wframe_send(it, actor.(weaponentity), a, true);
155                                 }
156                         ));
157                         animdecide_setaction(actor, ANIMACTION_SHOOT, true);
158                 }
159         }
160         if (WEP_CVAR(rpc, reload_ammo) && actor.(weaponentity).clip_load < WEP_CVAR_PRI(rpc, ammo))
161         {
162                 // Forced reload
163                 thiswep.wr_reload(thiswep, actor, weaponentity);
164                 return;
165         }
166         if (fire & 1) // Primary attack
167         {
168                 if (!weapon_prepareattack(thiswep, actor, weaponentity, false, WEP_CVAR_PRI(rpc, refire)))
169                 {
170                         return;
171                 }
172                 W_RocketPropelledChainsaw_Attack(thiswep, actor, weaponentity);
173                 weapon_thinkf(actor, weaponentity, WFRAME_FIRE1, WEP_CVAR_PRI(rpc, animtime), w_ready);
174                 return;
175         }
176         if ((fire & 2) && (WEP_CVAR_SEC(rpc, refire_type) == 0)) // Secondary attack
177         {
178                 if (!weapon_prepareattack(thiswep, actor, weaponentity, false, WEP_CVAR_SEC(rpc, refire)))
179                 {
180                         return;
181                 }
182                 // ugly instagib hack to reuse the fire mode of the laser
183                 makevectors(actor.v_angle);
184                 W_Blaster_Attack(
185                         actor,
186                         weaponentity,
187                         WEP_BLASTER.m_id | HITTYPE_SECONDARY,
188                         WEP_CVAR_SEC(rpc, shotangle),
189                         WEP_CVAR_SEC(rpc, damage),
190                         WEP_CVAR_SEC(rpc, edgedamage),
191                         WEP_CVAR_SEC(rpc, radius),
192                         WEP_CVAR_SEC(rpc, force),
193                         WEP_CVAR_SEC(rpc, speed),
194                         WEP_CVAR_SEC(rpc, spread),
195                         WEP_CVAR_SEC(rpc, delay),
196                         WEP_CVAR_SEC(rpc, lifetime)
197                 );
198                 weapon_thinkf(actor, weaponentity, WFRAME_FIRE2, WEP_CVAR_SEC(rpc, animtime), w_ready);
199         }
200 }
201
202 METHOD(RocketPropelledChainsaw, wr_checkammo1, bool(entity thiswep, entity actor, .entity weaponentity))
203 {
204         float ammo_amount = GetResourceAmount(actor, thiswep.ammo_type) >= WEP_CVAR_PRI(rpc, ammo);
205         ammo_amount += actor.(weaponentity).(weapon_load[WEP_RPC.m_id]) >= WEP_CVAR_PRI(rpc, ammo);
206         return ammo_amount;
207 }
208
209 METHOD(RocketPropelledChainsaw, wr_checkammo2, bool(entity thiswep, entity actor, .entity weaponentity))
210 {
211         float ammo_amount = GetResourceAmount(actor, thiswep.ammo_type) >= WEP_CVAR_SEC(rpc, ammo);
212         ammo_amount += actor.(weaponentity).(weapon_load[WEP_RPC.m_id]) >= WEP_CVAR_SEC(rpc, ammo);
213         return ammo_amount;
214 }
215
216 METHOD(RocketPropelledChainsaw, wr_reload, void(entity thiswep, entity actor, .entity weaponentity))
217 {
218     W_Reload(actor, weaponentity, WEP_CVAR_PRI(rpc, ammo), SND_RELOAD);
219 }
220
221 METHOD(RocketPropelledChainsaw, wr_suicidemessage, Notification(entity thiswep))
222 {
223     if((w_deathtype & HITTYPE_BOUNCE) || (w_deathtype & HITTYPE_SPLASH))
224         return WEAPON_RPC_SUICIDE_SPLASH;
225     else
226         return WEAPON_RPC_SUICIDE_DIRECT;
227 }
228
229 METHOD(RocketPropelledChainsaw, wr_killmessage, Notification(entity thiswep))
230 {
231     if(w_deathtype & HITTYPE_SECONDARY)
232         return WEAPON_BLASTER_MURDER;
233     else if((w_deathtype & HITTYPE_BOUNCE) || (w_deathtype & HITTYPE_SPLASH))
234         return WEAPON_RPC_MURDER_SPLASH;
235     else
236         return WEAPON_RPC_MURDER_DIRECT;
237 }
238
239 #endif
240
241 #ifdef CSQC
242
243 METHOD(RocketPropelledChainsaw, wr_impacteffect, void(entity thiswep, entity actor))
244 {
245     vector org2;
246     org2 = w_org + w_backoff * 12;
247     pointparticles(EFFECT_ROCKET_EXPLODE, org2, '0 0 0', 1);
248     if(!w_issilent)
249         sound(actor, CH_SHOTS, SND_ROCKET_IMPACT, VOL_BASE, ATTEN_NORM);
250 }
251
252 #endif