-
Notifications
You must be signed in to change notification settings - Fork 0
/
autobullet_test.txt
66 lines (66 loc) · 1.26 KB
/
autobullet_test.txt
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
// if (_dx == -1 && _dy == -1)
// {
// if (_x == 0)
// _dx = player_p->playerpoint.pointx - 1;
// else if (_x == 1)
// _dx = player_p->playerpoint.pointx - XMAX + 3;
// else
// _dx = player_p->playerpoint.pointx - XMAX * _x;
// if (_y == 0)
// _dy = player_p->playerpoint.pointy - 1;
// else
// _dy = player_p->playerpoint.pointy - YMAX * _y;
// float slope = (float)((float)_dy / (float)_dx);
// if (slope < -0.5 && slope >= -2)
// {
// if (_dy > 0)
// {
// _dx = 1;
// _dy = -1;
// }
// else
// {
// _dx = -1;
// _dy = 1;
// }
// }
// else if (slope < -2 && slope >= 2)
// {
// if (_dy > 0)
// {
// _dx = 0;
// _dy = -1;
// }
// else
// {
// _dx = 0;
// _dy = 1;
// }
// }
// else if (slope < 2 && slope >= 0.5)
// {
// if (_dy > 0)
// {
// _dx = -1;
// _dy = -1;
// }
// else
// {
// _dx = 1;
// _dy = 1;
// }
// }
// else if (slope < 0.5 && slope >= -0.5)
// {
// if (_dx > 0)
// {
// _dx = 1;
// _dy = 0;
// }
// else
// {
// _dx = -1;
// _dy = 0;
// }
// }
// }