forked from matkatmusic/PFMCPP_Project3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
555 lines (461 loc) · 12.3 KB
/
main.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
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
/*
Project 3 - Part 2 / 5
Video: Chapter 2 Part 6
Implementations tasks
Create a branch named Part2
tasks
0) delete all of the plain english pseudo-code you added in Part1.
don't forget to remove the blank lines left behind after you remove your comments
- you should be left with only your UDTs.
*/
// example:
// if you had something like this at the end of Part1e:
/*
Thing: Car Wash
5 properties:
- number of vacuum cleaners
- number of eco-friendly cleaning supplies
- stores the amount of water used per week.
- stores amount of profit made per week
- number of cars serviced per day
3 things it can do:
- wash and wax car
- charge customer
- detail the car interior
*/
#include <iostream>
#include <string>
namespace Part1eVersion
{
struct CarWash
{
//number of vacuum cleaners
int numVacuumCleaners = 3;
//number of eco-friendly cleaning supplies
int numEcoFriendlyCleaningSupplies = 20;
//stores the amount of water used per week.
float waterUsedPerWeek = 200.f;
//stores amount of profit made per week
float profitPerWeek = 495.95f;
//number of cars serviced per day
int numberOfCarsServiced = 10;
struct Car
{
bool isAPickupTruck = false;
float gasMileage = 26.2f;
int year = 1985;
std::string manufacturer = "Toyota";
std::string model = "Corolla";
void fillTank(double fuelAmountInGallons = 2.0);
void breakDown(std::string failureType, bool requiresTow = false);
int getMilesTraveledAnnually(bool includeUberLyftTrips);
};
//wash and wax car
void washAndWaxCar( Car car );
//charge customer
float chargeCustomer(float discountPercentage);
//detail the car interior
void detailInterior( Car car );
Car carBeingServiced;
};
}
//this is what I want to see after the code is cleaned up:
namespace Part2Version
{
struct CarWash
{
int numVacuumCleaners = 3;
int numEcoFriendlyCleaningSupplies = 20;
float waterUsedPerWeek = 200.f;
float profitPerWeek = 495.95f;
int numberOfCarsServiced = 10;
struct Car
{
bool isAPickupTruck = false;
float gasMileage = 26.2f;
int year = 1985;
std::string manufacturer = "Toyota";
std::string model = "Corolla";
void fillTank(double fuelAmountInGallons = 2.0);
void breakDown(std::string failureType, bool requiresTow = false);
int getMilesTraveledAnnually(bool includeUberLyftTrips);
};
void washAndWaxCar( Car car );
float chargeCustomer(float discountPercentage);
void detailInterior( Car car );
Car carBeingServiced;
};
}
/*
The above snippet is just an example showing you how to clean up your code.
Do not put your cleaned up code into a namespace like I have done here.
1) write the definition for the Type that leftFoot and rightFoot are instantiations of.
don't forget to define and implement the member functions 'stepForward()' and 'stepSize()'
you should be able to deduce the return type of those functions based on their usage in Person::run()
You'll need to insert the Person struct from the video in the space below.
*/
/*
2) provide implementations for the member functions you declared in your 10 user-defined types from the previous video outside of your UDT definitions.
If you have warnings about 'unused parameter', you aren't using one of your function parameters in your implementation.
use the parameter in your implementation.
If you have warnings about 'overshadow', a local variable in the function has the same name as a class member.
change the name of your local variable so it is different from the class member's name.
3) be sure to write the correct full qualified name for the nested type's member functions.
4) After you finish defining each type/function, click the [run] button. Clear up any errors or warnings as best you can.
*/
/*
Thing 1) DAW
5 properties:
1) amount of memory
2) size of memory buffer
3) number of reverb plugins
4) amount of tracks
5) number of inputs
3 things it can do:
1) master music
2) process audio
3) mix music
*/
struct DAW
{
//amount of memory
int amountOfMemory = 100;
//size of memory buffer
float sizeOfMemoryBuffer = 12.4f;
//number of reverb plugins
int numberOfReverbPlugins = 4;
//amount of tracks
int amountOfTracks = 10;
//number of inputs
int numberofInputs = 2;
struct DAWProperties
{
bool canRecordMidi = true;
bool canRecordAudio = true;
float FrameRate = 29.23f;
double bufferSize = 256.5;
int numberOfWindow = 3;
void multiRecord();
void playVideo();
void convertMidi();
};
//master music
void masterMusic(bool masteredMusic = true, bool error = false);
//process audio
int processAudio(int NumberOfTracks = 24);
//mix music
float mixMusic(float audioLevel = 0.9f);
};
/*
Thing 2) airport
5 properties:
1) number of planes
2) number of floor staff
3) number of aeroplane engineers
4) number of runways
5) number of radar
3 things it can do:
1) land and takeoff planes
2) centralise travel departure
3) service travel industry
*/
struct Airport
{
//number of planes
int numberOfPlanes = 10;
//number of floor staff
int numberOfFloorStaff = 100;
//number of aeroplane engineers
int numberOfAeroPlaneEngineers = 50;
//number of runways
int numberOfRunways = 5;
//number of radar
int numberOfRAdar = 1;
//land and takeoff planes
void landAndTakeOffPlanes(bool hasConfirmation = true);
//centralise travel departure
void centraliseTravelDeparture();
//service travel industry
void serviceTravelIndustry(bool notOvercapacity);
};
/*
Thing 3) farm
5 properties:
1) number of chickens
2) number of cows
3) number of workers
4) the amount of feed per week
5) the amount of milk produced
3 things it can do:
1) grow veg
2) rear animals
3) produce milk
*/
struct Farm
{
//number of chickens
int numberOfChickens = 20;
//number of cows
int numberOfCows = 5;
//number of workers
int numberOfWorkers = 1;
//the amount of feed per week
float amountOfFeedPerWeek = 33.3f;
//the amount of milk produced
double amountOfMilkProduced = 22.2;
//grow veg
void growVeg(std:: string vegType, int carrots);
//rear animals
void rearAnimals(bool hasChickens);
//produce milk
void produceMilk(int numberOfLitres = 100);
};
/*
Thing 4) school
5 properties:
1) number of students
2) number of teachers
3) hours per week of teaching
4) hours per week of lunch
5) amount of whiteboards
3 things it can do:
1) educate children
2) employ adults
3) play sports
*/
struct School
{
//number of students
int numberOfStudents = 100;
//number of teachers
int numberOfTeachers = 20;
//hours per week of teaching
float hoursPerWeek = 22.3f;
//hours per week of lunch
double hoursOfLunch = 13.2;
//amount of whiteboards
int amountOfWhiteBoards = 5;
struct SchoolStaff
{
int staffRoom = 1;
int numberOfFullTime = 5;
int numberOfPartTime = 5;
double totalHoursAllStaff = 110;
int StaffCarParkSpaces = 10;
void totalBreakTime(int = 36);
void staffStudentRatio(int = 5);
void staffTrainer();
};
//educate children
void educateChildren();
//employ adults
void employAdults(std::string Over21Yo);
//play sports
bool playSports(bool notRaining = true);
};
/*
Thing 5) wheels
5 properties:
1) wheel diameter
2) wheel width
3) amount of lug nuts
4) tyre thread depth
5) tyre pressure
3 things it can do:
1) carry vehicle
2) aid suspension
3) turn vehicle
*/
struct Wheels
{
//wheel diameter
int wheelDiameter = 50;
//wheel width
float wheelWidth = 27.4f;
//amount of lug nuts
int amountLugNuts = 30;
//tyre thread depth
double tyreThreadDepth = 20.2;
//tyre pressure
float tyrePressure = 15.3f;
//carry vehicle
void carryVehicle();
//aid suspension
void aidSuspension(float maxPressureSetting);
//turn vehicle
void turnVehicle(double SetmaxDegree);
};
/*
Thing 6) engine
5 properties:
1) engine type
2) engine capacity
3) amount of valves
4) engine torque
5) engine sound level
3 things it can do:
1) move truck
2) power AC
3) power ABS
*/
struct Engine
{
//engine type
bool engineTypeDiesel = true;
//engine capacity
int engineCapacity = 50;
//amount of valves
int amountValves = 16;
//engine torque
double torque = 29.3;
//engine sound level
float SPL = 34.5f;
//move truck
void moveTruck(int forward);
//power AC
void powerAC(int temperature);
//power ABS
void ABS(int ABS);
};
/*
Thing 7) seats
5 properties:
1) number of seats
2) seat width
3) seat recline angle
4) seat heating
5) seat forward movement
3 things it can do:
1) seat driver
2) heat passenger
3) adjust position
*/
struct Seats
{
//number of seats
int numberSeats = 4;
//seat width
int seatWidth = 30;
//seat recline angle
float reclineAngle = 44.3f;
//seat heating
bool seatHeating = true;
//seat forward movement
int forwardMovement = 22;
//seat driver
void seatDriver();
//heat passenger
void heatPassangerSeat();
//adjust position
void adjustSeatPosition();
};
/*
Thing 8) steering wheel
5 properties:
1) wheel diameter
2) wheel circumference
3) rotation amount
4) hands free kit controls
5) entertainment controls
3 things it can do:
1) steer truck
2) instrument padel control
3) hands free control
*/
struct SteeringWheel
{
//wheel diameter
int wheelDiameter = 60;
//wheel circumference
int wheelCircumference = 10;
//rotation amount
int rotationAmount = 360;
//hands free kit controls
int handsFreeKit = 2;
//entertainment controls
int entertainmentControl = 1;
//steer truck
void steerTruck(int degrees);
//instrument padel control
void instrumentPadelControl();
//hands free control
void handsFreeControl();
};
/*
Thing 9) fuel system
5 properties:
1) injection pressure
2) type
3) capacity
4) filter amount
5) pump power
3 things it can do:
1) power engine
2) spark plugs
3) not freeze at 0 degrees
*/
struct FuelSystem
{
//injection pressure
int injectionPressure = 60;
//type
bool typeIsDiesel = true;
//capacity
double capacity = 34.3;
//filter amount
float filterAmount = 33.5f;
//pump power
int pumpPower = 23;
//power engine
float powerEngine(double CC);
//spark plugs
void sparkPlugs(int number);
//not freeze at 0 degrees
void freezeTemp(int whatDegree);
};
/*
Thing 10) truck
5 properties:
1)wheels
2)engine
3)seats
4)steering wheel
5)fuel system
3 things it can do:
1)carry people
2)tow vehicles
3)drive long distance
*/
struct Truck
{
//wheels
int wheels = 4;
//engine
int engine = 1;
//seats
int seats = 4;
//steering wheel
int steeringWhee = 1;
//fuel system
int fuelSystem = 1;
//carry people
void maxOccupancy(int = 4);
//tow vehicles
void towVehcles(int maxPower = 100);
//drive long distance
double driveLongDistance();
};
/*
MAKE SURE YOU ARE NOT ON THE MASTER BRANCH
Commit your changes by clicking on the Source Control panel on the left, entering a message, and click [Commit and push].
If you didn't already:
Make a pull request after you make your first commit
pin the pull request link and this repl.it link to our DM thread in a single message.
send me a DM to review your pull request when the project is ready for review.
Wait for my code review.
*/
#include <iostream>
int main()
{
std::cout << "good to go!" << std::endl;
}