summaryrefslogtreecommitdiff
path: root/src/playerinfo.h
blob: 421e93bcca7a015251e3e731009438689f4ee6a3 (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
/*
 *  The Mana Client
 *  Copyright (C) 2010  The Mana Developers
 *
 *  This file is part of The Mana 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 PLAYERINFO_H
#define PLAYERINFO_H

#include <map>
#include <string>

enum Attribute
{
    LEVEL,
    HP, MAX_HP,
    MP, MAX_MP,
    EXP, EXP_NEEDED,
    MONEY,
    TOTAL_WEIGHT, MAX_WEIGHT,
    SKILL_POINTS,
    CHAR_POINTS, CORR_POINTS
};

struct Stat
{
    int base;
    int mod;
    int exp;
    int expneed;
};

typedef std::map<int, int> IntMap;
typedef std::map<int, Stat> StatMap;

struct PlayerInfoBackend
{
    public:
    IntMap mAttributes;
    StatMap mStats;
};

/**
 * A database like class which holds global info about the localplayer
 */
class PlayerInfo
{
    // NOTE: All agruements for 'bool notify' is to determine if
    // a event is to be triggered
    public:
        static void setBackend(const PlayerInfoBackend &backend);

        /**
         * Attributes for things like money and exp
         */
        static int getAttribute(int id);

        static void setAttribute(int id, int value, bool notify = true);


        /**
         * Stats are modifiable attributes basicilly, like str, crit, trade
         */

        static int getStatBase(int id);

        static void setStatBase(int id, int value, bool notify = true);

        static int getStatMod(int id);

        static void setStatMod(int id, int value, bool notify = true);

        // Base + mod
        static int getStatEffective(int id);

        static void setStatLevel(int id, int value, bool notify = true);

        static std::pair<int, int> getStatExperience(int id);

        static void setStatExperience(int id, int have, int need, bool notify = true);

    private:
        // Triggers send events for action.
        static void triggerAttr(int id);

        static void triggerStat(int id);

        static PlayerInfoBackend mData;
};

#endif