-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConsoleApplication16.cpp
227 lines (158 loc) · 9.49 KB
/
ConsoleApplication16.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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
// ConsoleApplication16.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iomanip>
#include <iostream>
#include<stdio.h>
#include <cstdlib>
#include <string>
#include <iomanip>
double getaccelarate(double &, double &);
double getbrake(double &, double &);
double getcruise(double &, double &);
void outputStatusHeader();
void demo();
double updateDistanceTraveled(double &, double &);
int delta = 5;
//double brakee = 0;
double previousSpeed = 0;
double currentSpeed = 0;
using namespace std;
int main()
{
char command;
//The amount of elapsed time for each calculation interval (fixed at 1 second)
const int timeInterval = 1;
//double currentSpeed=0;
//convert into the distance travelled by feet
int totalFeetTraveled = 0;
//the average speed travel
int averageSpeed = 0;
//double previousSpeed =0;
int averageSpeed_FeetPerSecond = 0;
int intervalFeetTraveled = 0;
int speed = 0;
//the amount of time that the time will increase by
//const int delta= 5;
while (true)
{
cout << "Command:";
cin >> command;
switch (command)
{
case 'a':
//double accelarate;
double speed;
speed = getaccelarate(currentSpeed, previousSpeed);
//cout << getaccelarate;
cout << "Accelerate"<<setw(20)<<"Accelerating"<<setw(5);
cout << speed;
double conve;
conve = updateDistanceTraveled(previousSpeed, currentSpeed);
cout <<setw(10)<<setprecision(3)<<conve<<endl;
//updateDistanceTraveled(previousSpeed,currentSpeed);
break;
case 'b':
double brake;
brake = getbrake(previousSpeed, currentSpeed);
cout << "Brake" <<setw(20)<<"Braking"<<setw(5);
cout << brake;
//double brake1 = 0;
//brake1 = updateDistanceTraveled(previousSpeed, currentSpeed);
cout << setw(10) << setprecision(3) << conve << endl;
/*brakee = updateDistanceTraveled(previousSpeed, currentSpeed);
cout << setw(10) << setprecision(1) << brakee << endl;*/
break;
case 'c':
double cruise;
cruise = getcruise(previousSpeed, currentSpeed);
cout << "Cruise" << setw(20) << "Cruising" << setw(5);
cout << cruise;
cout << setw(10) << setprecision(3) << conve << endl;
//cout << setw(10) << setprecision(1) << brakee << endl;
//updateDistanceTraveled(previousSpeed, currentSpeed);
break;
case 'h':
outputStatusHeader();
break;
case 'd':
demo();
//demo unfinished
break;
case 'q':
cout << " Exit program";
exit(1);
break;
default:
cout << "Invalid command" << endl;
break;
}
}
system("pause");
return 0;
}
//converting mph to feet perhours
double updateDistanceTraveled(double &previousSpeed,double ¤tSpeed)
{
//getaccelarate(previousSpeed, currentSpeed);
double averageSpeed = 0;
double averageSpeed_FeetPerSecond = 0;
double intervalFeetTraveled=0;
//double totalFeetTraveled=0;
const int timeInterval = 1;
averageSpeed = (previousSpeed + currentSpeed) / 2;
averageSpeed_FeetPerSecond = averageSpeed * 5280.0 / 3600.0;
intervalFeetTraveled = averageSpeed_FeetPerSecond * timeInterval;
return intervalFeetTraveled;
/*totalFeetTraveled = totalFeetTraveled + intervalFeetTraveled;
return totalFeetTraveled;*/
}
//to decrease speed
double getbrake(double &previousSpeed, double ¤tSpeed)
{
previousSpeed = currentSpeed;
currentSpeed -= delta;
return currentSpeed;
}
//to increase speed
double getaccelarate(double &previousSpeed, double ¤tSpeed)
{
previousSpeed = currentSpeed;
currentSpeed = currentSpeed + delta;
return currentSpeed;
}
// to stay in current speed
double getcruise(double &previousSpeed, double ¤tSpeed)
{
previousSpeed = currentSpeed;
return previousSpeed;
}
//unfinished demo
void demo()
{
cout << "Function Current State Current Speed Interval Distance Total Feet (and miles) traveled" << endl;
cout << "-----------------------------------------------------------------------------------" << endl;
for (int x = 1; x < 4; x++)
{
double speed;
speed = getaccelarate(currentSpeed, previousSpeed);
//cout << getaccelarate;
cout << "Accelerate" << setw(20) << "Accelerating" << setw(5);
cout << speed;
double conve;
conve = updateDistanceTraveled(previousSpeed, currentSpeed);
cout << setw(10) << setprecision(3) << conve << endl;
}
}
//for supported commands
void outputStatusHeader()
{
cout << " supported commands\n"
<< " a accelerate\n"
<< " b brake\n"
<< " c cruise\n"
<< " d demo\n"
<< " h print this help text\n"
<< " q quit(end the program)"
<< endl;
}