-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
149 lines (118 loc) · 4.97 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
#include <QApplication>
#include <QDebug>
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include <QQmlContext>
#include <QObject>
#include <QTime>
#include <QBasicTimer>
#include <QEasingCurve>
#include <QCommandLineParser>
#include <QCommandLineOption>
#include <QtMath>
#include <QtWidgets>
#include <QQuickView>
#include <QLoggingCategory>
#include <QFile>
#include <QDir>
#include <QScopedPointer>
#include <QTextStream>
#include <QDateTime>
#include <QGraphicsScene>
#include <QGeoCoordinate>
#include <QPainter>
#include <QRandomGenerator>
#include <QStyleOption>
#include <QtMath>
#include "src/visualization/menu/mainWindow.h"
#include "src/scenarios/tests.h"
#include "src/scenarios/simple.h"
#include "src/scenarios/modulationPerformance.h"
#include "src/tests/packet_test.h"
#include "src/tests/propagation_models_test.h"
#include "src/tests/tests.h"
#include "src/tests/test_antenna_array.h"
#include "src/debug.h"
// Умный указатель на файл логирования
QScopedPointer<QFile> _logFile;
// Объявляение обработчика
void messageHandler(QtMsgType type, const QMessageLogContext &context, const QString &msg);
constexpr qreal Pi = M_PI;
constexpr qreal TwoPi = 2 * M_PI;
static qreal normalizeAngle(qreal angle)
{
while (angle < 0)
angle += TwoPi;
while (angle > TwoPi)
angle -= TwoPi;
return angle;
}
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
//##############################################################################
// Logging
//##############################################################################
// Устанавливаем файл логирования
QString pwdLog = QString{PRO_FILE_PWD} + QString{"/src/logging/log.txt"};
_logFile.reset(new QFile(pwdLog));
// Открываем файл логирования c перезаписью файла 'QFile::ReadWrite'
// Если нужно добавить в конец файла, меняем 'QFile::ReadWrite' на 'QFile::Append'
_logFile.data()->open(QFile::WriteOnly | QFile::Text);
qInstallMessageHandler(messageHandler);
//##############################################################################
// MainWindow mainWin;
// mainWin.resize(1400, 1200);
// mainWin.show();
Simple();
// propagation_model_test_plot();
test_passing();
QLineF lineToCenter(QPointF(100, 100), QPointF(150, 125));
qreal angleToCenter = std::atan2(lineToCenter.dy(), lineToCenter.dx());
qDebug() << "angleToCenter = " << angleToCenter ;
angleToCenter = normalizeAngle((3.14 - angleToCenter) + 3.14 / 2);
qDebug() << "angleToCenter = " << angleToCenter ;
QGeoCoordinate point_1(55.013541, 82.951781, 10),
point_2(55.013602, 82.954783, 10),
point_3(55.014640, 82.954044),
point_4(55.015385, 82.951817),
point_5(55.014743, 82.948875),
point_6(55.013855, 82.948339),
point_7(55.011567, 82.951555);
qDebug() << "azimuth to: " << point_1.azimuthTo(point_2);
qDebug() << "azimuth to: " << point_1.azimuthTo(point_3);
qDebug() << "azimuth to: " << point_1.azimuthTo(point_4);
qDebug() << "azimuth to: " << point_1.azimuthTo(point_5);
qDebug() << "azimuth to: " << point_1.azimuthTo(point_6);
qDebug() << "azimuth to: " << point_1.azimuthTo(point_7);
qDebug() << "atDistanceAndAzimuth: " << point_1.atDistanceAndAzimuth(10, 90).latitude() << ", " << point_1.atDistanceAndAzimuth(10, 90).longitude();
//##############################################################################
// Testing features (in src/scenarios/tests.h)
//##############################################################################
// simpleTest();
// runModulationPerformance();
//antennaArray();
//##############################################################################
return app.exec();
}
// Реализация обработчика
void messageHandler(QtMsgType type, const QMessageLogContext &context, const QString &msg)
{
// Открываем поток записи в файл
QTextStream out(_logFile.data());
// Записываем дату записи
out << QDateTime::currentDateTime().toString("yyyy-MM-dd hh:mm:ss.zzz ");
// По типу определяем, к какому уровню относится сообщение
switch (type)
{
case QtInfoMsg: out << "INF "; break;
case QtDebugMsg: out << "DBG "; break;
case QtWarningMsg: out << "WRN "; break;
case QtCriticalMsg: out << "CRT "; break;
case QtFatalMsg: out << "FTL "; break;
}
// Записываем в вывод категорию сообщения и само сообщения
out << " " << context.function << ": "
<< msg << Qt::endl;
out.flush(); // Очищаем буферизированные данные
}