-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTileDisplay.cpp
344 lines (277 loc) · 12 KB
/
TileDisplay.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
#include <iostream>
#include <stdio.h>
#include <math.h>
#include <fstream>
#include <string>
#include <unistd.h>
#include "boost/filesystem.hpp"
#include <QtWidgets>
#include <QVBoxLayout>
#include <QHBoxLayout>
#include <QObject>
#include <QSlider>
#include <QApplication>
#include <QLabel>
#include <QPushButton>
#include <QGridLayout>
#include <QDir>
#include <QLineEdit>
#include <QWidget>
#include <QShortcut>
#include <boost/filesystem/operations.hpp>
#include "TileDisplay.h"
#define Couts // Закомментировать для печати
using namespace std;
namespace fs = boost::filesystem;
int TilesDisplay::x[SIZE], TilesDisplay::y[SIZE];
int TilesDisplay::AllCoordX[SIZE * IMAGE], TilesDisplay::AllCoordY[SIZE * IMAGE];
string TilesDisplay::URLS[SIZE * IMAGE];
string TilesDisplay::ServerName = "http://10.1.1.218/tile/";
string TilesDisplay::Slash = "/";
int TilesDisplay::Zoom = 0;
int TilesDisplay::long2tilex ( double lon, int z )
{
return (int(floor((lon + 180.0) / 360.0 * pow(2.0, z))));
}
int TilesDisplay::lat2tiley ( double lat, int z )
{
return (int(floor((1.0 - log(tan(lat * M_PI / 180.0) + 1.0 / cos(lat * M_PI / 180.00)) / M_PI) / 2.0 * pow(2.0, z))));
}
int TilesDisplay::massivXForCurrentZoom ( int CurrentX, int zoom )
{
for ( int i = 0; i < 5; i++)
{
AllCoordX[zoom * 20 + i] = AllCoordX[zoom * 20 + (i + 5)] = AllCoordX[zoom * 20 + (i + 10)] = AllCoordX[zoom * 20 + (i + 15)] = CurrentX - (1 - i);
#ifndef Couts
for (int i=0; i<20; i++ ) {
cout << "Номер ячейки: " << zoom*19+i << " Значение ячейки: " << AllCoordX[zoom*19+i] << endl;
}
#endif
}
return 0;
}
int TilesDisplay::massivYForCurrentZoom ( int CurrentY, int zoom )
{
for ( int i = 0; i < 4; i++)
{
AllCoordY[zoom * 20 + i * 4 + i] = AllCoordY[zoom * 20 + i * 4 + (i + 1)] = AllCoordY[zoom * 20 + i * 4 + (i + 2)] = AllCoordY[zoom * 20 + i * 4 + (i + 3)] = AllCoordY[zoom * 20 + i * 4 + (i + 4)] = CurrentY - (2 - i);
}
#ifndef Couts
for (int i=0; i<20; i++ ) {
cout << "Номер ячейки: " << zoom*19+i << " Значение ячейки: " << AllCoordX[zoom*19+i] << endl;
}
#endif
return 0;
}
string TilesDisplay::URLs ( int zoom )
{
for ( int i = 0; i < 20; i++)
{
string CurrentX, CurrentY, CurrentZoom, IP;
CurrentX = std::to_string(AllCoordX[zoom * 20 + i]);
CurrentY = std::to_string(AllCoordY[zoom * 20 + i]);
CurrentZoom = std::to_string(zoom);
IP = ServerName + CurrentZoom + Slash + CurrentX + Slash + CurrentY;
URLS[zoom * 20 + i] = IP;
#ifndef Couts
cout << "Текущая ячейка СТРИНГ: " << zoom*20+i << " Содержимое ячейки: " << URLS[zoom*20+i] << endl;
#endif
}
return " 1 ";
}
void TilesDisplay::SaveImages ( int zoom ) // TODO: Убрать непонятные циклы с 0 до 3. Для этого нужно чтобы значения не могли быть равны <0
{
//Временный костыль для зумов 0,1,2;
for ( int i = 0; i < 20; i++)
{
if ( zoom == 0 )
{
if ( i != 11 ) continue;
}
if ( zoom == 1 )
{
if ( i != 11 && i != 12 && i != 16 && i != 17 ) continue;
}
if ( zoom == 2 )
{
if ( i < 6 || i == 10 || i == 15 ) continue;
}
string CurrentURL = URLS[zoom * 20 + i];
string format = "png";
string CurrentZoom = std::to_string(zoom);
string CurrentI = std::to_string(i + 1);
std::string command = "wget -O images/" + CurrentZoom + "/image" + CurrentI + ".png " + CurrentURL + ".png";
system(command.c_str());
}
}
void TilesDisplay::DeleteAndMakeDir ()
{
namespace fs = boost::filesystem;
std::string directory = "images";
// Удаляем существующие папки с тайлами в виде png
for ( const auto &entry : fs::directory_iterator(directory))
{
if ( fs::is_directory(entry.path()) )
{
fs::remove_all(entry.path());
}
}
// Создаём новые папки от 0 до 18
for ( int i = 0; i < 19; i++)
{
fs::create_directory(directory + "/" + std::to_string(i));
}
}
int main ( int argc, char *argv[] )
{
QApplication app(argc, argv);
// Создание главного окна приложения
QWidget mainWindow;
mainWindow.setWindowTitle("Image Viewer"); //Имя приложения
mainWindow.resize(800, 600); // Размеры экрана 1920x1080
// Создание виджетов QLabel для отображения картинок
QLabel imageLabels[20];
for ( int i = 0; i < 20; ++i)
{
imageLabels[i].setAlignment(Qt::AlignCenter);
imageLabels[i].setScaledContents(true);
imageLabels[i].setFixedSize(256, 256);
}
// Создание метки для отображения текста
QLabel actionLabel(&mainWindow);
// Создание кнопки для выхода из приложения
QShortcut *shortcut = new QShortcut(QKeySequence("q"), &mainWindow);
// Создание кнопки zoom
QPushButton zoomButtonPlus("+");
QPushButton zoomButtonMinus("-");
// Создание сетки для размещения виджетов
QGridLayout layout;
// Создание виджетов для ввода чисел
QLineEdit CurrentLonInput(&mainWindow);
QLineEdit CurrentLatInput(&mainWindow);
// Создание кнопок "Загрузить карту" и "Очистить карту"
QPushButton Loadbutton("Загрузить карту", &mainWindow);
QPushButton CleanButton("Очиститить карту", &mainWindow);
// Виджет для текстового описания кнопок долготы и широты, zoom
QLabel CurrentLonLabelInput("lon", &mainWindow);
QLabel CurrentLatLabelInput("lat", &mainWindow);
QLabel TextOfZoom("zoom", &mainWindow);
// Создание виджетов для отображения картинок
for ( int i = 0; i < 4; i++) // ЕСЛИ СДЕЛАТЬ <5, ТО БУДЕТ 20 КАРТИНОК, А СЕЙЧАС 16! ИЗОБРАЖЕНИЕ 1024Х1024
{
layout.setSpacing(0); // с помощью этого метода расстояние между виджетами равно 0. Картинки отображаются как целая единица.
layout.addWidget(&imageLabels[i], 0, i * 4, 5, 4); // 1 строкаfinalImage.save("combined_image.png");
layout.addWidget(&imageLabels[i + 5], 5, i * 4, 5, 4); // 2 строка
layout.addWidget(&imageLabels[i + 10], 10, i * 4, 5, 4); // 3 строка
layout.addWidget(&imageLabels[i + 15], 15, i * 4, 5, 4); // 4 строка
}
// Создание виджетов для ввода долготы и широты
layout.addWidget(&CurrentLonInput, 0, 20, 2, 3);
layout.addWidget(&CurrentLatInput, 0, 20, 3, 3);
// Создание виджета для кнопок "Загрузить карту" и "Очистить карту"
layout.addWidget(&Loadbutton, 0, 20, 4, 3);
layout.addWidget(&CleanButton, 0, 20, 8, 5);
// Создание виджета для отображения текста в ходе результата
layout.addWidget(&actionLabel, 0, 20, 5, 10);
// Создание текстовых виджетов долготы и широты, zoom'а
layout.addWidget(&CurrentLonLabelInput, 0, 17, 2, 3);
layout.addWidget(&CurrentLatLabelInput, 0, 17, 3, 3);
layout.addWidget(&TextOfZoom, 0, 23, 1, 3);
// Создание виджета для использования кнопки "zoom"
layout.addWidget(&zoomButtonPlus, 0, 20, 1, 3);
layout.addWidget(&zoomButtonMinus, 0, 17, 1, 3);
mainWindow.setLayout(&layout); // Установка сетки в главное окно
// Установка источников изображений в соответствии с выбранным значением zoom
auto setImageSources = [ & ] ()
{
for (int i = 0; i < 20; ++i)
{
QString imageSource = QString("images/%1/image%2.png").arg(TilesDisplay::Zoom).arg(i+1);
imageLabels[i].setPixmap(QPixmap(imageSource));
}
/*
QPixmap pixmap(mainWindow.size());
mainWindow.render(&pixmap);
pixmap.save("allmap.png");
*/
QImage finalImage(1024, 1024, QImage::Format_RGB32);
finalImage.fill(Qt::white);
QPainter painter(&finalImage);
int XPos =0;
int YPos =0;
for (int i = 0; i < 20; i++) {
QImage image(QString("images/%1/image%2.png").arg(TilesDisplay::Zoom).arg(i+1));
painter.drawImage(XPos, YPos, image);
XPos +=256;
if (XPos >1024) {
XPos = 0;
YPos +=256;
}
}
painter.end();
std::string newname = "combined_image" + std::to_string(TilesDisplay::Zoom) + ".png";
std::string originalname = "combined_image.png";
finalImage.save("combined_image.png");
fs::rename(originalname,newname);
};
// Обработчик нажатия кнопки zoom+
QObject::connect(&zoomButtonPlus, &QPushButton::clicked, [ & ] ()
{
if (TilesDisplay::Zoom < 18)
++TilesDisplay::Zoom;
else
{
TilesDisplay::Zoom = 18;
}
setImageSources();
});
// Обработчик нажатия кнопки zoom-
QObject::connect(&zoomButtonMinus, &QPushButton::clicked, [ & ] ()
{
if (TilesDisplay::Zoom > 0 )
{
--TilesDisplay::Zoom;
}
else
{
TilesDisplay::Zoom = 0;
}
setImageSources();
});
// Обработчик нажатия кнопки выполнить
QObject::connect(&Loadbutton, &QPushButton::clicked, [ & ] ()
{
double CurrentLon =CurrentLonInput.text().toDouble();
double CurrentLat =CurrentLatInput.text().toDouble();
//CurrentLon = -122.1981; // значение долготы и широты, относительно которых ведутся вычисления // -121.89783
// CurrentLat = 37.7490; // УДАЛИТЬ, ПОКА ДЛЯ ПРОВЕРКИ СДЕЛАЛ! // 37.29036
for (int i=0; i<TilesDisplay::SIZE; i++)
{
TilesDisplay::x[i]=TilesDisplay::long2tilex(CurrentLon,i);
TilesDisplay::y[i]=TilesDisplay::lat2tiley(CurrentLat,i);
TilesDisplay::massivXForCurrentZoom (TilesDisplay::x[i],i);
TilesDisplay::massivYForCurrentZoom (TilesDisplay::y[i],i);
TilesDisplay::URLs(i);
TilesDisplay::SaveImages(i);
#ifndef Couts
cout << "Определение центральной точки: Число x: " <<TilesDisplay::x[i] << " Число y: " << TilesDisplay::y[i] << " Для zoom'a: " << i << endl;
#endif
}
actionLabel.setText("Карта закружена! Для очистки карты нажмите кнопку ниже");
});
// Обработчик нажатия кнопки "Очистить"
QObject::connect(&CleanButton, &QPushButton::clicked, [ & ] ()
{
TilesDisplay::DeleteAndMakeDir();
actionLabel.setText("Карта очищена! Для загрузки карты нажмите кнопку выше");
setImageSources();
TilesDisplay::Zoom = 0;
});
// Проверка нажатия кнопки Q - выход из приложения
QObject::connect(shortcut, &QShortcut::activated, &app, &QApplication::quit);
// Инициализация источников изображений
setImageSources();
// Отображение главного окна приложения
mainWindow.show();
return app.exec();
}