]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/weapons/weapon/rifle.qc
Merge branch 'master' into terencehill/dynamic_hud
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / weapons / weapon / rifle.qc
1 #ifndef IMPLEMENTATION
2 CLASS(Rifle, Weapon)
3 /* ammotype  */ ATTRIB(Rifle, ammo_field, .int, ammo_nails)
4 /* impulse   */ ATTRIB(Rifle, impulse, int, 7)
5 /* flags     */ ATTRIB(Rifle, spawnflags, int, WEP_FLAG_MUTATORBLOCKED | WEP_FLAG_RELOADABLE | WEP_TYPE_HITSCAN);
6 /* rating    */ ATTRIB(Rifle, bot_pickupbasevalue, float, BOT_PICKUP_RATING_MID);
7 /* color     */ ATTRIB(Rifle, wpcolor, vector, '0.5 1 0');
8 /* modelname */ ATTRIB(Rifle, mdl, string, "campingrifle");
9 #ifndef MENUQC
10 /* model     */ ATTRIB(Rifle, m_model, Model, MDL_RIFLE_ITEM);
11 #endif
12 /* crosshair */ ATTRIB(Rifle, w_crosshair, string, "gfx/crosshairrifle");
13 /* crosshair */ ATTRIB(Rifle, w_crosshair_size, float, 0.6);
14 /* wepimg    */ ATTRIB(Rifle, model2, string, "weaponrifle");
15 /* refname   */ ATTRIB(Rifle, netname, string, "rifle");
16 /* wepname   */ ATTRIB(Rifle, m_name, string, _("Rifle"));
17
18 #define X(BEGIN, P, END, class, prefix) \
19         BEGIN(class) \
20                 P(class, prefix, ammo, float, BOTH) \
21                 P(class, prefix, animtime, float, BOTH) \
22                 P(class, prefix, bullethail, float, BOTH) \
23                 P(class, prefix, burstcost, float, BOTH) \
24                 P(class, prefix, bursttime, float, NONE) \
25                 P(class, prefix, damage, float, BOTH) \
26                 P(class, prefix, force, float, BOTH) \
27                 P(class, prefix, refire, float, BOTH) \
28                 P(class, prefix, reload, float, SEC) \
29                 P(class, prefix, reload_ammo, float, NONE) \
30         P(class, prefix, reload_time, float, NONE) \
31                 P(class, prefix, secondary, float, NONE) \
32                 P(class, prefix, shots, float, BOTH) \
33                 P(class, prefix, solidpenetration, float, BOTH) \
34                 P(class, prefix, spread, float, BOTH) \
35         P(class, prefix, switchdelay_drop, float, NONE) \
36         P(class, prefix, switchdelay_raise, float, NONE) \
37                 P(class, prefix, tracer, float, BOTH) \
38         P(class, prefix, weaponreplace, string, NONE) \
39         P(class, prefix, weaponstartoverride, float, NONE) \
40         P(class, prefix, weaponstart, float, NONE) \
41         P(class, prefix, weaponthrowable, float, NONE) \
42         END()
43     W_PROPS(X, Rifle, rifle)
44 #undef X
45 ENDCLASS(Rifle)
46 REGISTER_WEAPON(RIFLE, rifle, NEW(Rifle));
47
48
49 #ifdef SVQC
50 .float rifle_accumulator;
51 #endif
52 #endif
53 #ifdef IMPLEMENTATION
54 #ifdef SVQC
55 spawnfunc(weapon_rifle) { weapon_defaultspawnfunc(this, WEP_RIFLE); }
56 spawnfunc(weapon_campingrifle) { spawnfunc_weapon_rifle(this); }
57 spawnfunc(weapon_sniperrifle) { spawnfunc_weapon_rifle(this); }
58
59 void W_Rifle_FireBullet(Weapon thiswep, float pSpread, float pDamage, float pForce, float pSolidPenetration, float pAmmo, int deathtype, float pTracer, float pShots, Sound pSound)
60 {SELFPARAM();
61         float i;
62
63         W_DecreaseAmmo(thiswep, self, pAmmo);
64
65         W_SetupShot(self, true, 2, pSound, CH_WEAPON_A, pDamage * pShots);
66
67         Send_Effect(EFFECT_RIFLE_MUZZLEFLASH, w_shotorg, w_shotdir * 2000, 1);
68
69         if(PHYS_INPUT_BUTTON_ZOOM(self) | PHYS_INPUT_BUTTON_ZOOMSCRIPT(self)) // if zoomed, shoot from the eye
70         {
71                 w_shotdir = v_forward;
72                 w_shotorg = self.origin + self.view_ofs + ((w_shotorg - self.origin - self.view_ofs) * v_forward) * v_forward;
73         }
74
75         for(i = 0; i < pShots; ++i)
76                 fireBullet(w_shotorg, w_shotdir, pSpread, pSolidPenetration, pDamage, pForce, deathtype, (pTracer ? EF_RED : EF_BLUE));
77
78         if(autocvar_g_casings >= 2)
79                 SpawnCasing(((random() * 50 + 50) * v_right) - (v_forward * (random() * 25 + 25)) - ((random() * 5 - 70) * v_up), 2, vectoangles(v_forward),'0 250 0', 100, 3, self);
80 }
81
82 void W_Rifle_Attack()
83 {
84         W_Rifle_FireBullet(WEP_RIFLE, WEP_CVAR_PRI(rifle, spread), WEP_CVAR_PRI(rifle, damage), WEP_CVAR_PRI(rifle, force), WEP_CVAR_PRI(rifle, solidpenetration), WEP_CVAR_PRI(rifle, ammo), WEP_RIFLE.m_id, WEP_CVAR_PRI(rifle, tracer), WEP_CVAR_PRI(rifle, shots), SND_CAMPINGRIFLE_FIRE);
85 }
86
87 void W_Rifle_Attack2()
88 {
89         W_Rifle_FireBullet(WEP_RIFLE, WEP_CVAR_SEC(rifle, spread), WEP_CVAR_SEC(rifle, damage), WEP_CVAR_SEC(rifle, force), WEP_CVAR_SEC(rifle, solidpenetration), WEP_CVAR_SEC(rifle, ammo), WEP_RIFLE.m_id | HITTYPE_SECONDARY, WEP_CVAR_SEC(rifle, tracer), WEP_CVAR_SEC(rifle, shots), SND_CAMPINGRIFLE_FIRE2);
90 }
91
92 .void() rifle_bullethail_attackfunc;
93 .WFRAME rifle_bullethail_frame;
94 .float rifle_bullethail_animtime;
95 .float rifle_bullethail_refire;
96 void W_Rifle_BulletHail_Continue(Weapon thiswep, entity actor, .entity weaponentity, int fire)
97 {
98         float r, af;
99
100         Weapon sw = PS(actor).m_switchweapon; // make it not detect weapon changes as reason to abort firing
101         int slot = weaponslot(weaponentity);
102         af = ATTACK_FINISHED(actor, slot);
103         PS(actor).m_switchweapon = PS(actor).m_weapon;
104         ATTACK_FINISHED(actor, slot) = time;
105         r = weapon_prepareattack(thiswep, actor, weaponentity, actor.rifle_bullethail_frame == WFRAME_FIRE2, actor.rifle_bullethail_refire);
106         if(PS(actor).m_switchweapon == PS(actor).m_weapon)
107                 PS(actor).m_switchweapon = sw;
108         if(r)
109         {
110                 actor.rifle_bullethail_attackfunc();
111                 weapon_thinkf(actor, weaponentity, actor.rifle_bullethail_frame, actor.rifle_bullethail_animtime, W_Rifle_BulletHail_Continue);
112         }
113         else
114         {
115                 ATTACK_FINISHED(actor, slot) = af; // reset attack_finished if we didn't fire, so the last shot enforces the refire time
116         }
117 }
118
119 void W_Rifle_BulletHail(.entity weaponentity, float mode, void() AttackFunc, WFRAME fr, float animtime, float refire)
120 {SELFPARAM();
121         // if we get here, we have at least one bullet to fire
122         AttackFunc();
123         if(mode)
124         {
125                 // continue hail
126                 self.rifle_bullethail_attackfunc = AttackFunc;
127                 self.rifle_bullethail_frame = fr;
128                 self.rifle_bullethail_animtime = animtime;
129                 self.rifle_bullethail_refire = refire;
130                 weapon_thinkf(self, weaponentity, fr, animtime, W_Rifle_BulletHail_Continue);
131         }
132         else
133         {
134                 // just one shot
135                 weapon_thinkf(self, weaponentity, fr, animtime, w_ready);
136         }
137 }
138
139 .float bot_secondary_riflemooth;
140
141 METHOD(Rifle, wr_aim, void(entity thiswep))
142 {
143     SELFPARAM();
144     PHYS_INPUT_BUTTON_ATCK(self) = false;
145     PHYS_INPUT_BUTTON_ATCK2(self) = false;
146     if(vdist(self.origin - self.enemy.origin, >, 1000))
147         self.bot_secondary_riflemooth = 0;
148     if(self.bot_secondary_riflemooth == 0)
149     {
150         if(bot_aim(self, 1000000, 0, 0.001, false))
151         {
152             PHYS_INPUT_BUTTON_ATCK(self) = true;
153             if(random() < 0.01) self.bot_secondary_riflemooth = 1;
154         }
155     }
156     else
157     {
158         if(bot_aim(self, 1000000, 0, 0.001, false))
159         {
160             PHYS_INPUT_BUTTON_ATCK2(self) = true;
161             if(random() < 0.03) self.bot_secondary_riflemooth = 0;
162         }
163     }
164 }
165 METHOD(Rifle, wr_think, void(entity thiswep, entity actor, .entity weaponentity, int fire))
166 {
167     if(autocvar_g_balance_rifle_reload_ammo && actor.clip_load < min(WEP_CVAR_PRI(rifle, ammo), WEP_CVAR_SEC(rifle, ammo))) { // forced reload
168         thiswep.wr_reload(thiswep, actor, weaponentity);
169     } else
170     {
171         actor.rifle_accumulator = bound(time - WEP_CVAR(rifle, bursttime), actor.rifle_accumulator, time);
172         if(fire & 1)
173         if(weapon_prepareattack_check(thiswep, actor, weaponentity, false, WEP_CVAR_PRI(rifle, refire)))
174         if(time >= actor.rifle_accumulator + WEP_CVAR_PRI(rifle, burstcost))
175         {
176             weapon_prepareattack_do(actor, weaponentity, false, WEP_CVAR_PRI(rifle, refire));
177             W_Rifle_BulletHail(weaponentity, WEP_CVAR_PRI(rifle, bullethail), W_Rifle_Attack, WFRAME_FIRE1, WEP_CVAR_PRI(rifle, animtime), WEP_CVAR_PRI(rifle, refire));
178             actor.rifle_accumulator += WEP_CVAR_PRI(rifle, burstcost);
179         }
180         if(fire & 2)
181         {
182             if(WEP_CVAR(rifle, secondary))
183             {
184                 if(WEP_CVAR_SEC(rifle, reload)) {
185                     thiswep.wr_reload(thiswep, actor, weaponentity);
186                 } else
187                 {
188                     if(weapon_prepareattack_check(thiswep, actor, weaponentity, true, WEP_CVAR_SEC(rifle, refire)))
189                     if(time >= actor.rifle_accumulator + WEP_CVAR_SEC(rifle, burstcost))
190                     {
191                         weapon_prepareattack_do(actor, weaponentity, true, WEP_CVAR_SEC(rifle, refire));
192                         W_Rifle_BulletHail(weaponentity, WEP_CVAR_SEC(rifle, bullethail), W_Rifle_Attack2, WFRAME_FIRE2, WEP_CVAR_SEC(rifle, animtime), WEP_CVAR_PRI(rifle, refire));
193                         actor.rifle_accumulator += WEP_CVAR_SEC(rifle, burstcost);
194                     }
195                 }
196             }
197         }
198     }
199 }
200 METHOD(Rifle, wr_checkammo1, bool(entity thiswep))
201 {
202     SELFPARAM();
203     float ammo_amount = self.(thiswep.ammo_field) >= WEP_CVAR_PRI(rifle, ammo);
204     ammo_amount += self.(weapon_load[WEP_RIFLE.m_id]) >= WEP_CVAR_PRI(rifle, ammo);
205     return ammo_amount;
206 }
207 METHOD(Rifle, wr_checkammo2, bool(entity thiswep))
208 {
209     SELFPARAM();
210     float ammo_amount = self.(thiswep.ammo_field) >= WEP_CVAR_SEC(rifle, ammo);
211     ammo_amount += self.(weapon_load[WEP_RIFLE.m_id]) >= WEP_CVAR_SEC(rifle, ammo);
212     return ammo_amount;
213 }
214 METHOD(Rifle, wr_resetplayer, void(entity thiswep))
215 {
216     SELFPARAM();
217     self.rifle_accumulator = time - WEP_CVAR(rifle, bursttime);
218 }
219 METHOD(Rifle, wr_reload, void(entity thiswep, entity actor, .entity weaponentity))
220 {
221     SELFPARAM();
222     W_Reload(self, min(WEP_CVAR_PRI(rifle, ammo), WEP_CVAR_SEC(rifle, ammo)), SND_RELOAD);
223 }
224 METHOD(Rifle, wr_suicidemessage, Notification(entity thiswep))
225 {
226     return WEAPON_THINKING_WITH_PORTALS;
227 }
228 METHOD(Rifle, wr_killmessage, Notification(entity thiswep))
229 {
230     if(w_deathtype & HITTYPE_SECONDARY)
231     {
232         if(w_deathtype & HITTYPE_BOUNCE)
233             return WEAPON_RIFLE_MURDER_HAIL_PIERCING;
234         else
235             return WEAPON_RIFLE_MURDER_HAIL;
236     }
237     else
238     {
239         if(w_deathtype & HITTYPE_BOUNCE)
240             return WEAPON_RIFLE_MURDER_PIERCING;
241         else
242             return WEAPON_RIFLE_MURDER;
243     }
244 }
245
246 #endif
247 #ifdef CSQC
248
249 METHOD(Rifle, wr_impacteffect, void(entity thiswep))
250 {
251     SELFPARAM();
252     vector org2;
253     org2 = w_org + w_backoff * 2;
254     pointparticles(EFFECT_RIFLE_IMPACT, org2, w_backoff * 1000, 1);
255     if(!w_issilent)
256     {
257         sound(self, CH_SHOTS, SND_RIC_RANDOM(), VOL_BASE, ATTN_NORM);
258     }
259 }
260 METHOD(Rifle, wr_init, void(entity thiswep))
261 {
262     if(autocvar_cl_reticle && autocvar_cl_reticle_weapon)
263     {
264         precache_pic("gfx/reticle_nex");
265     }
266 }
267 METHOD(Rifle, wr_zoomreticle, bool(entity thiswep))
268 {
269     if(button_zoom || zoomscript_caught)
270     {
271         reticle_image = "gfx/reticle_nex";
272         return true;
273     }
274     else
275     {
276         // no weapon specific image for this weapon
277         return false;
278     }
279 }
280
281 #endif
282 #endif