mirror of
https://github.com/minetest/minetestmapper.git
synced 2024-11-14 06:30:27 +01:00
Added printing of unknown nodes.
This commit is contained in:
parent
ae08fb7345
commit
5a2375e608
|
@ -246,6 +246,7 @@ void TileGenerator::generate(const std::string &input, const std::string &output
|
||||||
renderPlayers(input);
|
renderPlayers(input);
|
||||||
}
|
}
|
||||||
writeImage(output);
|
writeImage(output);
|
||||||
|
printUnknown();
|
||||||
}
|
}
|
||||||
|
|
||||||
void TileGenerator::openDb(const std::string &input)
|
void TileGenerator::openDb(const std::string &input)
|
||||||
|
@ -468,6 +469,9 @@ inline void TileGenerator::renderMapBlock(const std::string &mapBlock, const Blo
|
||||||
m_readedPixels[z] |= (1 << x);
|
m_readedPixels[z] |= (1 << x);
|
||||||
m_blockPixelAttributes.attribute(15 - z, xBegin + x).height = pos.y * 16 + y;
|
m_blockPixelAttributes.attribute(15 - z, xBegin + x).height = pos.y * 16 + y;
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
m_unknownNodes.insert(name);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -637,6 +641,16 @@ void TileGenerator::writeImage(const std::string &output)
|
||||||
gdImageDestroy(m_image);
|
gdImageDestroy(m_image);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void TileGenerator::printUnknown()
|
||||||
|
{
|
||||||
|
if (m_unknownNodes.size() > 0) {
|
||||||
|
std::cerr << "Unknown nodes:" << std::endl;
|
||||||
|
for (std::set<std::string>::iterator node = m_unknownNodes.begin(); node != m_unknownNodes.end(); ++node) {
|
||||||
|
std::cerr << *node << std::endl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
inline int TileGenerator::getImageX(int val) const
|
inline int TileGenerator::getImageX(int val) const
|
||||||
{
|
{
|
||||||
return val + m_border;
|
return val + m_border;
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
#include <sqlite3.h>
|
#include <sqlite3.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <set>
|
||||||
#include "PixelAttributes.h"
|
#include "PixelAttributes.h"
|
||||||
|
|
||||||
struct Color {
|
struct Color {
|
||||||
|
@ -101,6 +102,7 @@ private:
|
||||||
void renderOrigin();
|
void renderOrigin();
|
||||||
void renderPlayers(const std::string &inputPath);
|
void renderPlayers(const std::string &inputPath);
|
||||||
void writeImage(const std::string &output);
|
void writeImage(const std::string &output);
|
||||||
|
void printUnknown();
|
||||||
int getImageX(int val) const;
|
int getImageX(int val) const;
|
||||||
int getImageY(int val) const;
|
int getImageY(int val) const;
|
||||||
|
|
||||||
|
@ -127,6 +129,7 @@ private:
|
||||||
std::map<int, std::string> m_nameMap;
|
std::map<int, std::string> m_nameMap;
|
||||||
ColorMap m_colors;
|
ColorMap m_colors;
|
||||||
uint16_t m_readedPixels[16];
|
uint16_t m_readedPixels[16];
|
||||||
|
std::set<std::string> m_unknownNodes;
|
||||||
|
|
||||||
int m_blockAirId;
|
int m_blockAirId;
|
||||||
int m_blockIgnoreId;
|
int m_blockIgnoreId;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user