summaryrefslogtreecommitdiff
path: root/src/common/mmo.hpp
blob: 7441a161935fdc8e6738466502752f07bf82ea3f (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
/// Global structures and defines
#ifndef MMO_HPP
#define MMO_HPP

# include <time.h>
# include "utils.hpp"              // LCCWIN32

# define FIFOSIZE_SERVERLINK    256*1024

// set to 0 to not check IP of player between each server.
// set to another value if you want to check (1)
# define CMP_AUTHFIFO_IP 1

# define CMP_AUTHFIFO_LOGIN2 1

# define MAX_MAP_PER_SERVER 512
# define MAX_INVENTORY 100
# define MAX_AMOUNT 30000
# define MAX_ZENY 1000000000     // 1G zeny
# define MAX_CART 100
# define MAX_SKILL 450
# define GLOBAL_REG_NUM 96
# define ACCOUNT_REG_NUM 16
# define ACCOUNT_REG2_NUM 16
# define DEFAULT_WALK_SPEED 150
# define MIN_WALK_SPEED 0
# define MAX_WALK_SPEED 1000
# define MAX_STORAGE 300
# define MAX_PARTY 12

# define MIN_HAIR_STYLE battle_config.min_hair_style
# define MAX_HAIR_STYLE battle_config.max_hair_style
# define MIN_HAIR_COLOR battle_config.min_hair_color
# define MAX_HAIR_COLOR battle_config.max_hair_color
# define MIN_CLOTH_COLOR battle_config.min_cloth_color
# define MAX_CLOTH_COLOR battle_config.max_cloth_color

// for produce
# define MIN_ATTRIBUTE 0
# define MAX_ATTRIBUTE 4
# define ATTRIBUTE_NORMAL 0
# define MIN_STAR 0
# define MAX_STAR 3

# define MIN_PORTAL_MEMO 0
# define MAX_PORTAL_MEMO 2

# define MAX_STATUS_TYPE 5

# define CHAR_CONF_NAME  "conf/char_athena.conf"

struct item
{
    int id;
    short nameid;
    short amount;
    unsigned short equip;
    char identify;
    char refine;
    char attribute;
    short card[4];
    short broken;
};

struct point
{
    char map[24];
    short x, y;
};

struct skill
{
    unsigned short id, lv, flags;
};

struct global_reg
{
    char str[32];
    int value;
};

struct mmo_charstatus
{
    int char_id;
    int account_id;
    int partner_id;

    int base_exp, job_exp, zeny;

    short pc_class;
    short status_point, skill_point;
    int hp, max_hp, sp, max_sp;
    short option, karma, manner;
    short hair, hair_color, clothes_color;
    int party_id;

    short weapon, shield;
    short head_top, head_mid, head_bottom;

    char name[24];
    unsigned char base_level, job_level;
    short str, agi, vit, int_, dex, luk;
    unsigned char char_num, sex;

    unsigned long mapip;
    unsigned int mapport;

    struct point last_point, save_point, memo_point[10];
    struct item inventory[MAX_INVENTORY], cart[MAX_CART];
    struct skill skill[MAX_SKILL];
    int global_reg_num;
    struct global_reg global_reg[GLOBAL_REG_NUM];
    int account_reg_num;
    struct global_reg account_reg[ACCOUNT_REG_NUM];
    int account_reg2_num;
    struct global_reg account_reg2[ACCOUNT_REG2_NUM];
};

struct storage
{
    int dirty;
    int account_id;
    short storage_status;
    short storage_amount;
    struct item storage_[MAX_STORAGE];
};

struct map_session_data;

struct gm_account
{
    int account_id;
    int level;
};

struct party_member
{
    int account_id;
    char name[24], map[24];
    int leader, online, lv;
    struct map_session_data *sd;
};

struct party
{
    int party_id;
    char name[24];
    int exp;
    int item;
    struct party_member member[MAX_PARTY];
};

struct square
{
    int val1[5];
    int val2[5];
};

#endif // MMO_HPP