]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/gamec/t_items.c
meh, previous checkin (neutral color for pickup wepons) just doesn't
[divverent/nexuiz.git] / data / qcsrc / gamec / t_items.c
1 void Item_ClearRespawnEffect (void) {
2         self.effects = self.effects - (self.effects & EF_STARDUST);
3 }
4
5 void Item_Respawn (void)
6 {
7         self.model = self.mdl;          // restore original model
8         self.solid = SOLID_TRIGGER;     // allow it to be touched again
9         sound (self, CHAN_VOICE, "misc/itemrespawn.wav", 1, ATTN_NORM); // play respawn sound
10         setorigin (self, self.origin);
11
12         // Savage: Add simple Respawn effect and make sure it gets removed
13         self.effects = EF_STARDUST;
14         self.think = Item_ClearRespawnEffect;
15         self.nextthink = time + 0.1;
16 }
17
18 void Item_Touch (void)
19 {
20
21         local entity oldself;
22         local float     _switchweapon;
23
24         if (other.classname != "player")
25                 return;
26         if (other.deadflag)
27                 return;
28         if (self.solid != SOLID_TRIGGER)
29                 return;
30         if (self.health && other.health >= other.max_health)
31                 return;
32         // Savage: Remove the respawn effect if still present
33         self.effects = self.effects - (self.effects & EF_STARDUST);
34
35         sound (self, CHAN_BODY, self.noise, 1, ATTN_NORM);
36
37         // in case the player has autoswitch enabled do the following:
38         // if the player is using their best weapon before items are given, they
39         // probably want to switch to an even better weapon after items are given
40         _switchweapon = (other.autoswitch && (other.switchweapon == w_getbestweapon(other)));
41
42         if (self.ammo_shells)
43                 other.ammo_shells = min (other.ammo_shells + self.ammo_shells, 999);
44         if (self.ammo_nails)
45                 other.ammo_nails = min (other.ammo_nails + self.ammo_nails, 999);
46         if (self.ammo_rockets)
47                 other.ammo_rockets = min (other.ammo_rockets + self.ammo_rockets, 999);
48         if (self.ammo_cells)
49                 other.ammo_cells = min (other.ammo_cells + self.ammo_cells, 999);
50
51         if (self.items & IT_UZI)                                W_GiveWeapon (other, IT_UZI, "Machine gun");
52         if (self.items & IT_SHOTGUN)                    W_GiveWeapon (other, IT_SHOTGUN, "Shotgun");
53         if (self.items & IT_GRENADE_LAUNCHER)   W_GiveWeapon (other, IT_GRENADE_LAUNCHER, "Mortar");
54         if (self.items & IT_ELECTRO)                    W_GiveWeapon (other, IT_ELECTRO, "Electro");
55         if (self.items & IT_NEX)                                W_GiveWeapon (other, IT_NEX, "Nex");
56         if (self.items & IT_HAGAR)                              W_GiveWeapon (other, IT_HAGAR, "Hagar");
57         if (self.items & IT_ROCKET_LAUNCHER)    W_GiveWeapon (other, IT_ROCKET_LAUNCHER, "Rocket Launcher");
58         if (self.items & IT_CRYLINK)                    W_GiveWeapon (other, IT_CRYLINK, "Crylink");
59
60         if (self.strength_finished)
61                 other.strength_finished = max(other.strength_finished, time) + cvar("g_balance_powerup_strength_time");
62         if (self.invincible_finished)
63                 other.invincible_finished = max(other.invincible_finished, time) + cvar("g_balance_powerup_invincible_time");
64         //if (self.speed_finished)
65         //      other.speed_finished = max(other.speed_finished, time) + cvar("g_balance_powerup_speed_time");
66         //if (self.slowmo_finished)
67         //      other.slowmo_finished = max(other.slowmo_finished, time) + (cvar("g_balance_powerup_slowmo_time") * cvar("g_balance_powerup_slowmo_speed"));
68
69         if (self.max_health)
70         {
71                 other.health = other.health + self.max_health;
72                 other.pauserothealth_finished = max(other.pauserothealth_finished, time + 5);
73         }
74         if (self.health && other.health < other.max_health)
75                 other.health = min(other.health + self.health, other.max_health);
76         if (self.armorvalue)
77         {
78                 other.armorvalue = other.armorvalue + self.armorvalue;
79                 other.pauserotarmor_finished = max(other.pauserotarmor_finished, time + 5);
80         }
81
82         oldself = self;
83         self = other;
84
85         if (_switchweapon)
86                 self.switchweapon = w_getbestweapon(self);
87
88         //W_UpdateWeapon ();
89         //W_UpdateAmmo ();
90         weapon_action(self.weapon, WR_UPDATECOUNTS);
91
92         self = oldself;
93
94         if (self.classname == "droppedweapon")
95                 remove (self);
96         else
97         {
98                 self.solid = SOLID_NOT;
99                 self.model = string_null;
100                 self.nextthink = time + self.respawntime;
101                 self.think = Item_Respawn;
102                 setorigin (self, self.origin);
103         }
104 }
105
106 // Savage: used for item garbage-collection
107 // TODO: perhaps nice special effect?
108 void RemoveItem(void) = {
109         remove(self);
110 }
111
112
113 void StartItem (string itemmodel, string pickupsound, float defaultrespawntime, string itemname, float itemid, float itemflags)
114 {
115         if (!cvar("g_pickup_items"))
116         {
117                 remove (self);
118                 return;
119         }
120         self.mdl = itemmodel;
121         self.noise = pickupsound;
122         // let mappers override respawntime
123         if (!self.respawntime)
124                 self.respawntime = defaultrespawntime;
125         self.netname = itemname;
126         self.items = itemid;
127         self.flags = FL_ITEM | itemflags;
128         setmodel (self, self.mdl);
129         if (itemflags & FL_WEAPON)
130         {
131                 setorigin (self, self.origin + '0 0 22');
132                 setsize (self, '-12 -12 -12', '12 12 12');
133                 
134                 // FIXME: weapon pickups should have a proper 'team' color (something neutral)
135                 // This would be the right place to do this
136                 // doesn't work: setcolor(self,178.0);
137         }
138         else
139         {
140                 setorigin (self, self.origin + '0 0 15');
141         //      setsize (self, '-8 -8 -5', '8 8 8');
142         }
143         self.movetype = MOVETYPE_TOSS;
144         self.solid = SOLID_TRIGGER;
145         self.touch = Item_Touch;
146
147         // Savage: remove thrown items after a certain period of time ("garbage collection")
148         if (self.classname == "droppedweapon")
149         {
150                 self.think = RemoveItem;
151                 self.nextthink = time + 60;
152         }
153
154         if (cvar("g_fullbrightitems"))
155                 self.effects = self.effects | EF_FULLBRIGHT;
156
157 }
158
159 void weapon_uzi (void) {self.ammo_nails = 120;StartItem ("models/weapons/g_uzi.md3", "weapons/weaponpickup.wav", 15, "Uzi", IT_UZI, FL_WEAPON);}
160 void weapon_shotgun (void) {self.ammo_shells = 15;StartItem ("models/weapons/g_shotgun.md3", "weapons/weaponpickup.wav", 15, "Shotgun", IT_SHOTGUN, FL_WEAPON);}
161 void weapon_grenadelauncher (void) {self.ammo_rockets = 15;StartItem ("models/weapons/g_gl.md3", "weapons/weaponpickup.wav", 15, "Grenade Launcher", IT_GRENADE_LAUNCHER, FL_WEAPON);}
162 void weapon_electro (void) {self.ammo_cells = 25;StartItem ("models/weapons/g_electro.md3", "weapons/weaponpickup.wav", 15, "Electro", IT_ELECTRO, FL_WEAPON);}
163 void weapon_crylink (void) {self.ammo_cells = 25;StartItem ("models/weapons/g_crylink.md3", "weapons/weaponpickup.wav", 15, "Crylink", IT_CRYLINK, FL_WEAPON);}
164 void weapon_nex (void) {self.ammo_cells = 25;StartItem ("models/weapons/g_nex.md3", "weapons/weaponpickup.wav", 15, "Nex Gun", IT_NEX, FL_WEAPON);}
165 void weapon_hagar (void) {self.ammo_rockets = 15;StartItem ("models/weapons/g_hagar.md3", "weapons/weaponpickup.wav", 15, "Hagar", IT_HAGAR, FL_WEAPON);}
166 void weapon_rocketlauncher (void) {self.ammo_rockets = 15;StartItem ("models/weapons/g_rl.md3", "weapons/weaponpickup.wav", 15, "Rocket Launcher", IT_ROCKET_LAUNCHER, FL_WEAPON);}
167
168 void item_rockets (void) {self.ammo_rockets = 15;StartItem ("models/items/a_rockets.md3", "misc/itempickup.wav", 15, "rockets", IT_ROCKETS, 0);}
169 void item_bullets (void) {self.ammo_nails = 120;StartItem ("models/items/a_bullets.mdl", "misc/itempickup.wav", 15, "bullets", IT_NAILS, 0);}
170 void item_cells (void) {self.ammo_cells = 25;StartItem ("models/items/a_cells.md3", "misc/itempickup.wav", 15, "cells", IT_CELLS, 0);}
171 void item_shells (void) {self.ammo_shells = 15;StartItem ("models/items/a_shells.md3", "misc/itempickup.wav", 15, "shells", IT_SHELLS, 0);}
172
173 void item_armor1 (void) {self.armorvalue = 5;StartItem ("models/items/g_a1.md3", "misc/armor1.wav", 15, "Armor Shard", 0, 0);}
174 void item_armor25 (void) {self.armorvalue = 100;StartItem ("models/items/g_a25.md3", "misc/armor25.wav", 30, "Armor", 0, 0);}
175 void item_health1 (void) {self.max_health = 5;StartItem ("models/items/g_h1.md3", "misc/minihealth.wav", 15, "5 Health", 0, 0);}
176 void item_health25 (void) {self.max_health = 25;StartItem ("models/items/g_h25.md3", "misc/mediumhealth.wav", 15, "25 Health", 0, 0);}
177 void item_health100 (void) {self.max_health = 100;StartItem ("models/items/g_h100.md3", "misc/megahealth.wav", 30, "100 Health", 0, 0);}
178
179 void item_strength (void) {self.strength_finished = 30;self.effects = EF_ADDITIVE;StartItem ("models/items/g_strength.md3", "misc/powerup.wav", 120, "Strength Powerup", IT_STRENGTH, FL_POWERUP);}
180 void item_invincible (void) {self.invincible_finished = 30;self.effects = EF_ADDITIVE;StartItem ("models/items/g_invincible.md3", "misc/powerup.wav", 120, "Invulnerability", IT_INVINCIBLE, FL_POWERUP);}
181 //void item_speed (void) {self.speed_finished = 30;StartItem ("models/items/g_speed.md3", "misc/powerup.wav", 120, "Speed Powerup", IT_SPEED, FL_POWERUP);}
182 //void item_slowmo (void) {self.slowmo_finished = 30;StartItem ("models/items/g_slowmo.md3", "misc/powerup.wav", 120, "Slow Motion", IT_SLOWMO, FL_POWERUP);}
183
184 void misc_models (void)
185 {
186         precache_model (self.model);
187         setmodel (self, self.model);
188         setsize (self, self.mins, self.maxs);
189 }
190
191