summaryrefslogtreecommitdiff
path: root/src/avatar.h
blob: 9804b318e4112e40b183a98020f9c58232a8ff6d (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
/*
 *  The ManaPlus Client
 *  Copyright (C) 2008-2009  The Mana World Development Team
 *  Copyright (C) 2009-2010  The Mana Developers
 *  Copyright (C) 2011-2014  The ManaPlus Developers
 *
 *  This file is part of The ManaPlus Client.
 *
 *  This program 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.
 *
 *  This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef AVATAR_H
#define AVATAR_H

#include "localconsts.h"

#include <string>

enum AvatarType
{
    AVATAR_PLAYER = 0
};

class Avatar
{
public:
    explicit Avatar(const std::string &name = "");

    A_DELETE_COPY(Avatar)

    virtual ~Avatar()
    { }

    /**
     * Returns the avatar's name.
     */
    std::string getName() const A_WARN_UNUSED
    { return mName; }

    /**
     * Set the avatar's name.
     */
    void setName(const std::string &name)
    { mName = name; }

    /**
     * Returns the avatar's original name.
     */
    std::string getOriginalName() const A_WARN_UNUSED
    { return mOriginalName; }

    std::string getComplexName() const A_WARN_UNUSED;

    virtual std::string getAdditionString() const A_WARN_UNUSED;

    /**
     * Set the avatar's original name.
     */
    void setOriginalName(const std::string &name)
    { mOriginalName = name; }

    /**
     * Returns the avatar's online status.
     */
    bool getOnline() const A_WARN_UNUSED
    { return mOnline; }

    /**
     * Set the avatar's online status.
     */
    void setOnline(const bool online)
    { mOnline = online; }

    int getHp() const A_WARN_UNUSED
    { return mHp; }

    void setHp(const int hp)
    { mHp = hp; }

    int getMaxHp() const A_WARN_UNUSED
    { return mMaxHp; }

    void setMaxHp(const int maxHp)
    { mMaxHp = maxHp; }

    int getDamageHp() const A_WARN_UNUSED
    { return mDamageHp; }

    void setDamageHp(const int damageHp)
    { mDamageHp = damageHp; }

    bool getDisplayBold() const A_WARN_UNUSED
    { return mDisplayBold; }

    void setDisplayBold(const bool displayBold)
    { mDisplayBold = displayBold; }

    int getLevel() const A_WARN_UNUSED
    { return mLevel; }

    void setLevel(const int level)
    { mLevel = level; }

    std::string getMap() const A_WARN_UNUSED
    { return mMap; }

    void setMap(std::string map)
    { mMap = map; }

    int getX() const A_WARN_UNUSED
    { return mX; }

    void setX(const int x)
    { mX = x; }

    int getY() const A_WARN_UNUSED
    { return mY; }

    void setY(const int y)
    { mY = y; }

    int getType() const A_WARN_UNUSED
    { return mType; }

    void setType(const int n)
    { mType = n; }

    int getExp() const A_WARN_UNUSED
    { return mExp; }

    void setExp(const int n)
    { mExp = n; }

    int getID() const A_WARN_UNUSED
    { return mId; }

    void setID(const int id)
    { mId = id; }

    int getCharId() const A_WARN_UNUSED
    { return mCharId; }

    void setCharId(const int id)
    { mCharId = id; }

    int getGender() const A_WARN_UNUSED
    { return mGender; }

    void setGender(const int g)
    { mGender = g; }

    int getRace() const A_WARN_UNUSED
    { return mRace; }

    void setRace(const int r)
    { mRace = r; }

    const std::string &getIp() const A_WARN_UNUSED
    { return mIp; }

    void setIp(std::string ip)
    { mIp = ip; }

protected:
    int mId;
    int mCharId;
    std::string mName;
    std::string mOriginalName;
    int mHp;
    int mMaxHp;
    int mDamageHp;
    int mLevel;
    std::string mMap;
    int mX;
    int mY;
    int mType;
    int mExp;
    int mGender;
    int mRace;
    std::string mIp;
    bool mOnline;
    bool mDisplayBold;
};

#endif  // AVATAR_H