]> icculus.org git repositories - divverent/nexuiz.git/blob - qcsrc/gamec/w_crylink.c
Fixed a 'hanging ;' warning
[divverent/nexuiz.git] / qcsrc / gamec / w_crylink.c
1 void() crylink_ready_01;
2 void() crylink_fire1_01;
3 void() crylink_deselect_01;
4 void() crylink_select_01;
5
6 .float gravity;
7
8 float() crylink_check =
9 {
10         if (self.ammo_cells >= 1)
11                 return TRUE;
12         return FALSE;
13 };
14
15 void(float req) w_crylink =
16 {
17         if (req == WR_IDLE)
18                 crylink_ready_01();
19         else if (req == WR_FIRE1 || req == WR_FIRE2)
20                 weapon_prepareattack(crylink_check, crylink_check, crylink_fire1_01, cvar("g_balance_crylink_refire"));
21         else if (req == WR_RAISE)
22                 crylink_select_01();
23         else if (req == WR_UPDATECOUNTS)
24                 self.currentammo = self.ammo_cells;
25         else if (req == WR_DROP)
26                 crylink_deselect_01();
27         else if (req == WR_SETUP)
28                 weapon_setup(WEP_CRYLINK, "w_crylink.zym", IT_CELLS);
29         else if (req == WR_CHECKAMMO)
30                 weapon_hasammo = crylink_check();
31 };
32
33 .entity realowner;
34 void W_Crylink_Touch (void)
35 {
36         RadiusDamage (self, self.realowner, cvar("g_balance_crylink_damage"), cvar("g_balance_crylink_edgedamage"), cvar("g_balance_crylink_radius"), world, cvar("g_balance_crylink_force"), IT_CRYLINK);
37         //te_smallflash(self.origin);
38         if (other.takedamage == DAMAGE_AIM)
39         {
40                 remove (self);
41                 return;
42         }
43         self.owner = world;
44         self.touch = SUB_Null;
45         setmodel (self, "models/plasma.mdl");
46         setsize (self, '0 0 0', '0 0 0');
47         self.gravity = 1;
48         self.glow_size = 0;
49         self.glow_color = 0;
50         self.think = SUB_Remove;
51         self.movetype = MOVETYPE_NONE;
52         self.effects = EF_LOWPRECISION;
53         SUB_SetFade(self, time, 1);
54         //remove (self);
55 }
56
57 void W_Crylink_Attack (void)
58 {
59         local float counter, shots;
60         local vector org;
61         local entity proj;
62
63         sound (self, CHAN_WEAPON, "weapons/crylink.wav", 1, ATTN_NORM);
64         self.ammo_cells = self.ammo_cells - 1;
65         self.punchangle_x = -2;
66         org = self.origin + self.view_ofs + v_forward * 10 + v_right * 5 + v_up * -14;
67         te_smallflash(org);
68
69         shots = cvar("g_balance_crylink_shots");
70         if (!shots)
71                 shots = 5;
72         while (counter < shots)
73         {
74                 proj = spawn ();
75                 proj.realowner = proj.owner = self;
76                 proj.classname = "spike";
77
78                 proj.movetype = MOVETYPE_BOUNCE;
79                 proj.solid = SOLID_BBOX;
80                 proj.gravity = 0.001;
81
82                 setmodel (proj, "models/plasmatrail.mdl");
83                 setsize (proj, '0 0 0', '0 0 0');
84                 setorigin (proj, org);
85
86                 if (self.button3)
87                         proj.velocity = (v_forward + ((counter / shots) * 2 - 1) * v_right * cvar("g_balance_crylink_spread")) * cvar("g_balance_crylink_speed");
88                 else
89                         proj.velocity = (v_forward + randomvec() * cvar("g_balance_crylink_spread")) * cvar("g_balance_crylink_speed");
90                 proj.touch = W_Crylink_Touch;
91                 proj.think = SUB_Remove;
92                 proj.nextthink = time + 9;
93
94                 proj.angles = vectoangles (proj.velocity);
95
96                 //proj.glow_size = 20;
97
98                 proj.effects = proj.effects | EF_FULLBRIGHT;
99                 //proj.effects = proj.effects | EF_ADDITIVE;
100                 proj.effects = proj.effects | EF_LOWPRECISION;
101                 counter = counter + 1;
102         }
103 }
104
105
106 // weapon frames
107 void()  crylink_ready_01 =      {weapon_thinkf(WFRAME_IDLE, 0.1, crylink_ready_01); self.weaponentity.state = WS_READY;};
108 void()  crylink_select_01 =     {weapon_thinkf(-1, cvar("g_balance_weaponswitchdelay"), w_ready); weapon_boblayer1(PLAYER_WEAPONSELECTION_SPEED, '0 0 0');};
109 void()  crylink_deselect_01 =   {weapon_thinkf(-1, cvar("g_balance_weaponswitchdelay"), w_clear); weapon_boblayer1(PLAYER_WEAPONSELECTION_SPEED, PLAYER_WEAPONSELECTION_RANGE);};
110 void()  crylink_fire1_01 =
111 {
112         weapon_doattack(crylink_check, crylink_check, W_Crylink_Attack);
113         weapon_thinkf(WFRAME_FIRE1, 0.15, crylink_ready_01);
114 };
115