1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-06-15 00:05:02 +02:00

Added draft of IO memeory buffer

This commit is contained in:
AlexVinS
2015-08-08 18:21:50 +03:00
committed by AlexVinS
parent 221ec55f51
commit c965f9d02d
4 changed files with 157 additions and 2 deletions

View File

@ -0,0 +1,66 @@
/*
* CMemoryBuffer.cpp, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#include "StdInc.h"
#include "CMemoryBuffer.h"
///CMemoryBuffer
CMemoryBuffer::CMemoryBuffer():
position(0)
{
}
si64 CMemoryBuffer::write(ui8 * data, si64 size)
{
buffer.reserve(tell()+size);
std::copy(data, data + size, buffer.data() + position);
position += size;
return size;
}
si64 CMemoryBuffer::read(ui8 * data, si64 size)
{
si64 toRead = std::min(getSize() - tell(), size);
std::copy(buffer.data() + position, buffer.data() + position + toRead, data);
position += toRead;
return toRead;
}
si64 CMemoryBuffer::seek(si64 position)
{
this->position = position;
if (this->position >=getSize())
this->position = getSize()-1;
return this->position;
}
si64 CMemoryBuffer::tell()
{
return position;
}
si64 CMemoryBuffer::skip(si64 delta)
{
auto old_position = tell();
return seek(old_position + delta) - old_position;
}
si64 CMemoryBuffer::getSize()
{
return buffer.size();
}