]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/t_items.qh
Added GivePlayerHealth and GivePlayerArmor.
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / t_items.qh
1 #pragma once
2
3 const int AMMO_COUNT = 4; // amount of ammo types to show in the inventory panel
4
5 // item networking
6 const int ISF_LOCATION                  = BIT(1);
7 const int ISF_MODEL                             = BIT(2);
8 const int ISF_STATUS                    = BIT(3);
9     const int ITS_STAYWEP                   = BIT(0);
10     const int ITS_ANIMATE1                  = BIT(1);
11     const int ITS_ANIMATE2                  = BIT(2);
12     const int ITS_AVAILABLE         = BIT(3);
13     const int ITS_ALLOWFB                   = BIT(4);
14     const int ITS_ALLOWSI                   = BIT(5);
15     const int ITS_GLOW                      = BIT(6);
16 const int ISF_COLORMAP                  = BIT(4);
17 const int ISF_DROP                              = BIT(5);
18 const int ISF_ANGLES                    = BIT(6);
19 const int ISF_SIZE                              = BIT(7);
20
21 .int ItemStatus;
22
23 .float onground_time;
24 .float fade_start;
25 .float fade_end;
26
27 #ifdef SVQC
28 void StartItem(entity this, entity a);
29 #endif
30
31 #ifdef CSQC
32
33 bool   autocvar_cl_items_nofade;
34 float  autocvar_cl_animate_items = 1;
35 float  autocvar_cl_ghost_items = 0.45;
36 vector autocvar_cl_ghost_items_color = '-1 -1 -1';
37 float  autocvar_cl_fullbright_items = 0;
38 vector autocvar_cl_weapon_stay_color = '2 0.5 0.5';
39 float  autocvar_cl_weapon_stay_alpha = 0.75;
40 float  autocvar_cl_simple_items = 0;
41 string autocvar_cl_simpleitems_postfix = "_simple";
42 .float  spawntime;
43 .float  gravity;
44 .vector colormod;
45
46 void ItemDraw(entity this);
47 void ItemDrawSimple(entity this);
48
49 #endif
50 #ifdef SVQC
51 spawnfunc(item_strength);
52 spawnfunc(item_invincible);
53 spawnfunc(item_armor_small);
54 spawnfunc(item_shells);
55 spawnfunc(item_bullets);
56 spawnfunc(item_rockets);
57
58 float autocvar_sv_simple_items;
59 bool ItemSend(entity this, entity to, int sf);
60
61
62 bool have_pickup_item(entity this);
63
64 const float ITEM_RESPAWN_TICKS = 10;
65
66 #define ITEM_RESPAWNTIME(i)         ((i).respawntime + crandom() * (i).respawntimejitter)
67         // range: respawntime - respawntimejitter .. respawntime + respawntimejitter
68 #define ITEM_RESPAWNTIME_INITIAL(i) (ITEM_RESPAWN_TICKS + random() * ((i).respawntime + (i).respawntimejitter - ITEM_RESPAWN_TICKS))
69         // range: 10 .. respawntime + respawntimejitter
70
71 .float max_armorvalue;
72 .float pickup_anyway;
73
74 void Item_Show (entity e, float mode);
75
76 void Item_Respawn (entity this);
77
78 void Item_RespawnCountdown(entity this);
79 void Item_ScheduleRespawnIn(entity e, float t);
80
81 void Item_ScheduleRespawn(entity e);
82
83 void Item_ScheduleInitialRespawn(entity e);
84
85 /// \brief Gives health to the player.
86 /// \param[in,out] player Player to give health to.
87 /// \param[in] amount Amount of health to give.
88 /// \return No return.
89 void GivePlayerHealth(entity player, float amount);
90
91 /// \brief Gives armor to the player.
92 /// \param[in,out] player Player to give armor to.
93 /// \param[in] amount Amount of armor to give.
94 /// \return No return.
95 void GivePlayerArmor(entity player, float amount);
96
97 /// \brief Gives shells to the player.
98 /// \param[in,out] player Player to give shells to.
99 /// \param[in] amount Amount of shells to give.
100 /// \return No return.
101 void GivePlayerShells(entity player, float amount);
102
103 /// \brief Gives bullets to the player.
104 /// \param[in,out] player Player to give bullets to.
105 /// \param[in] amount Amount of bullets to give.
106 /// \return No return.
107 void GivePlayerBullets(entity player, float amount);
108
109 /// \brief Gives rockets to the player.
110 /// \param[in,out] player Player to give rockets to.
111 /// \param[in] amount Amount of rockets to give.
112 /// \return No return.
113 void GivePlayerRockets(entity player, float amount);
114
115 /// \brief Gives cells to the player.
116 /// \param[in,out] player Player to give cells to.
117 /// \param[in] amount Amount of cells to give.
118 /// \return No return.
119 void GivePlayerCells(entity player, float amount);
120
121 float ITEM_MODE_NONE = 0;
122 float ITEM_MODE_HEALTH = 1;
123 float ITEM_MODE_ARMOR = 2;
124 float ITEM_MODE_FUEL = 3;
125 float Item_GiveAmmoTo(entity item, entity player, .float ammotype, float ammomax, float mode);
126
127 float Item_GiveTo(entity item, entity player);
128
129 void Item_Touch(entity this, entity toucher);
130
131 void Item_Reset(entity this);
132
133 void Item_FindTeam(entity this);
134 // Savage: used for item garbage-collection
135
136 bool ItemSend(entity this, entity to, int sf);
137 void ItemUpdate(entity this);
138
139 void UpdateItemAfterTeleport(entity this);
140
141 // pickup evaluation functions
142 // these functions decide how desirable an item is to the bots
143
144 float generic_pickupevalfunc(entity player, entity item);// {return item.bot_pickupbasevalue;} // WEAPONTODO
145
146 float weapon_pickupevalfunc(entity player, entity item);
147 float ammo_pickupevalfunc(entity player, entity item);
148 float healtharmor_pickupevalfunc(entity player, entity item);
149
150 .float is_item;
151 .entity itemdef;
152 void _StartItem(entity this, entity def, float defaultrespawntime, float defaultrespawntimejitter);
153
154 void setItemGroup(entity this);
155 void setItemGroupCount();
156
157 float GiveWeapon(entity e, float wpn, float op, float val);
158
159 float GiveBit(entity e, .float fld, float bit, float op, float val);
160
161 float GiveValue(entity e, .float fld, float op, float val);
162
163 void GiveSound(entity e, float v0, float v1, float t, Sound snd_incr, Sound snd_decr);
164
165 void GiveRot(entity e, float v0, float v1, .float rotfield, float rottime, .float regenfield, float regentime);
166
167 #define PREGIVE_WEAPONS(e) WepSet save_weapons; save_weapons = e.weapons
168 #define PREGIVE(e,f) float save_##f; save_##f = (e).f
169 #define POSTGIVE_WEAPON(e,b,snd_incr,snd_decr) GiveSound((e), !!(save_weapons & WepSet_FromWeapon(b)), !!(e.weapons & WepSet_FromWeapon(b)), 0, snd_incr, snd_decr)
170 #define POSTGIVE_BIT(e,f,b,snd_incr,snd_decr) GiveSound((e), save_##f & (b), (e).f & (b), 0, snd_incr, snd_decr)
171 #define POSTGIVE_VALUE(e,f,t,snd_incr,snd_decr) GiveSound((e), save_##f, (e).f, t, snd_incr, snd_decr)
172 #define POSTGIVE_VALUE_ROT(e,f,t,rotfield,rottime,regenfield,regentime,snd_incr,snd_decr) GiveRot((e), save_##f, (e).f, rotfield, rottime, regenfield, regentime); GiveSound((e), save_##f, (e).f, t, snd_incr, snd_decr)
173
174 float GiveItems(entity e, float beginarg, float endarg);
175 #endif