-
Notifications
You must be signed in to change notification settings - Fork 0
/
find_dir.c
61 lines (58 loc) · 2.18 KB
/
find_dir.c
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* find_dir.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rvan-der <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/02/18 20:34:02 by rvan-der #+# #+# */
/* Updated: 2017/02/20 20:21:57 by rvan-der ### ########.fr */
/* */
/* ************************************************************************** */
#include "filler.h"
t_dir find_dir2(t_coord pnt, t_plateau p)
{
if (!pnt.x)
{
if (!is_ennemi((p.map)[pnt.y][pnt.x + 1], p.pl))
return (is_ennemi((p.map)[pnt.y + 1][pnt.x], p.pl) ? N : St);
return (W);
}
else if (pnt.x == (p.size).x - 1)
{
if (!is_ennemi((p.map)[pnt.y][pnt.x - 1], p.pl))
return (is_ennemi((p.map)[pnt.y + 1][pnt.x], p.pl) ? N : St);
return (E);
}
else if (is_ennemi((p.map)[pnt.y + 1][pnt.x], p.pl))
return (N);
else if (is_ennemi((p.map)[pnt.y - 1][pnt.x], p.pl))
return (St);
else if (is_ennemi((p.map)[pnt.y][pnt.x + 1], p.pl))
return (W);
return (E);
}
t_dir find_dir(t_coord pnt, t_plateau p)
{
if (pnt.y == (p.size).y - 1)
{
if (!pnt.x)
return (is_ennemi((p.map)[pnt.y - 1][0], p.pl) ? E : N);
if (pnt.x == (p.size).x - 1)
return (is_ennemi((p.map)[pnt.y - 1][pnt.x], p.pl) ? W : N);
if (!is_ennemi((p.map)[pnt.y - 1][pnt.x], p.pl))
return (is_ennemi((p.map)[pnt.y][pnt.x + 1], p.pl) ? W : E);
return (St);
}
else if (!pnt.y)
{
if (!pnt.x)
return (is_ennemi((p.map)[pnt.y + 1][0], p.pl) ? E : St);
if (pnt.x == (p.size).x - 1)
return (is_ennemi((p.map)[pnt.y + 1][pnt.x], p.pl) ? W : St);
if (!is_ennemi((p.map)[pnt.y + 1][pnt.x], p.pl))
return (is_ennemi((p.map)[pnt.y][pnt.x + 1], p.pl) ? W : E);
return (N);
}
return (find_dir2(pnt, p));
}