-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTrain.cpp
158 lines (127 loc) · 3.44 KB
/
Train.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
#include "Train.h"
Train::Train(int lineIndex, int index, QPoint centerPoint, QPainterPath linePath, int stationIndex){
_passengers = 0;
_lineIndex = lineIndex;
_currentStation = stationIndex;
_nextStation = _currentStation;
_distanceFromStation = std::numeric_limits<float>::max();
_index = index;
_color = setColor(_lineIndex);
_path = linePath;
_oldPath = _path;
_rotationAngle = 90;
_increment = 0;
_circular = false;
_deleting = false;
_speedMultiplier = 1;
_length = _path.length();
_direction = FORWARD;
_state = MOVING;
_trainRect = new QRect(centerPoint.x() - TRAIN_WIDTH / 2,
centerPoint.y() - TRAIN_HEIGHT / 2,
TRAIN_WIDTH, TRAIN_HEIGHT);
setZValue(2);
for (int i = 0; i < 6; i++)
_seats[i] = true;
}
void Train::paint(QPainter* painter,
const QStyleOptionGraphicsItem* option,
QWidget* widget){
QPen pen;
painter->setRenderHint(QPainter::Antialiasing);
pen.setWidth(1);
pen.setColor(_color);
pen.setJoinStyle(Qt::MiterJoin);
painter->setBrush(QBrush(_color));
painter->setPen(pen);
if (_deleting)
painter->setOpacity(0.5);
else
painter->setOpacity(1);
rotate(painter, *_trainRect, _rotationAngle);
painter->drawRect(*_trainRect);
//painter->drawPolygon(_trainPolygon);
}
QRectF Train::boundingRect() const{
return QRectF(*_trainRect);
}
void Train::advance(){
if (_state == STOPPED)
_speedMultiplier = 0;
else if (_state == MOVING)
_speedMultiplier = 1;
if(_path.elementAt(0) != _oldPath.elementAt(0) &&
(_direction == FORWARD || _direction == BACKWARD))
_increment += _path.length() - _length;
_length = _path.length();
_oldPath = _path;
float t = _path.percentAtLength(_increment);
if (!_circular) {
if (t == 1)
_direction = BACKWARD;
else if (t == 0)
_direction = FORWARD;
}
else
if (t == 1 && _direction == FORWARD)
_increment = 0;
else if (t == 0 && _direction == BACKWARD)
_increment = _path.length();
QLineF line = QLineF(_trainRect->center(), _path.pointAtPercent(t));
_trainRect->translate(line.dx(), line.dy());
// float m = _path.slopeAtPercent(t);
_rotationAngle = 90 - _path.angleAtPercent(t);
if (_direction == BACKWARD)
_increment -= TRAIN_SPEED * _speedMultiplier;
else
_increment += TRAIN_SPEED * _speedMultiplier;
}
void Train::setTrainPosition(QPoint p){
QLineF line = QLineF(_trainRect->center(), p);
_trainRect->translate(line.dx(), line.dy());
}
QPoint Train::passengerPos(int ticket){
switch (ticket) {
case 0: {
return QPoint(position().x() - (PASSENGER_SIZE) - 1, position().y() - 1.5 * PASSENGER_SIZE - 2);
break;
}
case 1: {
return QPoint(position().x() + 3, position().y() - 1.5 * PASSENGER_SIZE - 2);
break;
}
case 2: {
return QPoint(position().x() - (PASSENGER_SIZE) - 1, position().y() - PASSENGER_SIZE / 2);
break;
}
case 3: {
return QPoint(position().x() + 3, position().y() - PASSENGER_SIZE / 2);
break;
}
case 4: {
return QPoint(position().x() - (PASSENGER_SIZE) - 1, position().y() + PASSENGER_SIZE/2 + 2);
break;
}
case 5: {
return QPoint(position().x() + 3, position().y() + PASSENGER_SIZE/2 + 2);
break;
}
default:
return QPoint(10, 10);
break;
}
}
void Train::incrementPassengers(int passengerTicket){
_passengers++;
_seats[passengerTicket] = false;
}
void Train::decrementPassengers(int passengerTicket){
_passengers--;
_seats[passengerTicket] = true;
}
int Train::firstSeatAvailable(){
int i = 0;
while (_seats[i] == false)
i++;
return i;
}