]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/t_items.qh
f353f2589df5cab2dd977f232f1a8620a1ce1a0e
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / t_items.qh
1 #ifndef T_ITEMS_H
2 #define T_ITEMS_H
3
4 const int AMMO_COUNT = 4; // amount of ammo types to show in the inventory panel
5
6 // item networking
7 const int ISF_LOCATION                  = BIT(1);
8 const int ISF_MODEL                             = BIT(2);
9 const int ISF_STATUS                    = BIT(3);
10     const int ITS_STAYWEP                   = BIT(0);
11     const int ITS_ANIMATE1                  = BIT(1);
12     const int ITS_ANIMATE2                  = BIT(2);
13     const int ITS_AVAILABLE         = BIT(3);
14     const int ITS_ALLOWFB                   = BIT(4);
15     const int ITS_ALLOWSI                   = BIT(5);
16     const int ITS_POWERUP                   = BIT(6);
17 const int ISF_COLORMAP                  = BIT(4);
18 const int ISF_DROP                              = BIT(5);
19 const int ISF_ANGLES                    = BIT(6);
20 const int ISF_SIZE                              = BIT(7);
21
22 .int ItemStatus;
23
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 float  autocvar_cl_animate_items = 1;
34 float  autocvar_cl_ghost_items = 0.45;
35 vector autocvar_cl_ghost_items_color = '-1 -1 -1';
36 float  autocvar_cl_fullbright_items = 0;
37 vector autocvar_cl_weapon_stay_color = '2 0.5 0.5';
38 float  autocvar_cl_weapon_stay_alpha = 0.75;
39 float  autocvar_cl_simple_items = 0;
40 string autocvar_cl_simpleitems_postfix = "_simple";
41 .float  spawntime;
42 .float  gravity;
43 .vector colormod;
44
45 void ItemDraw(entity this);
46 void ItemDrawSimple(entity this);
47
48 void ItemRead(float _IsNew);
49
50 #endif
51 #ifdef SVQC
52 spawnfunc(item_strength);
53 spawnfunc(item_invincible);
54 spawnfunc(item_armor_small);
55 spawnfunc(item_shells);
56 spawnfunc(item_bullets);
57 spawnfunc(item_rockets);
58
59 float autocvar_sv_simple_items;
60 bool ItemSend(entity this, entity to, int sf);
61
62
63 bool have_pickup_item(entity this);
64
65 const float ITEM_RESPAWN_TICKS = 10;
66
67 #define ITEM_RESPAWNTIME(i)         ((i).respawntime + crandom() * (i).respawntimejitter)
68         // range: respawntime - respawntimejitter .. respawntime + respawntimejitter
69 #define ITEM_RESPAWNTIME_INITIAL(i) (ITEM_RESPAWN_TICKS + random() * ((i).respawntime + (i).respawntimejitter - ITEM_RESPAWN_TICKS))
70         // range: 10 .. respawntime + respawntimejitter
71
72 .float max_armorvalue;
73 .float pickup_anyway;
74
75 void Item_Show (entity e, float mode);
76
77 void Item_Respawn (void);
78
79 void Item_RespawnCountdown (void);
80 void Item_ScheduleRespawnIn(entity e, float t);
81
82 void Item_ScheduleRespawn(entity e);
83
84 void Item_ScheduleInitialRespawn(entity e);
85 float ITEM_MODE_NONE = 0;
86 float ITEM_MODE_HEALTH = 1;
87 float ITEM_MODE_ARMOR = 2;
88 float ITEM_MODE_FUEL = 3;
89 float Item_GiveAmmoTo(entity item, entity player, .float ammotype, float ammomax, float mode);
90
91 float Item_GiveTo(entity item, entity player);
92
93 void Item_Touch();
94
95 void Item_Reset(entity this);
96
97 void Item_FindTeam();
98 // Savage: used for item garbage-collection
99 // TODO: perhaps nice special effect?
100
101 bool ItemSend(entity this, entity to, int sf);
102 void ItemUpdate(entity item);
103
104 // pickup evaluation functions
105 // these functions decide how desirable an item is to the bots
106
107 float generic_pickupevalfunc(entity player, entity item);// {return item.bot_pickupbasevalue;} // WEAPONTODO
108
109 float weapon_pickupevalfunc(entity player, entity item);
110
111 float commodity_pickupevalfunc(entity player, entity item);
112
113 .float is_item;
114 .entity itemdef;
115 void _StartItem(entity this, entity def, float defaultrespawntime, float defaultrespawntimejitter);
116
117
118 void target_items_use (void);
119
120 const float OP_SET = 0;
121 const float OP_MIN = 1;
122 const float OP_MAX = 2;
123 const float OP_PLUS = 3;
124 const float OP_MINUS = 4;
125
126 float GiveWeapon(entity e, float wpn, float op, float val);
127
128 float GiveBit(entity e, .float fld, float bit, float op, float val);
129
130 float GiveValue(entity e, .float fld, float op, float val);
131
132 void GiveSound(entity e, float v0, float v1, float t, string snd_incr, string snd_decr);
133
134 void GiveRot(entity e, float v0, float v1, .float rotfield, float rottime, .float regenfield, float regentime);
135
136 #define PREGIVE_WEAPONS(e) WepSet save_weapons; save_weapons = e.weapons
137 #define PREGIVE(e,f) float save_##f; save_##f = (e).f
138 #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)
139 #define POSTGIVE_BIT(e,f,b,snd_incr,snd_decr) GiveSound((e), save_##f & (b), (e).f & (b), 0, snd_incr, snd_decr)
140 #define POSTGIVE_VALUE(e,f,t,snd_incr,snd_decr) GiveSound((e), save_##f, (e).f, t, snd_incr, snd_decr)
141 #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)
142
143 float GiveItems(entity e, float beginarg, float endarg);
144 #endif
145 #endif