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