3 /* ammotype */ ATTRIB(HLAC, ammo_field, .int, ammo_cells)
4 /* impulse */ ATTRIB(HLAC, impulse, int, 6)
5 /* flags */ ATTRIB(HLAC, spawnflags, int, WEP_FLAG_MUTATORBLOCKED | WEP_FLAG_RELOADABLE | WEP_TYPE_SPLASH);
6 /* rating */ ATTRIB(HLAC, bot_pickupbasevalue, float, BOT_PICKUP_RATING_MID);
7 /* color */ ATTRIB(HLAC, wpcolor, vector, '0 1 0');
8 /* modelname */ ATTRIB(HLAC, mdl, string, "hlac");
10 /* model */ ATTRIB(HLAC, m_model, Model, MDL_HLAC_ITEM);
12 /* crosshair */ ATTRIB(HLAC, w_crosshair, string, "gfx/crosshairhlac");
13 /* crosshair */ ATTRIB(HLAC, w_crosshair_size, float, 0.6);
14 /* wepimg */ ATTRIB(HLAC, model2, string, "weaponhlac");
15 /* refname */ ATTRIB(HLAC, netname, string, "hlac");
16 /* wepname */ ATTRIB(HLAC, message, string, _("Heavy Laser Assault Cannon"));
18 REGISTER_WEAPON(HLAC, NEW(HLAC));
20 #define HLAC_SETTINGS(w_cvar,w_prop) HLAC_SETTINGS_LIST(w_cvar, w_prop, HLAC, hlac)
21 #define HLAC_SETTINGS_LIST(w_cvar,w_prop,id,sn) \
22 w_cvar(id, sn, BOTH, ammo) \
23 w_cvar(id, sn, BOTH, animtime) \
24 w_cvar(id, sn, BOTH, damage) \
25 w_cvar(id, sn, BOTH, edgedamage) \
26 w_cvar(id, sn, BOTH, force) \
27 w_cvar(id, sn, BOTH, lifetime) \
28 w_cvar(id, sn, BOTH, radius) \
29 w_cvar(id, sn, BOTH, refire) \
30 w_cvar(id, sn, BOTH, speed) \
31 w_cvar(id, sn, BOTH, spread_crouchmod) \
32 w_cvar(id, sn, PRI, spread_add) \
33 w_cvar(id, sn, PRI, spread_max) \
34 w_cvar(id, sn, PRI, spread_min) \
35 w_cvar(id, sn, NONE, secondary) \
36 w_cvar(id, sn, SEC, shots) \
37 w_cvar(id, sn, SEC, spread) \
38 w_prop(id, sn, float, reloading_ammo, reload_ammo) \
39 w_prop(id, sn, float, reloading_time, reload_time) \
40 w_prop(id, sn, float, switchdelay_raise, switchdelay_raise) \
41 w_prop(id, sn, float, switchdelay_drop, switchdelay_drop) \
42 w_prop(id, sn, string, weaponreplace, weaponreplace) \
43 w_prop(id, sn, float, weaponstart, weaponstart) \
44 w_prop(id, sn, float, weaponstartoverride, weaponstartoverride) \
45 w_prop(id, sn, float, weaponthrowable, weaponthrowable)
48 HLAC_SETTINGS(WEP_ADD_CVAR, WEP_ADD_PROP)
53 spawnfunc(weapon_hlac) { weapon_defaultspawnfunc(WEP_HLAC.m_id); }
55 void W_HLAC_Touch(void)
61 self.event_damage = func_null;
63 isprimary = !(self.projectiledeathtype & HITTYPE_SECONDARY);
65 RadiusDamage(self, self.realowner, WEP_CVAR_BOTH(hlac, isprimary, damage), WEP_CVAR_BOTH(hlac, isprimary, edgedamage), WEP_CVAR_BOTH(hlac, isprimary, radius), world, world, WEP_CVAR_BOTH(hlac, isprimary, force), self.projectiledeathtype, other);
70 void W_HLAC_Attack(Weapon thiswep)
75 W_DecreaseAmmo(thiswep, self, WEP_CVAR_PRI(hlac, ammo));
77 spread = WEP_CVAR_PRI(hlac, spread_min) + (WEP_CVAR_PRI(hlac, spread_add) * self.misc_bulletcounter);
78 spread = min(spread,WEP_CVAR_PRI(hlac, spread_max));
80 spread = spread * WEP_CVAR_PRI(hlac, spread_crouchmod);
82 W_SetupShot(self, false, 3, SND(LASERGUN_FIRE), CH_WEAPON_A, WEP_CVAR_PRI(hlac, damage));
83 Send_Effect(EFFECT_BLASTER_MUZZLEFLASH, w_shotorg, w_shotdir * 1000, 1);
84 if(!autocvar_g_norecoil)
86 self.punchangle_x = random() - 0.5;
87 self.punchangle_y = random() - 0.5;
91 missile.owner = missile.realowner = self;
92 missile.classname = "hlacbolt";
93 missile.bot_dodge = true;
95 missile.bot_dodgerating = WEP_CVAR_PRI(hlac, damage);
97 missile.movetype = MOVETYPE_FLY;
98 PROJECTILE_MAKETRIGGER(missile);
100 setorigin(missile, w_shotorg);
101 setsize(missile, '0 0 0', '0 0 0');
103 W_SetupProjVelocity_Basic(missile, WEP_CVAR_PRI(hlac, speed), spread);
104 //missile.angles = vectoangles(missile.velocity); // csqc
106 missile.touch = W_HLAC_Touch;
107 missile.think = SUB_Remove;
109 missile.nextthink = time + WEP_CVAR_PRI(hlac, lifetime);
111 missile.flags = FL_PROJECTILE;
112 missile.projectiledeathtype = WEP_HLAC.m_id;
114 CSQCProjectile(missile, true, PROJECTILE_HLAC, true);
116 MUTATOR_CALLHOOK(EditProjectile, self, missile);
119 void W_HLAC_Attack2(void)
124 spread = WEP_CVAR_SEC(hlac, spread);
128 spread = spread * WEP_CVAR_SEC(hlac, spread_crouchmod);
130 W_SetupShot(self, false, 3, SND(LASERGUN_FIRE), CH_WEAPON_A, WEP_CVAR_SEC(hlac, damage));
131 Send_Effect(EFFECT_BLASTER_MUZZLEFLASH, w_shotorg, w_shotdir * 1000, 1);
134 missile.owner = missile.realowner = self;
135 missile.classname = "hlacbolt";
136 missile.bot_dodge = true;
138 missile.bot_dodgerating = WEP_CVAR_SEC(hlac, damage);
140 missile.movetype = MOVETYPE_FLY;
141 PROJECTILE_MAKETRIGGER(missile);
143 setorigin(missile, w_shotorg);
144 setsize(missile, '0 0 0', '0 0 0');
146 W_SetupProjVelocity_Basic(missile, WEP_CVAR_SEC(hlac, speed), spread);
147 //missile.angles = vectoangles(missile.velocity); // csqc
149 missile.touch = W_HLAC_Touch;
150 missile.think = SUB_Remove;
152 missile.nextthink = time + WEP_CVAR_SEC(hlac, lifetime);
154 missile.flags = FL_PROJECTILE;
155 missile.missile_flags = MIF_SPLASH;
156 missile.projectiledeathtype = WEP_HLAC.m_id | HITTYPE_SECONDARY;
158 CSQCProjectile(missile, true, PROJECTILE_HLAC, true);
160 MUTATOR_CALLHOOK(EditProjectile, self, missile);
164 void W_HLAC_Attack_Frame(Weapon thiswep, entity actor, int slot, int fire)
166 if(actor.weapon != actor.switchweapon) // abort immediately if switching
168 w_ready(thiswep, actor, slot, fire);
172 if(actor.BUTTON_ATCK)
174 Weapon w = get_weaponinfo(actor.weapon);
175 if(!w.wr_checkammo1(w))
176 if(!(actor.items & IT_UNLIMITED_WEAPON_AMMO))
178 W_SwitchWeapon_Force(actor, w_getbestweapon(actor));
179 w_ready(thiswep, actor, slot, fire);
183 ATTACK_FINISHED(actor) = time + WEP_CVAR_PRI(hlac, refire) * W_WeaponRateFactor();
184 W_HLAC_Attack(WEP_HLAC);
185 actor.misc_bulletcounter = actor.misc_bulletcounter + 1;
186 weapon_thinkf(actor, WFRAME_FIRE1, WEP_CVAR_PRI(hlac, refire), W_HLAC_Attack_Frame);
190 weapon_thinkf(actor, WFRAME_FIRE1, WEP_CVAR_PRI(hlac, animtime), w_ready);
194 void W_HLAC_Attack2_Frame(Weapon thiswep)
198 W_DecreaseAmmo(thiswep, self, WEP_CVAR_SEC(hlac, ammo));
200 for(i=WEP_CVAR_SEC(hlac, shots);i>0;--i)
203 if(!autocvar_g_norecoil)
205 self.punchangle_x = random() - 0.5;
206 self.punchangle_y = random() - 0.5;
210 METHOD(HLAC, wr_aim, void(entity thiswep))
212 self.BUTTON_ATCK = bot_aim(WEP_CVAR_PRI(hlac, speed), 0, WEP_CVAR_PRI(hlac, lifetime), false);
214 METHOD(HLAC, wr_think, void(entity thiswep, entity actor, int slot, int fire))
216 if(autocvar_g_balance_hlac_reload_ammo && actor.clip_load < min(WEP_CVAR_PRI(hlac, ammo), WEP_CVAR_SEC(hlac, ammo))) { // forced reload
217 Weapon w = get_weaponinfo(actor.weapon);
221 if(weapon_prepareattack(thiswep, actor, false, WEP_CVAR_PRI(hlac, refire)))
223 actor.misc_bulletcounter = 0;
224 W_HLAC_Attack(thiswep);
225 weapon_thinkf(actor, WFRAME_FIRE1, WEP_CVAR_PRI(hlac, refire), W_HLAC_Attack_Frame);
229 else if((fire & 2) && WEP_CVAR(hlac, secondary))
231 if(weapon_prepareattack(thiswep, actor, true, WEP_CVAR_SEC(hlac, refire)))
233 W_HLAC_Attack2_Frame(thiswep);
234 weapon_thinkf(actor, WFRAME_FIRE2, WEP_CVAR_SEC(hlac, animtime), w_ready);
238 METHOD(HLAC, wr_init, void(entity thiswep))
240 HLAC_SETTINGS(WEP_SKIP_CVAR, WEP_SET_PROP);
242 METHOD(HLAC, wr_checkammo1, bool(entity thiswep))
244 float ammo_amount = self.WEP_AMMO(HLAC) >= WEP_CVAR_PRI(hlac, ammo);
245 ammo_amount += self.(weapon_load[WEP_HLAC.m_id]) >= WEP_CVAR_PRI(hlac, ammo);
248 METHOD(HLAC, wr_checkammo2, bool(entity thiswep))
250 float ammo_amount = self.WEP_AMMO(HLAC) >= WEP_CVAR_SEC(hlac, ammo);
251 ammo_amount += self.(weapon_load[WEP_HLAC.m_id]) >= WEP_CVAR_SEC(hlac, ammo);
254 METHOD(HLAC, wr_config, void(entity thiswep))
256 HLAC_SETTINGS(WEP_CONFIG_WRITE_CVARS, WEP_CONFIG_WRITE_PROPS);
258 METHOD(HLAC, wr_reload, void(entity thiswep))
260 W_Reload(self, min(WEP_CVAR_PRI(hlac, ammo), WEP_CVAR_SEC(hlac, ammo)), SND(RELOAD));
262 METHOD(HLAC, wr_suicidemessage, int(entity thiswep))
264 return WEAPON_HLAC_SUICIDE;
266 METHOD(HLAC, wr_killmessage, int(entity thiswep))
268 return WEAPON_HLAC_MURDER;
274 METHOD(HLAC, wr_impacteffect, void(entity thiswep))
277 org2 = w_org + w_backoff * 6;
278 pointparticles(particleeffectnum(EFFECT_BLASTER_IMPACT), org2, w_backoff * 1000, 1);
280 sound(self, CH_SHOTS, SND_LASERIMPACT, VOL_BASE, ATTN_NORM);