-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCar.hpp
37 lines (34 loc) · 777 Bytes
/
Car.hpp
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
#pragma once
#include <thread>
#include <iostream>
#include <atomic>
#include <string>
#include "State.hpp"
#include "Workshop.hpp"
#include "Manager.hpp"
class Car
{
private:
int id;
std::string name;
Workshop &workshop;
Manager &manager;
std::thread thread;
std::atomic<float> progress;
std::atomic<State> state;
std::atomic<int> spaceId;
std::vector<int> currentMechanicsIds;
public:
Car(int id, std::string n, Workshop &ws, Manager &m);
~Car();
void run();
void getIntoWorkshop();
void leaveWorkshop();
void repairProcess();
void print(std::string text);
void wait();
float getProgress() const;
State getState() const;
std::string getName() const;
std::string getStateString() const;
};