forked from RuiSiang/color-block-rush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattacker.cpp
60 lines (60 loc) · 1.2 KB
/
attacker.cpp
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
#include"common.h"
#include<algorithm>
//#include<iostream>
void attacker::initialize(void)
{
x=rand() % 18;
y=rand() % 18;
while(!m.islegal(x, y)){
x=17;
y=17;
}
legal_move=1;
}
void attacker::up()
{
if(m.islegal(x,y-1)) {
y--;
legal_move=1;
}
}
void attacker::down()
{
if(m.islegal(x,y+1)) {
y++;
legal_move=1;
}
}
void attacker::left()
{
if(m.islegal(x-1,y)) {
x--;
legal_move=1;
}
}
void attacker::right()
{
if(m.islegal(x+1,y)) {
x++;
legal_move=1;
}
}
void attacker::ai_move(void)
{
int a_move[4][2]= {{0,-1 },{0,1 },{-1,0 },{1,0 } };
int current_minimum=2147483647;
int current_index=-1;
int temp;
for(int i=0; i<4; i++) {
if(m.islegal(_attacker.x+a_move[i][0], _attacker.y+a_move[i][1])) {
temp=get_distance(_attacker.x+a_move[i][0], _attacker.y+a_move[i][1], _defender.x, _defender.y);
//std::cout<<temp<<"\n";
current_minimum=std::min(current_minimum, temp);
if(temp==current_minimum) {
current_index=i;
}
}
}
_attacker.x+=a_move[current_index][0];
_attacker.y+=a_move[current_index][1];
}