This repository has been archived by the owner on May 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
falonso2.cpp
669 lines (563 loc) · 18.5 KB
/
falonso2.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
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
/*
* PROGRAMA FALONSO2.C
* Autores: Carlos Manjón García y Miguel Sánchez González 22-MAY-2019.
*/
#include <iostream>
#include <stdio.h>
#include <Windows.h>
#include <signal.h>
#include <time.h>
#include "falonso2.h"
/* Constantes de la funcion exit(). */
#define ERR_ARGS (unsigned char)151 /* Error de argumentos. */
#define ERR_PIST (unsigned char)152 /* Error al crear evento pistoletazo. */
#define ERR_HILO (unsigned char)153 /* Error al crear nuevo hilo. */
#define ERR_DLL (unsigned char)154 /* Error al cargar biblioteca DLL. */
#define ERR_SEM (unsigned char)155 /* Error al crear un semáforo. */
#define ERR_MEM (unsigned char)156 /* Error en la memoria compartida. */
/* Constantes de los semáforos. */
#define SEM_ATOM 274 /* Semáforo para partes atómicas. */
/* Número máximo de hijos. */
#define NUM_HIJOS 25
#define NUM_SEM 275
#define T_EJECUCION 30000
/* Cargamos la libreria DLL. */
HINSTANCE libreria = LoadLibrary("falonso2.dll");
/* Funciones de los hijos. */
DWORD WINAPI funcionHijo(LPVOID parametro);
int puedoAvanzar(int carril, int desp);
int puedoCambiarCarril(int carril, int desp);
/* Funciones de control. */
DWORD WINAPI controlCruce(LPVOID parametro);
void abrirCruce(int dirCruce);
void cerrarCruce(int dirCruce);
/* Definiciones de las funciones de librería. */
int (*FALONSO2_inicio)(int);
int (*FALONSO2_fin)(int*);
int (*FALONSO2_luz_semAforo)(int, int);
int (*FALONSO2_estado_semAforo)(int);
int (*FALONSO2_inicio_coche)(int*, int*, int);
int (*FALONSO2_avance_coche)(int*, int*, int);
int (*FALONSO2_velocidad)(int, int, int);
int (*FALONSO2_cambio_carril)(int*, int*, int);
int (*FALONSO2_posiciOn_ocupada)(int, int);
int (*FALONSO2_pausa)(void);
void (*pon_error)(const char*);
/* Variables globales. */
HANDLE sem[NUM_SEM];
int numVueltas = 0;
HANDLE pistoletazo;
int main(int argc, const char *argv[]) {
/* Comprobamos que se han introducido correctamente los argumentos. */
if (argc != 3) {
puts("Modo de uso, \"./falonso (numero de coches) (velocidad 0/1)\".");
exit(ERR_ARGS);
}
const int num_coches = atoi(argv[1]); /* Número de hijos. */
const int vel_coches = atoi(argv[2]); /* Velocidad de los coches. */
if ((num_coches <= 0) && (num_coches > NUM_HIJOS)) {
printf("Número de coches erróneo (max. %d).", NUM_HIJOS);
exit(ERR_ARGS);
}
else if ((vel_coches != 0) && (vel_coches != 1)) {
puts("Velocidad de coches 1(normal) o 0(rápida).");
exit(ERR_ARGS);
}
/* Comprobamos que la librería se ha cargado correctamente. */
if (libreria == NULL) {
perror("Error al cargar DLL");
exit(ERR_DLL);
}
/* Incluimos las funciones de la dll. */
FALONSO2_inicio = (int(*)(int))GetProcAddress(libreria, "FALONSO2_inicio");
FALONSO2_fin = (int(*)(int*))GetProcAddress(libreria, "FALONSO2_fin");
FALONSO2_luz_semAforo = (int(*)(int, int))GetProcAddress(libreria, "FALONSO2_luz_semAforo");
FALONSO2_estado_semAforo = (int(*)(int))GetProcAddress(libreria, "FALONSO2_estado_semAforo");
FALONSO2_inicio_coche = (int(*)(int*, int*, int))GetProcAddress(libreria, "FALONSO2_inicio_coche");
FALONSO2_avance_coche = (int(*)(int*, int*, int))GetProcAddress(libreria, "FALONSO2_avance_coche");
FALONSO2_velocidad = (int(*)(int, int, int))GetProcAddress(libreria, "FALONSO2_velocidad");
FALONSO2_cambio_carril = (int(*)(int*, int*, int))GetProcAddress(libreria, "FALONSO2_cambio_carril");
FALONSO2_posiciOn_ocupada = (int(*)(int, int))GetProcAddress(libreria, "FALONSO2_posiciOn_ocupada");
pon_error = (void(*)(const char*))GetProcAddress(libreria, "pon_error");
/* Memoria Compartida. */
int flagHijos = 1;
int flagCruce = 1;
HANDLE memoriaHijos;
HANDLE memoriaCruce;
LPVOID refHijos;
LPVOID refCruce;
/* Creamos la memoria compartida para los hijos, la asignamos a un puntero y le damos un valor. */
if (NULL == (memoriaHijos = CreateFileMapping(NULL, NULL, PAGE_READWRITE, 0, sizeof(int), "salir"))) {
perror("Error al crear memoria");
exit(ERR_MEM);
}
if (NULL == (refHijos = (LPVOID)MapViewOfFile(memoriaHijos, FILE_MAP_ALL_ACCESS, 0, 0, sizeof(int)))) {
perror("Error al mapear memoria");
exit(ERR_MEM);
}
CopyMemory(refHijos, &flagHijos, sizeof(int));
/* Creamos la memoria compartida para el padre, la asignamos a un puntero y le damos un valor. */
if (NULL == (memoriaCruce = CreateFileMapping(NULL, NULL, PAGE_READWRITE, 0, sizeof(int), "salirC"))) {
perror("Error al crear memoria");
exit(ERR_MEM);
}
if (NULL == (refCruce = (LPVOID)MapViewOfFile(memoriaCruce, FILE_MAP_ALL_ACCESS, 0, 0, sizeof(int)))) {
perror("Error al mapear memoria");
exit(ERR_MEM);
}
CopyMemory(refCruce, &flagCruce, sizeof(int));
/* Declaración de Variables */
HANDLE cruce; /* Hilo del padre. */
HANDLE hijos[NUM_HIJOS]; /* Array de hilos de los hijos. */
/* Asignamos pistoletazo a un evento. */
pistoletazo = CreateEvent(NULL, TRUE, FALSE, "pistoletazo");
if (pistoletazo == NULL) {
perror("Error al crear evento pistoletazo");
exit(ERR_PIST);
}
/* Declaramos los semáforos. */
for (int i = 0; i < NUM_SEM; i++) {
sem[i] = CreateSemaphore(NULL, 1, 1, NULL);
if (sem[i] == NULL) {
perror("Error al crear semaforo");
exit(ERR_SEM);
}
}
/* Iniciamos el circuito. */
FALONSO2_inicio(vel_coches);
/* Creamos un hilo por cada hijo. */
for (int i = 0; i < num_coches; i++) {
hijos[i] = CreateThread(NULL, 0, funcionHijo, LPVOID(i), 0, NULL);
if (hijos[i] == NULL) {
perror("Error al crear el hilo");
exit(ERR_HILO);
}
}
/* Creamos Proceso que controla el cruce */
cruce = CreateThread(NULL, 0, controlCruce, 0, 0, NULL);
if (cruce == NULL) {
perror("Error al crear el hilo");
exit(ERR_HILO);
}
/* Damos el pistoletazo de salida. */
SetEvent(pistoletazo);
/* Ejecutamos el programam durante este tiempo. */
Sleep(T_EJECUCION);
flagCruce = 0;
CopyMemory(refCruce, &flagCruce, sizeof(int));
WaitForSingleObject(pistoletazo, INFINITE);
flagHijos = 0;
CopyMemory(refHijos, &flagHijos, sizeof(int));
/* Cierre del Programa. */
FALONSO2_fin(&numVueltas);
/* Finalizamos todos los hilos de los hijos. */
for (int i = 0; i < num_coches; i++)
CloseHandle(hijos[i]);
/* Eliminamos todos los semáforos. */
for (int i = 0; i < NUM_SEM; i++)
CloseHandle(sem[i]);
/* Eliminamos el hilo del padre. */
CloseHandle(cruce);
/* Liberamos el evento. */
CloseHandle(pistoletazo);
/* Cerrramos Memoria Comparida */
UnmapViewOfFile(refHijos);
UnmapViewOfFile(refCruce);
CloseHandle(memoriaHijos);
CloseHandle(memoriaCruce);
/* Descargamos la librería. */
FreeLibrary(libreria);
return 0;
}
/*
* Función para los hilos de los hijos(coches).
*/
DWORD WINAPI funcionHijo(LPVOID parametro)
{
HANDLE memoria = OpenFileMapping(FILE_MAP_ALL_ACCESS, FALSE, "salir");
LPVOID ref = (LPVOID)MapViewOfFile(memoria, FILE_MAP_ALL_ACCESS, 0, 0, sizeof(int));
int* flagHijos = (int*)ref;
/* Calculamos la semilla para la función rand(). */
srand((int)parametro);
/* Variables del hijo. */
int carril = (int)parametro % 2; /* Carril del coche. */
int desp = (int)parametro / 2; /* Posición del coche. */
int color = rand() % 8; /* Color del coche. */
int velo = 1 + (rand() % 99); /* Velocidad del coche. */
int tempC, tempD; /* Variables temporales para el cambio de posición. */
int cambio = 0; /* Flag para indicar si se ha cambiado de carril. */
/* Si calcula un color azul lo cambia a otro. */
if (1 == color) color++;
/* Reservamos la posición de salida del coche. */
if (carril == CARRIL_DERECHO)
WaitForSingleObject(sem[desp], INFINITE);
else
WaitForSingleObject(sem[137 + desp], INFINITE);
/* Ponemos el coche en la posición de salida. */
FALONSO2_inicio_coche(&carril, &desp, color);
/* Esperar todos los procesos, evento pistoletazo. */
WaitForSingleObject(pistoletazo, INFINITE);
/* Bucle de ejecución. */
while (*flagHijos) {
ref = (LPVOID)MapViewOfFile(memoria, FILE_MAP_ALL_ACCESS, 0, 0, sizeof(int));
int* flagHijos = (int*)ref;
FALONSO2_velocidad(velo, carril, desp);
if (puedoAvanzar(carril, desp)) {
/* Inicio parte atómica. */
WaitForSingleObject(sem[SEM_ATOM], INFINITE);
/*----------------------------------------------------------------*/
if (carril == CARRIL_DERECHO)
ReleaseSemaphore(sem[desp], 1, NULL);
else
ReleaseSemaphore(sem[desp + 137], 1, NULL);
FALONSO2_avance_coche(&carril, &desp, color);
if (((carril == 0) && (desp == 133)) || ((carril == 1) && (desp == 131)))
numVueltas++;
/*----------------------------------------------------------------*/
ReleaseSemaphore(sem[SEM_ATOM], 1, NULL);
/* Fin parte atómica. */
cambio = 0;
continue;
}
else if ((cambio < 2) && puedoCambiarCarril(carril, desp)) {
/* Inicio parte atómica. */
WaitForSingleObject(sem[SEM_ATOM], INFINITE);
/*----------------------------------------------------------------*/
tempC = carril;
tempD = desp;
FALONSO2_cambio_carril(&carril, &desp, color);
if (tempC == 0)
ReleaseSemaphore(sem[tempD], 1, NULL);
else
ReleaseSemaphore(sem[tempD + 137], 1, NULL);
/*----------------------------------------------------------------*/
ReleaseSemaphore(sem[SEM_ATOM], 1, NULL);
/* Fin parte atómica. */
cambio++;
continue;
}
if (carril == CARRIL_DERECHO) {
if (desp == 136)
WaitForSingleObject(sem[0], INFINITE);
else
WaitForSingleObject(sem[desp + 1], INFINITE);
}
else {
if (desp == 136)
WaitForSingleObject(sem[137], INFINITE);
else
WaitForSingleObject(sem[137 + desp + 1], INFINITE);
}
/* Inicio parte atómica. */
WaitForSingleObject(sem[SEM_ATOM], INFINITE);
/*--------------------------------------------------------------------*/
if (carril == CARRIL_DERECHO)
ReleaseSemaphore(sem[desp], 1, NULL);
else
ReleaseSemaphore(sem[desp + 137], 1, NULL);
FALONSO2_avance_coche(&carril, &desp, color);
if (((carril == 0) && (desp == 133)) || ((carril == 1) && (desp == 131)))
numVueltas++;
/*--------------------------------------------------------------------*/
ReleaseSemaphore(sem[SEM_ATOM], 1, NULL);
/* Fin parte atómica. */
cambio = 0;
}
/* Cerrar Memoria Compartida */
UnmapViewOfFile(ref);
CloseHandle(memoria);
/* Esperar Fin Programa */
WaitForSingleObject(pistoletazo, INFINITE);
return 1;
}
/*
* Función para el hilo de control del cruce.
*/
DWORD WINAPI controlCruce(LPVOID parametro)
{
HANDLE memoria = OpenFileMapping(FILE_MAP_ALL_ACCESS, FALSE, "salirC");
LPVOID ref = (LPVOID)MapViewOfFile(memoria, FILE_MAP_ALL_ACCESS, 0, 0, sizeof(int));
int* flagCruce = (int*)ref;
/* Control del padre. */
cerrarCruce(HORIZONTAL);
if (-1 == FALONSO2_luz_semAforo(HORIZONTAL, ROJO))
pon_error("Error luz semaforo");
if (-1 == FALONSO2_luz_semAforo(VERTICAL, VERDE))
pon_error("Error luz semaforo");
/* Sincronizacion de los semáforos y cambio de color de estos. */
while (*flagCruce) {
ref = (LPVOID)MapViewOfFile(memoria, FILE_MAP_ALL_ACCESS, 0, 0, sizeof(int));
int* flagCruce = (int*)ref;
/* Control semáforo (V=0 H=1). */
if (-1 == FALONSO2_luz_semAforo(VERTICAL, AMARILLO))
pon_error("Error luz semaforo");
cerrarCruce(VERTICAL);
if (-1 == FALONSO2_luz_semAforo(VERTICAL, ROJO))
pon_error("Error luz semaforo");
if (-1 == FALONSO2_luz_semAforo(HORIZONTAL, VERDE))
pon_error("Error luz semaforo");
abrirCruce(HORIZONTAL);
Sleep(1000);
/* Control semáforo (V=1 H=0). */
if (-1 == FALONSO2_luz_semAforo(HORIZONTAL, AMARILLO))
pon_error("Error luz semaforo");
cerrarCruce(HORIZONTAL);
if (-1 == FALONSO2_luz_semAforo(HORIZONTAL, ROJO))
pon_error("Error luz semaforo");
if (-1 == FALONSO2_luz_semAforo(VERTICAL, VERDE))
pon_error("Error luz semaforo");
abrirCruce(VERTICAL);
Sleep(1000);
}
/* Avisar Padre Salida de Bucle */
SetEvent(pistoletazo);
/* Cerrar Memoria Compartida */
UnmapViewOfFile(ref);
CloseHandle(memoria);
/* Esperar Fin Programa */
WaitForSingleObject(pistoletazo, INFINITE);
return 1;
}
/*
* Función para comprobar si un coche puede avanzar de posición.
*/
int puedoAvanzar(int carril, int desp)
{
if (carril == CARRIL_DERECHO) {
if (desp == 136) {
if (FALONSO2_posiciOn_ocupada(carril, 0))
return 0;
else {
WaitForSingleObject(sem[0], INFINITE);
return 1;
}
}
else {
if (FALONSO2_posiciOn_ocupada(carril, desp + 1))
return 0;
else {
WaitForSingleObject(sem[desp + 1], INFINITE);
return 1;
}
}
}
else {
if (desp == 136) {
if (FALONSO2_posiciOn_ocupada(carril, 0))
return 0;
else {
WaitForSingleObject(sem[137], INFINITE);
return 1;
}
}
else {
if (FALONSO2_posiciOn_ocupada(carril, desp + 1))
return 0;
else {
WaitForSingleObject(sem[desp + 1 + 137], INFINITE);
return 1;
}
}
}
}
/*
* Función para comprobar si un coche puede cambiar de carril.
*/
int puedoCambiarCarril(int carril, int desp)
{
if (carril == CARRIL_DERECHO) {
if (desp >= 14 && desp <= 28) {
if (desp >= 21 && desp <= 24) {
if (!FALONSO2_posiciOn_ocupada(carril + 1, desp + 1)
&& (FALONSO2_estado_semAforo(HORIZONTAL) == VERDE)) {
WaitForSingleObject(sem[137 + desp + 1], INFINITE);
return 1;
}
else
return 0;
}
else if (!FALONSO2_posiciOn_ocupada(carril + 1, desp + 1)) {
WaitForSingleObject(sem[137 + desp + 1], INFINITE);
return 1;
}
else
return 0;
}
else if ((desp >= 0 && desp <= 13) || (desp >= 29 && desp <= 60)) {
if (!FALONSO2_posiciOn_ocupada(carril + 1, desp)) {
WaitForSingleObject(sem[137 + desp], INFINITE);
return 1;
}
else
return 0;
}
else if ((desp >= 61 && desp <= 62) || (desp >= 135 && desp <= 136)) {
if (!FALONSO2_posiciOn_ocupada(carril + 1, desp - 1)) {
WaitForSingleObject(sem[137 + desp - 1], INFINITE);
return 1;
}
else
return 0;
}
else if ((desp >= 63 && desp <= 65) || (desp >= 131 && desp <= 134)) {
if (!FALONSO2_posiciOn_ocupada(carril + 1, desp - 2)) {
WaitForSingleObject(sem[137 + desp - 2], INFINITE);
return 1;
}
else
return 0;
}
else if ((desp >= 66 && desp <= 67) || (desp == 130)) {
if (!FALONSO2_posiciOn_ocupada(carril + 1, desp - 3)) {
WaitForSingleObject(sem[137 + desp - 3], INFINITE);
return 1;
}
else
return 0;
}
else if (desp == 68) {
if (!FALONSO2_posiciOn_ocupada(carril + 1, desp - 4)) {
WaitForSingleObject(sem[137 + desp - 4], INFINITE);
return 1;
}
else
return 0;
}
else {
if (!FALONSO2_posiciOn_ocupada(carril + 1, desp - 5)) {
WaitForSingleObject(sem[137 + desp - 5], INFINITE);
return 1;
}
else
return 0;
}
}
else {
if (desp >= 16 && desp <= 28) {
if (desp >= 23 && desp <= 26) {
if (!FALONSO2_posiciOn_ocupada(carril - 1, desp - 1)
&& (FALONSO2_estado_semAforo(HORIZONTAL) == VERDE)) {
WaitForSingleObject(sem[desp - 1], INFINITE);
return 1;
}
else
return 0;
}
else if (!FALONSO2_posiciOn_ocupada(carril - 1, desp - 1)) {
WaitForSingleObject(sem[desp - 1], INFINITE);
return 1;
}
else
return 0;
}
else if ((desp >= 0 && desp <= 15) || (desp >= 29 && desp <= 58)) {
if (!FALONSO2_posiciOn_ocupada(carril - 1, desp)) {
WaitForSingleObject(sem[desp], INFINITE);
return 1;
}
else
return 0;
}
else if (desp >= 59 && desp <= 60) {
if (!FALONSO2_posiciOn_ocupada(carril - 1, desp + 1)) {
WaitForSingleObject(sem[desp + 1], INFINITE);
return 1;
}
else
return 0;
}
else if ((desp >= 61 && desp <= 62) || (desp >= 129 && desp <= 133)) {
if (!FALONSO2_posiciOn_ocupada(carril - 1, desp + 2)) {
WaitForSingleObject(sem[desp + 2], INFINITE);
return 1;
}
else
return 0;
}
else if (desp >= 127 && desp <= 128) {
if (!FALONSO2_posiciOn_ocupada(carril - 1, desp + 3)) {
WaitForSingleObject(sem[desp + 3], INFINITE);
return 1;
}
else
return 0;
}
else if ((desp >= 63 && desp <= 64) || (desp == 126)) {
if (!FALONSO2_posiciOn_ocupada(carril - 1, desp + 4)) {
WaitForSingleObject(sem[desp + 4], INFINITE);
return 1;
}
else
return 0;
}
else if (desp >= 65 && desp <= 125) {
if (desp >= 99 && desp <= 103) {
if (!FALONSO2_posiciOn_ocupada(carril - 1, desp + 5)
&& (FALONSO2_estado_semAforo(VERTICAL) == VERDE)) {
WaitForSingleObject(sem[desp + 5], INFINITE);
return 1;
}
else
return 0;
}
if (!FALONSO2_posiciOn_ocupada(carril - 1, desp + 5)) {
WaitForSingleObject(sem[desp + 5], INFINITE);
return 1;
}
else
return 0;
}
else {
if (!FALONSO2_posiciOn_ocupada(carril - 1, 136)) {
WaitForSingleObject(sem[136], INFINITE);
return 1;
}
else
return 0;
}
}
}
/*
* Libera los semáforos de las posiciones del cruce para permitir el paso.
*/
void abrirCruce(int dirCruce)
{
if (dirCruce == VERTICAL) {
ReleaseSemaphore(sem[21], 1, NULL);
ReleaseSemaphore(sem[137 + 23], 1, NULL);
ReleaseSemaphore(sem[22], 1, NULL);
ReleaseSemaphore(sem[137 + 24], 1, NULL);
ReleaseSemaphore(sem[23], 1, NULL);
ReleaseSemaphore(sem[137 + 25], 1, NULL);
}
else {
ReleaseSemaphore(sem[106], 1, NULL);
ReleaseSemaphore(sem[137 + 99], 1, NULL);
ReleaseSemaphore(sem[107], 1, NULL);
ReleaseSemaphore(sem[137 + 100], 1, NULL);
ReleaseSemaphore(sem[108], 1, NULL);
ReleaseSemaphore(sem[137 + 101], 1, NULL);
}
}
/*
* Bloquea los semáforos de las posiciones del cruce para prohibir el paso.
*/
void cerrarCruce(int dirCruce)
{
if (dirCruce == VERTICAL) {
WaitForSingleObject(sem[21], INFINITE);
WaitForSingleObject(sem[137 + 23], INFINITE);
WaitForSingleObject(sem[22], INFINITE);
WaitForSingleObject(sem[137 + 24], INFINITE);
WaitForSingleObject(sem[23], INFINITE);
WaitForSingleObject(sem[137 + 25], INFINITE);
}
else {
WaitForSingleObject(sem[106], INFINITE);
WaitForSingleObject(sem[137 + 99], INFINITE);
WaitForSingleObject(sem[107], INFINITE);
WaitForSingleObject(sem[137 + 100], INFINITE);
WaitForSingleObject(sem[108], INFINITE);
WaitForSingleObject(sem[137 + 101], INFINITE);
}
}