-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueueSystem.c
119 lines (104 loc) · 2.46 KB
/
QueueSystem.c
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
#include <stdio.h>
#include "QueueSystem.h"
#include "elev.h"
int OrderTable[3][4] = {
// First Second Third Fourth
/* Up */ {0 ,0 ,0 ,0},
/* Down */ {0 ,0 ,0 ,0},
/* Panel */ {0 ,0 ,0 ,0}
};
int qs_add_order_in_OrderTable(int button, int floor){
OrderTable[button][floor] = 1;
return 0;
}
int qs_get_direction(int CurrentFloor, int direction){
if (CurrentFloor == 3){
return DOWN;
}
else if (CurrentFloor == 0){
return UP;
}
else if (direction == DOWN){
for(int button = 0; button < 3; button++){
for(int floor = 0; floor < CurrentFloor; floor++){
if(OrderTable[button][floor] == 1)
return DOWN;
}
}
return UP;
}
else if (direction == UP){
for(int button = 0; button < 3; button++){
for(int floor = CurrentFloor + 1; floor < 4; floor++){
if(OrderTable[button][floor] == 1)
return UP;
}
}
return DOWN;
}
else{
return direction;
}
}
int qs_should_elevator_stop_at_floor(int CurrentFloor, int direction){
if (OrderTable[BUTTON_COMMAND][CurrentFloor] == 1){
return 1;
}
else if (OrderTable[direction][CurrentFloor] == 1 ){
return 1;
}
else if (CurrentFloor == 3 && OrderTable[BUTTON_CALL_DOWN][3] == 1 ){
return 1;
}
else if (CurrentFloor == 0 && OrderTable[BUTTON_CALL_UP][0] == 1 ){
return 1;
}
else if (direction == UP){
for(int button = 0; button < 3; button++){
for(int floor = CurrentFloor + 1; floor < 4; floor++){
if(OrderTable[button][floor] == 1){
return 0;
}
}
}
if(OrderTable[BUTTON_CALL_DOWN][CurrentFloor] == 1){
return 1;
}
}
else if (direction == DOWN){
for(int button = 0; button < 3; button++){
for(int floor = 0; floor < CurrentFloor; floor++){
if(OrderTable[button][floor] == 1){
return 0;
}
}
}
if(OrderTable[BUTTON_CALL_UP][CurrentFloor] == 1){
return 1;
}
}
return 0;
}
int qs_clear_order_at_floor_in_OrderTable(int CurrentFloor){
for(int button = 0; button < 3; button++){
OrderTable[button][CurrentFloor] = 0;
}
return 0;
}
int qs_no_orders_in_OrderTable(void){
for(int button = 0; button < 3; button++){
for(int floor = 0; floor < 4; floor++){
if(OrderTable[button][floor] == 1){
return 0;
}
}
}
return 1;
}
void qs_clear_all_orders_in_OrderTable(void){
for(int button = 0; button < 3; button++){
for(int floor = 0; floor < 4; floor++){
OrderTable[button][floor] = 0;
}
}
}