-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmsg.h
More file actions
70 lines (51 loc) · 771 Bytes
/
msg.h
File metadata and controls
70 lines (51 loc) · 771 Bytes
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
#ifndef MSG_H
#define MSG_H
#include <QMap>
enum CellType {
NONE,
WALL,
ZONE,
RES1,
RES2
};
struct Cell {
int row, col;
CellType type;
};
struct Map {
Cell** cells;
int row,col;
};
struct InitMSG {
Map map;
};
enum Direction {
D_up,D_down,D_left,D_right,D_none
};
struct HeroPickMSG {
int id;
QString name;
int row, col;
};
struct MoveMSG {
HeroPickMSG heroes[2][4];
int currentAP[2];
};
struct ActionMSG {
};
struct PickMSG {
HeroPickMSG heroes[2][4];
};
struct HeroMSG {
int id;
int currentHP;
int remRespawnTime;
QMap<QString, int> remCool;
};
struct StatusMSG {
HeroMSG heroes[8];
int respwanedHeroID[8];
int score[2];
int turn;
};
#endif // MSG_H