mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 03:35:53 +01:00
Compare commits
No commits in common. "e3582cc5cf924ed4611602669cf51f62e418a9ee" and "2234245e81987db5e78fedf6d2feca1d38331464" have entirely different histories.
e3582cc5cf
...
2234245e81
@ -156,8 +156,6 @@
|
||||
<file alias="triangulation-point.png">icons/IMG/marine/triangulation-point.png</file>
|
||||
<file alias="yacht-harbor.png">icons/IMG/marine/yacht-harbor.png</file>
|
||||
<file alias="pile.png">icons/IMG/marine/pile.png</file>
|
||||
<file alias="spar-buoy.png">icons/IMG/marine/spar-buoy.png</file>
|
||||
<file alias="mooring-buoy.png">icons/IMG/marine/mooring-buoy.png</file>
|
||||
</qresource>
|
||||
|
||||
<!-- Mapsforge rendertheme -->
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 232 B After Width: | Height: | Size: 256 B |
Binary file not shown.
Before Width: | Height: | Size: 445 B |
Binary file not shown.
Before Width: | Height: | Size: 430 B |
@ -37,96 +37,11 @@ RGNFile::~RGNFile()
|
||||
delete _huffmanTable;
|
||||
}
|
||||
|
||||
bool RGNFile::readRasterInfo(Handle &hdl, const LBLFile *lbl, quint32 size,
|
||||
MapData::Poly *poly) const
|
||||
{
|
||||
quint32 id;
|
||||
quint32 top, right, bottom, left;
|
||||
|
||||
if (!(lbl && lbl->imageIdSize()))
|
||||
return false;
|
||||
if (size < lbl->imageIdSize() + 16U)
|
||||
return false;
|
||||
|
||||
if (!(readVUInt32(hdl, lbl->imageIdSize(), id)
|
||||
&& readUInt32(hdl, top) && readUInt32(hdl, right)
|
||||
&& readUInt32(hdl, bottom) && readUInt32(hdl, left)))
|
||||
return false;
|
||||
|
||||
poly->raster = Raster(lbl, id, QRect(QPoint(left, top), QPoint(right,
|
||||
bottom)));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool RGNFile::readDepthInfo(Handle &hdl, quint8 flags, quint32 size,
|
||||
MapData::Point *point) const
|
||||
{
|
||||
quint32 depth = 0;
|
||||
quint32 units = (flags >> 3) & 3;
|
||||
quint32 val;
|
||||
|
||||
if (!size) {
|
||||
depth = flags & 0x3f;
|
||||
units = (flags >> 5) & 2;
|
||||
} else if (size == 1) {
|
||||
if (!readUInt8(hdl, val))
|
||||
return false;
|
||||
depth = val | ((quint32)flags & 7) << 8;
|
||||
} else if (size < 4) {
|
||||
Q_ASSERT(!(flags & 4));
|
||||
if (!readVUInt32(hdl, size, val))
|
||||
return false;
|
||||
depth = val | ((quint32)flags & 3) << (size * 8);
|
||||
} else
|
||||
return false;
|
||||
|
||||
point->label = QString::number(d2m(depth, units));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool RGNFile::readObstructionInfo(Handle &hdl, quint8 flags, quint32 size,
|
||||
MapData::Point *point) const
|
||||
{
|
||||
quint32 val, rb = size;
|
||||
quint32 units = (flags >> 3) & 3;
|
||||
|
||||
if (!size)
|
||||
return false;
|
||||
|
||||
if ((flags & 7) == 7) {
|
||||
if (!readUInt8(hdl, val))
|
||||
return false;
|
||||
rb--;
|
||||
}
|
||||
if (!readVUInt32(hdl, rb, val))
|
||||
return false;
|
||||
|
||||
point->label = QString::number(d2m(val, units));
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool RGNFile::readLabel(Handle &hdl, const LBLFile *lbl, Handle &lblHdl,
|
||||
quint8 flags, quint32 size, MapData::Point *point) const
|
||||
{
|
||||
if (!(flags & 1))
|
||||
return true;
|
||||
if (!lbl)
|
||||
return false;
|
||||
|
||||
point->label = lbl->label(lblHdl, this, hdl, size);
|
||||
point->classLabel = true;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool RGNFile::readClassFields(Handle &hdl, SegmentType segmentType,
|
||||
void *object, const LBLFile *lbl, Handle &lblHdl) const
|
||||
{
|
||||
quint8 flags;
|
||||
quint32 rs = 0;
|
||||
quint32 rs;
|
||||
MapData::Poly *poly = (segmentType == Polygon)
|
||||
? (MapData::Poly *) object : 0;
|
||||
MapData::Point *point = (segmentType == Point)
|
||||
@ -149,18 +64,73 @@ bool RGNFile::readClassFields(Handle &hdl, SegmentType segmentType,
|
||||
if (!readVUInt32(hdl, rs))
|
||||
return false;
|
||||
break;
|
||||
default:
|
||||
rs = 0;
|
||||
break;
|
||||
}
|
||||
|
||||
quint32 off = pos(hdl);
|
||||
|
||||
if (poly && Style::isRaster(poly->type))
|
||||
readRasterInfo(hdl, lbl, rs, poly);
|
||||
if (point && Style::isDepthPoint(point->type))
|
||||
readDepthInfo(hdl, flags, rs, point);
|
||||
if (point && Style::isObstructionPoint(point->type))
|
||||
readObstructionInfo(hdl, flags, rs, point);
|
||||
if (point && !Style::isMarinePoint(point->type))
|
||||
readLabel(hdl, lbl, lblHdl, flags, rs, point);
|
||||
if (poly && Style::isRaster(poly->type) && lbl && lbl->imageIdSize()) {
|
||||
quint32 id;
|
||||
quint32 top, right, bottom, left;
|
||||
|
||||
if (rs < lbl->imageIdSize() + 16U)
|
||||
return false;
|
||||
if (!(readVUInt32(hdl, lbl->imageIdSize(), id)
|
||||
&& readUInt32(hdl, top) && readUInt32(hdl, right)
|
||||
&& readUInt32(hdl, bottom) && readUInt32(hdl, left)))
|
||||
return false;
|
||||
|
||||
poly->raster = Raster(lbl, id, QRect(QPoint(left, top), QPoint(right,
|
||||
bottom)));
|
||||
}
|
||||
|
||||
if (point && Style::isDepthPoint(point->type)) {
|
||||
quint32 depth = 0;
|
||||
quint32 units = (flags >> 3) & 3;
|
||||
|
||||
if (rs == 0) {
|
||||
depth = flags & 0x3f;
|
||||
units = (flags >> 5) & 2;
|
||||
} else if (rs == 1) {
|
||||
quint32 val;
|
||||
|
||||
if (!readUInt8(hdl, val))
|
||||
return false;
|
||||
depth = val | ((quint32)flags & 7) << 8;
|
||||
} else if (rs < 4) {
|
||||
quint32 val;
|
||||
|
||||
Q_ASSERT(!(flags & 4));
|
||||
if (!readVUInt32(hdl, rs, val))
|
||||
return false;
|
||||
depth = val | ((quint32)flags & 3) << (rs * 8);
|
||||
}
|
||||
|
||||
if (depth)
|
||||
point->label = QString::number(d2m(depth, units));
|
||||
}
|
||||
|
||||
if (point && Style::isObstructionPoint(point->type) && rs) {
|
||||
quint32 val, rb = rs;
|
||||
quint32 units = (flags >> 3) & 3;
|
||||
|
||||
if ((flags & 7) == 7) {
|
||||
if (!readUInt8(hdl, val))
|
||||
return false;
|
||||
rb--;
|
||||
}
|
||||
if (!readVUInt32(hdl, rb, val))
|
||||
return false;
|
||||
|
||||
point->label = QString::number(d2m(val, units));
|
||||
}
|
||||
|
||||
if (point && !Style::isMarinePoint(point->type) && (flags & 1) && lbl) {
|
||||
point->label = lbl->label(lblHdl, this, hdl, rs);
|
||||
point->classLabel = true;
|
||||
}
|
||||
|
||||
return seek(hdl, off + rs);
|
||||
}
|
||||
|
@ -58,14 +58,6 @@ private:
|
||||
const LBLFile *lbl, Handle &lblHdl) const;
|
||||
bool skipLclFields(Handle &hdl, const quint32 flags[3]) const;
|
||||
bool skipGblFields(Handle &hdl, quint32 flags) const;
|
||||
bool readRasterInfo(Handle &hdl, const LBLFile *lbl, quint32 size,
|
||||
MapData::Poly *poly) const;
|
||||
bool readDepthInfo(Handle &hdl, quint8 flags, quint32 size,
|
||||
MapData::Point *point) const;
|
||||
bool readObstructionInfo(Handle &hdl, quint8 flags, quint32 size,
|
||||
MapData::Point *point) const;
|
||||
bool readLabel(Handle &hdl, const LBLFile *lbl, Handle &lblHdl,
|
||||
quint8 flags, quint32 size, MapData::Point *point) const;
|
||||
|
||||
HuffmanTable *_huffmanTable;
|
||||
Section _base, _dict, _polygons, _lines, _points;
|
||||
|
@ -252,7 +252,6 @@ void Style::defaultLineStyle()
|
||||
_lines[0x10507] = Line(QPen(QColor("#e728e7"), 1, Qt::DashLine));
|
||||
_lines[0x10601] = Line(QPen(QColor("#000000"), 1, Qt::SolidLine));
|
||||
_lines[0x10606] = Line(QImage(":/IMG/anchor-line.png"));
|
||||
_lines[0x1060c] = Line(QPen(QColor("#e728e7"), 1, Qt::SolidLine));
|
||||
_lines[0x1060d] = Line(QPen(QColor("#eb49eb"), 1, Qt::DashLine));
|
||||
_lines[0x10611] = Line(QPen(QColor("#eb49eb"), 1, Qt::DashLine));
|
||||
}
|
||||
@ -508,7 +507,6 @@ void Style::defaultPointStyle()
|
||||
_points[0x10204] = Point(QImage(":/IMG/buoy.png"));
|
||||
_points[0x10205] = Point(QImage(":/IMG/buoy.png"));
|
||||
_points[0x10206] = Point(QImage(":/IMG/beacon.png"));
|
||||
_points[0x10207] = Point(QImage(":/IMG/spar-buoy.png"));
|
||||
_points[0x1020b] = Point(QImage(":/IMG/buoy.png"));
|
||||
_points[0x1020d] = Point(QImage(":/IMG/light-platform.png"));
|
||||
_points[0x1020e] = Point(QImage(":/IMG/beacon.png"));
|
||||
@ -519,7 +517,6 @@ void Style::defaultPointStyle()
|
||||
_points[0x10213] = Point(QImage(":/IMG/beacon.png"));
|
||||
_points[0x10214] = Point(QImage(":/IMG/beacon.png"));
|
||||
_points[0x10215] = Point(QImage(":/IMG/beacon.png"));
|
||||
_points[0x10216] = Point(QImage(":/IMG/mooring-buoy.png"));
|
||||
_points[0x10306] = Point(QImage(":/IMG/church.png"));
|
||||
_points[0x1030a] = Point(QImage(":/IMG/triangulation-point.png"));
|
||||
_points[0x10400] = Point(QImage(":/IMG/obstruction.png"));
|
||||
|
Loading…
Reference in New Issue
Block a user