mirror of
https://github.com/minetest/minetestmapper.git
synced 2024-11-22 07:23:46 +01:00
Added zlib decompressor.
This commit is contained in:
parent
231f48c529
commit
6743984e16
@ -52,4 +52,5 @@ target_link_libraries(
|
|||||||
minetest_mapper
|
minetest_mapper
|
||||||
${LIBSQLITE3_LIBRARIES}
|
${LIBSQLITE3_LIBRARIES}
|
||||||
gd
|
gd
|
||||||
|
z
|
||||||
)
|
)
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include <zlib.h>
|
||||||
#include "TileGenerator.h"
|
#include "TileGenerator.h"
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
@ -247,9 +248,23 @@ void TileGenerator::renderMap()
|
|||||||
blocks[xPos].sort();
|
blocks[xPos].sort();
|
||||||
const BlockList &blockStack = blocks[xPos];
|
const BlockList &blockStack = blocks[xPos];
|
||||||
for (BlockList::const_iterator it = blockStack.begin(); it != blockStack.end(); ++it) {
|
for (BlockList::const_iterator it = blockStack.begin(); it != blockStack.end(); ++it) {
|
||||||
std::cout << it->first.y << std::endl;
|
//const BlockPos &pos = it->first;
|
||||||
|
const char *data = it->second.c_str();
|
||||||
|
size_t length = it->second.length();
|
||||||
|
|
||||||
|
uint8_t version = data[0];
|
||||||
|
//uint8_t flags = data[1];
|
||||||
|
|
||||||
|
size_t dataOffset = 0;
|
||||||
|
if (version >= 22) {
|
||||||
|
dataOffset = 4;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
dataOffset = 2;
|
||||||
|
}
|
||||||
|
size_t processed;
|
||||||
|
zlibDecompress(data + dataOffset, length - dataOffset, &processed);
|
||||||
}
|
}
|
||||||
std::cout << "---" << std::endl;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -307,3 +322,37 @@ void TileGenerator::writeImage(const std::string &output)
|
|||||||
gdImageDestroy(m_image);
|
gdImageDestroy(m_image);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline std::string TileGenerator::zlibDecompress(const char *data, std::size_t size, std::size_t *processed) const
|
||||||
|
{
|
||||||
|
string buffer;
|
||||||
|
const size_t BUFSIZE = 128 * 1024;
|
||||||
|
uint8_t temp_buffer[BUFSIZE];
|
||||||
|
|
||||||
|
z_stream strm;
|
||||||
|
strm.zalloc = Z_NULL;
|
||||||
|
strm.zfree = Z_NULL;
|
||||||
|
strm.opaque = Z_NULL;
|
||||||
|
strm.next_in = Z_NULL;
|
||||||
|
strm.avail_in = size;
|
||||||
|
|
||||||
|
if (inflateInit(&strm) != Z_OK) {
|
||||||
|
throw DecompressError();
|
||||||
|
}
|
||||||
|
|
||||||
|
strm.next_in = reinterpret_cast<Bytef *>(const_cast<char *>(data));
|
||||||
|
int ret = 0;
|
||||||
|
do {
|
||||||
|
strm.avail_out = BUFSIZE;
|
||||||
|
strm.next_out = temp_buffer;
|
||||||
|
ret = inflate(&strm, Z_NO_FLUSH);
|
||||||
|
buffer += string(reinterpret_cast<char *>(temp_buffer), BUFSIZE - strm.avail_out);
|
||||||
|
} while (ret == Z_OK);
|
||||||
|
if (ret != Z_STREAM_END) {
|
||||||
|
throw DecompressError();
|
||||||
|
}
|
||||||
|
*processed = (const char *)strm.next_in - (const char *)data;
|
||||||
|
(void)inflateEnd(&strm);
|
||||||
|
|
||||||
|
return buffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -94,7 +94,7 @@ private:
|
|||||||
std::list<int> getZValueList() const;
|
std::list<int> getZValueList() const;
|
||||||
std::map<int, BlockList> getBlocksOnZ(int zPos, sqlite3_stmt *statement) const;
|
std::map<int, BlockList> getBlocksOnZ(int zPos, sqlite3_stmt *statement) const;
|
||||||
void writeImage(const std::string &output);
|
void writeImage(const std::string &output);
|
||||||
void *zlibDecompress(const void *data, std::size_t *processed) const;
|
inline std::string zlibDecompress(const char *data, std::size_t size, std::size_t *processed) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Color m_bgColor;
|
Color m_bgColor;
|
||||||
|
Loading…
Reference in New Issue
Block a user