]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/w_shotgun.qc
Remove the switchable check and do all checks in the WR_CHECKAMMO checks. Only fixed...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / w_shotgun.qc
1 #ifdef REGISTER_WEAPON
2 REGISTER_WEAPON(SHOTGUN, w_shotgun, IT_SHELLS, 2, WEP_FLAG_NORMAL | WEP_TYPE_HITSCAN, BOT_PICKUP_RATING_LOW, "shotgun", "shotgun", _("Shotgun"))
3 #else
4 #ifdef SVQC
5
6 void W_Shotgun_SetAmmoCounter()
7 {
8         // set clip_load to the weapon we have switched to, if the gun uses reloading
9         if(!autocvar_g_balance_shotgun_reload_ammo)
10                 self.clip_load = 0; // also keeps crosshair ammo from displaying
11         else
12         {
13                 self.clip_load = self.shotgun_load;
14                 self.clip_size = autocvar_g_balance_shotgun_reload_ammo; // for the crosshair ammo display
15         }
16 }
17
18 void W_Shotgun_ReloadedAndReady()
19 {
20         float t;
21
22         // now do the ammo transfer
23         self.clip_load = self.old_clip_load; // restore the ammo counter, in case we still had ammo in the weapon before reloading
24         while(self.clip_load < autocvar_g_balance_shotgun_reload_ammo && self.ammo_shells) // make sure we don't add more ammo than we have
25         {
26                 self.clip_load += 1;
27                 self.ammo_shells -= 1;
28         }
29         self.shotgun_load = self.clip_load;
30
31         t = ATTACK_FINISHED(self) - autocvar_g_balance_shotgun_reload_time - 1;
32         ATTACK_FINISHED(self) = t;
33         w_ready();
34 }
35
36 void W_Shotgun_Reload()
37 {
38         // return if reloading is disabled for this weapon
39         if(!autocvar_g_balance_shotgun_reload_ammo)
40                 return;
41
42         if(!W_ReloadCheck(self.ammo_shells, autocvar_g_balance_shotgun_primary_ammo))
43                 return;
44
45         float t;
46
47         sound (self, CHAN_WEAPON2, "weapons/reload.wav", VOL_BASE, ATTN_NORM);
48
49         t = max(time, ATTACK_FINISHED(self)) + autocvar_g_balance_shotgun_reload_time + 1;
50         ATTACK_FINISHED(self) = t;
51
52         weapon_thinkf(WFRAME_RELOAD, autocvar_g_balance_shotgun_reload_time, W_Shotgun_ReloadedAndReady);
53
54         self.old_clip_load = self.clip_load;
55         self.clip_load = -1;
56 }
57
58 void W_Shotgun_Attack (void)
59 {
60         float   sc;
61         float   ammoamount;
62         float   bullets;
63         float   d;
64         float   f;
65         float   spread;
66         float   bulletspeed;
67         float   bulletconstant;
68         local entity flash;
69
70         ammoamount = autocvar_g_balance_shotgun_primary_ammo;
71         bullets = autocvar_g_balance_shotgun_primary_bullets;
72         d = autocvar_g_balance_shotgun_primary_damage;
73         f = autocvar_g_balance_shotgun_primary_force;
74         spread = autocvar_g_balance_shotgun_primary_spread;
75         bulletspeed = autocvar_g_balance_shotgun_primary_speed;
76         bulletconstant = autocvar_g_balance_shotgun_primary_bulletconstant;
77
78         // if this weapon is reloadable, decrease its load. Else decrease the player's ammo
79         if not(self.items & IT_UNLIMITED_WEAPON_AMMO)
80         {
81                 if(autocvar_g_balance_shotgun_reload_ammo)
82                 {
83                         self.clip_load -= ammoamount;
84                         self.shotgun_load = self.clip_load;
85                 }
86                 else
87                         self.ammo_shells -= ammoamount;
88         }
89
90         W_SetupShot (self, autocvar_g_antilag_bullets && bulletspeed >= autocvar_g_antilag_bullets, 5, "weapons/shotgun_fire.wav", CHAN_WEAPON, d * bullets);
91         for (sc = 0;sc < bullets;sc = sc + 1)
92                 fireBallisticBullet(w_shotorg, w_shotdir, spread, bulletspeed, 5, d, 0, f, WEP_SHOTGUN, 0, 1, bulletconstant);
93         endFireBallisticBullet();
94
95         pointparticles(particleeffectnum("shotgun_muzzleflash"), w_shotorg, w_shotdir * 1000, autocvar_g_balance_shotgun_primary_ammo);
96
97         // casing code
98         if (autocvar_g_casings >= 1)
99                 for (sc = 0;sc < ammoamount;sc = sc + 1)
100                         SpawnCasing (((random () * 50 + 50) * v_right) - (v_forward * (random () * 25 + 25)) - ((random () * 5 - 30) * v_up), 2, vectoangles(v_forward),'0 250 0', 100, 1, self);
101
102         // muzzle flash for 1st person view
103         flash = spawn();
104         setmodel(flash, "models/uziflash.md3"); // precision set below
105         flash.think = SUB_Remove;
106         flash.nextthink = time + 0.06;
107         flash.effects = EF_ADDITIVE | EF_FULLBRIGHT | EF_LOWPRECISION;
108         W_AttachToShotorg(flash, '5 0 0');
109 }
110
111 void shotgun_meleethink (void)
112 {
113         // store time when we started swinging down inside self.cnt
114         if(!self.cnt)
115                 self.cnt = time;
116
117         makevectors(self.owner.v_angle);
118         vector angle;
119         angle = v_forward;
120
121         float meleetime;
122         meleetime = autocvar_g_balance_shotgun_secondary_melee_time * W_WeaponRateFactor();
123
124         // perform trace
125         float f;
126         f = (self.cnt + meleetime - time) / meleetime * 2 - 1;
127         vector targpos;
128         targpos = self.owner.origin + self.owner.view_ofs + angle * autocvar_g_balance_shotgun_secondary_melee_range + v_right * f * autocvar_g_balance_shotgun_secondary_melee_swing + v_up * f * autocvar_g_balance_shotgun_secondary_melee_swing;
129
130         WarpZone_traceline_antilag(self.owner, self.owner.origin + self.owner.view_ofs, targpos, FALSE, self.owner, ANTILAG_LATENCY(self.owner));
131
132         // apply the damage, also remove self
133         if(trace_fraction < 1 && trace_ent.takedamage == DAMAGE_AIM && (trace_ent.classname == "player" || trace_ent.classname == "body"))
134         {
135                 vector force;
136                 force = angle * autocvar_g_balance_shotgun_secondary_force;
137                 if(accuracy_isgooddamage(self.owner, trace_ent))
138                         accuracy_add(self.owner, WEP_SHOTGUN, 0, autocvar_g_balance_shotgun_secondary_damage * min(1, f + 1));
139                 Damage (trace_ent, self.owner, self.owner, autocvar_g_balance_shotgun_secondary_damage * min(1, f + 1), WEP_SHOTGUN | HITTYPE_SECONDARY , self.owner.origin + self.owner.view_ofs, force);
140                 remove(self);
141         }
142         else if(time >= self.cnt + meleetime) // missed, remove ent
143                 remove(self);
144         else // continue swinging the weapon in hope of hitting someone :)
145                 self.nextthink = time;
146 }
147
148 void W_Shotgun_Attack2 (void)
149 {
150         sound (self, CHAN_PROJECTILE, "weapons/shotgun_melee.wav", VOL_BASE, ATTN_NORM);
151         weapon_thinkf(WFRAME_FIRE2, autocvar_g_balance_shotgun_secondary_animtime, w_ready);
152
153         entity meleetemp;
154         meleetemp = spawn();
155         meleetemp.owner = self;
156         meleetemp.think = shotgun_meleethink;
157         meleetemp.nextthink = time + autocvar_g_balance_shotgun_secondary_melee_delay;
158         W_SetupShot_Range(self, TRUE, 0, "", 0, autocvar_g_balance_shotgun_secondary_damage, autocvar_g_balance_shotgun_secondary_melee_range);
159 }
160
161 void spawnfunc_weapon_shotgun(); // defined in t_items.qc
162
163 .float shotgun_primarytime;
164
165 float w_shotgun(float req)
166 {
167         float ammo_amount;
168         if (req == WR_AIM)
169                 if(vlen(self.origin-self.enemy.origin) <= autocvar_g_balance_shotgun_secondary_melee_range)
170                         self.BUTTON_ATCK2 = bot_aim(1000000, 0, 0.001, FALSE);
171                 else
172                         self.BUTTON_ATCK = bot_aim(1000000, 0, 0.001, FALSE);
173         else if (req == WR_THINK)
174         {
175                 if(autocvar_g_balance_shotgun_reload_ammo && self.clip_load < autocvar_g_balance_shotgun_primary_ammo) // forced reload
176                         W_Shotgun_Reload();
177                 else
178                 {
179                         if (self.BUTTON_ATCK)
180                         {
181                                 if (time >= self.shotgun_primarytime) // handle refire separately so the secondary can be fired straight after a primary
182                                 {
183                                         if(weapon_prepareattack(0, autocvar_g_balance_shotgun_primary_animtime))
184                                         {
185                                                 W_Shotgun_Attack();
186                                                 self.shotgun_primarytime = time + autocvar_g_balance_shotgun_primary_refire;
187                                                 weapon_thinkf(WFRAME_FIRE1, autocvar_g_balance_shotgun_primary_animtime, w_ready);
188                                         }
189                                 }
190                         }
191                         if (self.BUTTON_ATCK2 && autocvar_g_balance_shotgun_secondary)
192                         if (weapon_prepareattack(1, autocvar_g_balance_shotgun_secondary_refire))
193                         {
194                                 // attempt forcing playback of the anim by switching to another anim (that we never play) here...
195                                 weapon_thinkf(WFRAME_FIRE1, 0, W_Shotgun_Attack2);
196                         }
197                 }
198         if(self.wish_reload)
199         {
200             if(self.switchweapon == self.weapon)
201             {
202                 if(self.weaponentity.state == WS_READY)
203                 {
204                     self.wish_reload = 0;
205                     W_Shotgun_Reload();
206                 }
207             }
208         }
209         }
210         else if (req == WR_PRECACHE)
211         {
212                 precache_model ("models/uziflash.md3");
213                 precache_model ("models/weapons/g_shotgun.md3");
214                 precache_model ("models/weapons/v_shotgun.md3");
215                 precache_model ("models/weapons/h_shotgun.iqm");
216                 precache_sound ("misc/itempickup.wav");
217                 precache_sound ("weapons/shotgun_fire.wav");
218                 precache_sound ("weapons/shotgun_melee.wav");
219                 precache_sound ("weapons/reload.wav");
220         }
221         else if (req == WR_SETUP)
222         {
223                 weapon_setup(WEP_SHOTGUN);
224                 W_Shotgun_SetAmmoCounter();
225         }
226         else if (req == WR_CHECKAMMO1)
227         {
228                 ammo_amount = self.ammo_shells >= autocvar_g_balance_shotgun_primary_ammo;
229                 ammo_amount += (autocvar_g_balance_shotgun_reload_ammo && self.shotgun_load >= autocvar_g_balance_shotgun_primary_ammo);
230                 return ammo_amount;
231         }
232         else if (req == WR_CHECKAMMO2)
233         {
234                 return FALSE;
235         }
236         else if (req == WR_RELOAD)
237         {
238                 W_Shotgun_Reload();
239         }
240         return TRUE;
241 };
242 #endif
243 #ifdef CSQC
244 .float prevric;
245 float w_shotgun(float req)
246 {
247         if(req == WR_IMPACTEFFECT)
248         {
249                 vector org2;
250                 org2 = w_org + w_backoff * 2;
251                 pointparticles(particleeffectnum("shotgun_impact"), org2, w_backoff * 1000, 1);
252                 if(!w_issilent && time - self.prevric > 0.25)
253                 {
254                         if(w_random < 0.0165)
255                                 sound(self, CHAN_PROJECTILE, "weapons/ric1.wav", VOL_BASE, ATTN_NORM);
256                         else if(w_random < 0.033)
257                                 sound(self, CHAN_PROJECTILE, "weapons/ric2.wav", VOL_BASE, ATTN_NORM);
258                         else if(w_random < 0.05)
259                                 sound(self, CHAN_PROJECTILE, "weapons/ric3.wav", VOL_BASE, ATTN_NORM);
260                         self.prevric = time;
261                 }
262         }
263         else if(req == WR_PRECACHE)
264         {
265                 precache_sound("weapons/ric1.wav");
266                 precache_sound("weapons/ric2.wav");
267                 precache_sound("weapons/ric3.wav");
268         }
269         else if (req == WR_SUICIDEMESSAGE)
270                 w_deathtypestring = "%s did the impossible";
271         else if (req == WR_KILLMESSAGE)
272         {
273                 if(w_deathtype & HITTYPE_SECONDARY)
274                         w_deathtypestring = "%2$s ^7slapped %1$s ^7around a bit with a large ^2shotgun";
275                 else
276                         w_deathtypestring = "%s was gunned by %s";
277         }
278         return TRUE;
279 }
280 #endif
281 #endif