-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlabirinto.cs
187 lines (154 loc) · 3.9 KB
/
labirinto.cs
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/* Começa aqui */
int ms_meioq = 575;
bc.actuatorSpeed(150);
bc.actuatorUp(1000);
Action <float, int> turn = (forca, lado) => {
int[] values = {0, 90, 180, 270, 360};
int i, menorDifIdx = -1;
float menorDif = 0;
for(i = 0; i < 5; i++){
if(i == 0){
menorDif = Math.Abs(values[i] - bc.compass());
menorDifIdx = i;
}
if(Math.Abs(values[i] - bc.compass()) < menorDif){
menorDif = Math.Abs(values[i] - bc.compass());
menorDifIdx = i;
}
}
float g_inicial = values[menorDifIdx];
bc.printLCD(1, menorDifIdx.ToString());
bc.printLCD(2, menorDif.ToString());
bc.printLCD(3, bc.compass().ToString());
bc.wait(500);
bc.clearLCD();
if(lado == 1){
while(bc.compass() > values[(menorDifIdx-1)%5]){
bc.onTF((lado)*forca , (-lado)*forca);
bc.printLCD(2, Math.Abs(bc.compass() - g_inicial).ToString());
}
}
bc.onTF(0, 0);
};
Action < int> andar = (quadrados) => {
//funcao que anda de um centro do quadrado para o proximo
for (int i=0; i<quadrados;i++){
bc.onTF(300, 300);
bc.wait(1250);
bc.onTF(0, 0);
}
};
double direcaoInicial = 0;
double direcaoFinal = 0;
Action curvaFixadaDireita = () => {
//funcao que faz a curva de 90 graus
direcaoInicial = Math.Round(bc.compass()/90)*90;
direcaoFinal = (90* ( Math.Round(bc.compass()/90) +1 )) % 360;
if(direcaoFinal == 0){
//Adapta o resultado do resto pro caso em que
// a curva vai crescendo até chegar em 0 = 360
direcaoFinal = 359;
}
if(direcaoInicial == 360){
bc.onTF(-1000, 1000);
bc.wait(500);
}
while( bc.compass() < direcaoFinal & bc.compass() < 360){
bc.onTF(-1000, 1000);
}
bc.onTF(0, 0);
};
Action curvaFixadaEsquerda = () => {
//funcao que faz a curva de 90 graus
direcaoInicial = Math.Round(bc.compass()/90)*90;
direcaoFinal = (90* ( Math.Round(bc.compass()/90) -1 )) % 360;
bc.printLCD(1, direcaoInicial.ToString());
bc.printLCD(2, direcaoFinal.ToString());
if(direcaoFinal == -90){
//Adapta o resultado do resto pro caso em que
//a curva vai crescendo até chegar em 0 = 360
direcaoFinal = 270;
}
if(direcaoInicial == 0){
bc.onTF(1000, -1000);
bc.wait(500);
}
while( bc.compass() > direcaoFinal & bc.compass() > 1){
bc.onTF(1000, -1000);
}
bc.onTF(0, 0);
bc.printLCD(3, bc.compass().ToString());
};
Func < int> random = () => { //funcao que retornchegar em aleatorio sendo 1 ou -1
int a = bc.randomLimits(1, 2);
if (a == 1) {
return (1);
} else {
return (-1);
}
};
int direcao = random();
float distancia_sensor = 75;
int vel_ang = 400;
int ilha = 0;
bc.onTF(-300, -300);
bc.wait(100);
bc.onTF(0, 0);
//Direita
if (direcao == 1){
while(true){
bc.printLCD(2, direcao.ToString());
//Ligar os motores pra frente
bc.printLCD(1, "SEGUIR RETO");
andar(1);
bc.wait(500);
if(bc.distance(1) >= distancia_sensor){
// Curva na direção padrão
bc.printLCD(1, "CURVA A DIREITA");
if (ilha == 0){
curvaFixadaEsquerda();
ilha++;
}
curvaFixadaDireita();
}
else if (bc.distance(0) <= distancia_sensor) {
if(bc.distance(2) >= distancia_sensor){
bc.printLCD(1, "CURVA A ESQUERDA");
curvaFixadaEsquerda();
}
else{
bc.printLCD(1, "MEIA VOLTA");
bc.onTFRot(vel_ang, direcao*180);
}
}
}
}
else{ //Esquerda
while(true){
bc.printLCD(2, direcao.ToString());
//Ligar os motores pra frente
bc.printLCD(1, "SEGUIR RETO");
andar(1);
bc.wait(500);
if(bc.distance(2) >= distancia_sensor){
// Curva na direção padrão
bc.printLCD(1, "CURVA A ESQUERDA");
if (ilha == 0){
curvaFixadaDireita();
ilha++;
}
curvaFixadaEsquerda();
}
else if (bc.distance(0) <= distancia_sensor) {
if(bc.distance(1) >= distancia_sensor){
bc.printLCD(1, "CURVA A DIREITA");
curvaFixadaDireita();
}
else{
bc.printLCD(1, "MEIA VOLTA");
bc.onTFRot(vel_ang, direcao*180);
}
}
}
}
bc.onTF(0, 0);