-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPhongChieu.cpp
208 lines (195 loc) · 5.43 KB
/
PhongChieu.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
#include"PhongChieu.h"
PhongChieu::PhongChieu(string MaPhongChieu, int SoCho, string MayChieu, string AmThanh, float DienTich, string TinhTrang, string MaBaoVe){
this->MaPhongChieu = MaPhongChieu;
this->SoCho = SoCho;
this->MayChieu = MayChieu;
this->AmThanh = AmThanh;
this->DienTich = DienTich;
this->TinhTrang = TinhTrang;
this->MaBaoVe = MaBaoVe;
}
PhongChieu::~PhongChieu(){}
void PhongChieu::setMaPhongChieu(string MaPhongChieu){
this->MaPhongChieu = MaPhongChieu;
}
void PhongChieu::setSoCho(int SoCho){
this->SoCho = SoCho;
}
void PhongChieu::setMayChieu(string MayChieu){
this->MayChieu = MayChieu;
}
void PhongChieu::setAmThanh(string AmThanh){
this->AmThanh = AmThanh;
}
void PhongChieu::setDienTich(float DienTich){
this->DienTich = DienTich;
}
void PhongChieu::setTinhTrang(string TinhTrang){
this->TinhTrang = TinhTrang;
}
void PhongChieu::setMaBaoVe(string MaBaoVe){
this->MaBaoVe = MaBaoVe;
}
string PhongChieu::getMaPhongChieu(){
return this->MaPhongChieu;
}
int PhongChieu::getSoCho(){
return this->SoCho;
}
string PhongChieu::getMayChieu(){
return this->MayChieu;
}
string PhongChieu::getAmThanh(){
return this->AmThanh;
}
float PhongChieu::getDienTich(){
return this->DienTich;
}
string PhongChieu::getTinhTrang(){
return this->TinhTrang;
}
string PhongChieu::getMaBaoVe(){
return this->MaBaoVe;
}
PhongChieu::PhongChieu(const PhongChieu& p){
this->MaPhongChieu = p.MaPhongChieu;
this->SoCho = p.SoCho;
this->MayChieu = p.MayChieu;
this->AmThanh = p.AmThanh;
this->DienTich = p.DienTich;
this->TinhTrang = p.TinhTrang;
this->MaBaoVe = p.MaBaoVe;
}
void PhongChieu::Display2(){
cout << "Ma Phong Chieu: " << this->MaPhongChieu << endl;
CanLe();
cout << "So Ghe: " << this->SoCho << endl;
CanLe();
cout << "Loai May Chieu: " << this->MayChieu << endl;
CanLe();
cout << "Loai Am Thanh: " << this->AmThanh << endl;
CanLe();
cout << "Dien Tich: " << this->DienTich << "met vuong" << endl;
CanLe();
cout << "Tinh Trang: " << this->TinhTrang << endl;
CanLe();
cout << "Ma Bao Ve: " << this->MaBaoVe << endl;
}
void PhongChieu::Display(){
cout<<char(179)<< setw(25) << left << this->MaPhongChieu <<char(179);
cout << setw(20) << left << this->SoCho << char(179);
cout << setw(20) << left << this->MayChieu << char(179);
cout << setw(20) << left << this->AmThanh << char(179);
cout << setw(20) << left << this->DienTich << char(179);
cout << setw(20) << left << this->TinhTrang << char(179);
cout << setw(20) << left << this->MaBaoVe<<char(179)<< endl;
}
void PhongChieu::DocFileDatGhe(vector<int>& A,string xuatchieu){
ifstream ip2;
ip2.open("./LichChieu/" + xuatchieu + "/" + this->getMaPhongChieu() + ".txt", ios::in);
int check;
while(ip2.peek()!= EOF){
ip2 >> check;
A.push_back(check);
}
ip2.close();
}
void PhongChieu::DatGhe(int n,string xuatchieu){
for(int i = 0; i < n; i++){
CanLe();
cout << "Nhap Ghe Ma Ban Muon Dat: ";
int ghe;
cin >> ghe;
while(i < 0 || i > this->SoCho){
CanLe();
cout << "Vui Long Nhap Lai: ";
cin >> ghe;
}
this->GhiFileDatGhe(ghe,xuatchieu);
}
}
void PhongChieu::GhiFileDatGhe(int ghe,string xuatchieu){
fstream ip1;
ip1.open("./LichChieu/" + xuatchieu + "/" + this->getMaPhongChieu() + ".txt", ios::app);
if(ip1.is_open()){
ip1.seekp(0,ios::end);
ip1 << endl;
ip1 << ghe;
ip1.close();
}
}
bool PhongChieu::isReserved(vector<int>& A, int k){
for (int i = 0; i < A.size(); i++)
{
if(k == A[i]){
return true;
break;
}
}
return false;
}
void PhongChieu::DisplayTable(string xuatchieu){
vector<int> A;
DocFileDatGhe(A,xuatchieu);
int Ghe[1000];
for (int i = 1; i <= this->SoCho; i++)
{
Ghe[i] = i;
}
GoTo(60,whereY());
cout <<"\t\t Man Hinh Chieu" << endl;
cout << " ";
GoTo(60,whereY());
for(int i = 0; i < 6; i++) cout << "________";
GoTo(60,whereY()+3);
for(int i = 0; i < this->SoCho/10; i++){
GoTo(60,whereY());
for(int j = 1; j <= 10; j++){
if(this->isReserved(A,i*10 + j)){
SetColor(0,5);
cout << setw(5) << Ghe[i*10 + j];
SetColor(0,7);
}
else {
cout << setw(5) << Ghe[i*10 + j];
}
}
cout << endl;
cout << endl;
}
GoTo(5,10);
SetColor(0,7);
cout << "Mau Trang: Co The Dat Ghe" << endl;
GoTo(5,11);
SetColor(0,5);
cout << "Mau Tim: Da Dat Truoc" << endl;
SetColor(0,7);
cout << endl;
}
istream& operator>>(istream& i, PhongChieu& e){
CanLe();
cout << "Nhap Ma Phong Chieu: ";
fflush(stdin);
getline(i,e.MaPhongChieu);
CanLe();
cout << "Nhap So Ghe: "; i >> e.SoCho;
CanLe();
cout << "Nhap Loai May Chieu: ";
fflush(stdin);
getline(i,e.MayChieu);
CanLe();
cout << "Nhap Loai Am Thanh: ";
fflush(stdin);
getline(i,e.AmThanh);
CanLe();
cout << "Nhap Dien Tich Phong Chieu:"; i >> e.DienTich;
CanLe();
cout << "Nhap Tinh Trang Phong Chieu:";
fflush(stdin);
getline(i,e.TinhTrang);
CanLe();
cout << "Nhap Ma Bao Ve: ";
fflush(stdin);
getline(i,e.MaBaoVe);
return i;
}