]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/items/item.qh
Merge branch 'master' into terencehill/ft_autorevive_progress
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / items / item.qh
1 #pragma once
2
3 #ifdef GAMEQC
4 #include <common/models/all.qh>
5 #include <common/sounds/all.qh>
6 #include <common/sounds/all.inc>
7 #include <common/stats.qh>
8 #endif
9
10 #ifdef SVQC
11 #include <server/items.qh>
12 #endif
13
14 const int IT_UNLIMITED_AMMO                     =  BIT(0); // when this bit is set, using a weapon does not reduce ammo. Checkpoints can give this powerup.
15 const int IT_UNLIMITED_SUPERWEAPONS             =  BIT(1); // when this bit is set, superweapons don't expire. Checkpoints can give this powerup.
16
17 const int IT_JETPACK                            =  BIT(2); // actual item
18 const int IT_USING_JETPACK                      =  BIT(3); // confirmation that button is pressed
19 const int IT_FUEL_REGEN                         =  BIT(4); // fuel regeneration trigger
20
21 const int IT_FUEL                                       =  BIT(5);
22 const int IT_SHELLS                     =  BIT(6);
23 const int IT_NAILS                      =  BIT(7);
24 const int IT_ROCKETS                    =  BIT(8);
25 const int IT_CELLS                      =  BIT(9);
26 const int IT_PLASMA                                     = BIT(10);
27
28 const int IT_5HP                        = BIT(11);
29 const int IT_25HP                       = BIT(12);
30 const int IT_HEALTH                                     = BIT(13);
31
32 const int IT_ARMOR_SHARD                = BIT(14);
33 const int IT_ARMOR                      = BIT(15);
34
35 const int IT_KEY1                                               = BIT(16);
36 const int IT_KEY2                                               = BIT(17);
37
38 const int IT_CTF_SHIELDED                       = BIT(18); // set for the flag shield
39
40 // special colorblend meaning in engine
41 const int IT_INVISIBILITY                               = BIT(19);
42 const int IT_INVINCIBLE                                 = BIT(20);
43 const int IT_SUPERWEAPON                                = BIT(21); // suit
44 const int IT_STRENGTH                                   = BIT(22);
45
46 // item masks
47 const int IT_PICKUPMASK                 = IT_UNLIMITED_AMMO | IT_UNLIMITED_SUPERWEAPONS | IT_JETPACK | IT_FUEL_REGEN; // strength and invincible are handled separately
48
49 #ifdef SVQC
50 const .float strength_finished = _STAT(STRENGTH_FINISHED);
51 const .float invincible_finished = _STAT(INVINCIBLE_FINISHED);
52
53 #define spawnfunc_body(item) \
54         if (!Item_IsDefinitionAllowed(item)) \
55         { \
56                 startitem_failed = true; \
57                 delete(this); \
58                 return; \
59         } \
60         StartItem(this, item)
61
62 #define SPAWNFUNC_ITEM(name, item) \
63         spawnfunc(name) \
64         { \
65                 spawnfunc_body(item); \
66         }
67
68 #define SPAWNFUNC_ITEM_COND(name, cond, item1, item2) \
69         spawnfunc(name) \
70         { \
71                 entity item = (cond) ? item1 : item2; \
72                 spawnfunc_body(item); \
73         }
74
75 #else
76
77 #define SPAWNFUNC_ITEM(name, item)
78
79 #endif
80
81 enum
82 {
83         ITEM_FLAG_NORMAL = BIT(0), ///< Item is usable during normal gameplay.
84         ITEM_FLAG_MUTATORBLOCKED = BIT(1),
85         ITEM_FLAG_RESOURCE = BIT(2) ///< Item is is a resource, not a held item.
86 };
87
88 #define ITEM_HANDLE(signal, ...) __Item_Send_##signal(__VA_ARGS__)
89 CLASS(GameItem, Object)
90     ATTRIB(GameItem, m_id, int, 0);
91     /** the canonical spawnfunc name */
92     ATTRIB(GameItem, m_canonical_spawnfunc, string);
93     METHOD(GameItem, m_spawnfunc_hookreplace, GameItem(GameItem this, entity e)) { return this; }
94     ATTRIB(GameItem, m_name, string);
95     ATTRIB(GameItem, m_icon, string);
96     ATTRIB(GameItem, m_color, vector, '1 1 1');
97     ATTRIB(GameItem, m_waypoint, string);
98     ATTRIB(GameItem, m_waypointblink, int, 1);
99 #ifdef GAMEQC
100     ATTRIB(GameItem, m_glow, bool, false);
101     ATTRIB(GameItem, m_respawnsound, Sound, SND_ITEMRESPAWN);
102 #endif
103     METHOD(GameItem, display, void(GameItem this, void(string name, string icon) returns))
104     {
105         TC(GameItem, this);
106         returns(this.m_name, this.m_icon ? sprintf("/gfx/hud/%s/%s", cvar_string("menu_skin"), this.m_icon) : string_null);
107     }
108     METHOD(GameItem, show, void(GameItem this))
109     {
110         TC(GameItem, this);
111         LOG_INFO("A game item");
112     }
113     void ITEM_HANDLE(Show, GameItem this) { this.show(this); }
114 ENDCLASS(GameItem)