forked from avirajdongare/BooleanAutocrats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hotel management System
315 lines (311 loc) · 7.29 KB
/
Hotel management System
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
#include<fstream.h>
#include<iostream.h>
#include<conio.h>
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<process.h>
#include<dos.h>
//MARK:- Interface Functions Here =>
void intro() {
cout<<"\n\n\t ";
cout<<" C++ Project On Hotel Management System";
cout<<"\n\n\t\t\t\t MADE BY";
cout<<"\n°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°";
cout<<"°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°";
cout<<"||\t\t\t\t\t\t\t\t\t ||";
cout<<"||\t\t\t\t\t\t\t\t\t ||";
cout<<"||\t\t\t\tDaljeet Singh Chhabra\t\t\t ||";
cout<<"||\t\t\t\t\t\t\t\t\t ||";
cout<<"||\t\t\t\t\t \t\t\t\t ||";
cout<<"°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°";
cout<<"°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°";
}
void head() {
clrscr();
cout<<"°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°";
cout<<"°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°";
cout<<"?t\t\t\t\t\t\t\t\t ?;
cout<<"?t\t\t\t XYZ Group of Hotels\t\t\t ?;
cout<<"?t\t\t\t\t\t\t\t\t ?;
cout<<"°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°";
cout<<"°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°";
}
void time() {
int i=0;
long long j;
cout<<" \n\n\n Connecting to Server\n Syncing DaTa";
while(i<10) {
for (j=5;j>4;j++) {
if (j==99999) {
cout<<".";
break;
}
}
++i;
}
}
//MARK:- Hotel Class Here =>
class hotel {
private:
int room_no;
char name[30];
char address[50];
char phone[15];
int days;
float fare;
public:
void main_menu(); //to display the main menu
void add(); //to book a room
void display(); //to display the customer record
void rooms(); //to display allotted rooms
void edit(); //to edit the customer record
int check(int); //to check room status
void modify(int); //to modify the record
void delete_rec(int); //to delete the record
};
void hotel::main_menu() {
int choice;
while(choice!=5) {
clrscr();
head();
cout<<"\n\t\t\t\t*************";
cout<<"\n\t\t\t\t* MAIN MENU *";
cout<<"\n\t\t\t\t*************";
cout<<"\n\n\n\t\t\t1.Book A Room";
cout<<"\n\t\t\t2.Customer Record";
cout<<"\n\t\t\t3.Rooms Allotted";
cout<<"\n\t\t\t4.Edit Record";
cout<<"\n\t\t\t5.Exit";
cout<<"\n\n\t\t\tEnter Your Choice: ";
cin>>choice;
switch(choice) {
case 1: add();
break;
case 2: display();
break;
case 3: rooms();
break;
case 4: edit();
break;
case 5: break;
default: {
cout<<"\n\n\t\t\tWrong choice.....!!!";
cout<<"\n\t\t\tPress any key to continue....!!";
getch();
}
}
}
}
void hotel::add() {
clrscr();
head();
int r,flag;
ofstream fout("Record.dat",ios::app);
cout<<"\n Enter Customer Details";
cout<<"\n ----------------------";
cout<<"\n\n Room no: ";
cin>>r;
flag=check(r);
if(flag)
cout<<"\n Sorry..!!!Room is already booked";
else {
room_no=r;
cout<<" Name: ";
gets(name);
cout<<" Address: ";
gets(address);
cout<<" Phone No: ";
gets(phone);
cout<<" No of Days to Checkout: ";
cin>>days;
fare=days*900; //900 is currently set as the
//default price per day
fout.write((char*)this,sizeof(hotel));
cout<<"\n Room is booked...!!!";
}
cout<<"\n Press any key to continue.....!!";
getch();
fout.close();
}
void hotel::display() {
clrscr();
head();
ifstream fin("Record.dat",ios::in);
int r,flag;
cout<<"\n Enter room no: ";
cin>>r;
while(!fin.eof()) {
fin.read((char*)this,sizeof(hotel));
if(room_no==r) {
clrscr();
head();
cout<<"\n Customer Details";
cout<<"\n ----------------";
cout<<"\n\n Room no: "<<room_no;
cout<<"\n Name: "<<name;
cout<<"\n Address: "<<address;
cout<<"\n Phone no: "<<phone;
cout<<"\n Days: "<<days;
cout<<"\n Total Fare: "<<fare;
flag=1;
}
}
if(flag==0)
cout<<"\n Sorry Room no. not found or vacant....!!";
cout<<"\n\n Press any key to continue....!!";
getch();
fin.close();
}
void hotel::rooms() {
clrscr();
head();
ifstream fin("Record.dat",ios::in);
cout<<"\n\t\t\t List Of Rooms Allotted";
cout<<"\n\t\t\t ----------------------";
while(!fin.eof()) {
fin.read((char*)this,sizeof(hotel));
cout<<"\n Room no: "<<room_no<<"\n Name: "<<name;
cout<<"\n Address: "<<address<<"\n Phone: "<<phone;
cout<<"\n Days: "<<days<<"\n Total: "<<fare;
cout<<"\n**********************************";
}
cout<<"\n\n\n\t\t\tPress any key to continue.....!!";
getch();
fin.close();
}
void hotel::edit() {
clrscr();
head();
int choice,r;
cout<<"\n EDIT MENU";
cout<<"\n ---------";
cout<<"\n\n 1.Modify Customer Record";
cout<<"\n 2.Delete Customer Record";
cout<<"\n Enter your choice: ";
cin>>choice;
clrscr();
head();
cout<<"\n Enter room no: " ;
cin>>r;
switch(choice) {
case 1: modify(r);
break;
case 2: delete_rec(r);
break;
default: cout<<"\n Wrong Choice.....!!";
}
cout<<"\n Press any key to continue....!!!";
getch();
}
int hotel::check(int r) {
int flag=0;
ifstream fin("Record.dat",ios::in);
while(!fin.eof()) {
fin.read((char*)this,sizeof(hotel));
if(room_no==r) {
flag=1;
break;
}
}
fin.close();
return(flag);
}
void hotel::modify(int r) {
clrscr();
head();
long pos,flag=0;
fstream file("Record.dat",ios::in|ios::out|ios::binary);
while(!file.eof()) {
pos=file.tellg();
file.read((char*)this,sizeof(hotel));
if(room_no==r) {
cout<<"\n Enter New Details";
cout<<"\n -----------------";
cout<<"\n Name: ";
gets(name);
cout<<" Address: ";
gets(address);
cout<<" Phone no: ";
gets(phone);
cout<<" Days: ";
cin>>days;
fare=days*900;
file.seekg(pos);
file.write((char*)this,sizeof(hotel));
cout<<"\n Record is modified....!!";
flag=1;
break;
}
}
if(flag==0)
cout<<"\n Sorry Room no. not found or vacant...!!";
file.close();
}
void hotel::delete_rec(int r) {
clrscr();
head();
int flag=0;
char ch;
ifstream fin("Record.dat",ios::in);
ofstream fout("temp.dat",ios::out);
while(!fin.eof()) {
fin.read((char*)this,sizeof(hotel));
if(room_no==r) {
cout<<"\n Name: "<<name;
cout<<"\n Address: "<<address;
cout<<"\n Phone No: "<<phone;
cout<<"\n Days: "<<days;
cout<<"\n Total Fare: "<<fare;
cout<<"\n\n Do you want to delete this record(y/n): ";
cin>>ch;
if(ch=='n')
fout.write((char*)this,sizeof(hotel));
flag=1;
break;
}
else
fout.write((char*)this,sizeof(hotel));
}
fin.close();
fout.close();
if(flag==0)
cout<<"\n Sorry room no. not found or vacant...!!";
else {
remove("Record.dat");
rename("temp.dat","Record.dat");
}
}
//MARK:- Main() Function Here =>
int main() {
textbackground(RED);
textcolor(0);
hotel h;
clrscr();
cout<<"\n\n\n";
intro();
time();
cout<<"\n\n\n\t\t\tPress any key to continue....!!";
getch();
clrscr();
head();
char id[5],pass[7];
cout<<"\n\n\t\t\t\tusername => ";
cin>>id;
cout<<"\n\t\t\t\tpassword => ";
cin>>pass;
cout<<"\n\n\t";
time();
cout<<"\t";
if(strcmp(id,"admin")==0&&strcmp(pass,"******")==0)
cout<<"\n\n\t\t\t !!!Login Successfull!!!";
else {
cout<<"\n\n\t\t\t!!!INVALID CREDENTIALS!!!";
getch();
exit(-1);
}
clrscr();
h.main_menu();
getch();
return 0;
}