-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAgenda.pas
1220 lines (1206 loc) · 30.8 KB
/
Agenda.pas
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
{
Nome Do Programa... Agenda Eletrônica;
Função............. Operar Como Uma Agenda Eletrônica;
Plataforma......... GNU/Linux;
Criado Por......... Daniel Melo;
Disciplina......... Lógica De Programação II;
Professor.......... Wender Magno Cota;
}
program Agenda_Eletronica;
uses crt;
//Tipos de arquivos
type tstr60 = string[60];
treg_pes = record
id:integer;
nome:string[20];
end;
tarq_pes = file of treg_pes;
treg_tel = record
id:integer;
tel:string[8];
end;
tarq_tel = file of treg_tel;
treg_email = record
id:integer;
email:string[50];
end;
tarq_email = file of treg_email;
// variaveis globais
var arq_pes:tarq_pes; // id_p, id_e, id_t são contadores para verificar se tem algo gravado nos arquivos
arq_tel:tarq_tel;
arq_email:tarq_email;
r_email:treg_email;
r_tel:treg_tel;
email,tel:tstr60;
cod,id_p,id_e,id_t,i:integer;
opcao,sair:char;
abriu,achou:boolean;
//BORDA
procedure borda;
var i:integer;
begin
// borda horizontal cima
for i := 10 to 60 do
begin
gotoxy(i,2);
write('-');
end;
// borda vertical esquerda
for i := 3 to 23 do
begin
gotoxy(10,i);
write('|');
end;
// borda vertical direita
for i:= 3 to 23 do
begin
gotoxy(60,i);
write('|');
end;
// borda horizontal baixo
for i := 10 to 60 do
begin
gotoxy(i,23);
write('-');
end;
end;
//Validação do id do arquivo de contato
function val_id_pes(var arq_pes:tarq_pes; var cod:integer):integer;
var r:treg_pes;
i:integer;
achou:boolean;
begin
seek(arq_pes,0);
i := 0 ;
achou := false;
while (EOF(arq_pes) = false) and (achou = false) do
begin
read(arq_pes,r);
if r.id = cod then
achou := true
else
i := i + 1;
end;
if achou = true then
val_id_pes := i
else
val_id_pes := -1;
end;
//Validação do id do arquivo de telefone retorna a posicao se encontrar e -1 senao
function val_id_tel(var arq_tel:tarq_tel; var cod:integer):integer;
var r:treg_tel;
i:integer;
achou:boolean;
begin
seek(arq_tel,0);
i := 0;
achou := false;
while (EOF(arq_tel) = false) and (achou = false) do
begin
read(arq_tel,r);
if r.id = cod then
achou := true
else
i := i + 1;
end;
if achou = true then
val_id_tel := i
else
val_id_tel := -1;
end;
//Validação do id do arquivo de contato retorna a posicao se encontrar e -1 senao
function val_id_email(var arq_email:tarq_email; var cod:integer):integer;
var r:treg_email;
i:integer;
achou:boolean;
begin
seek(arq_email,0);
i := 0;
achou := false;
while (EOF(arq_email) = false) and (achou = false) do
begin
read(arq_email,r);
if r.id = cod then
achou := true
else
i := i + 1;
end;
if achou = true then
val_id_email := i
else
val_id_email := -1;
end;
// Function conversor para a caixa maior
function converte(s:tstr60) : tstr60;
var i:integer;
begin
for i := 1 to length(s) do
s[i] := upcase(s[i]);
converte := s;
end;
// Validando o nome retorana a posicao se encontrar e -1 senao
function pesq_pessoa_nome(var a:tarq_pes; n:string):integer;
var posicao:integer;
r:treg_pes;
achou:boolean;
begin
posicao := 0;
seek(a,0);
achou := false;
while (eof(a) = false) and (achou = false) do
begin
read(a,r);
if r.nome = n then
achou := true
else
posicao := posicao + 1;
end;
if achou = true then
pesq_pessoa_nome := posicao
else
pesq_pessoa_nome := -1;
end;
// Verificando o último ID cadastrado no arquivo de contatos
function maior_id_pessoa(var a:tarq_pes):integer;
var maior:integer;
r_pes:treg_pes;
begin
maior := 0;
seek(a,0);
while eof(a) = false do
begin
read(a,r_pes);
if r_pes.id > maior then
maior := r_pes.id;
end;
maior_id_pessoa := maior;
end;
// Verificando o último ID cadastrado no arquivo de emails
function maior_id_email(var a:tarq_email):integer;
var maior:integer;
r_email:treg_email;
begin
maior := 0;
seek(a,0);
while eof(a) = false do
begin
read(a,r_email);
if r_email.id > maior then
maior := r_email.id;
end;
maior_id_email := maior;
end;
// Verificando o último ID cadastrado no arquivo de telefones
function maior_id_tel(var a:tarq_tel):integer;
var maior:integer;
r_tel:treg_tel;
begin
maior := 0;
seek(a,0);
while eof(a) = false do
begin
read(a,r_tel);
if r_tel.id > maior then
maior := r_tel.id;
end;
maior_id_tel := maior;
end;
//cadastro de pessoas
procedure cad_pessoa(var a:tarq_pes);
var r:treg_pes;
i,cancel:integer;
begin
repeat
clrscr;
borda;
gotoxy(22,4);writeln(' Agenda Eletrônica');
gotoxy(22,5);writeln('____________________________');
gotoxy(24,7);writeln('Inserção De Novos Nomes:');
gotoxy(22,9);writeln('____________________________');
gotoxy(24,12);write('Nome: ');
gotoxy(22,19);writeln('Pressione Enter Para Cancelar.');
gotoxy(30,12);readln(r.nome);
if r.nome = '' then
cancel := 0
else
begin
cancel := 1;
r.nome := converte(r.nome);
i := pesq_pessoa_nome(a,r.nome);
if i <> -1 then
begin
gotoxy(24,12);clreol;
gotoxy(22,19);clreol;
gotoxy(29,12);clreol;
borda;
gotoxy(29,12);write('Nome Repetido!');
gotoxy(49,12);delay(3000);
end;
end;
until (i = -1) or (cancel = 0);
if cancel = 1 then
begin
id_p := maior_id_pessoa(a)+ 1;
r.id := id_p;
seek(a,filesize(a));
write(a,r);
gotoxy(24,12);clreol;
gotoxy(22,19);clreol;
gotoxy(23,12);clreol;
borda;
gotoxy(33,12);write('Salvo!');
gotoxy(39,12);delay(3000);
end
else
begin
clrscr;
borda;
gotoxy(20,12);writeln('Operação Cancelada Pelo Usuário...');
gotoxy(53,12);delay(3000);
end;
end;
//Validar o telefone
//retorna -1 se não encontrar
function pesq_pessoa_tel(var a:tarq_tel; var tel:tstr60):integer;
var pos:integer;
r:treg_tel;
achou:boolean;
begin
pos := 0;
seek(a,0);
achou := false;
while (eof(a) = false) and (achou = false) do
begin
read(a,r);
if r.tel = tel then
achou := true
else
pos := pos + 1;
end;
if achou = true then
pesq_pessoa_tel := pos
else
pesq_pessoa_tel := -1;
end;
//Cadastro de telefones
procedure cad_tel(var arq_pes:tarq_pes; var arq_tel:tarq_tel; var cod:integer);
var r_pes:treg_pes;
r_tel:treg_tel;
achou:boolean;
i,k,cont_num,cancel:integer;
begin
i := val_id_pes(arq_pes,cod);
if i <> -1 then
begin
repeat
repeat
clrscr;
borda;
achou := false;
seek(arq_pes,i);
read(arq_pes,r_pes);
gotoxy(22,4);writeln(' Agenda Eletrônica');
gotoxy(22,5);writeln('____________________________');
gotoxy(24,7);writeln('Inserção De Novos Telefones:');
gotoxy(22,9);writeln('____________________________');
gotoxy(24,12);writeln('Nome: ',r_pes.nome);
gotoxy(22,19);writeln('Pressione Enter Para Cancelar.');
gotoxy(24,13);write('Telefone: ');
readln(r_tel.tel);
if r_tel.tel = '' then
cancel := 0
else
begin
cancel := 1;
achou := false;
for k := 1 to length(r_tel.tel) do
if (r_tel.tel[k] <> '0') and (r_tel.tel[k] <> '1') and (r_tel.tel[k] <> '2') and (r_tel.tel[k] <> '3') and (r_tel.tel[k] <> '4') and (r_tel.tel[k] <> '5') and (r_tel.tel[k] <> '6') and (r_tel.tel[k] <> '7') and (r_tel.tel[k] <> '8') and (r_tel.tel[k] <> '9') then
achou := true;
if achou = true then
begin
gotoxy(24,12);clreol;
gotoxy(24,13);clreol;
gotoxy(22,19);clreol;
gotoxy(24,12);clreol;
borda;
gotoxy(24,12);writeln('Digite Apenas Números!');
gotoxy(49,12);delay(3000);
end
else
begin
cont_num := length(r_tel.tel);
if (cont_num < 8) then
begin
achou := true;
gotoxy(24,12);clreol;
gotoxy(24,13);clreol;
gotoxy(22,19);clreol;
gotoxy(23,12);clreol;
borda;
gotoxy(14,12);writeln('O Telefone Deve Conter No Mínimo 8 Dígitos!');
gotoxy(57,12);delay(3000);
end;
end;
end;
until (achou = false) or (cancel = 0);
//validando o telefones
i := pesq_pessoa_tel(arq_tel,r_tel.tel);
if i <> -1 then
begin
achou := true;
gotoxy(24,12);clreol;
gotoxy(24,13);clreol;
gotoxy(22,19);clreol;
gotoxy(23,12);clreol;
borda;
gotoxy(29,12);write('Número Repetido!');
gotoxy(49,12);delay(3000);
end;
until achou = false;
if cancel = 1 then
begin
r_tel.id := cod;
id_t := id_t + 1;
seek(arq_tel,filesize(arq_tel));
write(arq_tel,r_tel);
gotoxy(24,12);clreol;
gotoxy(24,13);clreol;
gotoxy(22,19);clreol;
gotoxy(23,12);clreol;
borda;
gotoxy(33,12);writeln('Salvo!');
gotoxy(38,12);delay(3000);
end
else
begin
clrscr;
borda;
gotoxy(20,12);writeln('Operação Cancelada Pelo Usuário...');
gotoxy(53,12);delay(3000);
end;
end
else
begin
clrscr;
borda;
gotoxy(23,12);writeln('Contato Não Encontrado!');
gotoxy(46,12);delay(3000);
end;
end;
//Validar o EMAIL
//retorna -1 se não encontrar ou 0 se tiver encontrado
function pesq_pessoa_email(var a:tarq_email; var email:tstr60):integer;
var pos:integer;
r:treg_email;
achou:boolean;
begin
pos := 0;
seek(a,0);
achou := false;
while (eof(a) = false) and (achou = false) do
begin
read(a,r);
if r.email = email then
achou := true
else
pos := pos + 1;
end;
if achou = true then
pesq_pessoa_email := 0
else
pesq_pessoa_email := -1;
end;
//validação do dominio retorna 1 se valido e -1 senão
function dominio_existente(email:string):integer;
var lista_email:array[1..5] of string;
final_email:string;
pos_arroba,i:integer;
valido:boolean;
Begin
valido := false;
final_email := '';
pos_arroba := 0;
i := 0;
lista_email[1]:='HOTMAIL.COM';
lista_email[2]:='GMAIL.COM';
lista_email[3]:='YAHOO.COM.BR';
lista_email[4]:='BOL.COM.BR';
lista_email[5]:='OUTLOOK.COM';
for i := 1 to length(email) do
if email[i] = '@' then
begin
pos_arroba := i;
break;
end;
//-------------------------------------------------//
if pos_arroba <> 0 then
begin
for i := pos_arroba + 1 to length(email) do
final_email:=final_email+email[i];
final_email := upcase(final_email);
for i := 1 to 5 do
if final_email = lista_email[i] then
begin
valido := true;
break;
end;
end;
if valido = true then
dominio_existente := 1
else
dominio_existente := -1
end;
//Cadastro de emails
procedure cad_email(var arq_pes:tarq_pes; var arq_email:tarq_email; var cod:integer);
var r_pes:treg_pes;
r_email:treg_email;
achou,valido:boolean;
i,aux,cancel:integer;
begin
i := val_id_pes(arq_pes,cod);
if i <> -1 then
begin
id_e := id_e + 1;
r_email.id := cod;
repeat
clrscr;
borda;
seek(arq_pes,i);
read(arq_pes,r_pes);
gotoxy(22,4);writeln(' Agenda Eletrônica');
gotoxy(22,5);writeln('____________________________');
gotoxy(24,7);writeln('Inserção De Novos E-mails:');
gotoxy(22,9);writeln('____________________________');
gotoxy(24,12);writeln('Nome: ',r_pes.nome);
gotoxy(22,19);writeln('Pressione Enter Para Cancelar.');
gotoxy(24,13);write('E-mail: ');
gotoxy(32,13);readln(email);
if email = '' then
cancel := 0
else
begin
cancel := 1;
// Verificando se o dominio do email
valido := true;
if dominio_existente(email) = -1 then
begin
valido := false;
achou := true;
gotoxy(24,12);clreol;
gotoxy(24,13);clreol;
gotoxy(22,19);clreol;
gotoxy(24,12);clreol;
borda;
gotoxy(29,12);writeln('E-mail Inválido!');
gotoxy(45,12);delay(3000);
end
else
begin
// verificando se o email ja esta cadastrado
achou := false;
aux := pesq_pessoa_email(arq_email,email);
if aux <> -1 then
begin
achou := true;
gotoxy(24,12);clreol;
gotoxy(24,13);clreol;
gotoxy(22,19);clreol;
gotoxy(24,12);clreol;
borda;
gotoxy(27,12);write('E-mail Já Cadastrado!');
gotoxy(49,12);delay(3000);
end;
end;
end;
until (achou = false) and (valido = true) or (cancel = 0);
//Salvando o email
if achou = false then
begin
r_email.email := email;
seek(arq_email,filesize(arq_email));
write(arq_email,r_email);
gotoxy(24,13);clreol;
gotoxy(22,19);clreol;
gotoxy(23,12);clreol;
borda;
gotoxy(33,12);writeln('Salvo!');
gotoxy(38,12);delay(3000);
end
else
if cancel = 0 then
begin
id_e := id_e - 1;
clrscr;
borda;
gotoxy(20,12);writeln('Operação Cancelada Pelo Usuário...');
gotoxy(53,12);delay(3000);
end;
end
else
begin
clrscr;
borda;
gotoxy(23,12);writeln('Contato Não Encontrado!');
gotoxy(46,12);delay(3000);
end;
end;
//Consultar a agenda
procedure consulta(var arq_pes:tarq_pes; var arq_email:tarq_email; var arq_tel:tarq_tel; var cod:integer);
var r_pes:treg_pes;
r_email:treg_email;
r_tel:treg_tel;
i,t,e:integer;
achou:boolean;
begin
clrscr;
//Procurando o ID
i := val_id_pes(arq_pes,cod);
if i <> -1 then
begin
borda;
seek(arq_pes,i);
read(arq_pes,r_pes);
gotoxy(22,4);writeln(' Agenda Eletrônica');
gotoxy(22,5);writeln('____________________________');
gotoxy(22,7);writeln(' Menu De Consulta De dados');
gotoxy(22,8);writeln('____________________________');
gotoxy(22,10);writeln('Informações Do Contato:');
gotoxy(22,12);writeln('ID : ',r_pes.id);
gotoxy(22,13);writeln('Nome : ',r_pes.nome);
seek(arq_tel,0);
achou := false;
t := 14;
while (eof(arq_tel) = false) do
begin
read(arq_tel,r_tel);
if r_tel.id = cod then
begin
achou := true;
gotoxy(22,t);writeln('Telefone: ',r_tel.tel,';');
t := t + 1;
end;
end;
if achou = false then
begin
gotoxy(22,t);writeln('Telefone: Nenhum Telefone Cadastrado;');
end;
achou := false;
seek(arq_email,0);
e := t + 1;
while eof(arq_email) = false do
begin
read(arq_email,r_email);
if r_email.id = cod then
begin
achou := true;
gotoxy(22,e);writeln('E-mail : ',r_email.email,';');
e := e + 1;
end;
end;
if achou = false then
begin
gotoxy(22,e);writeln('E-mail : Nenhum E-mail Cadastrado;');
end;
end
else
begin
clrscr;
borda;
gotoxy(23,12);writeln('Contato Não Encontrado!');
gotoxy(53,12);delay(3000);
end;
end;
//Deletar telefones
function del_tel(var arq_tel:tarq_tel; var cod:integer; var tel:tstr60):integer;
var r_tel:treg_tel;
i:integer;
begin
i := pesq_pessoa_tel(arq_tel,tel);
if i <> -1 then
begin
//Excluindo telefone
seek(arq_tel,filesize(arq_tel)-1);
read(arq_tel,r_tel);
seek(arq_tel,i);
write(arq_tel,r_tel);
seek(arq_tel,filesize(arq_tel)-1);
truncate(arq_tel);
del_tel := 1;
id_t := id_t - 1;
end
else
del_tel := -1;
end;
//Deletar email's
function del_email(var arq_email:tarq_email; var cod:integer; var email:tstr60):integer;
var r_email:treg_email;
i:integer;
begin
i := pesq_pessoa_email(arq_email,email);
if i <> -1 then
begin
//Excluindo email
seek(arq_email,filesize(arq_email)-1);
read(arq_email,r_email);
seek(arq_email,i);
write(arq_email,r_email);
seek(arq_email,filesize(arq_email)-1);
truncate(arq_email);
del_email := 1;
id_e := id_e - 1;
end
else
del_email := -1;
end;
// listagem
procedure listagem (var a:tarq_pes);
var r_pes:treg_pes;
i,k,cont,tam:integer;
begin
clrscr;
borda;
gotoxy(22,4);writeln(' Agenda Eletrônica ');
gotoxy(22,5);writeln('____________________________');
gotoxy(22,7);writeln(' Menu de Contatos');
gotoxy(22,8);writeln('____________________________');
gotoxy(22,10);writeln('Contatos:');
gotoxy(22,12);writeln('IDs - Nomes');
gotoxy(22,13);writeln('____________________________');
seek(a,0);
cont := 0;
k := 0;
i := 14;
tam := filesize(a) - 1;
while (k <= tam) do
begin
read(a,r_pes);
gotoxy(23,i);clreol;writeln(r_pes.id,' - ',r_pes.nome);
borda;
i := i + 1;
cont := cont + 1;
k := k + 1;
if (k mod 5 = 0) then
begin
if k < tam then
begin
gotoxy(22,i + 1);write('Pressione Enter Para Ver Mais');
gotoxy(51,i + 1);readkey;
for cont := 14 to 20 do
begin
gotoxy(22,cont);clreol;
end;
cont := 0;
i:= 14;
end;
end;
end;
end;
// deletar uma pessoa e todos seus dados
procedure deletar_pes(var arq_pes:tarq_pes; var arq_tel:tarq_tel; var arq_email:tarq_email; var cod:integer);
var r_pes:treg_pes;
r_email:treg_email;
r_tel:treg_tel;
i:integer;
begin
//Excluindo contato cadastrado
i := val_id_pes(arq_pes,cod);
if i <> - 1 then
begin
clrscr;
seek(arq_pes,filesize(arq_pes)-1);
read(arq_pes,r_pes);
seek(arq_pes,i);
write(arq_pes,r_pes);
seek(arq_pes,filesize(arq_pes)-1);
truncate(arq_pes);
id_p := id_p - 1;
//Excluindo telefone do contato caso tenha algum cadastrado
if id_t > 0 then
begin
i := val_id_tel(arq_tel,cod);
seek(arq_tel,0);
while (eof(arq_tel) = false) and (i > -1 )do
begin
seek(arq_tel,filesize(arq_tel)-1);
read(arq_tel,r_tel);
seek(arq_tel,i);
write(arq_tel,r_tel);
seek(arq_tel,filesize(arq_tel)-1);
truncate(arq_tel);
id_t := id_t - 1;
i := val_id_tel(arq_tel,cod);
end;
end;
//Excluindo email do contato caso tenha algum cadastrado
if id_e > 0 then
begin
i := val_id_email(arq_email,cod);
seek(arq_email,0);
while (eof(arq_email) = false) and (i > -1) do
begin
seek(arq_email,filesize(arq_email)-1);
read(arq_email,r_email);
seek(arq_email,i);
write(arq_email,r_email);
seek(arq_email,filesize(arq_email)-1);
truncate(arq_email);
id_e := id_e - 1;
i := val_id_email(arq_email,cod);
end;
end;
clrscr;
borda;
gotoxy(23,12);writeln('Contato Deletado Com Sucesso!!');
gotoxy(53,12);delay(3000);
end
else
begin
clrscr;
borda;
gotoxy(23,12);writeln('Contato Não Encontrado!');
gotoxy(48,12);delay(3000);
end;
end;
// Deletar todos os contatos da agenda
procedure del_all(var arq_pes:tarq_pes; var arq_tel:tarq_tel; var arq_email:tarq_email);
var opcao:char;
begin
borda;
gotoxy(19,21);write('Tem Certeza Que Deseja Excluir');
gotoxy(19,22);write('Todos Os Contatos [S/N]: ');
readln(opcao);
opcao := upcase(opcao);
if (opcao = 'S') and (id_p > 0) then
begin
clrscr;
// Apagando o arquivo de pessoas
seek(arq_pes,0);
truncate(arq_pes);
id_p := 0;
// Apagando o arquivo de email
seek(arq_email,0);
truncate(arq_email);
id_e := 0;
// Apagando o arquivo de telefone
seek(arq_tel,0);
truncate(arq_tel);
id_t := 0;
borda;
gotoxy(20,12);writeln('Todos Os Contatos Foram Deletados!');
gotoxy(53,12);delay(3000);
end
else
begin
clrscr;
borda;
gotoxy(20,12);writeln('Operação Cancelada Pelo Usuário...');
gotoxy(53,12);delay(3000);
end;
end;
//corpo do programa Principal
begin
clrscr;
// Abertura do arquivo de pessoas
assign(arq_pes,'contatos.dat');
{$I-} {desligando a verificação de eros de IO}
reset(arq_pes);
abriu := true;
if IOResult <> 0 then
begin
Rewrite(arq_pes);
if IOResult <> 0 then
abriu := false;
end;
// Abertura do arquivo de telefones
assign(arq_tel,'telefones.dat');
reset(arq_tel);
if IOResult <> 0 then
begin
Rewrite(arq_tel);
if IOResult <> 0 then
abriu := false;
end;
// Abertura do arquivo de emails
assign(arq_email,'emails.dat');
reset(arq_email);
if IOResult <> 0 then
begin
Rewrite(arq_email);
if IOResult <> 0 then
abriu := false;
end;
if abriu = true then
begin
// verificando o ultimo id cadastrado do arquivo de pessoas
if filesize(arq_pes) = 0 then
begin
id_p := 0;
id_e := 0;
id_t := 0;
end
else
begin
id_p := maior_id_pessoa(arq_pes);
// verificando o ultimo id cadastrado do arquivo de emails
if filesize(arq_email) = 0 then
id_e := 0
else
id_e := maior_id_email(arq_email);
// verificando o ultimo id cadastrado do arquivo de telefones
if filesize(arq_tel) = 0 then
id_t := 0
else
id_t := maior_id_tel(arq_tel);
end;
window(2,2,70,25);
textbackground(2);
textcolor(15);
clrscr;
for i := 1 to 2 do
begin
gotoxy(25,10);clreol;
write('Iniciando O Sistema.');
delay(500);
gotoxy(25,10);clreol;
write('Iniciando O Sistema..');
delay(500);
clreol;
gotoxy(25,10);clreol;
write('Iniciando O Sistema...');
delay(500);
clreol;
end;
repeat // menu iniciar
clrscr;
borda;
gotoxy(20,4);writeln(' Agenda Eletrônica');
gotoxy(19,5);writeln('____________________________');
gotoxy(20,6);writeln(' Menu Iniciar');
gotoxy(19,7);writeln('____________________________');
gotoxy(22,9);writeln('1 - Adicionar Contatos');
gotoxy(22,10);writeln('2 - Consultar Dados');
gotoxy(22,11);writeln('3 - Excluir Dados');
gotoxy(22,12);writeln('0 - Sair');
gotoxy(12,21);writeln('IFET 2013 - CÂMPUS BARBACENA');
gotoxy(12,22);writeln('DANIEL MELO');
gotoxy(22,14);write('Digite Sua Opção: ');
gotoxy(22,41);opcao := readkey;
clrscr;
case opcao of //menu de insercao de dados'
'1':repeat
clrscr;
borda;
gotoxy(24,4);writeln(' Agenda Eletrônica');
gotoxy(19,5);writeln('_________________________________');
gotoxy(22,6);writeln(' Menu de Inserção de dados');
gotoxy(19,7);writeln('_________________________________');
gotoxy(22,9);writeln('1 - Adicionar Nome'); // menu secundario
gotoxy(22,10);writeln('2 - Adicionar Telefone');
gotoxy(22,11);writeln('3 - Adicionar E-mail');
gotoxy(22,12);writeln('0 - Retornar Ao Menu Iniciar');
gotoxy(22,14);write('Digite Sua Opção: ');
gotoxy(22,41);opcao := readkey;
clrscr;
case opcao of
'1':cad_pessoa(arq_pes); // cadastrar pessoas
'2':if id_p = 0 then // Cadastrar telefones
begin
borda;
gotoxy(23,12);writeln('Nenhum Contato Cadastrado!');
gotoxy(49,12);delay(3000);
end
else
begin
listagem(arq_pes);
gotoxy(24,22);write('Pressione "0" Para Cancelar...');
gotoxy(25,20);write('Digite o Id Desejado: ');
gotoxy(47,20);readln(cod);
if cod > 0 then
cad_tel(arq_pes,arq_tel,cod)
else
begin
clrscr;
borda;
gotoxy(20,12);writeln('Operação Cancelada Pelo Usuário...');
gotoxy(51,12);delay(3000);
end;
end;
'3':if id_p = 0 then //Cadastrar emails
begin
borda;
gotoxy(23,12);writeln('Nenhum Contato Cadastrado!');
gotoxy(49,12);delay(3000);
end
else
begin
listagem(arq_pes);
gotoxy(24,22);write('Pressione "0" Para Cancelar...');
gotoxy(25,20);write('Digite O Id Desejado: ');
gotoxy(47,20);readln(cod);
if cod <> 0 then
cad_email(arq_pes,arq_email,cod)
else
begin
clrscr;
borda;
gotoxy(20,12);writeln('Operação Cancelada Pelo Usuário...');
gotoxy(51,12);delay(3000);
end;
end;
end; // Fim do case de inserção de dados
until opcao = '0'; // fim da opcao 1
'2':if id_p = 0 then //Consultar contatos cadastrados
begin
borda;
gotoxy(23,12);writeln('Nenhum Contato Cadastrado!');
gotoxy(49,12);delay(3000);
end
else
begin
listagem(arq_pes);
gotoxy(23,22);write('Pressione "0" Para Cancelar..');
gotoxy(25,20);write('Digite o Id Desejado: ');
gotoxy(47,20);readln(cod);
if cod > 0 then
begin
consulta(arq_pes,arq_email,arq_tel,cod);
gotoxy(21,22);write('Pressione Uma tecla Para Continuar');
gotoxy(55,22);readln;
end
else
begin
clrscr;
borda;
gotoxy(20,12);writeln('Operação Cancelada Pelo Usuário...');
gotoxy(55,12);delay(3000);
end;
end; // fim opcao 2
'3':if id_p = 0 then
begin
borda;
gotoxy(23,12);writeln('Nenhum Contato Cadastrado!');
gotoxy(49,12);delay(3000);
end
else
begin
repeat // menu de exclusão de dados