-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtank_move.hpp
137 lines (116 loc) · 3.12 KB
/
tank_move.hpp
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
#pragma once
//坦克移动实现
//#include"init_tank_pos.hpp"
//坦克方向枚举
enum Direction {
UP,
DOWN,
LEFT,
RIGHT
};
class bullet {
public:
int x, y;
Direction bullet_direction;
int status = 0;
};
//坦克类
class Tank {
public:
int x;
int y;
Direction tank_direction;
int live = 1;
int tank_current_num = 3;
static void bullet_fire_init(Tank* tank, bullet* bullet) {
if (bullet->status == 0) {
if (tank->tank_direction == UP) {
bullet->x = tank->x * 25 + 23;
bullet->y = tank->y * 25 - 3;
}
else if (tank->tank_direction == LEFT) {
bullet->x = tank->x * 25 - 3;
bullet->y = tank->y * 25 + 23;
}
else if (tank->tank_direction == DOWN) {
bullet->x = tank->x * 25 + 23;
bullet->y = tank->y * 25 + 56;
}
else if (tank->tank_direction == RIGHT) {
bullet->x = tank->x * 25 + 56;
bullet->y = tank->y * 25 + 23;
}
//调整方向
bullet->bullet_direction = tank->tank_direction;
bullet->status = 1;
//return *bullet;
}
}
Direction enemytank_auto_move(Tank* etank, int x, int y) {
auto res = rand() % 100;
for (int i = 0; i < etank->tank_current_num; i++) {
if (etank->x < x) {
if (etank->y < y) {
if (res <= 50) {
return RIGHT;
}
else {
return DOWN;
}
}
else {
if (res <= 50) {
return RIGHT;
}
else return UP;
}
}
else {
if (etank->y < y) {
if (res <= 50) {
return LEFT;
}
else return DOWN;
}
else {
if (res <= 50) {
return LEFT;
}
else return UP;
}
}
}
}
};
int tank_move(Tank* tank_s, Direction direction, IMAGE* img, int step) {
int new_x = tank_s->x;
int new_y = tank_s->y;
int pos_data = map[tank_s->y][tank_s->x];
if (step == 1) {
if (direction == UP) {
new_y -= 1;
}
else if (direction == DOWN) {
new_y += 1;
}
else if (direction == LEFT) {
new_x -= 1;
}
else if (direction == RIGHT) {
new_x += 1;
}
else {
return 0;
}
change_pos_data(tank_s->y, tank_s->x, 0);
}
setfillcolor(BLACK);
solidrectangle(tank_s->x * 25, tank_s->y * 25, tank_s->x * 25 + 50, tank_s->y * 25 + 50);
if (step == 1) {
change_pos_data(new_y, new_x, pos_data);
tank_s->x = new_x;
tank_s->y = new_y;
}
putimage(tank_s->x * 25, tank_s->y * 25, img);
return 1;
}