metaforce/Runtime/IOStreams.hpp

71 lines
1.5 KiB
C++
Raw Normal View History

2016-02-13 09:02:47 +00:00
#ifndef __PSHAG_IOSTREAMS_HPP__
#define __PSHAG_IOSTREAMS_HPP__
2015-08-23 23:58:07 +00:00
#include "RetroTypes.hpp"
2016-03-04 23:04:53 +00:00
#include <athena/IStreamReader.hpp>
#include <athena/IStreamWriter.hpp>
#include <athena/MemoryReader.hpp>
2015-08-23 23:58:07 +00:00
#include <zlib.h>
2016-03-04 23:04:53 +00:00
namespace urde
2015-08-23 23:58:07 +00:00
{
2016-03-04 23:04:53 +00:00
using CInputStream = athena::io::IStreamReader;
using COutputStream = athena::io::IStreamWriter;
2015-08-23 23:58:07 +00:00
2016-03-19 19:19:43 +00:00
struct CBitStreamReader : athena::io::MemoryCopyReader
{
2016-03-19 19:19:43 +00:00
u32 x1c_val = 0;
u32 x20_bitOffset = 0;
public:
static s32 GetBitCount(s32 unk)
{
s32 ret = 0;
while (unk != 0)
{
unk /= 2;
ret++;
}
return ret;
}
CBitStreamReader(const void* data, atUint64 length)
: MemoryCopyReader(data, length)
{
}
CBitStreamReader(const std::string& filename)
: MemoryCopyReader(filename)
{
}
atUint64 readUBytesToBuf(void *buf, atUint64 len)
{
x20_bitOffset = 0;
atUint64 tmp = MemoryCopyReader::readUBytesToBuf(buf, len);
return tmp;
}
s32 ReadEncoded(u32 key);
};
2016-03-04 23:04:53 +00:00
using CMemoryInStream = athena::io::MemoryReader;
2015-08-23 23:58:07 +00:00
class CZipInputStream : public CInputStream
{
std::unique_ptr<u8[]> x24_compBuf;
std::unique_ptr<CInputStream> x28_strm;
z_stream x30_zstrm = {};
public:
CZipInputStream(std::unique_ptr<CInputStream>&& strm);
~CZipInputStream();
atUint64 readUBytesToBuf(void *buf, atUint64 len);
2016-03-04 23:04:53 +00:00
void seek(atInt64, athena::SeekOrigin) {}
2015-08-23 23:58:07 +00:00
atUint64 position() const {return 0;}
atUint64 length() const {return 0;}
};
}
2016-02-13 09:02:47 +00:00
#endif // __PSHAG_IOSTREAMS_HPP__