mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
100 lines
2.8 KiB
C++
100 lines
2.8 KiB
C++
#pragma once
|
|
|
|
class CIOStream
|
|
{
|
|
public:
|
|
enum class Mode_t
|
|
{
|
|
NONE = 0,
|
|
READ,
|
|
WRITE
|
|
};
|
|
|
|
CIOStream();
|
|
CIOStream(const fs::path& fsFileFullPath, Mode_t eMode);
|
|
~CIOStream();
|
|
|
|
bool Open(const fs::path& fsFileFullPath, Mode_t eMode);
|
|
void Close();
|
|
void Flush();
|
|
|
|
size_t GetPosition();
|
|
void SetPosition(int64_t nOffset);
|
|
|
|
const vector<uint8_t>& GetVector() const;
|
|
const uint8_t* GetData() const;
|
|
const size_t GetSize() const;
|
|
|
|
bool IsReadable();
|
|
bool IsWritable() const;
|
|
|
|
bool IsEof() const;
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: reads any value from the file
|
|
//-----------------------------------------------------------------------------
|
|
template<typename T>
|
|
void Read(T& tValue) // Template functions have to be in the header!
|
|
{
|
|
if (IsReadable())
|
|
m_iStream.read(reinterpret_cast<char*>(&tValue), sizeof(tValue));
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: reads any value from the file with specified size
|
|
//-----------------------------------------------------------------------------
|
|
template<typename T>
|
|
void Read(T& tValue, size_t nSize) // Template functions have to be in the header!
|
|
{
|
|
if (IsReadable())
|
|
m_iStream.read(reinterpret_cast<char*>(&tValue), nSize);
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: reads any value from the file and returns it
|
|
//-----------------------------------------------------------------------------
|
|
template<typename T>
|
|
T Read() // Template functions have to be in the header!
|
|
{
|
|
T value{};
|
|
if (!IsReadable())
|
|
return value;
|
|
|
|
m_iStream.read(reinterpret_cast<char*>(&value), sizeof(value));
|
|
return value;
|
|
}
|
|
string ReadString();
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: writes any value to the file
|
|
//-----------------------------------------------------------------------------
|
|
template<typename T>
|
|
void Write(T tValue) // Template functions have to be in the header!
|
|
{
|
|
if (!IsWritable())
|
|
return;
|
|
|
|
m_oStream.write(reinterpret_cast<const char*>(&tValue), sizeof(tValue));
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: writes any value to the file with specified size
|
|
//-----------------------------------------------------------------------------
|
|
template<typename T>
|
|
void Write(T tValue, size_t nSize) // Template functions have to be in the header!
|
|
{
|
|
if (!IsWritable())
|
|
return;
|
|
|
|
m_oStream.write(reinterpret_cast<const char*>(tValue), nSize);
|
|
}
|
|
void WriteString(string svInput);
|
|
|
|
private:
|
|
|
|
ofstream m_oStream; // Output file stream.
|
|
ifstream m_iStream; // Input file stream.
|
|
vector<uint8_t> m_vData; // Data vector
|
|
Mode_t m_eCurrentMode; // Current active mode.
|
|
};
|