mirror of
https://github.com/minetest/minetestmapper.git
synced 2024-11-22 07:23:46 +01:00
Refactoring (3)
This commit is contained in:
parent
2f78c39d9c
commit
1f471b369b
@ -362,10 +362,8 @@ void TileGenerator::renderMap()
|
|||||||
if (position->second != zPos)
|
if (position->second != zPos)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
for (int i = 0; i < 16; ++i) {
|
m_readPixels.reset();
|
||||||
m_readPixels[i] = 0;
|
m_readInfo.reset();
|
||||||
m_readInfo[i] = 0;
|
|
||||||
}
|
|
||||||
for (int i = 0; i < 16; i++) {
|
for (int i = 0; i < 16; i++) {
|
||||||
for (int j = 0; j < 16; j++) {
|
for (int j = 0; j < 16; j++) {
|
||||||
m_color[i][j] = m_bgColor; // This will be drawn by renderMapBlockBottom() for y-rows with only 'air', 'ignore' or unknown nodes if --drawalpha is used
|
m_color[i][j] = m_bgColor; // This will be drawn by renderMapBlockBottom() for y-rows with only 'air', 'ignore' or unknown nodes if --drawalpha is used
|
||||||
@ -386,20 +384,11 @@ void TileGenerator::renderMap()
|
|||||||
continue;
|
continue;
|
||||||
renderMapBlock(blk, pos);
|
renderMapBlock(blk, pos);
|
||||||
|
|
||||||
bool allRead = true;
|
// Exit out if all pixels for this MapBlock are covered
|
||||||
for (int i = 0; i < 16; ++i) {
|
if (m_readPixels.full())
|
||||||
if (m_readPixels[i] != 0xffff)
|
|
||||||
allRead = false;
|
|
||||||
}
|
|
||||||
if (allRead)
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
bool allRead = true;
|
if (!m_readPixels.full())
|
||||||
for (int i = 0; i < 16; ++i) {
|
|
||||||
if (m_readPixels[i] != 0xffff)
|
|
||||||
allRead = false;
|
|
||||||
}
|
|
||||||
if (!allRead)
|
|
||||||
renderMapBlockBottom(blockStack.begin()->first);
|
renderMapBlockBottom(blockStack.begin()->first);
|
||||||
}
|
}
|
||||||
if (m_shading)
|
if (m_shading)
|
||||||
@ -416,7 +405,7 @@ void TileGenerator::renderMapBlock(const BlockDecoder &blk, const BlockPos &pos)
|
|||||||
for (int z = 0; z < 16; ++z) {
|
for (int z = 0; z < 16; ++z) {
|
||||||
int imageY = zBegin + 15 - z;
|
int imageY = zBegin + 15 - z;
|
||||||
for (int x = 0; x < 16; ++x) {
|
for (int x = 0; x < 16; ++x) {
|
||||||
if (m_readPixels[z] & (1 << x))
|
if (m_readPixels.get(x, z))
|
||||||
continue;
|
continue;
|
||||||
int imageX = xBegin + x;
|
int imageX = xBegin + x;
|
||||||
|
|
||||||
@ -424,37 +413,36 @@ void TileGenerator::renderMapBlock(const BlockDecoder &blk, const BlockPos &pos)
|
|||||||
string name = blk.getNode(x, y, z);
|
string name = blk.getNode(x, y, z);
|
||||||
if (name == "")
|
if (name == "")
|
||||||
continue;
|
continue;
|
||||||
ColorMap::const_iterator color = m_colorMap.find(name);
|
ColorMap::const_iterator it = m_colorMap.find(name);
|
||||||
if (color != m_colorMap.end()) {
|
if (it == m_colorMap.end()) {
|
||||||
const Color c = color->second.to_color();
|
|
||||||
if (m_drawAlpha) {
|
|
||||||
// mix with previous color (unless first visible time)
|
|
||||||
if (m_color[z][x].a == 0)
|
|
||||||
m_color[z][x] = c;
|
|
||||||
else
|
|
||||||
m_color[z][x] = mixColors(m_color[z][x], c);
|
|
||||||
if(m_color[z][x].a == 0xff) {
|
|
||||||
// color is opaque at this depth (no point continuing)
|
|
||||||
setZoomed(imageX, imageY, m_color[z][x]);
|
|
||||||
m_readPixels[z] |= (1 << x);
|
|
||||||
m_blockPixelAttributes.attribute(15 - z, xBegin + x).thickness = m_thickness[z][x];
|
|
||||||
} else {
|
|
||||||
// near thickness value to thickness of current node
|
|
||||||
m_thickness[z][x] = (m_thickness[z][x] + color->second.t) / 2.0;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
setZoomed(imageX, imageY, c.noAlpha());
|
|
||||||
m_readPixels[z] |= (1 << x);
|
|
||||||
}
|
|
||||||
if(!(m_readInfo[z] & (1 << x))) {
|
|
||||||
m_blockPixelAttributes.attribute(15 - z, xBegin + x).height = pos.y * 16 + y;
|
|
||||||
m_readInfo[z] |= (1 << x);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
m_unknownNodes.insert(name);
|
m_unknownNodes.insert(name);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
const Color c = it->second.to_color();
|
||||||
|
if (m_drawAlpha) {
|
||||||
|
if (m_color[z][x].a == 0)
|
||||||
|
m_color[z][x] = c; // first visible time, no color mixing
|
||||||
|
else
|
||||||
|
m_color[z][x] = mixColors(m_color[z][x], c);
|
||||||
|
if(m_color[z][x].a < 0xff) {
|
||||||
|
// near thickness value to thickness of current node
|
||||||
|
m_thickness[z][x] = (m_thickness[z][x] + it->second.t) / 2.0;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
// color became opaque, draw it
|
||||||
|
setZoomed(imageX, imageY, m_color[z][x]);
|
||||||
|
m_blockPixelAttributes.attribute(15 - z, xBegin + x).thickness = m_thickness[z][x];
|
||||||
|
} else {
|
||||||
|
setZoomed(imageX, imageY, c.noAlpha());
|
||||||
|
}
|
||||||
|
m_readPixels.set(x, z);
|
||||||
|
|
||||||
|
// do this afterwards so we can record height values
|
||||||
|
// inside transparent nodes (water) too
|
||||||
|
if (m_readInfo.get(x, z)) {
|
||||||
|
m_blockPixelAttributes.attribute(15 - z, xBegin + x).height = pos.y * 16 + y;
|
||||||
|
m_readInfo.set(x, z);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -463,24 +451,25 @@ void TileGenerator::renderMapBlock(const BlockDecoder &blk, const BlockPos &pos)
|
|||||||
|
|
||||||
void TileGenerator::renderMapBlockBottom(const BlockPos &pos)
|
void TileGenerator::renderMapBlockBottom(const BlockPos &pos)
|
||||||
{
|
{
|
||||||
|
if (!m_drawAlpha)
|
||||||
|
return; // "missing" pixels can only happen with --drawalpha
|
||||||
|
|
||||||
int xBegin = (pos.x - m_xMin) * 16;
|
int xBegin = (pos.x - m_xMin) * 16;
|
||||||
int zBegin = (m_zMax - pos.z) * 16;
|
int zBegin = (m_zMax - pos.z) * 16;
|
||||||
for (int z = 0; z < 16; ++z) {
|
for (int z = 0; z < 16; ++z) {
|
||||||
int imageY = zBegin + 15 - z;
|
int imageY = zBegin + 15 - z;
|
||||||
for (int x = 0; x < 16; ++x) {
|
for (int x = 0; x < 16; ++x) {
|
||||||
if (m_readPixels[z] & (1 << x))
|
if (m_readPixels.get(x, z))
|
||||||
continue;
|
continue;
|
||||||
int imageX = xBegin + x;
|
int imageX = xBegin + x;
|
||||||
|
|
||||||
if (m_drawAlpha) {
|
// set color since it wasn't done in renderMapBlock()
|
||||||
// set color in case it wasn't done in renderMapBlock()
|
|
||||||
setZoomed(imageX, imageY, m_color[z][x]);
|
setZoomed(imageX, imageY, m_color[z][x]);
|
||||||
m_readPixels[z] |= (1 << x);
|
m_readPixels.set(x, z);
|
||||||
m_blockPixelAttributes.attribute(15 - z, xBegin + x).thickness = m_thickness[z][x];
|
m_blockPixelAttributes.attribute(15 - z, xBegin + x).thickness = m_thickness[z][x];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
void TileGenerator::renderShading(int zPos)
|
void TileGenerator::renderShading(int zPos)
|
||||||
{
|
{
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
#ifndef TILEGENERATOR_HEADER
|
#ifndef TILEGENERATOR_HEADER
|
||||||
#define TILEGENERATOR_HEADER
|
#define TILEGENERATOR_HEADER
|
||||||
|
|
||||||
#include <gd.h>
|
|
||||||
#include <iosfwd>
|
#include <iosfwd>
|
||||||
#include <list>
|
#include <list>
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
@ -32,11 +31,29 @@ struct ColorEntry {
|
|||||||
ColorEntry(): r(0), g(0), b(0), a(0), t(0) {};
|
ColorEntry(): r(0), g(0), b(0), a(0), t(0) {};
|
||||||
ColorEntry(uint8_t r, uint8_t g, uint8_t b, uint8_t a, uint8_t t): r(r), g(g), b(b), a(a), t(t) {};
|
ColorEntry(uint8_t r, uint8_t g, uint8_t b, uint8_t a, uint8_t t): r(r), g(g), b(b), a(a), t(t) {};
|
||||||
inline Color to_color() const { return Color(r, g, b, a); }
|
inline Color to_color() const { return Color(r, g, b, a); }
|
||||||
uint8_t r;
|
uint8_t r, g, b, a, t;
|
||||||
uint8_t g;
|
};
|
||||||
uint8_t b;
|
|
||||||
uint8_t a;
|
struct BitmapThing { // 16x16 bitmap
|
||||||
uint8_t t;
|
inline void reset() {
|
||||||
|
for (int i = 0; i < 16; ++i)
|
||||||
|
val[i] = 0;
|
||||||
|
}
|
||||||
|
inline bool full() const {
|
||||||
|
for (int i = 0; i < 16; ++i) {
|
||||||
|
if (val[i] != 0xffff)
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
inline void set(unsigned int x, unsigned int z) {
|
||||||
|
val[z] |= (1 << x);
|
||||||
|
}
|
||||||
|
inline bool get(unsigned int x, unsigned int z) {
|
||||||
|
return !!(val[z] & (1 << x));
|
||||||
|
}
|
||||||
|
|
||||||
|
uint16_t val[16];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -122,8 +139,8 @@ private:
|
|||||||
int m_mapHeight;
|
int m_mapHeight;
|
||||||
std::list<std::pair<int, int> > m_positions;
|
std::list<std::pair<int, int> > m_positions;
|
||||||
ColorMap m_colorMap;
|
ColorMap m_colorMap;
|
||||||
uint16_t m_readPixels[16];
|
BitmapThing m_readPixels;
|
||||||
uint16_t m_readInfo[16];
|
BitmapThing m_readInfo;
|
||||||
NameSet m_unknownNodes;
|
NameSet m_unknownNodes;
|
||||||
Color m_color[16][16];
|
Color m_color[16][16];
|
||||||
uint8_t m_thickness[16][16];
|
uint8_t m_thickness[16][16];
|
||||||
|
Loading…
Reference in New Issue
Block a user