]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/items/items.qh
Numerous enhancements to the new status effects system, split powerups into a dedicat...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / items / items.qh
1 #pragma once
2
3 #include <common/sounds/sound.qh>
4
5 float autocvar_g_balance_superweapons_time;
6 bool autocvar_g_fullbrightitems;
7 float autocvar_g_items_mindist;
8 float autocvar_g_items_maxdist;
9 int autocvar_g_pickup_items;
10 bool autocvar_g_nodepthtestitems;
11 #define autocvar_g_weapon_stay cvar("g_weapon_stay")
12
13 void StartItem(entity this, entity a);
14 .int item_group;
15 .int item_group_count;
16
17 float autocvar_sv_simple_items;
18 bool ItemSend(entity this, entity to, int sf);
19
20 bool have_pickup_item(entity this);
21
22 const float ITEM_RESPAWN_TICKS = 10;
23
24 // string overrides entity
25 .string item_pickupsound;
26 .entity item_pickupsound_ent;
27 .entity item_model_ent;
28
29 .float max_armorvalue;
30 .float pickup_anyway;
31
32 .float scheduledrespawntime;
33 .float respawntime;
34 .float respawntimejitter;
35 .float respawntimestart;
36
37 .float item_respawncounter;
38
39 .float noalign; // if set to 1, the item or spawnpoint won't be dropped to the floor
40
41 .float superweapons_finished; // NOTE: this field is used only by map entities, it does not directly apply the superweapons stat
42
43 // delay before this item can be picked up
44 .float item_spawnshieldtime;
45
46 void Item_Show (entity e, int mode);
47
48 void Item_Respawn (entity this);
49
50 void Item_RespawnCountdown(entity this);
51 void Item_ScheduleRespawnIn(entity e, float t);
52
53 void Item_ScheduleRespawn(entity e);
54
55 void Item_ScheduleInitialRespawn(entity e);
56
57 /// \brief Give several random weapons and ammo to the entity.
58 /// \param[in,out] receiver Entity to give weapons to.
59 /// \param[in] num_weapons Number of weapons to give.
60 /// \param[in] weapon_names Names of weapons to give separated by spaces.
61 /// \param[in] ammo Entity containing the ammo amount for each possible weapon.
62 /// \return No return.
63 void GiveRandomWeapons(entity receiver, int num_weapons, string weapon_names, entity ammo_entity);
64
65 bool Item_GiveAmmoTo(entity item, entity player, int res_type, float ammomax);
66
67 bool Item_GiveTo(entity item, entity player);
68
69 void Item_Touch(entity this, entity toucher);
70
71 void Item_Reset(entity this);
72
73 void Item_FindTeam(entity this);
74 // Savage: used for item garbage-collection
75
76 bool ItemSend(entity this, entity to, int sf);
77 void ItemUpdate(entity this);
78
79 void UpdateItemAfterTeleport(entity this);
80
81 // pickup evaluation functions
82 // these functions decide how desirable an item is to the bots
83
84 float generic_pickupevalfunc(entity player, entity item);// {return item.bot_pickupbasevalue;} // WEAPONTODO
85
86 float weapon_pickupevalfunc(entity player, entity item);
87 float ammo_pickupevalfunc(entity player, entity item);
88 float healtharmor_pickupevalfunc(entity player, entity item);
89
90 .bool is_item;
91 .entity itemdef;
92 void _StartItem(entity this, entity def, float defaultrespawntime, float defaultrespawntimejitter);
93
94 void setItemGroup(entity this);
95 void setItemGroupCount();
96
97 float GiveWeapon(entity e, float wpn, float op, float val);
98
99 float GiveBit(entity e, .float fld, float bit, float op, float val);
100
101 float GiveValue(entity e, .float fld, float op, float val);
102
103 void GiveSound(entity e, float v0, float v1, float t, Sound snd_incr, Sound snd_decr);
104
105 void GiveRot(entity e, float v0, float v1, .float rotfield, float rottime, .float regenfield, float regentime);
106
107 spawnfunc(target_items);
108
109 #define PREGIVE_WEAPONS(e) WepSet save_weapons; save_weapons = STAT(WEAPONS, e)
110 #define PREGIVE(e,f) float save_##f; save_##f = (e).f
111 #define PREGIVE_STATUSEFFECT(e,f) bool save_##f = StatusEffects_active(f, (e))
112 #define PREGIVE_RESOURCE(e,f) float save_##f = GetResource((e), (f))
113 #define POSTGIVE_WEAPON(e,b,snd_incr,snd_decr) GiveSound((e), !!(save_weapons & WepSet_FromWeapon(b)), !!(STAT(WEAPONS, e) & WepSet_FromWeapon(b)), 0, snd_incr, snd_decr)
114 #define POSTGIVE_BIT(e,f,b,snd_incr,snd_decr) GiveSound((e), save_##f & (b), (e).f & (b), 0, snd_incr, snd_decr)
115 #define POSTGIVE_STATUSEFFECT(e,f,snd_incr,snd_decr) GiveSound((e), save_##f, StatusEffects_active(f, (e)), 0, snd_incr, snd_decr)
116 #define POSTGIVE_RESOURCE(e,f,t,snd_incr,snd_decr) GiveSound((e), save_##f, GetResource((e), (f)), t, snd_incr, snd_decr)
117 #define POSTGIVE_RES_ROT(e,f,t,rotfield,rottime,regenfield,regentime,snd_incr,snd_decr) GiveRot((e),save_##f,GetResource((e),(f)),rotfield,rottime,regenfield,regentime);GiveSound((e),save_##f,GetResource((e),(f)),t,snd_incr,snd_decr)
118 #define POSTGIVE_VALUE(e,f,t,snd_incr,snd_decr) GiveSound((e), save_##f, (e).f, t, snd_incr, snd_decr)
119 #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)
120
121 float GiveItems(entity e, float beginarg, float endarg);
122
123 IntrusiveList g_items;
124 STATIC_INIT(g_items) { g_items = IL_NEW(); }
125
126 #define ITEM_TOUCH_NEEDKILL() (((trace_dpstartcontents | trace_dphitcontents) & DPCONTENTS_NODROP) || (trace_dphitq3surfaceflags & Q3SURFACEFLAG_SKY))
127 #define ITEM_DAMAGE_NEEDKILL(dt) (((dt) == DEATH_HURTTRIGGER.m_id) || ((dt) == DEATH_SLIME.m_id) || ((dt) == DEATH_LAVA.m_id) || ((dt) == DEATH_SWAMP.m_id))