Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
plasma_weapon.qc
Go to the documentation of this file.
1#include "plasma_weapon.qh"
2
3#ifdef SVQC
4SOUND(PlasmaAttack_FIRE, W_Sound("hagar_fire"));
5METHOD(PlasmaAttack, wr_think, void(entity thiswep, entity actor, .entity weaponentity, int fire)) {
6 bool isPlayer = IS_PLAYER(actor);
7 if (fire & 1)
8 if (!isPlayer || weapon_prepareattack(thiswep, actor, weaponentity, false, 1)) {
9 if (isPlayer) {
10 turret_initparams(actor);
11 W_SetupShot_Dir(actor, weaponentity, v_forward, false, 0, SND_PlasmaAttack_FIRE, CH_WEAPON_B, 0, DEATH_TURRET_PLASMA.m_id);
12 actor.tur_shotdir_updated = w_shotdir;
13 actor.tur_shotorg = w_shotorg;
14 actor.tur_head = actor;
15 weapon_thinkf(actor, weaponentity, WFRAME_FIRE1, 0.5, w_ready);
16 }
17 entity missile = turret_projectile(actor, SND_PlasmaAttack_FIRE, 1, 0, DEATH_TURRET_PLASMA.m_id, PROJECTILE_ELECTRO_BEAM, true, true);
18 missile.missile_flags = MIF_SPLASH;
19 Send_Effect(EFFECT_BLASTER_MUZZLEFLASH, actor.tur_shotorg, actor.tur_shotdir_updated * 1000, 1);
20 }
21}
22
23#endif
var entity(vector mins, vector maxs,.entity tofield) findbox_tofield_OrFallback
#define IS_PLAYER(s)
Definition player.qh:243
vector v_forward
void Send_Effect(entity eff, vector eff_loc, vector eff_vel, int eff_cnt)
Definition all.qc:124
#define METHOD(cname, name, prototype)
Definition oo.qh:269
const int PROJECTILE_ELECTRO_BEAM
Definition projectiles.qh:7
const int MIF_SPLASH
Definition common.qh:46
const int CH_WEAPON_B
Definition sound.qh:8
string W_Sound(string w_snd)
Definition all.qc:225
#define SOUND(name, path)
Definition all.qh:30
entity turret_projectile(entity actor, Sound _snd, float _size, float _health, float _death, float _proj_type, float _cull, float _cli_anim)
void turret_initparams(entity tur)
vector w_shotdir
Definition tracing.qh:20
vector w_shotorg
Definition tracing.qh:19
#define W_SetupShot_Dir(ent, wepent, s_forward, antilag, recoil, snd, chan, maxdamage, deathtype)
Definition tracing.qh:32
void weapon_thinkf(entity actor,.entity weaponentity, WFRAME fr, float t, void(Weapon thiswep, entity actor,.entity weaponentity, int fire) func)
bool weapon_prepareattack(Weapon thiswep, entity actor,.entity weaponentity, bool secondary, float attacktime)
void w_ready(Weapon thiswep, entity actor,.entity weaponentity, int fire)