-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainfile.java
More file actions
259 lines (256 loc) · 6.66 KB
/
mainfile.java
File metadata and controls
259 lines (256 loc) · 6.66 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
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
import java.util.*;
public class mainfile
{
public static void main(String[] args)
{
while(true)
{
System.out.println("Main Menu:");
System.out.println("1. View Passenger Locations");
System.out.println("2. View Train Locations");
System.out.println("3. Manage Passengers");
System.out.println("4. Manage Trains");
System.out.println("5. Manage Routes");
System.out.println("6. Quit");
Scanner userinput = new Scanner(System.in);
String chosenoption = userinput.nextLine();
userinput.close();
switch(chosenoption[0])
{
case '1':
view_passenger_locations();
break;
case '2':
view_train_locations();
break;
case '3':
manage_passengers();
break;
case '4':
manage_trains();
break;
case '5':
manage_routes();
break;
case '6':
System.out.println("Quitting...");
return;
default:
System.out.println("Invalid response.");
}
}
}
public static void view_passenger_locations()
{
Scanner userinput = new Scanner(System.in);
String chosenoption;
while(true)
{
//display RidingTrain
//display WaitingInStation
System.out.println("1. Move Passenger");
System.out.println("2. Back");
chosenoption = userinput.nextLine();
if(chosenoption[0] == '1')
{
System.out.println("Enter passenger ID:");
chosenoption = userinput.nextLine();
if(true) //passenger ID valid
{
System.out.println("1. Move Passenger to Train");
System.out.println("2. Move Passenger to Station");
chosenoption = userinput.nextLine();
if(chosenoption[0] == '1')
{
System.out.println("Enter train ID:");
chosenoption = userinput.nextLine();
if(true) //train ID valid
{
//remove the passenger from RidingTrain and WaitingInStation
//add passenger to RidingTrain with the new train ID
System.out.println("Passenger moved successfully.");
}
else
{
System.out.println("No train with that ID found.");
}
}
else if(chosenoption[0] == '2')
{
System.out.println("Enter station ID:");
chosenoption = userinput.nextLine();
if(true) //station ID valid
{
//remove the passenger from RidingTrain and WaitingInStation
//add passenger to WaitingInStation with the new station ID
System.out.println("Passenger moved successfully.");
}
else
{
System.out.println("No station with that ID found.");
}
}
else
{
System.out.println("Invalid response.");
}
}
else
{
System.out.println("No passenger with that ID found.");
}
}
else if(chosenoption[0] == '2')
{
System.out.println("Returning to main menu...");
userinput.close();
return;
}
else
{
System.out.println("Invalid response.");
}
}
}
public static void view_train_locations()
{
Scanner userinput = new Scanner(System.in);
String chosenoption;
while(true)
{
//display DockedAtStation
//display TravelingDownRoute
System.out.println("1. Move Train");
System.out.println("2. Back");
chosenoption = userinput.nextLine();
if(chosenoption[0] == '1')
{
System.out.println("Enter train ID:");
chosenoption = userinput.nextLine();
if(true) //train ID valid
{
System.out.println("1. Move Train to Station");
System.out.println("2. Move Train to Route");
chosenoption = userinput.nextLine();
if(chosenoption[0] == '1')
{
System.out.println("Enter station ID:");
chosenoption = userinput.nextLine();
if(true) //station ID valid
{
//remove the train from DockedAtStation and TravelingDownRoute
//add train to DockedAtStation with the new station ID
System.out.println("Train moved successfully.");
}
else
{
System.out.println("No station with that ID found.");
}
}
else if(chosenoption[0] == '2')
{
System.out.println("Enter route ID:");
chosenoption = userinput.nextLine();
if(true) //route ID valid
{
//remove the train from DockedAtStation and TravelingDownRoute
//add train to TravelingDownRoute with the new route ID
System.out.println("Passenger moved successfully.");
}
else
{
System.out.println("No route with that ID found.");
}
}
else
{
System.out.println("Invalid response.");
}
}
else
{
System.out.println("No train with that ID found.");
}
}
else if(chosenoption[0] == '2')
{
System.out.println("Returning to main menu...");
userinput.close();
return;
}
else
{
System.out.println("Invalid response.");
}
}
}
public static void manage_passengers()
{
Scanner userinput = new Scanner(System.in);
String chosenoption;
while(true)
{
//display Passenger
System.out.println("1. Add Passsenger");
System.out.println("2. Edit Passenger");
System.out.println("3. Remove Passenger");
System.out.println("4. Back");
chosenoption = userinput.nextLine();
if(chosenoption[0] == '1')
{
System.out.println("Enter passenger ID:");
String passengerid = userinput.nextLine();
System.out.println("Enter passenger first name:");
String firstname = userinput.nextLine();
System.out.println("Enter passenger last name (can be blank):");
String lastname = userinput.nextLine();
System.out.println("Enter destination station ID:");
String destinationstation = userinput.nextLine();
System.out.println("Enter starting station ID:");
String startingstation = userinput.nextLine();
if(true) //passenger can be successfully added to Passenger and WaitingInStation
{
//add passenger to Passenger and WaitingInStation
System.out.println("Passenger created successfully.");
}
else //passenger can't successfully be added to Passenger, due to, say, their referenced station IDs not matching existing station IDs
{
System.out.println("Passenger could not be created successfully. Check for invalid data.");
}
}
else if(chosenoption[0] == '2')
{
//incomplete
}
else if(chosenoption[0] == '3')
{
System.out.println("Enter passenger ID:");
chosenoption = userinput.nextLine();
if(true) //a passenger with that ID exists
{
//incomplete
}
else
{
System.out.println("No passenger with that ID found.");
}
}
else if(chosenoption[0] == '4')
{
System.out.println("Returning to main menu...");
userinput.close();
return;
}
else
{
System.out.println("Invalid response.");
}
}
}
public static void manage_trains()
{
}
public static void manage_routes()
{
}
}