forked from scicasoft/projet_gestion_hotel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
projet_gestion_hotel.pas
2371 lines (2263 loc) · 83.6 KB
/
projet_gestion_hotel.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
PROGRAM projet_gestion_hotel;
USES crt, dos;
{---------- DEFINITION DES TYPES ----------}
TYPE
tdate = record
jour,mois,annee:integer;
end;
tinfo = record
nom:string[30];
nbre_niv,nbre_chambre:integer;
date_debut:tdate;
adresse:string;
tel:string[20];
end;
tclient = record
tel:string[20];
nom:string[10];
prenom:string[20];
classe:char;
num_chambre:string[5];
date_reser:tdate;
date_entree:tdate;
nuite:integer;
date_sortie:tdate;
tarif_spe,pti_dej,phone,bar:boolean;
tarif_chambre,tarif_pti_dej,tarif_phone,tarif_bar,total:real;
end;
tchambre = record
num:string[5];
classe:char;
etat:char;
end;
treservation = tclient;
tcategorie = record
classe:string[20];
tarif_normal,tarif_special:real;
end;
tser_annexes = record
nom:string[30];
tarif:real;
end;
tfacture = tclient;
tconf = record
couleur_fond,
couleur_select,
couleur_text_fond,
couleur_text_select,
couleur_bas,
couleur_text_bas : word
end;
ttableau = array [1..10] of string;
{---------- DEFINITION DES VARIABLES ----------}
var
{les fichiers}
finfo : file of tinfo;
fclient : file of tclient;
fchambre : file of tchambre;
fcategorie : file of tcategorie;
fser_annexes : file of tser_annexes;
ffacture : file of tfacture;
fconf : file of tconf;
{les autres variables}
vinfo : tinfo;
vclient : tclient;
vchambre : tchambre;
vreservation : treservation;
vcategorie : tcategorie;
vser_annexes : tser_annexes;
vfacture : tfacture;
vconf : tconf;
ch:char;
{---------- LES PROCEDURES ET FONCTIONS ----------}
{verifie si le numero de telephone est valide}
function valide_phone(tel:string):boolean;
var ok:boolean;
i:integer;
begin
i:=0;
ok:=true;
while (i<length(tel)) and ok do
begin
inc(i);
ok:=tel[i] in ['0'..'9',' ','.','-'];
end;
valide_phone:=ok;
end;
{trace un rectangle}
procedure rect(a,b,c,d:integer);
var i:integer;
begin
for i:=a to c do
begin
gotoxy(i,b); write(#205);
gotoxy(i,d); write(#205);
end;
for i:=b to d do
begin
gotoxy(a,i); write(#186);
gotoxy(c,i); write(#186);
end;
gotoxy(a,b); write(#201);
gotoxy(c,b); write(#187);
gotoxy(a,d); write(#200);
gotoxy(c,d); write(#188);
end;
{verifie si une annee est bissex}
function bissex(an:integer):boolean;
begin
bissex:=(an mod 100<>0) and (an mod 4=0) or (an mod 100=0) and (an mod 400=0);
end;
{ecris une date que l'on lui a transmis}
procedure ecris_date(date:tdate);
begin
write(date.jour:2,'-',date.mois,'-',date.annee);
end;
{verifie si une date est valide}
function valide_date(date:tdate):boolean;
var ok:boolean;
begin
with date do
begin
ok:=(mois in[1,3,5,7,8,10,12]) and (jour in [1..31]);
ok:=ok or (mois in [4,6,9,11]) and (jour in [1..30]);
ok:=ok or (mois=2) and (bissex(annee) and (jour in [1..29]) or (not bissex(annee)) and (jour in [1..28]));
ok:=ok and (mois in [1..12]);
end;
valide_date:=ok;
end;
{affecte a la variable date de type tdate la date en cours}
procedure today(var date:tdate);
var an,mo,jo,a:word;
begin
getdate(an,mo,jo,a);
date.jour:=jo;
date.mois:=mo;
date.annee:=an;
end;
{ajouter n jours sur une date}
procedure date_plus(date1:tdate;n:integer;var date2:tdate);
var a:integer;
begin
date2:=date1;
for a:=1 to n do
begin
inc(date2.jour);
if not valide_date(date2) then
begin
date2.jour:=1;
inc(date2.mois);
if not valide_date(date2) then
begin
date2.mois:=1;
inc(date2.annee);
end;
end;
end;
end;
{comparaison de deux dates}
function sup_date(date1,date2:tdate):boolean;
var ok:boolean;
begin
ok:= date1.annee > date2.annee;
ok:= ok or (date1.annee = date2.annee) and (date1.mois > date2.mois);
ok:= ok or (date1.annee = date2.annee) and (date1.mois = date2.mois) and (date1.jour > date2.jour);
sup_date:=ok;
end;
function sous_date(date1,date2:tdate):integer;
var i:integer;
begin
i:=0;
if sup_date(date1,date2) then
begin
repeat
date_plus(date2,1,date2);
inc(i);
until not sup_date(date1,date2);
end;
sous_date:=i;
end;
{ecris la date}
procedure date;
var a,m,j,jj:word;
begin
getdate(a,m,j,jj);
case jj of 1:write(' LUNDI '); 2:write(' MARDI '); 3:write(' MERCREDI ');
4:write(' JEUDI '); 5:write(' VENDREDI '); 6:write(' SAMEDI ');
0:write(' DIMANCHE ');end;
write(j:2,'-',m:2,'-',a:4);
end;
{ecris l'heure}
procedure heur;
var h,m,s,t:word;
begin
gettime(h,m,s,t);
write(h:2,':',m:2,':',s:2);
end;
{cette procedure permet de creer automatiquement les factures des clients qui doivent sortir, de les supprimer du fichier
client ou bien de supprimer les reservations des clients qui viennent aujourd'hui;
donc il doit modifier l'etat d'une chambre qui peut passer de reverve a occupe ou de occupe a libre}
procedure generation;
type table_client = array[1..500] of tclient;
var tab_cli:^table_client;
i,compteur:integer;
date:tdate;
begin
new(tab_cli);
reset(ffacture);
seek(ffacture,filesize(ffacture));
compteur:=0;
today(date);
reset(fclient);
while not eof(fclient) do
begin
inc(compteur);
read(fclient,vclient);
tab_cli^[compteur]:=vclient;
if not sup_date(vclient.date_entree,date) then
begin
reset(fchambre);
i:=-1;
repeat
read(fchambre,vchambre);
inc(i);
until (vchambre.num=tab_cli^[compteur].num_chambre) or eof(fchambre);
seek(fchambre,i);
vchambre.etat:='O';
write(fchambre,vchambre);
close(fchambre);
end;
if not sup_date(vclient.date_sortie,date) then
begin
write(ffacture,vclient);
reset(fchambre);
i:=-1;
repeat
read(fchambre,vchambre);
inc(i);
until (vchambre.num=tab_cli^[compteur].num_chambre) or eof(fchambre);
seek(fchambre,i);
vchambre.etat:='L';
write(fchambre,vchambre);
close(fchambre);
tab_cli^[compteur].num_chambre:='*****';
end;
end;
rewrite(fclient);
for i:=1 to compteur do
if tab_cli^[i].num_chambre<>'*****' then
write(fclient,tab_cli^[i]);
close(fclient);
dispose(tab_cli);
end;
{efface l'ecran en ecrivant le titre de la page, les auteurs, la date en cours et le nom de l'hotel}
procedure efface(titre:string);
var erreur,x:integer;
begin
textcolor(vconf.couleur_text_fond);
textbackground(vconf.couleur_fond);
clrscr;
window(1,46,80,50);
textbackground(vconf.couleur_bas);
clrscr;
textbackground(vconf.couleur_fond);
window(1,1,80,50);
rect(2,2,79,6);
gotoxy((80-length(titre)) div 2,4);write(titre);
textcolor(vconf.couleur_text_bas);
for x:=1 to 80 do
begin
gotoxy(x,46);
write(#219);
end;
{$I-}
reset(finfo);
{$I+}
erreur:=ioresult;
if (erreur=0) and (filesize(finfo)<>0) then
begin
read(finfo,vinfo);
close(finfo);
end;
textbackground(vconf.couleur_bas);
gotoxy(2,48);write('HOTEL : ',vinfo.nom);
gotoxy(60,48);date;
gotoxy(9,50);write('CHEIKH SIDYA CAMARA * MARIUS GANA NDIAYE * KHADIDIATOU KANE');
textbackground(vconf.couleur_fond);
textcolor(vconf.couleur_text_fond);
end;
{c'est une fonction qui donne l'indices des elements selectionnes du menu}
function bouge(k,max:integer):integer;
begin
case ch of
#72 : begin
dec(k);
if k<0 then k:=max-1;
end;
#80 : begin
inc(k);
if k>max-1 then k:=0;
end;
end;
bouge:=k;
end;
{initialisation : cette procedure permet d'initialiser le programme cad effacer l'ecran , ...
il verifie si c'est la premiere fois que l'on a execute le programme si c'est vrai il cree tous les fichiers dont
le programme a besoin et ensuite demande le nom de l'hotel, le nombre de niveau et le nombre de chambres par niveau
et ensuite demander les tarifs des chambres et des services annexes et enfin de demander la classe de chaque chambre}
procedure init;
var erreur,i,j,k:integer;
nb1,nb2:string[5];
tabchambre:array[1..500] of tchambre;
dat:tdate;
begin
today(dat);
textbackground(white);
textcolor(yellow);
clrscr;
assign(finfo,'c:/hotel/info.dat');
assign(fcategorie,'c:/hotel/categorie.dat');
assign(fchambre,'c:/hotel/chambre.dat');
assign(fser_annexes,'c:/hotel/services_annexes.dat');
assign(fclient,'c:/hotel/client.dat');
assign(ffacture,'c:/hotel/facture.dat');
assign(fconf,'c:/hotel/configuration.dat');
{$I-}
mkdir('c:/hotel');
{$I+}
erreur:=ioresult;
{$I-}
reset(fconf);
{$I+}
erreur:=ioresult;
if erreur<>0 then
begin
rewrite(fconf);
with vconf do
begin
couleur_fond:=yellow;
couleur_select:=0;
couleur_text_fond:=0;
couleur_text_select:=white;
couleur_bas:=white;
couleur_text_bas:=0;
end;
write(fconf,vconf);
end
else
read(fconf,vconf);
close(fconf);
{$I-}
reset(finfo);
{$I+}
erreur:=ioresult;
if erreur=0 then if filesize(finfo)=0 then erreur:=0;
if erreur<>0 then
begin
rewrite(finfo);
rewrite(fcategorie);
rewrite(fchambre);
rewrite(fser_annexes);
rewrite(fclient);
rewrite(ffacture);
efface('I N I T I A L I S A T I O N : P R E M I E R E E X E C U T I O N');
rect(10,10,30,12);
gotoxy(17,11);write('HOTEL');
gotoxy(25,14);write('NOM DE L''HOTEL :');
gotoxy(25,16);write('NOMBRE D''ETAGES :');
gotoxy(25,18);write('NOMBRE DE CHAMBRE PAR ETAGE :');
rect(10,20,30,22);
gotoxy(16,21);write('CATEGORIE');
gotoxy(25,24);write(' CATEGORIES ³ TARIF NORMAL ³ TARIF SPECIAL ');
gotoxy(25,25);write('ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ');
gotoxy(25,26);write(' ECONOMIQUE ³ ³ ');
gotoxy(25,27);write(' STANDING ³ ³ ');
gotoxy(25,28);write(' AFFAIRE ³ ³ ');
rect(10,30,30,32);
gotoxy(12,31);write('SERVICES ANNEXES');
gotoxy(25,34);write(' SERVICES ³ PRIX ');
gotoxy(25,35);write('ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ');
gotoxy(25,36);write(' PTI DEJEUNER ³ ');
gotoxy(25,37);write(' TELEPHONE ³ ');
gotoxy(25,38);write(' BAR ³ ');
textcolor(blue);
gotoxy(55,14);read(vinfo.nom);
gotoxy(55,16);read(vinfo.nbre_niv);
gotoxy(55,18);read(vinfo.nbre_chambre);
vinfo.date_debut:=dat;
write(finfo,vinfo);
vcategorie.classe:='E';
gotoxy(44,26);read(vcategorie.tarif_normal);
gotoxy(64,26);read(vcategorie.tarif_special);
write(fcategorie,vcategorie);
vcategorie.classe:='S';
gotoxy(44,27);read(vcategorie.tarif_normal);
gotoxy(64,27);read(vcategorie.tarif_special);
write(fcategorie,vcategorie);
vcategorie.classe:='A';
gotoxy(44,28);read(vcategorie.tarif_normal);
gotoxy(64,28);read(vcategorie.tarif_special);
write(fcategorie,vcategorie);
vser_annexes.nom:='PTI DEJEUNER';
gotoxy(45,36);read(vser_annexes.tarif);
write(fser_annexes,vser_annexes);
vser_annexes.nom:='TELEPHONE';
gotoxy(45,37);read(vser_annexes.tarif);
write(fser_annexes,vser_annexes);
vser_annexes.nom:='BAR';
gotoxy(45,38);read(vser_annexes.tarif);
write(fser_annexes,vser_annexes);
close(fcategorie);
close(fser_annexes);
textcolor(black);
k:=0;
for i:=1 to vinfo.nbre_niv do
begin
efface('I N I T I A L I S A T I O N : P R E M I E R E E X E C U T I O N');
gotoxy(35,8);write('NIVEAU : ',i-1:2);
gotoxy(21,10);write('ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ');
gotoxy(2,40); write('[E] ECONOMIQUE, [S] STANDIGN, [A] AFFAIRE');
for j:=1 to vinfo.nbre_chambre do
begin
str(i-1:2,nb1);
if nb1[1]=' ' then nb1[1]:='0';
str(j:3,nb2);
if nb2[1]=' ' then nb2[1]:='0';
if nb2[2]=' ' then nb2[2]:='0';
nb1:=nb1+nb2;
tabchambre[vinfo.nbre_chambre*(i-1)+j].num:=nb1;
tabchambre[vinfo.nbre_chambre*(i-1)+j].etat:='L';
gotoxy(20*((j-1) mod 4) + 2,2*(j-1) div 4 + 12);
write('CHAMBRE ',nb1,' : ');
end;
textcolor(red);
for j:=1 to vinfo.nbre_chambre do
begin
gotoxy(20*((j-1) mod 4) + 18,2*(j-1) div 4 + 12);
repeat
ch:=upcase(readkey);
until ch in ['S','A','E'];
write(ch);
tabchambre[vinfo.nbre_chambre*(i-1)+j].classe:=ch;
inc(k);
end;
textcolor(black);
end;
for i:=1 to k do write(fchambre,tabchambre[i]);
end
else
close(finfo);
generation;
end;
{la procedure selection permet de colorer un element selectionne du menu}
procedure selection(x,y,max,i,option:integer;var table:ttableau);
begin
if option=1 then
begin
textbackground(vconf.couleur_select);
textcolor(vconf.couleur_text_select);
end
else
begin
textbackground(vconf.couleur_fond);
textcolor(vconf.couleur_text_fond);
end;
gotoxy(x,y+3*i);
write(table[i+1]);
gotoxy(x,y+1+3*i);
write(table[max]);
gotoxy(x,y-1+3*i);
write(table[max]);
gotoxy(80,50);
end;
{procedure information, il donne ttes les informations sur l'hotel}
procedure pinfo;
var i : integer;
tabinfo : ttableau;
procedure information;
var j:integer;
begin
rect(2,12,79,40);
reset(finfo);
read(finfo,vinfo);
close(finfo);
gotoxy(15,16);write('NOM DE L''HOTEL : ',vinfo.nom);
gotoxy(15,18);write('NOMBRE DE NIVEAU : ',vinfo.nbre_niv);
gotoxy(15,20);write('NOMBRE DE CHAMBRE PAR NIVEAU : ',vinfo.nbre_chambre);
reset(fcategorie);
reset(fser_annexes);
for j:=1 to 3 do
begin
read(fcategorie,vcategorie);
read(fser_annexes,vser_annexes);
gotoxy(15,22+2*j);write('CLASSE : ',vcategorie.classe,'; TARIF NORMAL : ',vcategorie.tarif_normal:0:2,
'; TARIF SPECIAL : ',vcategorie.tarif_special:0:2);
gotoxy(15,30+2*j);write(vser_annexes.nom,' : ',vser_annexes.tarif:0:2);
end;
gotoxy(2,44); write('[E] ECONOMIQUE, [S] STANDIGN, [A] AFFAIRE');
close(fcategorie);
close(fser_annexes);
repeat
ch:=readkey;
until ch=#27;
end;
procedure modification;
begin
efface('M O D I F I C A T I O N D E S P R I X');
reset(fcategorie);
reset(fser_annexes);
rect(10,20,30,22);
gotoxy(16,21);write('CATEGORIE');
gotoxy(25,24);write(' CATEGORIES ³ TARIF NORMAL ³ TARIF SPECIAL ');
gotoxy(25,25);write('ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ');
gotoxy(25,26);write(' ECONOMIQUE ³ ³ ');
gotoxy(25,27);write(' STANDING ³ ³ ');
gotoxy(25,28);write(' AFFAIRE ³ ³ ');
rect(10,30,30,32);
gotoxy(12,31);write('SERVICES ANNEXES');
gotoxy(25,34);write(' SERVICES ³ PRIX ');
gotoxy(25,35);write('ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÅÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ');
gotoxy(25,36);write(' PTI DEJEUNER ³ ');
gotoxy(25,37);write(' TELEPHONE ³ ');
gotoxy(25,38);write(' BAR ³ ');
textcolor(blue);
vcategorie.classe:='E';
gotoxy(44,26);read(vcategorie.tarif_normal);
gotoxy(64,26);read(vcategorie.tarif_special);
write(fcategorie,vcategorie);
vcategorie.classe:='S';
gotoxy(44,27);read(vcategorie.tarif_normal);
gotoxy(64,27);read(vcategorie.tarif_special);
write(fcategorie,vcategorie);
vcategorie.classe:='A';
gotoxy(44,28);read(vcategorie.tarif_normal);
gotoxy(64,28);read(vcategorie.tarif_special);
write(fcategorie,vcategorie);
vser_annexes.nom:='PTI DEJEUNER';
gotoxy(45,36);read(vser_annexes.tarif);
write(fser_annexes,vser_annexes);
vser_annexes.nom:='TELEPHONE';
gotoxy(45,37);read(vser_annexes.tarif);
write(fser_annexes,vser_annexes);
vser_annexes.nom:='BAR';
gotoxy(45,38);read(vser_annexes.tarif);
write(fser_annexes,vser_annexes);
close(fser_annexes);
close(fcategorie);
end;
procedure resets;
var cmd:string;
begin
efface('R E I N I T I A L I S A T I O N');
rect(5,15,75,35);
gotoxy(32,10);write('ATTENTION ! ! !');
gotoxy(10,20);
write('VOULEZ VOUS BIEN REINITIALISER LE LOGICIEL DE GESTION D''HOTEL');
gotoxy(13,25);
write('VOUS ALLEZ PERDRE TOUTES LES INFORMATIONS ENREGISTREES');
gotoxy(36,30);
write('[O] / [N]');
gotoxy(80,50);
repeat
ch:=upcase(readkey);
until ch in ['O','N'];
if ch='O' then
begin
erase(finfo);
init;
end;
end;
procedure configuration;
var tab:array[1..6] of integer;
i,j:integer;
begin
i:=1;
tab[1]:=vconf.couleur_fond;
tab[2]:=vconf.couleur_text_fond;
tab[3]:=vconf.couleur_select;
tab[4]:=vconf.couleur_text_select;
tab[5]:=vconf.couleur_bas;
tab[6]:=vconf.couleur_text_bas;
repeat
efface('C O N F I G U R A T I O N C O U L E U R S');
gotoxy(18,12+3*i); write(#26);
gotoxy(20,15); write('COULEUR DE FOND');
gotoxy(20,18); write('COULEUR TEXTE DE FOND');
gotoxy(20,21); write('COULEUR DE FOND DE SELECTION');
gotoxy(20,24); write('COULEUR DU TEXTE SELECTIONNE');
gotoxy(20,27); write('COULEUR DU FOND BAS');
gotoxy(20,30); write('COULEUR DU TEXTE BAS');
gotoxy(18,40);write('[ENTER] POUR VALIDER ET [ESC] POUR ANNULER');
for j:=1 to 6 do
begin
textbackground(tab[j]);
gotoxy(55,12+3*j); write(' ');
textbackground(vconf.couleur_fond);
rect(54,11+3*j,58,13+3*j);
end;
textbackground(vconf.couleur_fond);
gotoxy(80,50);
ch:=readkey;
case ch of
#80: begin
gotoxy(18,12+3*i); write(' ');
inc(i);
if i=7 then i:=1;
end;
#72: begin
gotoxy(18,12+3*i); write(' ');
dec(i);
if i=0 then i:=6;
end;
#75: begin
dec(tab[i]);
if tab[i]=-1 then tab[i]:=0;
end;
#77: begin
inc(tab[i]);
if tab[i]=16 then tab[i]:=15;
end;
end;
vconf.couleur_fond:=tab[1];
vconf.couleur_text_fond:=tab[2];
vconf.couleur_select:=tab[3];
vconf.couleur_text_select:=tab[4];
vconf.couleur_bas:=tab[5];
vconf.couleur_text_bas:=tab[6];
until ch in [#27,#13];
reset(fconf);
if ch=#13 then
write(fconf,vconf)
else
read(fconf,vconf);
close(fconf);
end;
begin
REPEAT
ch:=#0;
efface('I N F O R M A T I O N S U R L '' H O T E L');
tabinfo[1]:=' LES INFOS ';
tabinfo[2]:=' MODIFIER LE NOM DE L''HOTEL ';
tabinfo[3]:=' MODIFIER LES TARIFS ';
tabinfo[4]:=' REINITIALISER L''HOTEL ';
tabinfo[5]:=' LES COULEURS ';
tabinfo[6]:=' RETOUR ';
tabinfo[7]:=' ';
for i:=0 to 5 do
begin
gotoxy(25,15+3*i);
write(tabinfo[i+1]);
end;
i:=0;
selection(25,15,7,i,1,tabinfo);
repeat
if keypressed then
begin
ch:=readkey;
selection(25,15,7,i,2,tabinfo);
i:=bouge(i,6);
selection(25,15,7,i,1,tabinfo);
end;
until (ch=#13) or (ch=#27);
inc(i);
textcolor(black);
textbackground(white);
efface('I N F O R M A T I O N S U R L '' H O T E L');
if (ch<>#27) and (i<>6) then
begin
rect(2,2,79,6);
reset(finfo);
if filesize(finfo)<>0 then read(finfo,vinfo);
case i of
1:information;
2:begin
gotoxy(20,30);write('ENTRER LE NOUVEAU NOM DE L''HOTEL : ');
gotoxy(55,30);readln(vinfo.nom);
rewrite(finfo);
write(finfo,vinfo);
close(finfo);
end;
3:modification;
4:resets;
5:configuration;
end;
ch:=#0;
end;
UNTIL (ch=#27) or (i=6);
end;
procedure pchambre;
type tachambre=array[1..1000] of tchambre;
chambre=^tachambre;
var i,j,min,max,nbre_chambre,compteur:integer;
tabchambre:ttableau;
chambre1,chambre2:chambre;
procedure liste(etat:char);
var i:integer;
begin
new(chambre2);
compteur:=0;
for i:=1 to nbre_chambre do
begin
if chambre1^[i].etat=etat then
begin
inc(compteur);
chambre2^[compteur]:=chambre1^[i];
end;
if etat='T' then
begin
chambre2^[i]:=chambre1^[i];
compteur:=nbre_chambre;
end;
end;
min:=1;
rect(20,10,60,12);
gotoxy(21,11);write(' CHAMBRE CLASSE ETAT');
rect(20,13,60,44);
gotoxy(26,8);write('(',compteur:2,'/',nbre_chambre,')');
if compteur<30 then max:=compteur else max:=30;
repeat
j:=0;
for i:=1 to 30 do
begin
gotoxy(21,13+i);
write(' ');
end;
for i:=min to max do
begin
inc(j);
gotoxy(23,13+j);write('CHAMBRE');
gotoxy(31,13+j);write(chambre2^[i].num);
gotoxy(38,13+j);
case chambre2^[i].classe of
'E':write('economique');
'S':write('standing');
'A':write('affaire');
end;
gotoxy(50,13+j);
case chambre2^[i].etat of
'L':write('libre');
'O':write('occupee');
'R':write('reservee');
end;
gotoxy(80,50);
end;
ch:=readkey;
case ch of
#72:begin
if min>1 then
begin
dec(min);
dec(max);
end;
end;
#80:begin
if max<compteur then
begin
inc(min);
inc(max);
end;
end;
end;
until ch=#27;
dispose(chambre2);
end;
procedure class(etat:char);
var i:integer;
begin
new(chambre2);
compteur:=0;
for i:=1 to nbre_chambre do
begin
if chambre1^[i].classe=etat then
begin
inc(compteur);
chambre2^[compteur]:=chambre1^[i];
end;
end;
min:=1;
rect(20,10,60,12);
gotoxy(21,11);write(' CHAMBRE CLASSE ETAT');
rect(20,13,60,44);
gotoxy(21,8);write('(',compteur:2,'/',nbre_chambre,')');
if compteur<30 then max:=compteur else max:=30;
repeat
j:=0;
for i:=1 to 30 do
begin
gotoxy(21,13+i);
write(' ');
end;
for i:=min to max do
begin
inc(j);
gotoxy(23,13+j);write('CHAMBRE');
gotoxy(31,13+j);write(chambre2^[i].num);
gotoxy(38,13+j);
case chambre2^[i].classe of
'E':write('economique');
'S':write('standing');
'A':write('affaire');
end;
gotoxy(50,13+j);
case chambre2^[i].etat of
'L':write('libre');
'O':write('occupee');
'R':write('reservee');
end;
gotoxy(80,50);
end;
ch:=readkey;
case ch of
#72:begin
if min>1 then
begin
dec(min);
dec(max);
end;
end;
#80:begin
if max<compteur then
begin
inc(min);
inc(max);
end;
end;
end;
until ch=#27;
dispose(chambre2);
end;
procedure modifier;
var num:string[5];
i,j,erreur:integer;
trouve:boolean;
begin
repeat
efface('L E S C H A M B R E S');
rect(19,8,61,12);
gotoxy(21,10);write('MODIFICATION DE LA CLASSE D''UNE CHAMBRE');
gotoxy(10,20);write('NUMERO DU CHAMBRE QUE VOUS VOULEZ MODIFIER : ');
readln(num);
reset(fchambre);
trouve:=false;
i:=-1;
while not eof(fchambre) and not trouve do
begin
inc(i);
read(fchambre,vchambre);
trouve:=vchambre.num=num;
end;
if trouve then
begin
gotoxy(10,23);write('ANCIENNE CLASSE DE LA CHAMBRE ',vchambre.num,' : ',vchambre.classe);
gotoxy(5,44);write('E = economique , S = standing , A = affaire');
gotoxy(10,26);write('ENTRER SA NOUVELLE CLASSE : ');
repeat
ch:=upcase(readkey);
until ch in ['A','E','S'];
write(ch);
vchambre.classe:=ch;
seek(fchambre,i);write(fchambre,vchambre);
close(fchambre);
reset(fchambre);
nbre_chambre:=filesize(fchambre);
i:=0;
while not eof(fchambre) do
begin
inc(i);
read(fchambre,vchambre);
chambre1^[i]:=vchambre;
end;
close(fchambre);
end
else
begin
gotoxy(17,30);
textcolor(red + blink);
write('CETTE CHAMBRE N''EXISTE PAS VERIFIEZ LE NUMERO');
textcolor(black);
end;
gotoxy(2,35);
write('POUR MODIFIER LA CLASSE D''UNE AUTRE CHAMBRE');
gotoxy(2,37);
write('APPUYER [O] SINON SUR UNE AUTRE TOUCHE');
ch:=upcase(readkey);
until ch<>'O'
end;
begin
new(chambre1);
reset(fchambre);
nbre_chambre:=filesize(fchambre);
i:=0;
while not eof(fchambre) do
begin
inc(i);
read(fchambre,vchambre);
chambre1^[i]:=vchambre;
end;
close(fchambre);
Repeat
ch:=#0;
efface('L E S C H A M B R E S');
tabchambre[1]:=' LISTE DES CHAMBRES ';
tabchambre[2]:=' LISTE DES CHAMBRES LIBRES ';
tabchambre[3]:=' LISTE DES CHAMBRES OCCUPEES ';
tabchambre[4]:=' LISTE DES CHAMBRES RESERVEES ';
tabchambre[5]:=' MODIFIER LA CLASSE D''UNE CHAMBRE ';
tabchambre[6]:=' CHAMBRES : ECONOMIQUES ';
tabchambre[7]:=' CHAMBRES : STANDING ';
tabchambre[8]:=' CHAMBRES : AFFAIRES ';
tabchambre[9]:=' RETOUR ';
tabchambre[10]:=' ';
for i:=0 to 8 do
begin
gotoxy(23,15+3*i);
write(tabchambre[i+1]);
end;
i:=0;
selection(23,15,10,i,1,tabchambre);
repeat
if keypressed then
begin
ch:=readkey;
selection(23,15,10,i,2,tabchambre);
i:=bouge(i,9);
selection(23,15,10,i,1,tabchambre);
end;
until (ch=#13) or (ch=#27);