]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/t_items.qh
Merge branch 'master' into Lyberta/KillSound
[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 .int item_group;
30 .int item_group_count;
31 #endif
32
33 #ifdef CSQC
34
35 bool   autocvar_cl_items_nofade;
36 float  autocvar_cl_animate_items = 1;
37 float  autocvar_cl_ghost_items = 0.45;
38 vector autocvar_cl_ghost_items_color = '-1 -1 -1';
39 float  autocvar_cl_fullbright_items = 0;
40 vector autocvar_cl_weapon_stay_color = '2 0.5 0.5';
41 float  autocvar_cl_weapon_stay_alpha = 0.75;
42 float  autocvar_cl_simple_items = 0;
43 string autocvar_cl_simpleitems_postfix = "_simple";
44 .float  spawntime;
45 .float  gravity;
46 .vector colormod;
47
48 void ItemDraw(entity this);
49
50 #endif
51 #ifdef SVQC
52
53 float autocvar_sv_simple_items;
54 bool ItemSend(entity this, entity to, int sf);
55
56 bool have_pickup_item(entity this);
57
58 const float ITEM_RESPAWN_TICKS = 10;
59
60 .float max_armorvalue;
61 .float pickup_anyway;
62
63 .float item_respawncounter;
64
65 void Item_Show (entity e, float mode);
66
67 void Item_Respawn (entity this);
68
69 void Item_RespawnCountdown(entity this);
70 void Item_ScheduleRespawnIn(entity e, float t);
71
72 void Item_ScheduleRespawn(entity e);
73
74 void Item_ScheduleInitialRespawn(entity e);
75
76 /// \brief Give several random weapons and ammo to the entity.
77 /// \param[in,out] receiver Entity to give weapons to.
78 /// \param[in] num_weapons Number of weapons to give.
79 /// \param[in] weapon_names Names of weapons to give separated by spaces.
80 /// \param[in] ammo Entity containing the ammo amount for each possible weapon.
81 /// \return No return.
82 void GiveRandomWeapons(entity receiver, int num_weapons, string weapon_names,
83         entity ammo_entity);
84
85 float Item_GiveAmmoTo(entity item, entity player, int resource_type, float ammomax);
86
87 float Item_GiveTo(entity item, entity player);
88
89 void Item_Touch(entity this, entity toucher);
90
91 void Item_Reset(entity this);
92
93 void Item_FindTeam(entity this);
94 // Savage: used for item garbage-collection
95
96 bool ItemSend(entity this, entity to, int sf);
97 void ItemUpdate(entity this);
98
99 void UpdateItemAfterTeleport(entity this);
100
101 // pickup evaluation functions
102 // these functions decide how desirable an item is to the bots
103
104 float generic_pickupevalfunc(entity player, entity item);// {return item.bot_pickupbasevalue;} // WEAPONTODO
105
106 float weapon_pickupevalfunc(entity player, entity item);
107 float ammo_pickupevalfunc(entity player, entity item);
108 float healtharmor_pickupevalfunc(entity player, entity item);
109
110 .float is_item;
111 .entity itemdef;
112 void _StartItem(entity this, entity def, float defaultrespawntime, float defaultrespawntimejitter);
113
114 void setItemGroup(entity this);
115 void setItemGroupCount();
116
117 float GiveWeapon(entity e, float wpn, float op, float val);
118
119 float GiveBit(entity e, .float fld, float bit, float op, float val);
120
121 float GiveValue(entity e, .float fld, float op, float val);
122
123 void GiveSound(entity e, float v0, float v1, float t, Sound snd_incr, Sound snd_decr);
124
125 void GiveRot(entity e, float v0, float v1, .float rotfield, float rottime, .float regenfield, float regentime);
126
127 #define PREGIVE_WEAPONS(e) WepSet save_weapons; save_weapons = e.weapons
128 #define PREGIVE(e,f) float save_##f; save_##f = (e).f
129 #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)
130 #define POSTGIVE_BIT(e,f,b,snd_incr,snd_decr) GiveSound((e), save_##f & (b), (e).f & (b), 0, snd_incr, snd_decr)
131 #define POSTGIVE_VALUE(e,f,t,snd_incr,snd_decr) GiveSound((e), save_##f, (e).f, t, snd_incr, snd_decr)
132 #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)
133
134 float GiveItems(entity e, float beginarg, float endarg);
135 #endif