summaryrefslogtreecommitdiff
path: root/src/game-server/item.hpp
blob: 7414c6718724ac88e09510fcf22c816fc6882882 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
/*
 *  The Mana Server
 *  Copyright (C) 2004  The Mana World Development Team
 *
 *  This file is part of The Mana Server.
 *
 *  The Mana Server is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  any later version.
 *
 *  The Mana Server is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with The Mana Server.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef ITEM_HPP
#define ITEM_HPP

#include <vector>

#include "game-server/actor.hpp"

class Being;
class Script;

/**
 * Enumeration of available Item types.
 */
enum ItemType
{
    ITEM_UNUSABLE = 0,
    ITEM_USABLE, //                     1
    ITEM_EQUIPMENT_ONE_HAND_WEAPON, //  2
    ITEM_EQUIPMENT_TWO_HANDS_WEAPON,//  3
    ITEM_EQUIPMENT_TORSO,//             4
    ITEM_EQUIPMENT_ARMS,//              5
    ITEM_EQUIPMENT_HEAD,//              6
    ITEM_EQUIPMENT_LEGS,//              7
    ITEM_EQUIPMENT_SHIELD,//            8
    ITEM_EQUIPMENT_RING,//              9
    ITEM_EQUIPMENT_NECKLACE,//         10
    ITEM_EQUIPMENT_FEET,//             11
    ITEM_EQUIPMENT_AMMO,//              12
    ITEM_HAIRSPRITE,
    ITEM_RACESPRITE,
    ITEM_UNKNOWN
};

ItemType itemTypeFromString (const std::string &name);

/**
 * State effects to beings, and actors.
 * States can be multiple for the same being.
 */
enum
{
    SET_STATE_NORMAL = 0,
    SET_STATE_POISONED,
    SET_STATE_STONED,
    SET_STATE_STUNNED,
    SET_STATE_SLOWED,
    SET_STATE_TIRED,
    SET_STATE_MAD,
    SET_STATE_BERSERK,
    SET_STATE_HASTED,
    SET_STATE_FLOATING,

    SET_STATE_NOT_POISONED,
    SET_STATE_NOT_STONED,
    SET_STATE_NOT_STUNNED,
    SET_STATE_NOT_SLOWED,
    SET_STATE_NOT_TIRED,
    SET_STATE_NOT_MAD,
    SET_STATE_NOT_BERSERK,
    SET_STATE_NOT_HASTED,
    SET_STATE_NOT_FLOATING
};

/**
 * Item modifier types.
 */
enum
{
    MOD_WEAPON_TYPE = 0,
    MOD_WEAPON_RANGE,
    MOD_WEAPON_DAMAGE,
    MOD_ELEMENT_TYPE,
    MOD_LIFETIME,
    MOD_ATTRIBUTE
};

/**
 * Characteristic of an item.
 */
struct ItemModifier
{
    unsigned char type;
    short value;
};

/**
 * Set of item characteristics.
 */
class ItemModifiers
{
    public:

        /**
         * Gets the value associated to a modifier type, or zero if none.
         */
        int getValue(int type) const;

        /**
         * Sets the value associated to a modifier type.
         */
        void setValue(int type, int amount);

        /**
         * Gets the value associated to a MOD_ATTRIBUTE class, or zero if none.
         */
        int getAttributeValue(int attr) const;

        /**
         * Sets the value associated to a MOD_ATTRIBUTE class.
         */
        void setAttributeValue(int attr, int amount);

        /**
         * Applies all the attribute modifiers to a given Being.
         */
        void applyAttributes(Being *) const;

        /**
         * Cancels all the applied modifiers to a given Being.
         * Only meant for equipment.
         */
        void cancelAttributes(Being *) const;

    private:
        std::vector< ItemModifier > mModifiers;
};

/**
 * Class for simple reference to item information.
 */
class ItemClass
{
    public:
        ItemClass(int id, ItemType type, Script *s = NULL)
          : mScript(NULL), mDatabaseID(id), mType(type), mAttackRange(0)
        {}

        ~ItemClass();

        /**
         * Applies the modifiers of an item to a given user.
         * @return true if the item was sucessfully used and should be removed.
         */
        bool use(Being *itemUser);

        /**
         * Gets item type.
         */
        ItemType getType() const
        { return mType; }

        /**
         * Gets item weight.
         */
        int getWeight() const
        { return mWeight; }

        /**
         * Sets item weight.
         */
        void setWeight(int weight)
        { mWeight = weight; }

        /**
         * Gets unit cost of these items.
         */
        int getCost() const
        { return mCost; }

        /**
         * Sets unit cost of these items.
         */
        void setCost(int cost)
        { mCost = cost; }

        /**
         * Gets max item per slot.
         */
        int getMaxPerSlot() const
        { return mMaxPerSlot; }

        /**
         * Sets max item per slot.
         */
        void setMaxPerSlot(int perSlot)
        { mMaxPerSlot = perSlot; }

        /**
         * Gets item modifiers.
         */
        const ItemModifiers &getModifiers() const
        { return mModifiers; }

        /**
         * Sets item modifiers.
         */
        void setModifiers(const ItemModifiers &modifiers)
        { mModifiers = modifiers; }

        /**
         * Gets database ID.
         */
        int getDatabaseID()
        { return mDatabaseID; }

        /**
         * Sets the sprite ID.
         */
        void setSpriteID(int spriteID)
        { mSpriteID = spriteID; }

        /**
         * Gets the sprite ID.
         */
        int getSpriteID()
        { return mSpriteID; }

        /**
         * Sets the script that is to be used
         */
        void setScript(Script *s)
        { mScript = s; }

        /**
         * Set attack range (only needed when the item is a weapon)
         */
        void setAttackRange(unsigned range) { mAttackRange = range; }

        /**
         * Gets attack zone of weapon (returns NULL for non-weapon items)
         */
        const unsigned getAttackRange() const
        { return mAttackRange ; }


    private:
        Script *mScript;          /**< Script for using items */

        unsigned short mDatabaseID; /**< Item reference information */
        /** The sprite that should be shown to the character */
        unsigned short mSpriteID;
        ItemType mType;           /**< Type: usable, equipment etc. */
        unsigned short mWeight;   /**< Weight of the item. */
        unsigned short mCost;     /**< Unit cost the item. */
        /** Max item amount per slot in inventory. */
        unsigned short mMaxPerSlot;

        ItemModifiers mModifiers; /**< Item modifiers. */
        unsigned mAttackRange;  /**< Attack range when used as a weapon */
};

class Item : public Actor
{
    public:
        Item(ItemClass *type, int amount)
          : Actor(OBJECT_ITEM), mType(type), mAmount(amount)
        {}

        ItemClass *getItemClass() const
        { return mType; }

        int getAmount() const
        { return mAmount; }

        virtual void update() {}

    private:
        ItemClass *mType;
        unsigned char mAmount;
};

#endif