]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/items.qh
Merge branch 'master' into Mario/csqc_models
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / items.qh
1 const float BOT_PICKUP_RATING_LOW       = 2500;
2 const float BOT_PICKUP_RATING_MID       = 5000;
3 const float BOT_PICKUP_RATING_HIGH      = 10000;
4
5 const float WEP_TYPE_OTHER            =  0x00; // not for damaging people
6 const float WEP_TYPE_SPLASH           =  0x01; // splash damage
7 const float WEP_TYPE_HITSCAN          =  0x02; // hitscan
8 const float WEP_TYPEMASK            =  0x0F;
9 const float WEP_FLAG_CANCLIMB       =  0x10; // can be used for movement
10 const float WEP_FLAG_NORMAL         =  0x20; // in "most weapons" set
11 const float WEP_FLAG_HIDDEN         =  0x40; // hides from menu
12 const float WEP_FLAG_RELOADABLE     =  0x80; // can has reload
13 const float WEP_FLAG_SUPERWEAPON    = 0x100; // powerup timer
14 const float WEP_FLAG_MUTATORBLOCKED = 0x200; // hides from impulse 99 etc. (mutators are allowed to clear this flag)
15
16 const float     IT_UNLIMITED_WEAPON_AMMO     = 1;
17 // when this bit is set, using a weapon does not reduce ammo. Checkpoints can give this powerup.
18 const float     IT_UNLIMITED_SUPERWEAPONS    = 2;
19 // when this bit is set, superweapons don't expire. Checkpoints can give this powerup.
20 const float   IT_CTF_SHIELDED              = 4; // set for the flag shield
21 const float   IT_USING_JETPACK             = 8; // confirmation that button is pressed
22 const float   IT_JETPACK                   = 16; // actual item
23 const float   IT_FUEL_REGEN                = 32; // fuel regeneration trigger
24 WANT_CONST float   IT_SHELLS                    = 256;
25 WANT_CONST float   IT_NAILS                     = 512;
26 WANT_CONST float   IT_ROCKETS                   = 1024;
27 WANT_CONST float   IT_CELLS                     = 2048;
28 const float   IT_SUPERWEAPON               = 4096;
29 const float   IT_FUEL                      = 128;
30 const float   IT_STRENGTH                  = 8192;
31 const float   IT_INVINCIBLE                = 16384;
32 const float   IT_HEALTH                    = 32768;
33 // union:
34         // for items:
35         WANT_CONST float        IT_KEY1                                 = 131072;
36         WANT_CONST float        IT_KEY2                                 = 262144;
37         // for players:
38         const float     IT_RED_FLAG_TAKEN               = 32768;
39         const float     IT_RED_FLAG_LOST                = 65536;
40         const float     IT_RED_FLAG_CARRYING            = 98304;
41         const float     IT_BLUE_FLAG_TAKEN              = 131072;
42         const float     IT_BLUE_FLAG_LOST               = 262144;
43         const float     IT_BLUE_FLAG_CARRYING   = 393216;
44 // end
45 const float   IT_5HP                       = 524288;
46 const float   IT_25HP                      = 1048576;
47 const float   IT_ARMOR_SHARD               = 2097152;
48 const float   IT_ARMOR                     = 4194304;
49
50 const float   IT_AMMO                      = 3968; // IT_SHELLS | IT_NAILS | IT_ROCKETS | IT_CELLS | IT_FUEL;
51 const float   IT_PICKUPMASK                = 51; // IT_FUEL_REGEN | IT_JETPACK | IT_UNLIMITED_AMMO; // strength and invincible are handled separately
52 const float   IT_UNLIMITED_AMMO            = 3; // IT_UNLIMITED_SUPERWEAPONS | IT_UNLIMITED_WEAPON_AMMO;
53
54 const float AMMO_COUNT = 4; // amount of ammo types to show in the inventory panel
55
56 // variables:
57 string weaponorder_byid;
58
59 // functions:
60 entity get_weaponinfo(float id);
61 string W_FixWeaponOrder(string order, float complete);
62 string W_NameWeaponOrder(string order);
63 string W_NumberWeaponOrder(string order);
64
65 // ammo types
66 .float ammo_shells;
67 .float ammo_nails;
68 .float ammo_rockets;
69 .float ammo_cells;
70 .float ammo_fuel;
71 .float ammo_batteries; // dummy
72
73 // Weapon sets
74 typedef vector WepSet;
75 WepSet WepSet_FromWeapon(float a);
76 #ifdef SVQC
77 void WepSet_AddStat();
78 void WriteWepSet(float dest, WepSet w);
79 #endif
80 #ifdef CSQC
81 WepSet WepSet_GetFromStat();
82 WepSet ReadWepSet();
83 #endif
84
85 // Weapon name macros
86 #define WEP_FIRST 1
87 #define WEP_MAXCOUNT 24 // Increase as needed. Can be up to three times as much.
88 float WEP_COUNT;
89 float WEP_LAST;
90 WepSet WEPSET_ALL;
91 WepSet WEPSET_SUPERWEAPONS;
92
93 // entity properties of weaponinfo:
94 .float weapon; // WEP_...
95 .WepSet weapons; // WEPSET_...
96 .string netname; // short name
97 .string message; // human readable name
98 .float items; // IT_...
99 .float(float) weapon_func; // w_...
100 .string mdl; // modelname without g_, v_, w_
101 .string model; // full name of g_ model
102 .float spawnflags; // WEPSPAWNFLAG_... combined
103 .float impulse; // weapon impulse
104 .float bot_pickupbasevalue; // bot weapon priority
105 .string model2; // wpn- sprite name
106 ..float ammo_field; // main ammo field
107
108 // dynamic weapon adding
109 float w_null(float dummy);
110 void register_weapon(float id, WepSet bit, float(float) func, float ammotype, float i, float weapontype, float pickupbasevalue, string modelname, string shortname, string wname);
111 void register_weapons_done();
112
113 #define REGISTER_WEAPON_2(id,bit,func,ammotype,i,weapontype,pickupbasevalue,modelname,shortname,wname) \
114         float id; \
115         WepSet bit; \
116         float func(float); \
117         void RegisterWeapons_##id() \
118         { \
119                 WEP_LAST = (id = WEP_FIRST + WEP_COUNT); \
120                 bit = WepSet_FromWeapon(id); \
121                 WEPSET_ALL |= bit; \
122                 if((weapontype) & WEP_FLAG_SUPERWEAPON) \
123                         WEPSET_SUPERWEAPONS |= bit; \
124                 ++WEP_COUNT; \
125                 register_weapon(id,bit,func,ammotype,i,weapontype,pickupbasevalue,modelname,shortname,wname); \
126         } \
127         ACCUMULATE_FUNCTION(RegisterWeapons, RegisterWeapons_##id)
128 #ifdef MENUQC
129 #define REGISTER_WEAPON(id,func,ammotype,i,weapontype,pickupbasevalue,modelname,shortname,wname) \
130         REGISTER_WEAPON_2(WEP_##id,WEPSET_##id,w_null,ammotype,i,weapontype,pickupbasevalue,modelname,shortname,wname)
131 #else
132 #define REGISTER_WEAPON(id,func,ammotype,i,weapontype,pickupbasevalue,modelname,shortname,wname) \
133         REGISTER_WEAPON_2(WEP_##id,WEPSET_##id,func,ammotype,i,weapontype,pickupbasevalue,modelname,shortname,wname)
134 #endif
135
136 #include "../server/w_all.qc"
137
138 #undef REGISTER_WEAPON
139 ACCUMULATE_FUNCTION(RegisterWeapons, register_weapons_done);
140
141
142 string W_FixWeaponOrder(string order, float complete);
143 string W_NumberWeaponOrder(string order);
144 string W_NameWeaponOrder(string order);
145 string W_FixWeaponOrder_BuildImpulseList(string o);
146 string W_FixWeaponOrder_AllowIncomplete(string order);
147 string W_FixWeaponOrder_ForceComplete(string order);
148
149 void W_RandomWeapons(entity e, float n);
150
151 string W_Name(float weaponid);
152
153 float W_AmmoItemCode(float wpn);