]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/t_items.qh
server: remove _all
[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 float ITEM_MODE_NONE = 0;
89 float ITEM_MODE_HEALTH = 1;
90 float ITEM_MODE_ARMOR = 2;
91 float ITEM_MODE_FUEL = 3;
92 float Item_GiveAmmoTo(entity item, entity player, .float ammotype, float ammomax, float mode);
93
94 float Item_GiveTo(entity item, entity player);
95
96 void Item_Touch(entity this, entity toucher);
97
98 void Item_Reset(entity this);
99
100 void Item_FindTeam(entity this);
101 // Savage: used for item garbage-collection
102
103 bool ItemSend(entity this, entity to, int sf);
104 void ItemUpdate(entity this);
105
106 void UpdateItemAfterTeleport(entity this);
107
108 // pickup evaluation functions
109 // these functions decide how desirable an item is to the bots
110
111 float generic_pickupevalfunc(entity player, entity item);// {return item.bot_pickupbasevalue;} // WEAPONTODO
112
113 float weapon_pickupevalfunc(entity player, entity item);
114 float ammo_pickupevalfunc(entity player, entity item);
115 float healtharmor_pickupevalfunc(entity player, entity item);
116
117 .float is_item;
118 .entity itemdef;
119 void _StartItem(entity this, entity def, float defaultrespawntime, float defaultrespawntimejitter);
120
121 void setItemGroup(entity this);
122 void setItemGroupCount();
123
124 float GiveWeapon(entity e, float wpn, float op, float val);
125
126 float GiveBit(entity e, .float fld, float bit, float op, float val);
127
128 float GiveValue(entity e, .float fld, float op, float val);
129
130 void GiveSound(entity e, float v0, float v1, float t, Sound snd_incr, Sound snd_decr);
131
132 void GiveRot(entity e, float v0, float v1, .float rotfield, float rottime, .float regenfield, float regentime);
133
134 #define PREGIVE_WEAPONS(e) WepSet save_weapons; save_weapons = e.weapons
135 #define PREGIVE(e,f) float save_##f; save_##f = (e).f
136 #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)
137 #define POSTGIVE_BIT(e,f,b,snd_incr,snd_decr) GiveSound((e), save_##f & (b), (e).f & (b), 0, snd_incr, snd_decr)
138 #define POSTGIVE_VALUE(e,f,t,snd_incr,snd_decr) GiveSound((e), save_##f, (e).f, t, snd_incr, snd_decr)
139 #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)
140
141 float GiveItems(entity e, float beginarg, float endarg);
142 #endif