1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-25 20:25:54 +01:00
GPXSee/src/map/mapsforge/rastertile.cpp

336 lines
8.2 KiB
C++
Raw Normal View History

2021-04-10 15:27:40 +02:00
#include <QPainter>
#include <QCache>
#include "common/programpaths.h"
#include "map/mapsforgemap.h"
#include "map/textpathitem.h"
#include "map/textpointitem.h"
#include "rastertile.h"
using namespace Mapsforge;
static const Style& style()
{
static Style s(ProgramPaths::renderthemeFile());
return s;
}
2021-04-11 11:37:43 +02:00
static qreal area(const QPainterPath &polygon)
{
qreal area = 0;
for (int i = 0; i < polygon.elementCount(); i++) {
int j = (i + 1) % polygon.elementCount();
area += polygon.elementAt(i).x * polygon.elementAt(j).y;
area -= polygon.elementAt(i).y * polygon.elementAt(j).x;
}
area /= 2.0;
return area;
}
static QPointF centroid(const QPainterPath &polygon)
{
qreal cx = 0, cy = 0;
qreal factor = 1.0 / (6.0 * area(polygon));
for (int i = 0; i < polygon.elementCount(); i++) {
int j = (i + 1) % polygon.elementCount();
qreal f = (polygon.elementAt(i).x * polygon.elementAt(j).y
- polygon.elementAt(j).x * polygon.elementAt(i).y);
cx += (polygon.elementAt(i).x + polygon.elementAt(j).x) * f;
cy += (polygon.elementAt(i).y + polygon.elementAt(j).y) * f;
}
return QPointF(cx * factor, cy * factor);
}
2021-04-15 23:11:47 +02:00
static QString *pointLabel(const Style::TextRender *ri, MapData::Point &point)
{
for (int i = 0; i < point.tags.size(); i++) {
if (point.tags.at(i).key == ri->key()) {
if (point.tags.at(i).value.isEmpty())
return 0;
else {
point.label = point.tags.at(i).value;
return &point.label;
}
}
}
return 0;
}
static QString *pathLabel(const Style::TextRender *ri, MapData::Path &path,
bool *limit = 0)
{
for (int i = 0; i < path.tags.size(); i++) {
if (path.tags.at(i).key == ri->key()) {
if (path.tags.at(i).value.isEmpty())
return 0;
else {
path.label = path.tags.at(i).value;
if (limit)
*limit = (path.tags.at(i).key == "ref");
return &path.label;
}
}
}
return 0;
}
2021-04-17 13:23:53 +02:00
void RasterTile::processPointLabels(QList<TextItem*> &textItems)
2021-04-10 15:27:40 +02:00
{
const Style &s = style();
QList<const Style::TextRender*> labels(s.pointLabels(_zoom));
2021-04-17 13:23:53 +02:00
QList<const Style::Symbol*> symbols(s.pointSymbols(_zoom));
2021-04-10 15:27:40 +02:00
for (int i = 0; i < _points.size(); i++) {
2021-04-15 23:11:47 +02:00
MapData::Point &point = _points[i];
QString *label = 0;
2021-04-10 15:27:40 +02:00
const Style::TextRender *ti = 0;
const Style::Symbol *si = 0;
2021-04-15 23:11:47 +02:00
for (int j = 0; j < labels.size(); j++) {
const Style::TextRender *ri = labels.at(j);
if (ri->rule().match(point.tags)) {
if ((label = pointLabel(ri, point))) {
ti = ri;
2021-04-10 15:27:40 +02:00
break;
}
}
}
2021-04-15 23:11:47 +02:00
for (int j = 0; j < symbols.size(); j++) {
const Style::Symbol *ri = symbols.at(j);
if (ri->rule().match(point.tags)) {
si = ri;
2021-04-10 15:27:40 +02:00
break;
}
}
if (!ti && !si)
continue;
const QImage *img = si ? &si->img() : 0;
const QFont *font = ti ? &ti->font() : 0;
const QColor *color = ti ? &ti->fillColor() : 0;
TextPointItem *item = new TextPointItem(
ll2xy(point.coordinates).toPoint(), label, font, img, color, 0, false);
if (item->isValid() && !item->collides(textItems))
textItems.append(item);
else
delete item;
}
}
2021-04-17 13:23:53 +02:00
void RasterTile::processAreaLabels(const QRect &tileRect,
2021-04-11 11:37:43 +02:00
QList<TextItem*> &textItems)
{
const Style &s = style();
2021-04-17 13:23:53 +02:00
QList<const Style::TextRender*> labels(s.areaLabels(_zoom));
QList<const Style::Symbol*> symbols(s.areaSymbols(_zoom));
2021-04-11 11:37:43 +02:00
2021-04-17 13:23:53 +02:00
for (int i = 0; i < _paths.size(); i++) {
MapData::Path &path = _paths[i];
QString *label = 0;
const Style::TextRender *ti = 0;
const Style::Symbol *si = 0;
2021-04-11 11:37:43 +02:00
2021-04-17 13:23:53 +02:00
if (!path.closed || !path.path.elementCount())
continue;
2021-04-11 11:37:43 +02:00
2021-04-17 13:23:53 +02:00
for (int j = 0; j < labels.size(); j++) {
const Style::TextRender *ri = labels.at(j);
if (ri->rule().match(path.closed, path.tags)) {
if ((label = pathLabel(ri, path))) {
ti = ri;
break;
}
}
}
2021-04-11 11:37:43 +02:00
2021-04-17 13:23:53 +02:00
for (int j = 0; j < symbols.size(); j++) {
const Style::Symbol *ri = symbols.at(j);
if (ri->rule().match(path.tags)) {
si = ri;
break;
}
2021-04-11 11:37:43 +02:00
}
2021-04-17 13:23:53 +02:00
if (!ti && !si)
continue;
const QImage *img = si ? &si->img() : 0;
const QFont *font = ti ? &ti->font() : 0;
const QColor *color = ti ? &ti->fillColor() : 0;
QPointF pos = path.labelPos.isNull()
? centroid(path.path) : ll2xy(path.labelPos);
TextPointItem *item = new TextPointItem(pos.toPoint(), label, font, img,
color, 0, false);
if (item->isValid() && tileRect.contains(item->boundingRect().toRect())
&& !item->collides(textItems))
textItems.append(item);
else
delete item;
2021-04-11 11:37:43 +02:00
}
}
2021-04-17 13:23:53 +02:00
void RasterTile::processLineLabels(const QRect &tileRect,
2021-04-10 15:27:40 +02:00
QList<TextItem*> &textItems)
{
const Style &s = style();
QList<const Style::TextRender*> instructions(s.pathLabels(_zoom));
2021-04-15 23:11:47 +02:00
QSet<QString> set;
2021-04-10 15:27:40 +02:00
for (int i = 0; i < instructions.size(); i++) {
const Style::TextRender *ri = instructions.at(i);
2021-04-10 15:27:40 +02:00
for (int j = 0; j < _paths.size(); j++) {
MapData::Path &path = _paths[j];
2021-04-15 23:11:47 +02:00
QString *label = 0;
bool limit = false;
2021-04-10 15:27:40 +02:00
if (!path.path.elementCount())
continue;
if (!ri->rule().match(path.closed, path.tags))
2021-04-10 15:27:40 +02:00
continue;
2021-04-15 23:11:47 +02:00
if (!(label = pathLabel(ri, path, &limit)))
continue;
if (limit && set.contains(path.label))
continue;
2021-04-10 15:27:40 +02:00
2021-04-15 23:11:47 +02:00
TextPathItem *item = new TextPathItem(path.path, label, tileRect,
&ri->font(), &ri->fillColor(), &ri->strokeColor());
if (item->isValid() && !item->collides(textItems)) {
2021-04-10 15:27:40 +02:00
textItems.append(item);
2021-04-15 23:11:47 +02:00
if (limit)
set.insert(path.label);
} else
2021-04-10 15:27:40 +02:00
delete item;
}
}
}
void RasterTile::drawTextItems(QPainter *painter,
const QList<TextItem*> &textItems)
{
for (int i = 0; i < textItems.size(); i++)
textItems.at(i)->paint(painter);
}
QPainterPath RasterTile::painterPath(const Polygon &polygon) const
{
QPainterPath path;
for (int i = 0; i < polygon.size(); i++) {
const QVector<Coordinates> &subpath = polygon.at(i);
path.moveTo(ll2xy(subpath.first()));
for (int j = 1; j < subpath.size(); j++)
path.lineTo(ll2xy(subpath.at(j)));
}
return path;
}
QVector<RasterTile::PathInstruction> RasterTile::pathInstructions()
{
QCache<Key, QVector<const Style::PathRender *> > cache(1024);
QVector<PathInstruction> instructions;
const Style &s = style();
2021-04-15 23:11:47 +02:00
QVector<const Style::PathRender*> *ri;
2021-04-10 15:27:40 +02:00
for (int i = 0 ; i < _paths.size(); i++) {
MapData::Path &path = _paths[i];
Key key(_zoom, path.closed, path.tags);
QVector<const Style::PathRender*> *cached = cache.object(key);
if (!cached) {
2021-04-15 23:11:47 +02:00
ri = new QVector<const Style::PathRender*>(s.paths(_zoom,
path.closed, path.tags));
2021-04-10 15:27:40 +02:00
for (int j = 0; j < ri->size(); j++)
instructions.append(PathInstruction(ri->at(j), &path));
cache.insert(key, ri);
} else {
for (int j = 0; j < cached->size(); j++)
instructions.append(PathInstruction(cached->at(j), &path));
}
}
std::sort(instructions.begin(), instructions.end());
return instructions;
}
void RasterTile::drawPaths(QPainter *painter)
{
QVector<PathInstruction> instructions(pathInstructions());
2021-04-17 00:43:00 +02:00
const Style::PathRender *lri = 0;
QPixmap layer(_pixmap.size());
layer.fill(Qt::transparent);
QPainter lp(&layer);
lp.setRenderHint(QPainter::Antialiasing);
lp.translate(-_xy.x(), -_xy.y());
lp.setCompositionMode(QPainter::CompositionMode_Source);
2021-04-10 15:27:40 +02:00
for (int i = 0; i < instructions.size(); i++) {
PathInstruction &is = instructions[i];
const Style::PathRender *ri = is.render();
2021-04-17 00:43:00 +02:00
if (lri && lri != ri) {
painter->drawPixmap(_xy, layer);
lp.fillRect(QRect(_xy, _pixmap.size()), Qt::transparent);
}
2021-04-10 15:27:40 +02:00
if (!is.path()->path.elementCount())
is.path()->path = painterPath(is.path()->poly);
2021-04-17 00:43:00 +02:00
if (ri->area()) {
lp.setPen(ri->pen(_zoom));
lp.setBrush(ri->brush());
lp.drawPath(is.path()->path);
lri = ri;
} else {
painter->setPen(ri->pen(_zoom));
painter->setBrush(ri->brush());
painter->drawPath(is.path()->path);
lri = 0;
}
2021-04-10 15:27:40 +02:00
}
2021-04-17 00:43:00 +02:00
if (lri)
painter->drawPixmap(_xy, layer);
2021-04-10 15:27:40 +02:00
}
void RasterTile::render()
{
std::sort(_points.begin(), _points.end());
QList<TextItem*> textItems;
2021-04-13 20:30:27 +02:00
QRect tileRect(_xy, _pixmap.size());
2021-04-10 15:27:40 +02:00
2021-04-13 20:30:27 +02:00
_pixmap.fill(Qt::transparent);
2021-04-10 15:27:40 +02:00
2021-04-13 20:30:27 +02:00
QPainter painter(&_pixmap);
2021-04-10 15:27:40 +02:00
painter.setRenderHint(QPainter::Antialiasing);
painter.translate(-_xy.x(), -_xy.y());
drawPaths(&painter);
2021-04-17 13:23:53 +02:00
processPointLabels(textItems);
processAreaLabels(tileRect, textItems);
processLineLabels(tileRect, textItems);
2021-04-10 15:27:40 +02:00
drawTextItems(&painter, textItems);
//painter.setPen(Qt::red);
//painter.setBrush(Qt::NoBrush);
//painter.drawRect(QRect(_xy, _pixmap.size()));
2021-04-10 15:27:40 +02:00
qDeleteAll(textItems);
}