2023-04-27 22:19:39 -04:00
|
|
|
#ifndef MXDSFILE_H
|
|
|
|
#define MXDSFILE_H
|
|
|
|
|
2023-06-27 14:44:02 -04:00
|
|
|
#include "mxdssource.h"
|
2023-06-29 04:10:08 -04:00
|
|
|
#include "mxioinfo.h"
|
|
|
|
#include "mxstring.h"
|
2023-06-27 22:04:07 -04:00
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
// VTABLE 0x100dc890
|
2023-06-27 14:44:02 -04:00
|
|
|
class MxDSFile : public MxDSSource
|
2023-04-27 22:19:39 -04:00
|
|
|
{
|
|
|
|
public:
|
2023-06-27 14:44:02 -04:00
|
|
|
__declspec(dllexport) MxDSFile(const char *filename, unsigned long skipReadingChunks);
|
2023-06-29 04:10:08 -04:00
|
|
|
__declspec(dllexport) virtual ~MxDSFile(); // vtable+0x0
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x100c0120
|
|
|
|
inline virtual const char *ClassName() const override // vtable+0x0c
|
|
|
|
{
|
|
|
|
// 0x10102594
|
|
|
|
return "MxDSFile";
|
|
|
|
}
|
|
|
|
|
|
|
|
// OFFSET: LEGO1 0x100c0130
|
|
|
|
inline virtual MxBool IsA(const char *name) const override // vtable+0x10
|
|
|
|
{
|
|
|
|
return !strcmp(name, MxDSFile::ClassName()) || MxDSSource::IsA(name);
|
|
|
|
}
|
2023-06-27 14:44:02 -04:00
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
__declspec(dllexport) virtual long Open(unsigned long); // vtable+0x14
|
|
|
|
__declspec(dllexport) virtual long Close(); // vtable+0x18
|
|
|
|
__declspec(dllexport) virtual long Read(unsigned char *,unsigned long); // vtable+0x20
|
|
|
|
__declspec(dllexport) virtual long Seek(long,int); // vtable+0x24
|
|
|
|
__declspec(dllexport) virtual unsigned long GetBufferSize(); // vtable+0x28
|
|
|
|
__declspec(dllexport) virtual unsigned long GetStreamBuffersNum(); // vtable+0x2c
|
2023-06-19 01:36:07 -04:00
|
|
|
private:
|
2023-06-27 14:44:02 -04:00
|
|
|
long ReadChunks();
|
|
|
|
struct ChunkHeader {
|
|
|
|
ChunkHeader()
|
|
|
|
: majorVersion(0)
|
|
|
|
, minorVersion(0)
|
|
|
|
, bufferSize(0)
|
|
|
|
, streamBuffersNum(0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
unsigned short majorVersion;
|
|
|
|
unsigned short minorVersion;
|
|
|
|
unsigned long bufferSize;
|
|
|
|
short streamBuffersNum;
|
|
|
|
short reserved;
|
|
|
|
};
|
|
|
|
|
|
|
|
MxString m_filename;
|
|
|
|
MXIOINFO m_io;
|
|
|
|
ChunkHeader m_header;
|
|
|
|
|
|
|
|
// If false, read chunks immediately on open, otherwise
|
|
|
|
// skip reading chunks until ReadChunks is explicitly called.
|
|
|
|
unsigned long m_skipReadingChunks;
|
2023-04-27 22:19:39 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MXDSFILE_H
|