-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdel.cpp
More file actions
152 lines (145 loc) · 3.67 KB
/
del.cpp
File metadata and controls
152 lines (145 loc) · 3.67 KB
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
#include <type.h>
Inhabitant *delInhab (Inhabitant *pDel){
Room *pR = pDel->parent;
if (pDel == pR->firstInhab) {
pR->firstInhab = pR->firstInhab->nextInhab;
return pDel;
}
Inhabitant *pPred = pR->firstInhab;
while (pPred->nextInhab!=NULL){
if (pPred->nextInhab == pDel){
pPred->nextInhab = pPred->nextInhab->nextInhab;
return pDel;
}
pPred = pPred->nextInhab;
}
return NULL;
}
int delInhabByMenu (void *ptr){
Inhabitant *pI = (Inhabitant*)ptr;
Room *pR = pI->parent;
string s = "Inhabitant ";
string f = pI->name;
f.append(" was deleted");
s.append(f);
if (delInhab(pI)!=NULL){
delete pI->name;
delete pI;
pI = NULL;
}
showInhabList (pR);
log_file(s);
return 1;
}
void delAllInhab (Room *pRoom){
Inhabitant *pI = pRoom->firstInhab;
while (pI!=NULL){
Inhabitant *toDel = pI;
pI = pI->nextInhab;
delete toDel->name;
delete toDel;
}
pRoom->firstInhab = NULL;
}
int delAllInhabByMenu (void *ptr){
Room *pR = (Room*)ptr;
delAllInhab(pR);
showInhabList(pR);
log_file("Delete all inhabitant ");
return 0;
}
Room *delRoom (Room *pDel){
Block *pB = pDel->parent;
delAllInhab(pDel);
for (int delIdx = 0;delIdx < pB->countRoom ; delIdx++){
if (pB->pRoomArray[delIdx] == pDel){
for (int i = delIdx; i < pB->countRoom-1;i++)
pB->pRoomArray[i] = pB->pRoomArray[i+1];
pB->countRoom--;
return pDel;
}
}
return NULL;
}
int delRoomByMenu (void *ptr){
Room *pR = (Room*)ptr;
Block *pB = pR->parent;
string s = "Room ";
string f = IntToString(pR->NumberRoom);
f.append(" was deleted");
s.append(f);
if (delRoom(pR)!=NULL){
delete pR;
pR = NULL;
}
showRoomList(pB);
log_file(f);
return 1;
}
void delAllRoom (Block *pB){
for (int i =0; i<pB->countRoom;i++){
delRoom(pB->pRoomArray[i]);
}
pB->countRoom = 0;
}
int delAllRoomByMenu (void *ptr){
Block *pB = (Block*)ptr;
delAllRoom(pB);
showRoomList(pB);
log_file("Delete all room");
return 0;
}
Block *delBlock (Block *pB){
Dormitory *pD = pB->parent;
Block *delB = new Block();
memcpy (delB, pB, sizeof(Block));
for (int delIdx = 0; delIdx < root->blockCount; delIdx++){
if (&pD->blockarray[delIdx] == pB){
delAllRoom(pB);
delete pB->pRoomArray;
for (int i = delIdx; i<(pD->blockCount - 1);i++)
pD->blockarray[i] = pD->blockarray[i+1];
pD->blockCount--;
return delB;
}
}
return NULL;
}
int delBlockByMenu (void *ptr){
Block *pB = (Block*)ptr;
string s = "Block ";
string f = IntToString(pB->Numblock);
f.append(" was deleted");
s.append(f);
Dormitory *pD = pB->parent;
Block *delB = delBlock(pB);
if (delB!=NULL){
delete delB;
delB = NULL;
}
showBlockList(pD);
log_file(s);
return 1;
}
void delAllBlock (Dormitory *pD){
for (int i = 0;i<pD->blockCount;i++){
delAllRoom(&(pD->blockarray[i]));
}
root->blockCount = 0;
}
int delAllBlockByMenu (void *ptr){
delAllBlock(root);
showBlockList(root);
log_file("Delete all block ");
return 0;
}
int delTree (void *){
if (root!=NULL){
delAllBlock (root);
delete []root->blockarray;
delete root;
root = NULL;
}
log_file("Delete tree ");
return 0;
}