-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathRD_Machine.java
More file actions
142 lines (135 loc) · 4.68 KB
/
RD_Machine.java
File metadata and controls
142 lines (135 loc) · 4.68 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
import java.util.*;
import java.util.io;
import java.util.concurrent.TimeUnit;
class RD_Machine
{
public static void main(String[] args)
{
System.out.println("Starting The Machine...");
System.out.println("========================");
try
{
Thread.sleep(3000);
}
catch(Exception e)
{
System.out.println("Try Again...");
}
System.out.println("Press 1, if Face Preparation is required");
System.out.println("Press 2, if Face Preparation is NOT required");
Scanner sc=new Scanner(System.in);
int status=sc.nextInt();
System.out.println("========================");
if(status==2)
{
System.out.println("Switching off...");
try
{
Thread.sleep(5000);
}
catch(Exception e)
{
System.out.println("Restart The Machine...");
}
System.out.println("Machine Back to Normal State");
System.out.println("========================");
}
else if(status==1)
{
System.out.println("Show Shovel Unavailable...");
try
{
Thread.sleep(2000);
}
catch(Exception e)
{
System.out.println("Restart The Machine...");
}
System.out.println("Press 1, if RD is in Proximity Zone...");
System.out.println("Press 2, if RD is NOT in Proximity Zone...");
int status2=sc.nextInt();
System.out.println("========================");
if(status2==2)
{
System.out.println("Divert the RD's...");
try
{
Thread.sleep(2000);
}
catch(Exception e)
{
System.out.println("Restart The Machine...");
}
System.out.println("Ignition off");
}
else if(status2==1)
{
System.out.println("RD is Loading...");
try
{
Thread.sleep(2000);
}
catch(Exception e)
{
System.out.println("Restart The Machine...");
}
System.out.println("Press 1, if RD Loading Succeed...");
System.out.println("Press 2, if RD Loading Fails...");
int status3=sc.nextInt();
if(status3==1)
{
System.out.println("Capture the waiting time...");
try
{
Thread.sleep(2000);
}
catch(Exception e)
{
System.out.println("Restart The Machine...");
}
System.out.println("Divert the RD's...");
System.out.println("Ignition off");
}
else if(status3==2)
{
System.out.println("Show Shovel Out And Count A Trip...");
try
{
Thread.sleep(2000);
}
catch(Exception e)
{
System.out.println("Restart The Machine...");
}
System.out.println("Ignition off");
}
else
{
System.out.println("Please select the valid operations and Restart the Machine again...");
try
{
Thread.sleep(2000);
}
catch(Exception e)
{
System.out.println("Restart The Machine...");
}
System.out.println("Ignition off");
}
}
else
{
System.out.println("Please select the valid operations and Restart the Machine again...");
try
{
Thread.sleep(2000);
}
catch(Exception e)
{
System.out.println("Restart The Machine...");
}
System.out.println("Ignition off");
}
}
}
}