Make in-memory buffers seekable to fix fog of war

pull/541/head
AnyOldName3 6 years ago
parent 0bbb3788fe
commit 8a6a8086da

@ -9,11 +9,31 @@ namespace Files
struct MemBuf : std::streambuf struct MemBuf : std::streambuf
{ {
MemBuf(char const* buffer, size_t size) MemBuf(char const* buffer, size_t size)
{
// a streambuf isn't specific to istreams, so we need a non-const pointer :/ // a streambuf isn't specific to istreams, so we need a non-const pointer :/
char* nonconstBuffer = (const_cast<char*>(buffer)); : bufferStart(const_cast<char*>(buffer))
this->setg(nonconstBuffer, nonconstBuffer, nonconstBuffer + size); , bufferEnd(bufferStart + size)
{
this->setg(bufferStart, bufferStart, bufferEnd);
}
pos_type seekoff(off_type off, std::ios_base::seekdir dir, std::ios_base::openmode which) override
{
if (dir == std::ios_base::cur)
gbump(off);
else
setg(bufferStart, (dir == std::ios_base::beg ? bufferStart : bufferEnd) + off, bufferEnd);
return gptr() - bufferStart;
} }
pos_type seekpos(pos_type pos, std::ios_base::openmode which) override
{
return seekoff(pos, std::ios_base::beg, which);
}
protected:
char* bufferStart;
char* bufferEnd;
}; };
/// @brief A variant of std::istream that reads from a constant in-memory buffer. /// @brief A variant of std::istream that reads from a constant in-memory buffer.

Loading…
Cancel
Save