]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/resources.qh
Random start weapons: Merged URS2.
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / resources.qh
1 #pragma once
2
3 /// \brief Unconditional maximum amount of resources the player can have.
4 const int RESOURCE_AMOUNT_HARD_LIMIT = 999;
5
6 /// \brief Describes the available resource types.
7 enum
8 {
9         RESOURCE_HEALTH = 1, ///< Health.
10         RESOURCE_ARMOR, ///< Armor.
11         RESOURCE_SHELLS, ///< Shells (used by shotgun).
12         RESOURCE_BULLETS, ///< Bullets (used by machinegun and rifle)
13         RESOURCE_ROCKETS, ///< Rockets (used by mortar, hagar, devastator, etc).
14         RESOURCE_CELLS, ///< Cells (used by electro, crylink, vortex, etc)
15         RESOURCE_PLASMA, ///< Plasma (unused).
16         RESOURCE_FUEL ///< Fuel (used by jetpack).
17 };
18
19 // ============================ Public API ====================================
20
21 /// \brief Returns the maximum amount of the given resource.
22 /// \param[in] e Entity to check.
23 /// \param[in] resource_type Type of the resource (a RESOURCE_* constant).
24 /// \return Maximum amount of the given resource.
25 float GetResourceLimit(entity e, int resource_type);
26
27 /// \brief Returns the current amount of resource the given entity has.
28 /// \param[in] e Entity to check.
29 /// \param[in] resource_type Type of the resource (a RESOURCE_* constant).
30 /// \return Current amount of resource the given entity has.
31 float GetResourceAmount(entity e, int resource_type);
32
33 /// \brief Gives an entity some resource.
34 /// \param[in,out] receiver Entity to give resource to.
35 /// \param[in] resource_type Type of the resource (a RESOURCE_* constant).
36 /// \param[in] amount Amount of resource to give.
37 /// \return No return.
38 void GiveResource(entity receiver, int resource_type, float amount);
39
40 // ===================== Legacy and/or internal API ===========================
41
42 /// \brief Converts an entity field to resource type.
43 /// \param[in] resource_field Entity field to convert.
44 /// \return Resource type (a RESOURCE_* constant).
45 int GetResourceType(.float resource_field);
46
47 /// \brief Converts resource type (a RESOURCE_* constant) to entity field.
48 /// \param[in] resource_type Type of the resource.
49 /// \return Entity field for that resource.
50 .float GetResourceField(int resource_type);