mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-04-19 19:59:11 +02:00
Compare commits
No commits in common. "71a757983fc6779d36efb607d3715d49d4948937" and "b9fb9eece30a73705f5bd5945753d66326676387" have entirely different histories.
71a757983f
...
b9fb9eece3
@ -216,8 +216,8 @@ void RasterTile::drawTextItems(QPainter *painter,
|
||||
|
||||
static QRectF lightRect(const QPointF &pos, double range)
|
||||
{
|
||||
double r = qMin(range * RANGE_FACTOR, (double)TEXT_EXTENT);
|
||||
return QRect(pos.x() - r, pos.y() - r, 2 * r, 2 * r);
|
||||
return QRectF(pos.x() - range * RANGE_FACTOR, pos.y() - range * RANGE_FACTOR,
|
||||
2*range * RANGE_FACTOR, 2*range * RANGE_FACTOR);
|
||||
}
|
||||
|
||||
void RasterTile::drawSectorLights(QPainter *painter,
|
||||
|
@ -26,6 +26,31 @@ using namespace IMG;
|
||||
#define AREA(rect) \
|
||||
(rect.size().width() * rect.size().height())
|
||||
|
||||
struct Sector
|
||||
{
|
||||
Sector(Light::Color color, quint32 start, quint32 end)
|
||||
: color(color), start(start), end(end) {}
|
||||
|
||||
bool operator==(const Sector &other) const
|
||||
{
|
||||
return (color == other.color && start == other.start && end == other.end);
|
||||
}
|
||||
bool operator<(const Sector &other) const
|
||||
{
|
||||
if (color == other.color) {
|
||||
if (start == other.start)
|
||||
return end < other.end;
|
||||
else
|
||||
return start < other.start;
|
||||
} else
|
||||
return color < other.color;
|
||||
}
|
||||
|
||||
Light::Color color;
|
||||
quint32 start;
|
||||
quint32 end;
|
||||
};
|
||||
|
||||
static const QColor textColor(Qt::black);
|
||||
static const QColor haloColor(Qt::white);
|
||||
static const QColor shieldColor(Qt::white);
|
||||
|
@ -9,6 +9,7 @@
|
||||
#include "style.h"
|
||||
|
||||
class QPainter;
|
||||
class IMGMap;
|
||||
class TextItem;
|
||||
|
||||
namespace IMG {
|
||||
@ -31,30 +32,23 @@ public:
|
||||
void render();
|
||||
|
||||
private:
|
||||
struct Sector
|
||||
{
|
||||
Sector(Light::Color color, quint32 start, quint32 end)
|
||||
: color(color), start(start), end(end) {}
|
||||
typedef RTree<const MapData::Elevation*, double, 2> DEMTRee;
|
||||
|
||||
bool operator==(const Sector &other) const
|
||||
struct ElevationCTX
|
||||
{
|
||||
return (color == other.color && start == other.start
|
||||
&& end == other.end);
|
||||
}
|
||||
bool operator<(const Sector &other) const
|
||||
{
|
||||
if (color == other.color) {
|
||||
if (start == other.start)
|
||||
return end < other.end;
|
||||
else
|
||||
return start < other.start;
|
||||
} else
|
||||
return color < other.color;
|
||||
}
|
||||
ElevationCTX(const DEMTRee &tree, const Coordinates &c, double &ele)
|
||||
: tree(tree), c(c), ele(ele) {}
|
||||
|
||||
Light::Color color;
|
||||
quint32 start;
|
||||
quint32 end;
|
||||
const DEMTRee &tree;
|
||||
const Coordinates &c;
|
||||
double &ele;
|
||||
};
|
||||
struct EdgeCTX
|
||||
{
|
||||
EdgeCTX(const Coordinates &c, double &ele) : c(c), ele(ele) {}
|
||||
|
||||
const Coordinates &c;
|
||||
double &ele;
|
||||
};
|
||||
|
||||
void fetchData(QList<MapData::Poly> &polygons, QList<MapData::Poly> &lines,
|
||||
|
Loading…
x
Reference in New Issue
Block a user