-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProyecto Final.cpp
1987 lines (1869 loc) · 60.8 KB
/
Proyecto Final.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
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include <iostream>
#include <conio.h>
#include <Windows.h>
#include <string>
#include <ctype.h>
#include <ctime>
#include <fstream>
#include <stdio.h>
#include <string>
#include <sstream>
#define TECLA_ARRIBA 72
#define TECLA_ABAJO 80
#define ENTER 13
#define TECLA_DERECHA 77
#define TECLA_IZQUIERDA 75
#define TECLA_w 119
#define TECLA_s 115
#define TECLA_a 97
#define TECLA_d 100
#define TECLA_W 87
#define TECLA_S 83
#define TECLA_A 65
#define TECLA_D 68
const int ANCHO = 120;
using namespace std;
struct retiro
{
int posicionf;
int posicionc;
double pago;
float tiempo_en_h;
};
struct VEHICULO
{
string Placa;
string Tipo;
string Color;
};
struct PERSONA
{
string Nombre;
int Edad;
bool Miembro;
};
struct crono
{
int dia;
int hora;
int minu;
int seg;
};
struct espacios
{
int x;
int y;
int ocupado;
crono momento[4]; // 0 es inicio 1 es final 2 es actual 3 tiempo de permanencia
};
struct CLIENTE
{
PERSONA Persona;
VEHICULO Vehiculo;
espacios t;
} *Clientes_actuales = new CLIENTE[16], C_Temp;
struct senial
{
int xpuntero;
int ypuntero;
};
senial aux[4][4];
void gotoxy(int, int);
void color_cnsl(int, int);
template <class char_o_string>
void imprimir_franja(int, int, int, int, char_o_string);
template <class char_o_string>
void imprimir_diagonal(int, int, int, int, int, char_o_string);
void imprimir_linea_horizontal(int, int, int, int, int);
void imprimir_linea_vertical(int, int, int, int, int);
void menu_principal(string &);
bool comprobar_empleado(string &);
void Cargando();
template <class char_o_string>
void imprimir_texto(int, int, int, int, char_o_string);
void imprimir_cuadrilatero(int, int, int, int, int, int);
template <class char_o_string>
void imprimir_matriz_grafica(int, int, int[], int, int, int, int, char_o_string);
void ingresar_nombre(string &);
void leer_estacionamientos();
void menu_empleado(string);
void establecer_horario(int);
float hora_salida(int);
void estacionamiento_detallado();
void almacenar_cronometros();
void leer_cronometros();
void mostrar_crono(int k);
void mostrar_detalles(int i, int j);
void reloj();
void seleccionador(int tecla, int &lugar, int opciones, int botonaum, int botondism);
void dibujo();
int opciones_empleado();
void menu_cliente(string);
void ocultar_cursor();
void reiniciar_C_Temp();
void Ingreso_datos(string);
int Estacionar_o_retirar();
void mostrar_est();
void escoger_lugar();
void esc_y_mos_est();
void retiro_veh(retiro);
void voucher(retiro);
string menu_tipo_vehiculo();
void retiro_de_veh();
void Guardar_estacionamiento();
void Recuperar_estacionamiento();
void retirar(retiro &, bool &);
void Guardar_clientes(int);
void Limpiar_espacio(int);
int stoin(string);
float stofl(string);
void texto_centrado(int, int, string);
void comprobar_miembro(int, string);
void opciones_miembros();
void Registro_miembros();
void agregar_miembro();
int menu_miembros(const char[], const char *[], int);
void registro_miembros_archivo();
void crear_archivo_miembros();
string comprobar_miembro_duplicado(string);
bool coinciden_datos(int);
void inicializar_datos();
void crear_archivo_clientes();
// void guardar_historial(int, int, string, float);
void guardar_historial(int, float, float);
void imprimir_informe();
void leer_historial_e_imprimir();
void guardar_informe(float, int, string, string, string, string, string, string);
template <typename T>
string my_to_string(const T&);
int flecha_seleccionadora(int, int, int, int, int);
int pos_inic_x = 41;
int pos_inci_y = 2;
int Estacionamiento[15][36];
int Logo_Estacionamiento[6 * 15] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1,
0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1,
0, 1, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0,
0, 1, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1};
int Numero_de_grupo[6 * 7] = {0, 0, 0, 0, 0, 0, 0,
0, 1, 1, 1, 1, 1, 0,
1, 1, 0, 0, 0, 1, 1,
0, 1, 1, 1, 1, 1, 0,
1, 1, 0, 0, 0, 1, 1,
0, 1, 1, 1, 1, 1, 0};
int main()
{
ocultar_cursor();
system("color F0");
inicializar_datos();
leer_estacionamientos();
Recuperar_estacionamiento();
leer_cronometros();
bool condicion = true;
while (condicion)
{
Cargando();
menu_principal(C_Temp.Persona.Nombre);
system("cls");
if (C_Temp.Persona.Nombre == "exit")
{
condicion = false;
break;
}
if (comprobar_empleado(C_Temp.Persona.Nombre))
{
menu_empleado(C_Temp.Persona.Nombre);
}
else
{
menu_cliente(C_Temp.Persona.Nombre);
}
almacenar_cronometros();
reiniciar_C_Temp();
}
delete[] Clientes_actuales;
return 0;
}
void ocultar_cursor()
{
CONSOLE_CURSOR_INFO cci;
GetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE), &cci);
cci.bVisible = 0;
SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE), &cci);
}
void Guardar_estacionamiento()
{
ofstream estacionamiento_archivo;
estacionamiento_archivo.open("Estacionamiento.txt", ios::out);
if (estacionamiento_archivo.fail())
{
cout << "No se pudo abrir el archivo\n";
return;
}
for (int i = 0; i < 15; i++)
{
for (int j = 0; j < 36; j++)
{
estacionamiento_archivo << Estacionamiento[i][j];
}
estacionamiento_archivo << endl;
}
estacionamiento_archivo.close();
}
void Recuperar_estacionamiento()
{
ifstream estacionamiento_archivo;
estacionamiento_archivo.open("Estacionamiento.txt", ios::in);
if (estacionamiento_archivo.fail())
{
int nuevovalor[15][36] = {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0},
{0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0},
{0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 1, 1, 1, 1, 0, 0},
{0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0},
{0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 1, 1, 1, 1, 0, 0},
{0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0},
{0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 1, 1, 1, 1, 0, 0},
{0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0},
{0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 1, 1, 1, 1, 0, 0},
{0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0},
{0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 1, 1, 1, 1, 2, 2, 2, 2, 0, 0, 2, 2, 2, 2, 1, 1, 1, 1, 0, 0},
{0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0},
{0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0},
{0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0}};
for (int i = 0; i < 15; i++)
{
for (int j = 0; j < 36; j++)
{
Estacionamiento[i][j] = nuevovalor[i][j];
}
}
Guardar_estacionamiento();
return;
}
char a;
int b;
for (int i = 0; i < 15; i++)
{
for (int j = 0; j < 36; j++)
{
estacionamiento_archivo >> a;
b = a - '0';
if (b == 0 || b == 1 || b == 2 || b == 3)
Estacionamiento[i][j] = b;
}
}
estacionamiento_archivo.close();
}
void comprobar_miembro(int k, string nombre)
{
ifstream archivos_miembros;
archivos_miembros.open("miembros.txt", ios::in);
if (archivos_miembros.fail())
{
crear_archivo_miembros();
return;
}
string texto;
while (!archivos_miembros.eof())
{
getline(archivos_miembros, texto);
if (texto == nombre)
{
if (k > 0)
{
Clientes_actuales[k].Persona.Miembro = true;
}
else
{
C_Temp.Persona.Miembro = true;
}
}
}
archivos_miembros.close();
}
void crear_archivo_miembros()
{
ofstream crear_archivo;
crear_archivo.open("miembros.txt", ios::out);
if (crear_archivo.fail())
{
cout << "No se pudo crear el archivo\n";
return;
}
crear_archivo << endl;
crear_archivo.close();
}
void inicializar_datos()
{
for (int i = 0; i < 16; i++)
Limpiar_espacio(i);
}
void menu_principal(string &nombre)
{
imprimir_franja(30, 86, 3, 3, "o");
imprimir_franja(30, 40, 11, 11, "o");
imprimir_diagonal(30, 39, 3, 3, 1, 'o');
imprimir_diagonal(30, 85, 15, 15, 1, 'o');
imprimir_diagonal(30, 37, 11, 3, 2, char(178));
imprimir_diagonal(30, 83, 3, 15, 2, char(178));
imprimir_diagonal(30, 35, 11, 3, 3, char(178));
imprimir_diagonal(30, 81, 3, 15, 3, char(178));
imprimir_texto(3, 2, 0, 11, "U");
imprimir_texto(3, 3, 0, 11, "N");
imprimir_texto(3, 4, 0, 11, "M");
imprimir_texto(3, 5, 0, 11, "S");
imprimir_texto(3, 6, 0, 11, "M");
imprimir_texto(4, 2, 11, 0, "niversidad");
imprimir_texto(4, 3, 11, 0, "acional");
imprimir_texto(4, 4, 11, 0, "ayor de");
imprimir_texto(4, 5, 11, 0, "an");
imprimir_texto(4, 6, 11, 0, "arcos");
imprimir_matriz_grafica(40, 10, Logo_Estacionamiento, 15, 6, 15, 15, "o");
imprimir_texto(41, 17, 3, 15, "A P A R K E D");
imprimir_matriz_grafica(98, 20, Numero_de_grupo, 7, 6, 8, 8, "o");
imprimir_texto(99, 26, 15, 8, "Grupo");
imprimir_cuadrilatero(85, 10, 32, 3, 15, 8);
imprimir_texto(85, 10, 15, 8, char(201));
imprimir_texto(116, 10, 15, 8, char(187));
imprimir_texto(85, 12, 15, 8, char(200));
imprimir_texto(116, 12, 15, 8, char(188));
imprimir_texto(83, 14, 15, 8, "Estimado usuario, escriba su nombre");
color_cnsl(15, 0);
gotoxy(98, 11);
ingresar_nombre(nombre);
}
void gotoxy(int coordx, int coordy)
{
HANDLE hCon;
hCon = GetStdHandle(STD_OUTPUT_HANDLE);
COORD dwPos;
dwPos.X = coordx;
dwPos.Y = coordy;
SetConsoleCursorPosition(hCon, dwPos);
}
void color_cnsl(int colorfondo, int colortexto)
{
HANDLE consoleHandle = GetStdHandle(STD_OUTPUT_HANDLE);
int colorAttributes = (colorfondo << 4) | colortexto;
SetConsoleTextAttribute(consoleHandle, colorAttributes);
}
template <class char_o_string>
void imprimir_franja(int filas, int inic_col, int fondo, int txt, char_o_string o)
{
for (int fil_act = 0; fil_act < filas; fil_act++)
{
for (int col_act = inic_col; col_act >= 0; col_act--)
{
imprimir_texto(col_act, fil_act, fondo, txt, o);
}
inic_col--;
}
}
template <class char_o_string>
void imprimir_diagonal(int filas, int inic_col, int fondo, int txt, int aumento, char_o_string o)
{
for (int fil_act = 0; fil_act < filas; fil_act += abs(aumento))
{
imprimir_texto(inic_col, fil_act, fondo, txt, o);
inic_col -= aumento;
}
}
void imprimir_linea_horizontal(int inic_X, int inic_Y, int tam, int fondo, int txt)
{
gotoxy(inic_X, inic_Y);
color_cnsl(fondo, txt);
for (int col_act = 0; col_act < tam; col_act++)
{
cout << char(196);
}
}
void imprimir_linea_vertical(int inic_X, int inic_Y, int tam, int fondo, int txt)
{
for (int aumento_fil = 0; aumento_fil < tam; aumento_fil++)
{
imprimir_texto(inic_X, inic_Y + aumento_fil, fondo, txt, char(179));
}
}
bool comprobar_empleado(string &cadena_nombre)
{
string cadena_comprob = "";
for (int i = 0; i < 4; i++)
cadena_comprob += cadena_nombre[i];
if (cadena_comprob == "EMP-")
{
cadena_nombre.erase(0, 4);
}
return (cadena_comprob == "EMP-");
}
void Cargando()
{
getch();
system("cls");
imprimir_texto(53, 10, 15, 0, "C A R G A N D O . . .");
for (int col_act1 = 0; col_act1 <= 79; col_act1++)
{
imprimir_texto(20 + col_act1, 15, 8, 8, char(219));
}
for (int col_act2 = 0; col_act2 <= 79; col_act2++)
{
imprimir_texto(20 + col_act2, 15, 15, 0, char(219));
Sleep(1 * 1000 / 80);
}
system("cls");
}
template <class char_o_string>
void imprimir_texto(int coord_x, int coord_y, int fondo, int txt, char_o_string texto)
{
gotoxy(coord_x, coord_y);
color_cnsl(fondo, txt);
cout << texto;
}
void imprimir_cuadrilatero(int pos_x, int pos_y, int largo, int alto, int fondo, int txt)
{
gotoxy(pos_x, pos_y);
cout << char(218);
imprimir_linea_horizontal(pos_x + 1, pos_y, largo - 2, fondo, txt);
gotoxy(pos_x + largo - 1, pos_y);
cout << char(191);
imprimir_linea_vertical(pos_x, pos_y + 1, alto - 2, fondo, txt);
gotoxy(pos_x, pos_y + alto - 1);
cout << char(192);
imprimir_linea_horizontal(pos_x + 1, pos_y + 2, largo - 2, fondo, txt);
gotoxy(pos_x + largo - 1, pos_y + alto - 1);
cout << char(217);
imprimir_linea_vertical(pos_x + largo - 1, pos_y + 1, alto - 2, fondo, txt);
}
template <class char_o_string>
void imprimir_matriz_grafica(int pos_x, int pos_y, int m[], int largo, int alto, int fondo, int txt, char_o_string o)
{
color_cnsl(fondo, txt);
for (int fil_act = 0; fil_act < alto; fil_act++)
{
for (int col_act = 0; col_act < largo; col_act++)
{
gotoxy(pos_x + col_act, pos_y + fil_act);
if (m[fil_act * largo + col_act] == 1)
cout << o;
}
cout << endl;
}
}
void ingresar_nombre(string &nom)
{
bool band1 = true;
char c;
while (band1)
{
if ((c = getch()) != ENTER)
{
if (c == '\b' && !nom.empty())
{
cout << "\b \b";
nom.pop_back();
}
else
{
cout << c;
nom += c;
}
}
else if (c == ENTER && !nom.empty())
{
band1 = false;
}
}
}
void reiniciar_C_Temp()
{
C_Temp.Persona.Edad = 0;
C_Temp.Persona.Miembro = false;
C_Temp.Persona.Nombre = "";
C_Temp.Vehiculo.Color = "";
C_Temp.Vehiculo.Placa = "";
C_Temp.Vehiculo.Tipo = "";
}
void menu_empleado(string nom)
{
texto_centrado(ANCHO,2,"HOLA" + nom);
bool seguir = true;
int opc = 0;
while (seguir)
{
opc = opciones_empleado();
switch (opc)
{
case 1:
system("cls");
imprimir_informe();
break;
case 2:
estacionamiento_detallado();
break;
case 3:
seguir = false;
break;
}
}
}
int opciones_empleado()
{
int fila = 4;
int eleccion;
do
{
texto_centrado(ANCHO,fila, "MENU DE OPCIONES PARA EL EMPLEADO");
texto_centrado(ANCHO,fila + 3, "1. Generar informe");
texto_centrado(ANCHO,fila + 5, "2. Mostrar estacionamiento detallado");
texto_centrado(ANCHO,fila + 7, "3. Salir");
texto_centrado(ANCHO,fila + 10, "SELECCIONE LA OPCION A EJECUTAR");
eleccion = flecha_seleccionadora(1,3,30,7,2);
/*
cout << "MENU DE OPCIONES PARA EL EMPLEADO" << endl;
cout << "1. Generar informe" << endl;
cout << "2. Mostrar estacionamiento detallado" << endl;
cout << "3. Salir" << endl;
cout << "DIGITE LA OPCION A EJECUTAR: ";
cin >> eleccion;
if (eleccion != 1 && eleccion != 2 && eleccion != 3)
{
cout << "\nOpcion invalida ;-;";
Sleep(3000);
system("cls");
}
*/
} while (eleccion != 1 && eleccion != 2 && eleccion != 3);
return eleccion;
}
void leer_estacionamientos()
{
ifstream lectura_clientes;
lectura_clientes.open("Clientes_actuales.txt", ios::in);
if (lectura_clientes.fail())
{
crear_archivo_clientes();
return;
}
string texto;
for (int i = 0; i < 16; i++)
{
lectura_clientes >> Clientes_actuales[i].Persona.Edad;
lectura_clientes.ignore();
lectura_clientes >> Clientes_actuales[i].Persona.Miembro;
lectura_clientes.ignore();
getline(lectura_clientes, texto);
Clientes_actuales[i].Persona.Nombre = texto;
getline(lectura_clientes, texto);
Clientes_actuales[i].Vehiculo.Color = texto;
getline(lectura_clientes, texto);
Clientes_actuales[i].Vehiculo.Placa = texto;
getline(lectura_clientes, texto);
Clientes_actuales[i].Vehiculo.Tipo = texto;
}
}
void almacenar_cronometros()
{
ofstream archivo("Cronometros.txt", ios::out);
if (archivo.fail())
{
cout << "No se ha podido crear el archivo";
return;
}
for (int i = 0; i < 16; i++)
{
// Momento inicial del reloj i
archivo << Clientes_actuales[i].t.momento[0].seg << endl;
archivo << Clientes_actuales[i].t.momento[0].minu << endl;
archivo << Clientes_actuales[i].t.momento[0].hora << endl;
archivo << Clientes_actuales[i].t.momento[0].dia << endl;
}
archivo.close();
}
void leer_cronometros()
{
ifstream archivo("Cronometros.txt", ios::in);
if (archivo.fail())
{
// archivo.close();
for (int i = 0; i < 16; i++)
{
Clientes_actuales[i].t.momento[0].dia = 0;
Clientes_actuales[i].t.momento[0].seg = 100;
Clientes_actuales[i].t.momento[0].minu = 60;
Clientes_actuales[i].t.momento[0].hora = 60;
}
almacenar_cronometros();
leer_cronometros();
return;
}
int i = 0;
string linea;
while (!archivo.eof())
{
getline(archivo, linea);
if (linea == "")
{
break;
}
Clientes_actuales[i].t.momento[0].seg = stoin(linea);
getline(archivo, linea);
Clientes_actuales[i].t.momento[0].minu = stoin(linea);
getline(archivo, linea);
Clientes_actuales[i].t.momento[0].hora = stoin(linea);
getline(archivo, linea);
Clientes_actuales[i].t.momento[0].dia = stoin(linea);
i++;
}
archivo.close();
// ESTO SE DEBE HACER POR ARCHIVOS, POR LO CUAL AUN ES TEMPORAL
// Establecemos las coordenadas (x,y) desde donde se colocaran los relojes
int espaciadox = 41;
int espaciadoy = -3; // Es -2 porque al escribir se da un aumento de "+4" en la funcion mostrar_crono()
// EN CASO SE QUIERAN MOSTRAR LOS RELOJOS COMPLETOS (INICIO, FINAL, ACTUAL, RESTANTE), COLOCAR 0
// DETERMINAMOS LOS DATOS PARA CADA ESPACIO DE LOS 16 EXISTENTES
for (int i = 0; i < 16; i++)
{
// coordenadas del reloj i
Clientes_actuales[i].t.x = espaciadox;
Clientes_actuales[i].t.y = espaciadoy;
Clientes_actuales[i].t.ocupado = 0;
// EN CASO LAS COORDENDAS X SOBREPASEN LOS 80, SE PASARA A LA SIGUIENTE LINEA
if (espaciadox >= 94)
{
espaciadox = 41;
espaciadoy += 7;
}
else
{ // CASO CONTRARIO SE AUMENTARA +22 PARA EL SIGUIENTE RELOJ i+1
espaciadox += 21;
}
}
int k = 0;
for (int i = 0; i < 4; i++)
{
for (int j = 0; j < 4; j++)
{
aux[i][j] = {Clientes_actuales[k].t.x + 2, Clientes_actuales[k].t.y + 4};
k++;
}
}
}
void establecer_horario(int k)
{
// system("cls");
time_t inicio = time(NULL);
// Se crea una estructura tipo tm* (predefinida por libreria <time.c>
tm *time = localtime(&inicio);
// Asignamos las horas, minutos y segundos al momento inicial
Clientes_actuales[k].t.momento[0].dia = time->tm_yday;
Clientes_actuales[k].t.momento[0].hora = time->tm_hour;
Clientes_actuales[k].t.momento[0].minu = time->tm_min;
Clientes_actuales[k].t.momento[0].seg = time->tm_sec;
// gotoxy(t[k].x,t[k].y+1);
// cout<<"INICO: "<<t[k].momento[0].hora<<":"<<t[k].momento[0].minu<<":"<<t[k].momento[0].seg<<endl;
// getch();
}
float hora_salida(int k)
{
time_t final = time(NULL);
// Se crea una estructura tipo tm* (predefinida por libreria <time.c>
tm *time = localtime(&final);
Clientes_actuales[k].t.momento[1].dia = time->tm_yday;
Clientes_actuales[k].t.momento[1].hora = time->tm_hour;
Clientes_actuales[k].t.momento[1].minu = time->tm_min;
Clientes_actuales[k].t.momento[1].seg = time->tm_sec;
int total_final = Clientes_actuales[k].t.momento[1].dia * 86400 + Clientes_actuales[k].t.momento[1].hora * 3600 + Clientes_actuales[k].t.momento[1].minu * 60 + Clientes_actuales[k].t.momento[1].seg;
int total_inicio = Clientes_actuales[k].t.momento[0].dia * 86400 + Clientes_actuales[k].t.momento[0].hora * 3600 + Clientes_actuales[k].t.momento[0].minu * 60 + Clientes_actuales[k].t.momento[0].seg;
float diferencia = total_final - total_inicio;
Clientes_actuales[k].t.momento[3].hora = diferencia / 3600;
Clientes_actuales[k].t.momento[3].minu = (diferencia - Clientes_actuales[k].t.momento[3].hora * 3600) / 60;
Clientes_actuales[k].t.momento[3].seg = diferencia - (Clientes_actuales[k].t.momento[3].hora * 3600 + Clientes_actuales[k].t.momento[3].minu * 60);
Clientes_actuales[k].t.momento[0].seg = 100;
return diferencia / 3600;
}
void estacionamiento_detallado()
{
system("cls");
dibujo();
reloj();
system("cls");
}
void dibujo()
{
// LINEAS VERTICALES
// LA PRIMERA SERA EN X= 41 Y = 2
int x = 55, y = 1;
// El primer for es para escribir en un aumento y+=1 23 veces una serie ' | | | '
for (int i = 0; i < 27; i++)
{
// El segundo for escribira la serie determinada de '|' cada 21 espacios en x solo 3 veces
for (int j = 0; j < 3; j++)
{
gotoxy(x, y);
cout << "|";
x += 21;
}
// Pasamos a la siguiente linea
x = 55;
y += 1;
}
// LINEAS HORIZONTALES
x = 33;
y = 7;
// Primer for escribira el 'salto' a la siguiente linea con un y+=6
for (int i = 0; i < 3; i++)
{
// El segundo for escribira '--' 83 veces desdes la posicion x = 21
for (int j = 0; j < 83; j++)
{
gotoxy(x, y);
cout << "--";
x++;
}
x = 33;
y += 7;
}
}
void reloj()
{
int columna = 0;
int fila = 0;
int tecla;
bool cambio = true;
gotoxy(aux[fila][columna].xpuntero, aux[fila][columna].ypuntero);
cout << char(223) << char(223) << char(223) << char(223);
// MIENTRAS NO SE PRESIONE ENTER SE MOSTRARAN LOS CRONOMETROS
do
{
// SE MUESTRAN LOS 16 CRONOMETROS
for (int i = 0; i < 16; i++)
{
mostrar_crono(i);
}
// TOMAMOS LOS TICS DESDE QUE SE INICIO EL PROGRAMA
clock_t inicio = clock();
// SI DURANTE 0.1 SEGUNDOS NO SE HA DETECTADO EL ENTER, SE SEGUIRAN MOSTRANDO LOS RELOJES
while ((clock() - inicio) / CLOCKS_PER_SEC < 0.1)
{
if (cambio == true)
{
mostrar_detalles(fila, columna);
cambio = false;
}
if (kbhit())
{
tecla = getch();
if (tecla != ENTER && (tecla == TECLA_ARRIBA || tecla == TECLA_ABAJO || tecla == TECLA_DERECHA || tecla == TECLA_IZQUIERDA))
{
gotoxy(aux[fila][columna].xpuntero, aux[fila][columna].ypuntero);
cout << " ";
gotoxy(0, 0);
seleccionador(tecla, fila, 4, TECLA_ARRIBA, TECLA_ABAJO);
cout << fila;
gotoxy(1, 0);
seleccionador(tecla, columna, 4, TECLA_IZQUIERDA, TECLA_DERECHA);
cout << columna;
gotoxy(aux[fila][columna].xpuntero, aux[fila][columna].ypuntero);
cout << char(223) << char(223) << char(223) << char(223);
cambio = true;
// mostrar_detalles(fila,columna);
}
}
}
} while (tecla != ENTER);
}
void seleccionador(int tecla, int &lugar, int opciones, int botonaum, int botondism)
{
string punto = "----";
if (tecla == botonaum)
{
if (lugar == 0)
{
// gotoxy(x, y); cout<<" ";
lugar = opciones - 1;
}
else if (lugar > 0 && lugar <= opciones - 1)
{
// gotoxy(x,y); cout<<" ";
lugar--;
}
}
else if (tecla == botondism)
{
if (lugar == opciones - 1)
{
// gotoxy(x, y); cout<<" ";
lugar = 0;
}
else if (lugar >= 0 && lugar < opciones - 1)
{
// gotoxy(x,y); cout<<" ";
lugar++;
}
}
}
/*
0 1 2 3
0 0 1 2 3
1 4 5 6 7
2 8 9 10 11
3 12 13 14 15
*/
void mostrar_detalles(int i, int j)
{
int x = 0, y = 3;
Sleep(1);
for (int i = 0; i < 20; i++)
{
gotoxy(x, y + i);
cout << " ";
}
if (Clientes_actuales[i * 4 + j].t.ocupado != 1)
{
texto_centrado(36, y + 6, "NO SE");
texto_centrado(36, y + 9, "ENCUENTRA");
texto_centrado(36, y + 12, "NINGUN CARRO");
}
else
{
texto_centrado(36, y + 5, "CARRO TIPO:");
texto_centrado(36, y + 6, Clientes_actuales[i * 4 + j].Vehiculo.Tipo);
texto_centrado(36, y + 9, "COLOR DEL CARRO:");
texto_centrado(36, y + 10, Clientes_actuales[i * 4 + j].Vehiculo.Color);
texto_centrado(36, y + 13, "PLACA DEL CARRO:");
texto_centrado(36, y + 14, Clientes_actuales[i * 4 + j].Vehiculo.Placa);
}
}
void mostrar_crono(int k)
{
int total_act = 0, total_inicio = 0, diferencia = 0;
// MOSTRAR DETALLES DEL INICIO Y FINAL
// gotoxy(t[k].x,t[k].y);
// cout<<"INICO: "<<t[k].momento[0].hora<<":"<<t[k].momento[0].minu<<":"<<t[k].momento[0].seg<<endl;
// gotoxy(t[k].x,t[k].y+1);
// cout<<"Final: "<<t[k].momento[1].hora<<":"<<t[k].momento[1].minu<<":"<<t[k].momento[1].seg<<endl;
// CALCULAMOS EN SEGUNDOS LA CANTIDAD DE SEGUNDOS DESDE INICIADO EL DIA EN QUE SE RETIRARA EL CARRO
total_inicio = Clientes_actuales[k].t.momento[0].dia * 86400 + Clientes_actuales[k].t.momento[0].hora * 3600 + Clientes_actuales[k].t.momento[0].minu * 60 + Clientes_actuales[k].t.momento[0].seg;
// Las siguientes funciones toman el tiempo actual del sistema (pc)
// Almacenan el tiempo actual en una varible tipo time_t
time_t now = time(NULL);
// Se crea una estructura tipo tm* (predefinida por libreria <time.c>
tm *act = localtime(&now);
// ALMACENAMOS LAS HORAS, MINUTOS Y SEGUNDOS EN EL VECTOR RESPECTIVO
Clientes_actuales[k].t.momento[2].dia = act->tm_yday;
Clientes_actuales[k].t.momento[2].minu = act->tm_min;
Clientes_actuales[k].t.momento[2].seg = act->tm_sec;
Clientes_actuales[k].t.momento[2].hora = act->tm_hour;
// MOSTRAR DETALLES DE LA HORA ACTUAL Y LOS CALCULOS
// gotoxy(t[k].x,t[k].y+2);
// cout<<"Actual: "<<t[k].momento[2].hora<<":"<<t[k].momento[2].minu<<":"<<t[k].momento[2].seg<<endl;
// Se calcula la cantidad de segundos que pasaron desde que se inicio el dia hasta la actualidad
total_act = Clientes_actuales[k].t.momento[2].dia * 86400 + Clientes_actuales[k].t.momento[2].hora * 3600 + Clientes_actuales[k].t.momento[2].minu * 60 + Clientes_actuales[k].t.momento[2].seg;
// gotoxy(t[k].x,t[k].y+3);
// cout<<total_fin<<" "<<total_act;
// SE HACEN LOS CALCULOS PARA DETERMINAR LA HORA, MINUTO Y SEGUNDOS RESTANTES
diferencia = total_act - total_inicio;
Clientes_actuales[k].t.momento[3].hora = diferencia / 3600;
Clientes_actuales[k].t.momento[3].minu = (diferencia - Clientes_actuales[k].t.momento[3].hora * 3600) / 60;
Clientes_actuales[k].t.momento[3].seg = diferencia - (Clientes_actuales[k].t.momento[3].hora * 3600 + Clientes_actuales[k].t.momento[3].minu * 60);
// SI ESTA ESTACIONADO EL VEHICULO
if (Clientes_actuales[k].t.momento[0].seg != 100)
{
Clientes_actuales[k].t.ocupado = 1;
// SE MOSTRARAN LAS HORAS, MINUTOS Y SEGUNDOS
gotoxy(Clientes_actuales[k].t.x, Clientes_actuales[k].t.y + 5);
// cout<<"Tiempo restante: ";
// gotoxy(t[k].x+17,t[k].y+4);
cout << " ";
gotoxy(Clientes_actuales[k].t.x, Clientes_actuales[k].t.y + 5);
// gotoxy(t[k].x+17,t[k].y+4);
if (Clientes_actuales[k].t.momento[3].hora < 10)
cout << "0";
cout << Clientes_actuales[k].t.momento[3].hora << ":";
if (Clientes_actuales[k].t.momento[3].minu < 10)
cout << "0";
cout << Clientes_actuales[k].t.momento[3].minu << ":";
if (Clientes_actuales[k].t.momento[3].seg < 10)
cout << "0";
cout << Clientes_actuales[k].t.momento[3].seg;
gotoxy(Clientes_actuales[k].t.x - 6, Clientes_actuales[k].t.y + 6);
cout << " ______";
gotoxy(Clientes_actuales[k].t.x - 6, Clientes_actuales[k].t.y + 7);
cout << " ___/___|___" << char(92) << "___";
gotoxy(Clientes_actuales[k].t.x - 6, Clientes_actuales[k].t.y + 8);
cout << " (_---_______ _---_)";
gotoxy(Clientes_actuales[k].t.x - 6, Clientes_actuales[k].t.y + 9);
cout << " (o) (o)";
}
else
{
Clientes_actuales[k].t.ocupado = 0;
gotoxy(Clientes_actuales[k].t.x, Clientes_actuales[k].t.y + 5);
cout << "00:00:00";
}
}
void menu_cliente(string nom)
{
int opcion;
Ingreso_datos(nom);
bool condicion_2 = true;
while (condicion_2)
{
opcion = Estacionar_o_retirar();
switch (opcion)
{
case 1:
system("cls");
esc_y_mos_est();
condicion_2 = false;
break;
case 2:
retiro_de_veh();
condicion_2 = false;
break;
case 3:
system("cls");
Recuperar_estacionamiento();
mostrar_est();
getch();
break;
case 4:
system("cls");