-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
151 lines (116 loc) · 4.94 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
#include <QUdpSocket>
#include <QObject>
#include <QNetworkDatagram>
#include <QApplication>
#include <QLineSeries>
#include <QChartView>
#include <QChart>
#include <QMainWindow>
#include <QLabel>
#include <QVBoxLayout>
#include <thread>
#include <iostream>
#include <fstream>
#include <QPushButton>
#include <unordered_set>
#include <QThread>
#include "f1udpinterface/public.h"
#include "gui/CarActivationButton.h"
#include "gui/TeamColorMapping.h"
#include "f1udpinterface/ids/TeamId.h"
#include "gui/Worker.h"
#include "f1udpinterface/packets/PacketFactory.h"
#include "util.h"
using namespace F122::Network::Packets;
std::shared_ptr<ParticipantsData> participantsData;
// The number of max cars is 22
std::array<QLineSeries*, 22> speedSeries;
std::array<QLineSeries*, 22> throttleSeries;
std::array<QLineSeries*, 22> breakSeries;
std::array<CarActivationButton*, 22> carActivationButtons;
int main(int argc, char* argv[]) {
QApplication app(argc, argv);
QMainWindow window;
auto* mainWidget = new QWidget(&window);
auto* layout = new QVBoxLayout();
auto* speedChart = new QChart();
auto* throttleChart = new QChart();
auto* btnLayout = new QHBoxLayout();
for (int i = 0; i < 22; ++i) {
speedSeries[i] = new QLineSeries(speedChart);
speedChart->addSeries(speedSeries[i]);
throttleSeries[i] = new QLineSeries(throttleChart);
throttleChart->addSeries(throttleSeries[i]);
// Create toggle button to turn each series on or off, i.e., display them or not.
auto* button = new CarActivationButton(speedSeries[i]);
carActivationButtons[i] = button;
button->setText(QString::fromStdString("Car " + std::to_string(i + 1)));
btnLayout->addWidget(button);
}
layout->addLayout(btnLayout);
{
auto* container = new QHBoxLayout();
auto* selectAllBtn = new QPushButton();
auto isAnyInactiveFunc = []() {
return std::any_of(carActivationButtons.begin(), carActivationButtons.end(),
[](auto* x) { return !x->isActive(); });
};
auto setAppropriateButtonText = [&selectAllBtn](bool isAnyInactive) {
selectAllBtn->setText(QString::fromStdString(isAnyInactive ? "Select All" : "Deselect All"));
};
auto toggleAllButtons = [&isAnyInactiveFunc, &setAppropriateButtonText]() {
bool isAnyInactive = isAnyInactiveFunc();
std::cout << isAnyInactiveFunc() << std::endl;
std::for_each(carActivationButtons.begin(), carActivationButtons.end(),
[&isAnyInactive](auto* x) { x->setIsActive(isAnyInactive); });
setAppropriateButtonText(!isAnyInactive);
};
std::cout << isAnyInactiveFunc() << std::endl;
setAppropriateButtonText(isAnyInactiveFunc());
QObject::connect(selectAllBtn, &QPushButton::clicked, toggleAllButtons);
container->addWidget(selectAllBtn);
layout->addLayout(container);
}
speedChart->legend()->hide();
speedChart->createDefaultAxes();
speedChart->setTitle("Driver Speed in km/h");
throttleChart->legend()->hide();
throttleChart->createDefaultAxes();
throttleChart->setTitle("Throttle Application");
// Set speedChart range to [0, 355], because the top speed is ~343 km/h.
speedChart->axes(Qt::Vertical /*, series */)[0]->setRange(0, 355);
auto* speedChartView = new QChartView(speedChart);
speedChartView->setRenderHint(QPainter::Antialiasing);
auto* throttleChartView = new QChartView(throttleChart);
throttleChartView->setRenderHint(QPainter::Antialiasing);
window.resize(400, 300);
auto* label = new QLabel(&window);
label->setText("first line\nsecond line");
layout->addWidget(label);
{
auto* chartContainer = new QHBoxLayout();
chartContainer->addWidget(speedChartView);
chartContainer->addWidget(throttleChartView);
layout->addLayout(chartContainer);
}
mainWidget->setLayout(layout);
window.setCentralWidget(mainWidget);
window.show();
auto* thread = new QThread();
auto* worker = new Worker(speedChart, speedSeries, carActivationButtons, participantsData);
worker->moveToThread(thread);
QUdpSocket udpSocket;
udpSocket.bind(20777, QUdpSocket::ShareAddress);
QObject::connect(&udpSocket, &QUdpSocket::readyRead, [&udpSocket, &worker]() {
for (int i = 0; i < 25 && udpSocket.hasPendingDatagrams(); ++i) {
worker->insert(udpSocket.receiveDatagram());
}
});
QObject::connect(worker, &Worker::error, [](const auto& x) { qDebug() << x; });
QObject::connect(thread, &QThread::started, worker, &Worker::process);
QObject::connect(worker, &Worker::finished, thread, &QThread::quit);
QObject::connect(worker, &Worker::finished, worker, &Worker::deleteLater);
QObject::connect(thread, &QThread::finished, thread, &QThread::deleteLater);
thread->start();
return QApplication::exec();
}