home *** CD-ROM | disk | FTP | other *** search
/ Quaaake Level & Editor 2 / Quaaake_2.iso / Quake / freeze / WEAPONS.QC < prev    next >
Encoding:
Text File  |  1996-09-23  |  27.3 KB  |  1,331 lines

  1. /*
  2.  
  3. Freeze Gun By Simon Francis,
  4. sj-franc@csm.uwe.ac.uk (probably)
  5. 20/9/96
  6.  
  7. */
  8. void (entity targ, entity inflictor, entity attacker, float damage) T_Damage;
  9. void () player_run;
  10. void(entity bomb, entity attacker, float rad, entity ignore) T_RadiusDamage;
  11. void(vector org, vector vel, float damage) SpawnBlood;
  12. void() SuperDamageSound;
  13.  
  14. // called by worldspawn
  15. void() W_Precache =
  16. {
  17.     precache_sound ("weapons/r_exp3.wav");  // new rocket explosion
  18.     precache_sound ("weapons/rocket1i.wav");        // spike gun
  19.     precache_sound ("weapons/sgun1.wav");
  20.     precache_sound ("weapons/guncock.wav"); // player shotgun
  21.     precache_sound ("weapons/ric1.wav");    // ricochet (used in c code)
  22.     precache_sound ("weapons/ric2.wav");    // ricochet (used in c code)
  23.     precache_sound ("weapons/ric3.wav");    // ricochet (used in c code)
  24.     precache_sound ("weapons/spike2.wav");  // super spikes
  25.     precache_sound ("weapons/tink1.wav");   // spikes tink (used in c code)
  26.     precache_sound ("weapons/grenade.wav"); // grenade launcher
  27.     precache_sound ("weapons/bounce.wav");          // grenade bounce
  28.     precache_sound ("weapons/shotgn2.wav"); // super shotgun
  29.     precache_sound ("f_hit.wav");  // freeze hit monster
  30.     precache_sound ("f_fired.wav");  // freeze gun fired
  31. };
  32.  
  33. float() crandom =
  34. {
  35.     return 2*(random() - 0.5);
  36. };
  37.  
  38. /*
  39. ================
  40. W_FireAxe
  41. ================
  42. */
  43. void() W_FireAxe =
  44. {
  45.     local   vector  source;
  46.     local   vector  org;
  47.  
  48.     source = self.origin + '0 0 16';
  49.     traceline (source, source + v_forward*64, FALSE, self);
  50.     if (trace_fraction == 1.0)
  51.         return;
  52.     
  53.     org = trace_endpos - v_forward*4;
  54.  
  55.     if (trace_ent.takedamage)
  56.     {
  57.         trace_ent.axhitme = 1;
  58.         SpawnBlood (org, '0 0 0', 20);
  59.         T_Damage (trace_ent, self, self, 20);
  60.     }
  61.     else
  62.     {       // hit wall
  63.         sound (self, CHAN_WEAPON, "player/axhit2.wav", 1, ATTN_NORM);
  64.         WriteByte (MSG_BROADCAST, SVC_TEMPENTITY);
  65.         WriteByte (MSG_BROADCAST, TE_GUNSHOT);
  66.         WriteCoord (MSG_BROADCAST, org_x);
  67.         WriteCoord (MSG_BROADCAST, org_y);
  68.         WriteCoord (MSG_BROADCAST, org_z);
  69.     }
  70. };
  71.  
  72.  
  73. //============================================================================
  74.  
  75.  
  76. vector() wall_velocity =
  77. {
  78.     local vector    vel;
  79.     
  80.     vel = normalize (self.velocity);
  81.     vel = normalize(vel + v_up*(random()- 0.5) + v_right*(random()- 0.5));
  82.     vel = vel + 2*trace_plane_normal;
  83.     vel = vel * 200;
  84.     
  85.     return vel;
  86. };
  87.  
  88.  
  89. /*
  90. ================
  91. SpawnMeatSpray
  92. ================
  93. */
  94. void(vector org, vector vel) SpawnMeatSpray =
  95. {
  96.     local   entity missile, mpuff;
  97.     local   vector  org;
  98.  
  99.     missile = spawn ();
  100.     missile.owner = self;
  101.     missile.movetype = MOVETYPE_BOUNCE;
  102.     missile.solid = SOLID_NOT;
  103.  
  104.     makevectors (self.angles);
  105.  
  106.     missile.velocity = vel;
  107.     missile.velocity_z = missile.velocity_z + 250 + 50*random();
  108.  
  109.     missile.avelocity = '3000 1000 2000';
  110.     
  111. // set missile duration
  112.     missile.nextthink = time + 1;
  113.     missile.think = SUB_Remove;
  114.  
  115.     setmodel (missile, "progs/zom_gib.mdl");
  116.     setsize (missile, '0 0 0', '0 0 0');            
  117.     setorigin (missile, org);
  118. };
  119.  
  120. /*
  121. ================
  122. SpawnBlood
  123. ================
  124. */
  125. void(vector org, vector vel, float damage) SpawnBlood =
  126. {
  127.     particle (org, vel*0.1, 73, damage*2);
  128. };
  129.  
  130. /*
  131. ================
  132. spawn_touchblood
  133. ================
  134. */
  135. void(float damage) spawn_touchblood =
  136. {
  137.     local vector    vel;
  138.  
  139.     vel = wall_velocity () * 0.2;
  140.     SpawnBlood (self.origin + vel*0.01, vel, damage);
  141. };
  142.  
  143.  
  144. /*
  145. ================
  146. SpawnChunk
  147. ================
  148. */
  149. void(vector org, vector vel) SpawnChunk =
  150. {
  151.     particle (org, vel*0.02, 0, 10);
  152. };
  153.  
  154. /*
  155. ==============================================================================
  156.  
  157. MULTI-DAMAGE
  158.  
  159. Collects multiple small damages into a single damage
  160.  
  161. ==============================================================================
  162. */
  163.  
  164. entity  multi_ent;
  165. float   multi_damage;
  166.  
  167. void() ClearMultiDamage =
  168. {
  169.     multi_ent = world;
  170.     multi_damage = 0;
  171. };
  172.  
  173. void() ApplyMultiDamage =
  174. {
  175.     if (!multi_ent)
  176.         return;
  177.     T_Damage (multi_ent, self, self, multi_damage);
  178. };
  179.  
  180. void(entity hit, float damage) AddMultiDamage =
  181. {
  182.     if (!hit)
  183.         return;
  184.     
  185.     if (hit != multi_ent)
  186.     {
  187.         ApplyMultiDamage ();
  188.         multi_damage = damage;
  189.         multi_ent = hit;
  190.     }
  191.     else
  192.         multi_damage = multi_damage + damage;
  193. };
  194.  
  195. /*
  196. ==============================================================================
  197.  
  198. BULLETS
  199.  
  200. ==============================================================================
  201. */
  202.  
  203. /*
  204. ================
  205. TraceAttack
  206. ================
  207. */
  208. void(float damage, vector dir) TraceAttack =
  209. {
  210.     local   vector  vel, org;
  211.     
  212.     vel = normalize(dir + v_up*crandom() + v_right*crandom());
  213.     vel = vel + 2*trace_plane_normal;
  214.     vel = vel * 200;
  215.  
  216.     org = trace_endpos - dir*4;
  217.  
  218.     if (trace_ent.takedamage)
  219.     {
  220.         SpawnBlood (org, vel*0.2, damage);
  221.         AddMultiDamage (trace_ent, damage);
  222.     }
  223.     else
  224.     {
  225.         WriteByte (MSG_BROADCAST, SVC_TEMPENTITY);
  226.         WriteByte (MSG_BROADCAST, TE_GUNSHOT);
  227.         WriteCoord (MSG_BROADCAST, org_x);
  228.         WriteCoord (MSG_BROADCAST, org_y);
  229.         WriteCoord (MSG_BROADCAST, org_z);
  230.     }
  231. };
  232.  
  233. /*
  234. ================
  235. FireBullets
  236.  
  237. Used by shotgun, super shotgun, and enemy soldier firing
  238. Go to the trouble of combining multiple pellets into a single damage call.
  239. ================
  240. */
  241. void(float shotcount, vector dir, vector spread) FireBullets =
  242. {
  243.     local   vector direction;
  244.     local   vector  src;
  245.     
  246.     makevectors(self.v_angle);
  247.  
  248.     src = self.origin + v_forward*10;
  249.     src_z = self.absmin_z + self.size_z * 0.7;
  250.  
  251.     ClearMultiDamage ();
  252.     while (shotcount > 0)
  253.     {
  254.         direction = dir + crandom()*spread_x*v_right + crandom()*spread_y*v_up;
  255.  
  256.         traceline (src, src + direction*2048, FALSE, self);
  257.         if (trace_fraction != 1.0)
  258.             TraceAttack (4, direction);
  259.  
  260.         shotcount = shotcount - 1;
  261.     }
  262.     ApplyMultiDamage ();
  263. };
  264.  
  265. /*
  266. ================
  267. W_FireShotgun
  268. ================
  269. */
  270. void() W_FireShotgun =
  271. {
  272.     local vector dir;
  273.  
  274.     sound (self, CHAN_WEAPON, "weapons/guncock.wav", 1, ATTN_NORM); 
  275.  
  276.     self.punchangle_x = -2;
  277.     
  278.     self.currentammo = self.ammo_shells = self.ammo_shells - 1;
  279.     dir = aim (self, 100000);
  280.     FireBullets (6, dir, '0.04 0.04 0');
  281. };
  282.  
  283.  
  284. /*
  285. ================
  286. W_FireSuperShotgun
  287. ================
  288. */
  289. void() W_FireSuperShotgun =
  290. {
  291.     local vector dir;
  292.  
  293.     if (self.currentammo == 1)
  294.     {
  295.         W_FireShotgun ();
  296.         return;
  297.     }
  298.         
  299.     sound (self ,CHAN_WEAPON, "weapons/shotgn2.wav", 1, ATTN_NORM); 
  300.  
  301.     self.punchangle_x = -4;
  302.     
  303.     self.currentammo = self.ammo_shells = self.ammo_shells - 2;
  304.     dir = aim (self, 100000);
  305.     FireBullets (14, dir, '0.14 0.08 0');
  306. };
  307.  
  308.  
  309.  
  310.  
  311.  
  312.  
  313. /*
  314. ==============================================================================
  315.  
  316. ROCKETS
  317.  
  318. ==============================================================================
  319. */
  320.  
  321. void()  s_explode1      =       [0,             s_explode2] {};
  322. void()  s_explode2      =       [1,             s_explode3] {};
  323. void()  s_explode3      =       [2,             s_explode4] {};
  324. void()  s_explode4      =       [3,             s_explode5] {};
  325. void()  s_explode5      =       [4,             s_explode6] {};
  326. void()  s_explode6      =       [5,             SUB_Remove] {};
  327.  
  328. void() BecomeExplosion =
  329. {
  330.     self.movetype = MOVETYPE_NONE;
  331.     self.velocity = '0 0 0';
  332.     self.touch = SUB_Null;
  333.     setmodel (self, "progs/s_explod.spr");
  334.     self.solid = SOLID_NOT;
  335.     s_explode1 ();
  336. };
  337.  
  338. void() T_MissileTouch =
  339. {
  340.     local float     damg;
  341.  
  342.     if (other == self.owner)
  343.         return;         // don't explode on owner
  344.  
  345.     if (pointcontents(self.origin) == CONTENT_SKY)
  346.     {
  347.         remove(self);
  348.         return;
  349.     }
  350.  
  351.     damg = 100 + random()*20;
  352.     
  353.     if (other.health)
  354.     {
  355.         if (other.classname == "monster_shambler")
  356.             damg = damg * 0.5;      // mostly immune
  357.         T_Damage (other, self, self.owner, damg );
  358.     }
  359.  
  360.     // don't do radius damage to the other, because all the damage
  361.     // was done in the impact
  362.     T_RadiusDamage (self, self.owner, 120, other);
  363.  
  364. //      sound (self, CHAN_WEAPON, "weapons/r_exp3.wav", 1, ATTN_NORM);
  365.     self.origin = self.origin - 8*normalize(self.velocity);
  366.  
  367.     WriteByte (MSG_BROADCAST, SVC_TEMPENTITY);
  368.     WriteByte (MSG_BROADCAST, TE_EXPLOSION);
  369.     WriteCoord (MSG_BROADCAST, self.origin_x);
  370.     WriteCoord (MSG_BROADCAST, self.origin_y);
  371.     WriteCoord (MSG_BROADCAST, self.origin_z);
  372.  
  373.     BecomeExplosion ();
  374. };
  375.  
  376.  
  377.  
  378. /*
  379. ================
  380. W_FireRocket
  381. ================
  382. */
  383. void() W_FireRocket =
  384. {
  385.     local   entity missile, mpuff;
  386.     
  387.     self.currentammo = self.ammo_rockets = self.ammo_rockets - 1;
  388.     
  389.     sound (self, CHAN_WEAPON, "weapons/sgun1.wav", 1, ATTN_NORM);
  390.  
  391.     self.punchangle_x = -2;
  392.  
  393.     missile = spawn ();
  394.     missile.owner = self;
  395.     missile.movetype = MOVETYPE_FLYMISSILE;
  396.     missile.solid = SOLID_BBOX;
  397.         
  398. // set missile speed    
  399.  
  400.     makevectors (self.v_angle);
  401.     missile.velocity = aim(self, 1000);
  402.     missile.velocity = missile.velocity * 1000;
  403.     missile.angles = vectoangles(missile.velocity);
  404.     
  405.     missile.touch = T_MissileTouch;
  406.     
  407. // set missile duration
  408.     missile.nextthink = time + 5;
  409.     missile.think = SUB_Remove;
  410.  
  411.     setmodel (missile, "progs/missile.mdl");
  412.     setsize (missile, '0 0 0', '0 0 0');            
  413.     setorigin (missile, self.origin + v_forward*8 + '0 0 16');
  414. };
  415.  
  416. /*
  417. =============================================================================
  418.  
  419. Freeze Gun
  420.  
  421. ==============================================================================
  422. */
  423.  
  424. void() T_FreezeTouch =
  425. {       
  426.     if (other == self.owner)
  427.         return;         // don't hit owner
  428.  
  429.     self.effects = self.effects | EF_BRIGHTFIELD; // flashy lights as it hits
  430.     if (pointcontents(self.origin) == CONTENT_SKY)
  431.     {
  432.         remove(self);
  433.         return;
  434.     }
  435.  
  436.     if (other.health)
  437.     {
  438.         if (other.classname != "player")
  439.         {
  440.             other.nextthink = time + 10; // set 10 second delay for next 'thought'
  441.             other.effects = other.effects | EF_MUZZLEFLASH;
  442.         }
  443.     
  444.         sound (self, CHAN_WEAPON, "f_hit.wav", 1, ATTN_NORM);
  445.     }
  446.  
  447.     self.origin = self.origin - 8*normalize(self.velocity);
  448.  
  449.  
  450.     BecomeExplosion ();
  451. };
  452.  
  453.  
  454.  
  455. // copied from W_FireRocket
  456.  
  457. void() W_FireFreeze =
  458. {
  459.     local   entity missile, mpuff;
  460.     
  461.     self.currentammo = self.ammo_rockets = self.ammo_rockets - 1;
  462.     
  463.     sound (self, CHAN_WEAPON, "f_fired.wav", 1, ATTN_NORM);
  464.  
  465.     self.punchangle_x = -2;
  466.  
  467.     missile = spawn ();
  468.     missile.owner = self;
  469.     missile.movetype = MOVETYPE_FLYMISSILE;
  470.     missile.solid = SOLID_BBOX;
  471.  
  472. // set missile speed    
  473.  
  474.     makevectors (self.v_angle);
  475.     missile.velocity = aim(self, 1000);
  476.     missile.velocity = missile.velocity * 1000;
  477.     missile.angles = vectoangles(missile.velocity);
  478.     
  479.     missile.touch = T_FreezeTouch;
  480.     
  481. // set missile duration
  482.     missile.nextthink = time + 5;
  483.     missile.think = SUB_Remove;
  484.  
  485.     setmodel (missile, "progs/f_shot.mdl");
  486.     setsize (missile, '0 0 0', '0 0 0');            
  487.     setorigin (missile, self.origin + v_forward*8 + '0 0 16');
  488. };
  489.  
  490.  
  491.  
  492. /*
  493. ===============================================================================
  494.  
  495. LIGHTNING
  496.  
  497. ===============================================================================
  498. */
  499.  
  500. /*
  501. =================
  502. LightningDamage
  503. =================
  504. */
  505. void(vector p1, vector p2, entity from, float damage) LightningDamage =
  506. {
  507.     local entity            e1, e2;
  508.     local vector            f;
  509.     
  510.     f = p2 - p1;
  511.     normalize (f);
  512.     f_x = 0 - f_y;
  513.     f_y = f_x;
  514.     f_z = 0;
  515.     f = f*16;
  516.  
  517.     e1 = e2 = world;
  518.  
  519.     traceline (p1, p2, FALSE, self);
  520.     if (trace_ent.takedamage)
  521.     {
  522.         particle (trace_endpos, '0 0 100', 225, damage*4);
  523.         T_Damage (trace_ent, from, from, damage);
  524.         if (self.classname == "player")
  525.         {
  526.             if (other.classname == "player")
  527.                 trace_ent.velocity_z = trace_ent.velocity_z + 400;
  528.         }
  529.     }
  530.     e1 = trace_ent;
  531.  
  532.     traceline (p1 + f, p2 + f, FALSE, self);
  533.     if (trace_ent != e1 && trace_ent.takedamage)
  534.     {
  535.         particle (trace_endpos, '0 0 100', 225, damage*4);
  536.         T_Damage (trace_ent, from, from, damage);
  537.     }
  538.     e2 = trace_ent;
  539.  
  540.     traceline (p1 - f, p2 - f, FALSE, self);
  541.     if (trace_ent != e1 && trace_ent != e2 && trace_ent.takedamage)
  542.     {
  543.         particle (trace_endpos, '0 0 100', 225, damage*4);
  544.         T_Damage (trace_ent, from, from, damage);
  545.     }
  546. };
  547.  
  548.  
  549. void() W_FireLightning =
  550. {
  551.     local   vector          org;
  552.  
  553.     if (self.ammo_cells < 1)
  554.     {
  555.         self.weapon = W_BestWeapon ();
  556.         W_SetCurrentAmmo ();
  557.         return;
  558.     }
  559.  
  560. // explode if under water
  561.     if (self.waterlevel > 1)
  562.     {
  563.         T_RadiusDamage (self, self, 35*self.ammo_cells, world);
  564.         self.ammo_cells = 0;
  565.         W_SetCurrentAmmo ();
  566.         return;
  567.     }
  568.  
  569.     if (self.t_width < time)
  570.     {
  571.         sound (self, CHAN_WEAPON, "weapons/lhit.wav", 1, ATTN_NORM);
  572.         self.t_width = time + 0.6;
  573.     }
  574.     self.punchangle_x = -2;
  575.  
  576.     self.currentammo = self.ammo_cells = self.ammo_cells - 1;
  577.  
  578.     org = self.origin + '0 0 16';
  579.     
  580.     traceline (org, org + v_forward*600, TRUE, self);
  581.  
  582.     WriteByte (MSG_BROADCAST, SVC_TEMPENTITY);
  583.     WriteByte (MSG_BROADCAST, TE_LIGHTNING2);
  584.     WriteEntity (MSG_BROADCAST, self);
  585.     WriteCoord (MSG_BROADCAST, org_x);
  586.     WriteCoord (MSG_BROADCAST, org_y);
  587.     WriteCoord (MSG_BROADCAST, org_z);
  588.     WriteCoord (MSG_BROADCAST, trace_endpos_x);
  589.     WriteCoord (MSG_BROADCAST, trace_endpos_y);
  590.     WriteCoord (MSG_BROADCAST, trace_endpos_z);
  591.  
  592.     LightningDamage (self.origin, trace_endpos + v_forward*4, self, 30);
  593. };
  594.  
  595.  
  596. //=============================================================================
  597.  
  598.  
  599. void() GrenadeExplode =
  600. {
  601.     T_RadiusDamage (self, self.owner, 120, world);
  602.  
  603.     WriteByte (MSG_BROADCAST, SVC_TEMPENTITY);
  604.     WriteByte (MSG_BROADCAST, TE_EXPLOSION);
  605.     WriteCoord (MSG_BROADCAST, self.origin_x);
  606.     WriteCoord (MSG_BROADCAST, self.origin_y);
  607.     WriteCoord (MSG_BROADCAST, self.origin_z);
  608.  
  609.     BecomeExplosion ();
  610. };
  611.  
  612. void() GrenadeTouch =
  613. {
  614.     if (other == self.owner)
  615.         return;         // don't explode on owner
  616.     if (other.takedamage == DAMAGE_AIM)
  617.     {
  618.         GrenadeExplode();
  619.         return;
  620.     }
  621.     sound (self, CHAN_WEAPON, "weapons/bounce.wav", 1, ATTN_NORM);  // bounce sound
  622.     if (self.velocity == '0 0 0')
  623.         self.avelocity = '0 0 0';
  624. };
  625.  
  626. /*
  627. ================
  628. W_FireGrenade
  629. ================
  630. */
  631. void() W_FireGrenade =
  632. {
  633.     local   entity missile, mpuff;
  634.     
  635.     self.currentammo = self.ammo_rockets = self.ammo_rockets - 1;
  636.     
  637.     sound (self, CHAN_WEAPON, "weapons/grenade.wav", 1, ATTN_NORM);
  638.  
  639.     self.punchangle_x = -2;
  640.  
  641.     missile = spawn ();
  642.     missile.owner = self;
  643.     missile.movetype = MOVETYPE_BOUNCE;
  644.     missile.solid = SOLID_BBOX;
  645.     missile.classname = "grenade";
  646.         
  647. // set missile speed    
  648.  
  649.     makevectors (self.v_angle);
  650.  
  651.     if (self.v_angle_x)
  652.         missile.velocity = v_forward*600 + v_up * 200 + crandom()*v_right*10 + crandom()*v_up*10;
  653.     else
  654.     {
  655.         missile.velocity = aim(self, 10000);
  656.         missile.velocity = missile.velocity * 600;
  657.         missile.velocity_z = 200;
  658.     }
  659.  
  660.     missile.avelocity = '300 300 300';
  661.  
  662.     missile.angles = vectoangles(missile.velocity);
  663.     
  664.     missile.touch = GrenadeTouch;
  665.     
  666. // set missile duration
  667.     missile.nextthink = time + 2.5;
  668.     missile.think = GrenadeExplode;
  669.  
  670.     setmodel (missile, "progs/grenade.mdl");
  671.     setsize (missile, '0 0 0', '0 0 0');            
  672.     setorigin (missile, self.origin);
  673. };
  674.  
  675.  
  676. //=============================================================================
  677.  
  678. void() spike_touch;
  679. void() superspike_touch;
  680.  
  681.  
  682. /*
  683. ===============
  684. launch_spike
  685.  
  686. Used for both the player and the ogre
  687. ===============
  688. */
  689. void(vector org, vector dir) launch_spike =
  690. {
  691.     newmis = spawn ();
  692.     newmis.owner = self;
  693.     newmis.movetype = MOVETYPE_FLYMISSILE;
  694.     newmis.solid = SOLID_BBOX;
  695.  
  696.     newmis.angles = vectoangles(dir);
  697.     
  698.     newmis.touch = spike_touch;
  699.     newmis.classname = "spike";
  700.     newmis.think = SUB_Remove;
  701.     newmis.nextthink = time + 6;
  702.     setmodel (newmis, "progs/spike.mdl");
  703.     setsize (newmis, VEC_ORIGIN, VEC_ORIGIN);               
  704.     setorigin (newmis, org);
  705.  
  706.     newmis.velocity = dir * 1000;
  707. };
  708.  
  709. void() W_FireSuperSpikes =
  710. {
  711.     local vector    dir;
  712.     local entity    old;
  713.     
  714.     sound (self, CHAN_WEAPON, "weapons/spike2.wav", 1, ATTN_NORM);
  715.     self.attack_finished = time + 0.2;
  716.     self.currentammo = self.ammo_nails = self.ammo_nails - 2;
  717.     dir = aim (self, 1000);
  718.     launch_spike (self.origin + '0 0 16', dir);
  719.     newmis.touch = superspike_touch;
  720.     setmodel (newmis, "progs/s_spike.mdl");
  721.     setsize (newmis, VEC_ORIGIN, VEC_ORIGIN);               
  722.     self.punchangle_x = -2;
  723. };
  724.  
  725. void(float ox) W_FireSpikes =
  726. {
  727.     local vector    dir;
  728.     local entity    old;
  729.     
  730.     makevectors (self.v_angle);
  731.     
  732.     if (self.ammo_nails >= 2 && self.weapon == IT_SUPER_NAILGUN)
  733.     {
  734.         W_FireSuperSpikes ();
  735.         return;
  736.     }
  737.  
  738.     if (self.ammo_nails < 1)
  739.     {
  740.         self.weapon = W_BestWeapon ();
  741.         W_SetCurrentAmmo ();
  742.         return;
  743.     }
  744.  
  745.     sound (self, CHAN_WEAPON, "weapons/rocket1i.wav", 1, ATTN_NORM);
  746.     self.attack_finished = time + 0.2;
  747.     self.currentammo = self.ammo_nails = self.ammo_nails - 1;
  748.     dir = aim (self, 1000);
  749.     launch_spike (self.origin + '0 0 16' + v_right*ox, dir);
  750.  
  751.     self.punchangle_x = -2;
  752. };
  753.  
  754.  
  755.  
  756. .float hit_z;
  757. void() spike_touch =
  758. {
  759. local float rand;
  760.     if (other == self.owner)
  761.         return;
  762.  
  763.     if (other.solid == SOLID_TRIGGER)
  764.         return; // trigger field, do nothing
  765.  
  766.     if (pointcontents(self.origin) == CONTENT_SKY)
  767.     {
  768.         remove(self);
  769.         return;
  770.     }
  771.     
  772. // hit something that bleeds
  773.     if (other.takedamage)
  774.     {
  775.         spawn_touchblood (9);
  776.         T_Damage (other, self, self.owner, 9);
  777.     }
  778.     else
  779.     {
  780.         WriteByte (MSG_BROADCAST, SVC_TEMPENTITY);
  781.         
  782.         if (self.classname == "wizspike")
  783.             WriteByte (MSG_BROADCAST, TE_WIZSPIKE);
  784.         else if (self.classname == "knightspike")
  785.             WriteByte (MSG_BROADCAST, TE_KNIGHTSPIKE);
  786.         else
  787.             WriteByte (MSG_BROADCAST, TE_SPIKE);
  788.         WriteCoord (MSG_BROADCAST, self.origin_x);
  789.         WriteCoord (MSG_BROADCAST, self.origin_y);
  790.         WriteCoord (MSG_BROADCAST, self.origin_z);
  791.     }
  792.  
  793.     remove(self);
  794.  
  795. };
  796.  
  797. void() superspike_touch =
  798. {
  799. local float rand;
  800.     if (other == self.owner)
  801.         return;
  802.  
  803.     if (other.solid == SOLID_TRIGGER)
  804.         return; // trigger field, do nothing
  805.  
  806.     if (pointcontents(self.origin) == CONTENT_SKY)
  807.     {
  808.         remove(self);
  809.         return;
  810.     }
  811.     
  812. // hit something that bleeds
  813.     if (other.takedamage)
  814.     {
  815.         spawn_touchblood (18);
  816.         T_Damage (other, self, self.owner, 18);
  817.     }
  818.     else
  819.     {
  820.         WriteByte (MSG_BROADCAST, SVC_TEMPENTITY);
  821.         WriteByte (MSG_BROADCAST, TE_SUPERSPIKE);
  822.         WriteCoord (MSG_BROADCAST, self.origin_x);
  823.         WriteCoord (MSG_BROADCAST, self.origin_y);
  824.         WriteCoord (MSG_BROADCAST, self.origin_z);
  825.     }
  826.  
  827.     remove(self);
  828.  
  829. };
  830.  
  831.  
  832. /*
  833. ===============================================================================
  834.  
  835. PLAYER WEAPON USE
  836.  
  837. ===============================================================================
  838. */
  839.  
  840. void() W_SetCurrentAmmo =
  841. {
  842.     player_run ();          // get out of any weapon firing states
  843.  
  844.     self.items = self.items - ( self.items & (IT_SHELLS | IT_NAILS | IT_ROCKETS | IT_CELLS) );
  845.     
  846.     if (self.weapon == IT_AXE)
  847.     {
  848.         self.currentammo = 0;
  849.         self.weaponmodel = "progs/v_axe.mdl";
  850.         self.weaponframe = 0;
  851.     }
  852.     else if (self.weapon == IT_SHOTGUN)
  853.     {
  854.         self.currentammo = self.ammo_shells;
  855.         self.weaponmodel = "progs/v_shot.mdl";
  856.         self.weaponframe = 0;
  857.         self.items = self.items | IT_SHELLS;
  858.     }
  859.     else if (self.weapon == IT_SUPER_SHOTGUN)
  860.     {
  861.         self.currentammo = self.ammo_shells;
  862.         self.weaponmodel = "progs/v_shot2.mdl";
  863.         self.weaponframe = 0;
  864.         self.items = self.items | IT_SHELLS;
  865.     }
  866.     else if (self.weapon == IT_NAILGUN)
  867.     {
  868.         self.currentammo = self.ammo_nails;
  869.         self.weaponmodel = "progs/v_nail.mdl";
  870.         self.weaponframe = 0;
  871.         self.items = self.items | IT_NAILS;
  872.     }
  873.     else if (self.weapon == IT_SUPER_NAILGUN)
  874.     {
  875.         self.currentammo = self.ammo_nails;
  876.         self.weaponmodel = "progs/v_nail2.mdl";
  877.         self.weaponframe = 0;
  878.         self.items = self.items | IT_NAILS;
  879.     }
  880.     else if (self.weapon == IT_GRENADE_LAUNCHER)
  881.     {
  882.         self.currentammo = self.ammo_rockets;
  883.         self.weaponmodel = "progs/v_rock.mdl";
  884.         self.weaponframe = 0;
  885.         self.items = self.items | IT_ROCKETS;
  886.     }
  887.     else if (self.weapon == IT_FREEZE_GUN)
  888.     {
  889.         self.currentammo = self.ammo_rockets;
  890.         self.weaponmodel = "progs/v_freeze.mdl";
  891.         self.weaponframe = 0;
  892.         self.items = self.items | IT_ROCKETS;
  893.     }
  894.     else if (self.weapon == IT_ROCKET_LAUNCHER)
  895.     {
  896.         self.currentammo = self.ammo_rockets;
  897.         self.weaponmodel = "progs/v_rock2.mdl";
  898.         self.weaponframe = 0;
  899.         self.items = self.items | IT_ROCKETS;
  900.     }
  901.     else if (self.weapon == IT_LIGHTNING)
  902.     {
  903.         self.currentammo = self.ammo_cells;
  904.         self.weaponmodel = "progs/v_light.mdl";
  905.         self.weaponframe = 0;
  906.         self.items = self.items | IT_CELLS;
  907.     }
  908.     else
  909.     {
  910.         self.currentammo = 0;
  911.         self.weaponmodel = "";
  912.         self.weaponframe = 0;
  913.     }
  914. };
  915.  
  916. float() W_BestWeapon =
  917. {
  918.     local   float   it;
  919.     
  920.     it = self.items;
  921.  
  922.     if(self.ammo_cells >= 1 && (it & IT_LIGHTNING) )
  923.         return IT_LIGHTNING;
  924.     else if(self.ammo_nails >= 2 && (it & IT_SUPER_NAILGUN) )
  925.         return IT_SUPER_NAILGUN;
  926.     else if(self.ammo_shells >= 2 && (it & IT_SUPER_SHOTGUN) )
  927.         return IT_SUPER_SHOTGUN;
  928.     else if(self.ammo_nails >= 1 && (it & IT_NAILGUN) )
  929.         return IT_NAILGUN;
  930.     else if(self.ammo_shells >= 1 && (it & IT_SHOTGUN) )
  931.         return IT_SHOTGUN;
  932.         
  933. /*
  934.     if(self.ammo_rockets >= 1 && (it & IT_ROCKET_LAUNCHER) )
  935.         return IT_ROCKET_LAUNCHER;
  936.     else if(self.ammo_rockets >= 1 && (it & IT_GRENADE_LAUNCHER) )
  937.         return IT_GRENADE_LAUNCHER;
  938.  
  939. */
  940.  
  941.     return IT_AXE;
  942. };
  943.  
  944. float() W_CheckNoAmmo =
  945. {
  946.     if (self.currentammo > 0)
  947.         return TRUE;
  948.  
  949.     if (self.weapon == IT_AXE)
  950.         return TRUE;
  951.     
  952.     self.weapon = W_BestWeapon ();
  953.  
  954.     W_SetCurrentAmmo ();
  955.     
  956. // drop the weapon down
  957.     return FALSE;
  958. };
  959.  
  960. /*
  961. ============
  962. W_Attack
  963.  
  964. An attack impulse can be triggered now
  965. ============
  966. */
  967. void()  player_axe1;
  968. void()  player_axeb1;
  969. void()  player_axec1;
  970. void()  player_axed1;
  971. void()  player_shot1;
  972. void()  player_nail1;
  973. void()  player_light1;
  974. void()  player_rocket1;
  975.  
  976. void() W_Attack =
  977. {
  978.     local   float   r;
  979.  
  980.     if (!W_CheckNoAmmo ())
  981.         return;
  982.  
  983.     makevectors     (self.v_angle);                 // calculate forward angle for velocity
  984.     self.show_hostile = time + 1;   // wake monsters up
  985.  
  986.     if (self.weapon == IT_AXE)
  987.     {
  988.         sound (self, CHAN_WEAPON, "weapons/ax1.wav", 1, ATTN_NORM);
  989.         r = random();
  990.         if (r < 0.25)
  991.             player_axe1 ();
  992.         else if (r<0.5)
  993.             player_axeb1 ();
  994.         else if (r<0.75)
  995.             player_axec1 ();
  996.         else
  997.             player_axed1 ();
  998.         self.attack_finished = time + 0.5;
  999.     }
  1000.     else if (self.weapon == IT_SHOTGUN)
  1001.     {
  1002.         player_shot1 ();
  1003.         W_FireShotgun ();
  1004.         self.attack_finished = time + 0.5;
  1005.     }
  1006.     else if (self.weapon == IT_SUPER_SHOTGUN)
  1007.     {
  1008.         player_shot1 ();
  1009.         W_FireSuperShotgun ();
  1010.         self.attack_finished = time + 0.7;
  1011.     }
  1012.     else if (self.weapon == IT_NAILGUN)
  1013.     {
  1014.         player_nail1 ();
  1015.     }
  1016.     else if (self.weapon == IT_SUPER_NAILGUN)
  1017.     {
  1018.         player_nail1 ();
  1019.     }
  1020.     else if (self.weapon == IT_GRENADE_LAUNCHER)
  1021.     {
  1022.         player_rocket1();
  1023.         W_FireGrenade();
  1024.         self.attack_finished = time + 0.6;
  1025.     }
  1026.     else if (self.weapon == IT_FREEZE_GUN)
  1027.     {
  1028.         player_rocket1();
  1029.         W_FireFreeze();
  1030.         self.attack_finished = time + 1;
  1031.     }
  1032.     else if (self.weapon == IT_ROCKET_LAUNCHER)
  1033.     {
  1034.         player_rocket1();
  1035.         W_FireRocket();
  1036.         self.attack_finished = time + 0.8;
  1037.     }
  1038.     else if (self.weapon == IT_LIGHTNING)
  1039.     {
  1040.         player_light1();
  1041.         self.attack_finished = time + 0.1;
  1042.         sound (self, CHAN_AUTO, "weapons/lstart.wav", 1, ATTN_NORM);
  1043.     }
  1044. };
  1045.  
  1046. /*
  1047. ============
  1048. W_ChangeWeapon
  1049.  
  1050. ============
  1051. */
  1052. void() W_ChangeWeapon =
  1053. {
  1054.     local   float   it, am, fl;
  1055.     
  1056.     it = self.items;
  1057.     am = 0;
  1058.     
  1059.     if (self.impulse == 1)
  1060.     {
  1061.         fl = IT_AXE;
  1062.     }
  1063.     else if (self.impulse == 2)
  1064.     {
  1065.         fl = IT_SHOTGUN;
  1066.         if (self.ammo_shells < 1)
  1067.             am = 1;
  1068.     }
  1069.     else if (self.impulse == 3)
  1070.     {
  1071.         fl = IT_SUPER_SHOTGUN;
  1072.         if (self.ammo_shells < 2)
  1073.             am = 1;
  1074.     }               
  1075.     else if (self.impulse == 4)
  1076.     {
  1077.         fl = IT_NAILGUN;
  1078.         if (self.ammo_nails < 1)
  1079.             am = 1;
  1080.     }
  1081.     else if (self.impulse == 5)
  1082.     {
  1083.         fl = IT_SUPER_NAILGUN;
  1084.         if (self.ammo_nails < 2)
  1085.             am = 1;
  1086.     }
  1087.     else if (self.impulse == 6)
  1088.     {
  1089.         if (self.weapon != IT_GRENADE_LAUNCHER)
  1090.         {        
  1091.             fl = IT_GRENADE_LAUNCHER;
  1092.         }
  1093.         else
  1094.         {
  1095.             fl = IT_FREEZE_GUN;
  1096.         }
  1097.         if (self.ammo_rockets < 1)
  1098.         {        
  1099.             am = 1;
  1100.         }
  1101.     }
  1102.     else if (self.impulse == 7)
  1103.     {
  1104.         fl = IT_ROCKET_LAUNCHER;
  1105.         if (self.ammo_rockets < 1)
  1106.             am = 1;
  1107.     }
  1108.     else if (self.impulse == 8)
  1109.     {
  1110.         fl = IT_LIGHTNING;
  1111.         if (self.ammo_cells < 1)
  1112.             am = 1;
  1113.     }
  1114.  
  1115.     self.impulse = 0;
  1116.     
  1117.     if (!(self.items & fl))
  1118.     {       // don't have the weapon or the ammo
  1119.         sprint (self, "no weapon.\n");
  1120.         return;
  1121.     }
  1122.     
  1123.     if (am)
  1124.     {       // don't have the ammo
  1125.         sprint (self, "not enough ammo.\n");
  1126.         return;
  1127.     }
  1128.  
  1129. //
  1130. // set weapon, set ammo
  1131. //
  1132.     self.weapon = fl;               
  1133.     W_SetCurrentAmmo ();
  1134. };
  1135.  
  1136. /*
  1137. ============
  1138. CheatCommand
  1139. ============
  1140. */
  1141. void() CheatCommand =
  1142. {
  1143.     if (deathmatch || coop)
  1144.         return;
  1145.  
  1146.     self.ammo_rockets = 100;
  1147.     self.ammo_nails = 200;
  1148.     self.ammo_shells = 100;
  1149.     self.items = self.items | 
  1150.         IT_AXE |
  1151.         IT_SHOTGUN |
  1152.         IT_SUPER_SHOTGUN |
  1153.         IT_NAILGUN |
  1154.         IT_SUPER_NAILGUN |
  1155.         IT_GRENADE_LAUNCHER |
  1156.         IT_FREEZE_GUN |
  1157.         IT_ROCKET_LAUNCHER |
  1158.         IT_KEY1 | IT_KEY2;
  1159.  
  1160.     self.ammo_cells = 200;
  1161.     self.items = self.items | IT_LIGHTNING;
  1162.  
  1163.     self.weapon = IT_ROCKET_LAUNCHER;
  1164.     self.impulse = 0;
  1165.     W_SetCurrentAmmo ();
  1166. };
  1167.  
  1168. /*
  1169. ============
  1170. CycleWeaponCommand
  1171.  
  1172. Go to the next weapon with ammo
  1173. ============
  1174. */
  1175. void() CycleWeaponCommand =
  1176. {
  1177.     local   float   it, am;
  1178.     
  1179.     it = self.items;
  1180.     self.impulse = 0;
  1181.     
  1182.     while (1)
  1183.     {
  1184.         am = 0;
  1185.  
  1186.         if (self.weapon == IT_LIGHTNING)
  1187.         {
  1188.             self.weapon = IT_AXE;
  1189.         }
  1190.         else if (self.weapon == IT_AXE)
  1191.         {
  1192.             self.weapon = IT_SHOTGUN;
  1193.             if (self.ammo_shells < 1)
  1194.                 am = 1;
  1195.         }
  1196.         else if (self.weapon == IT_SHOTGUN)
  1197.         {
  1198.             self.weapon = IT_SUPER_SHOTGUN;
  1199.             if (self.ammo_shells < 2)
  1200.                 am = 1;
  1201.         }               
  1202.         else if (self.weapon == IT_SUPER_SHOTGUN)
  1203.         {
  1204.             self.weapon = IT_NAILGUN;
  1205.             if (self.ammo_nails < 1)
  1206.                 am = 1;
  1207.         }
  1208.         else if (self.weapon == IT_NAILGUN)
  1209.         {
  1210.             self.weapon = IT_SUPER_NAILGUN;
  1211.             if (self.ammo_nails < 2)
  1212.                 am = 1;
  1213.         }
  1214.         else if (self.weapon == IT_SUPER_NAILGUN)
  1215.         {
  1216.             self.weapon = IT_GRENADE_LAUNCHER;
  1217.             if (self.ammo_rockets < 1)
  1218.                 am = 1;
  1219.         }
  1220.         else if (self.weapon == IT_GRENADE_LAUNCHER)
  1221.         {
  1222.             self.weapon = IT_ROCKET_LAUNCHER;
  1223.             if (self.ammo_rockets < 1)
  1224.                 am = 1;
  1225.         }
  1226.         else if (self.weapon == IT_ROCKET_LAUNCHER)
  1227.         {
  1228.             self.weapon = IT_LIGHTNING;
  1229.             if (self.ammo_cells < 1)
  1230.                 am = 1;
  1231.         }
  1232.     
  1233.         if ( (self.items & self.weapon) && am == 0)
  1234.         {
  1235.             W_SetCurrentAmmo ();
  1236.             return;
  1237.         }
  1238.     }
  1239.  
  1240. };
  1241.  
  1242. /*
  1243. ============
  1244. ServerflagsCommand
  1245.  
  1246. Just for development
  1247. ============
  1248. */
  1249. void() ServerflagsCommand =
  1250. {
  1251.     serverflags = serverflags * 2 + 1;
  1252. };
  1253.  
  1254. void() QuadCheat =
  1255. {
  1256.     if (deathmatch || coop)
  1257.         return;
  1258.     self.super_time = 1;
  1259.     self.super_damage_finished = time + 30;
  1260.     self.items = self.items | IT_QUAD;
  1261.     dprint ("quad cheat\n");
  1262. };
  1263.  
  1264. /*
  1265. ============
  1266. ImpulseCommands
  1267.  
  1268. ============
  1269. */
  1270. void() ImpulseCommands =
  1271. {
  1272.     if (self.impulse >= 1 && self.impulse <= 8)
  1273.         W_ChangeWeapon ();
  1274.  
  1275.     if (self.impulse == 9)
  1276.         CheatCommand ();
  1277.     if (self.impulse == 10)
  1278.         CycleWeaponCommand ();
  1279.     if (self.impulse == 11)
  1280.         ServerflagsCommand ();
  1281.  
  1282.     if (self.impulse == 255)
  1283.         QuadCheat ();
  1284.         
  1285.     self.impulse = 0;
  1286. };
  1287.  
  1288. /*
  1289. ============
  1290. W_WeaponFrame
  1291.  
  1292. Called every frame so impulse events can be handled as well as possible
  1293. ============
  1294. */
  1295. void() W_WeaponFrame =
  1296. {
  1297.     if (time < self.attack_finished)
  1298.         return;
  1299.  
  1300.     ImpulseCommands ();
  1301.     
  1302. // check for attack
  1303.     if (self.button0)
  1304.     {
  1305.         SuperDamageSound ();
  1306.         W_Attack ();
  1307.     }
  1308. };
  1309.  
  1310. /*
  1311. ========
  1312. SuperDamageSound
  1313.  
  1314. Plays sound if needed
  1315. ========
  1316. */
  1317. void() SuperDamageSound =
  1318. {
  1319.     if (self.super_damage_finished > time)
  1320.     {
  1321.         if (self.super_sound < time)
  1322.         {
  1323.             self.super_sound = time + 1;
  1324.             sound (self, CHAN_BODY, "items/damage3.wav", 1, ATTN_NORM);
  1325.         }
  1326.     }
  1327.     return;
  1328. };
  1329.  
  1330.  
  1331.