-
Notifications
You must be signed in to change notification settings - Fork 1
/
operativo.asl
149 lines (122 loc) · 3.01 KB
/
operativo.asl
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
138
139
140
141
142
143
144
145
146
147
148
149
/*
Autores: Antoni Mestre Gascón & Mario Campos Mocholí
Nombre: Operativo
*/
/* Creencia que se dispara cuando se inicia la partida */
+flag(F): team(200)
<-
!generarPatrulla.
/* El agente gira mientras patrulla */
+!rolling(Rot)
<-
.turn(Rot);
.wait(250);
!!rolling(Rot + 1).
/* ESTRATEGIA DE PATRULLA EN ROMBO (EXTERIOR) */
/* Generamos unos puntos de control en rombo */
+!generarPatrulla
<-
?flag(F);
.circuloInterior(F, C);
+control_points(C);
.length(C, L);
+total_control_points(L);
+patrolling;
.get_service("general");
!!rolling(1);
+patroll_point(0).
+target_reached(T): patrolling & team(200)
<-
.reload;
?patroll_point(P);
-+patroll_point(P+1);
-target_reached(T).
+patroll_point(P): total_control_points(T) & P<T
<-
?control_points(C);
.nth(P,C,A);
.goto(A).
+patroll_point(P): total_control_points(T) & P==T
<-
-patroll_point(P);
+patroll_point(0).
+ammo(A): A < 20
<-
.reload.
// ESTRATEGIA DE RECEPCIÓN Y ENVIAMIENTO DE SOLICITUDES DE AYUDA DE MUNICIÓN
/* Recibo solictud de ayuda */
+solicitudDeMunicion(Pos)[source(A)]: not (ayudando(_,_))
<-
?position(MiPos);
.send(A, tell, respuestaMunicion(MiPos));
+ayudando(A, Pos);
-solicitudDeMunicion(_).
/* Me aceptan la respuesta de solicitud de ayuda */
+solicitudAceptada[source(A)]: ayudando(A, Pos)
<-
-control_points(_);
-total_control_points(_);
-patrolling;
-patroll_point(_);
.goto(Pos).
/* Me rechazan la respuesta de solicitud de ayuda */
+solicitudDenegada[source(A)]: ayudando(A, Pos)
<-
-ayudando(_, _).
/* Voy a la posición del agente que me ha aceptado */
+target_reached(T): ayudando(A, T)
<-
.reload;
-ayudando(_, _);
!generarPatrulla.
//* ESTRATEGIA PARA IR EN COLMENA A POR UN ENEMIGO */
/* Visualizo un enemigo y no he avisado al General */
+enemies_in_fov(_, _, _, _, _, Position): not solicitandoAtaque & not atacando
<-
+solicitandoAtaque;
?general(General);
.send(General, tell, solicitudDeColmena(Position));
.look_at(Position);
.shoot(10, Position).
/* Visualizo un enemigo */
+enemies_in_fov(_, _, _, _, _, Position): solicitandoAtaque | atacando
<-
.look_at(Position);
+puedoDisparar(True);
.while (?friends_in_fov(_,_,_,_,_,AmigoPos) & ?puedoDisparar(C) & C) {
?position(MiPosicion);
.fuegoAmigo(MiPosicion, Position, AmigoPos, Aux);
if (Aux) {
-+puedoDisparar(False);
}
}
if (?puedoDisparar(B) & B) {
.shoot(5, Position);
}
-puedoDisparar(_).
+solicitudC(Pos)[source(A)]: not atacando
<-
?position(MiPos);
.send(A, tell, respuestaColmenaF(MiPos));
+ayudandoc(Pos);
-solicitudC(_).
/* Me aceptan la respuesta de solicitud de apoyo */
+solicitudAceptadaC(Pos)[source(A)]
<-
-control_points(_);
-total_control_points(_);
-patrolling;
-patroll_point(_);
+atacando;
.goto(Pos);
-solicitudAceptadaC(_).
/* Me rechazan la respuesta de solicitud de ayuda */
+solicitudDenegadaC[source(A)]
<-
-ayudandoc(Pos).
/* Llego al objetivo del ataque en colmena */
+target_reached(Pos): atacando & solicitandoAtaque
<-
-atacando;
-solicitandoAtaque;
!generarPatrulla.