mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-26 17:46:38 -05:00
f4646a7075
* commit code * commit code * Update mxdiskstreamprovider.cpp * Update mxstreamprovider.h * improve match + add html file to gitignore * improve match of MxRAMStreamController::Open * MxDiskStreamController::Open * Match some functions, relocate m_target to `MxThread` --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
28 lines
941 B
C++
28 lines
941 B
C++
#ifndef MXRAMSTREAMPROVIDER_H
|
|
#define MXRAMSTREAMPROVIDER_H
|
|
|
|
#include "mxstreamprovider.h"
|
|
|
|
// VTABLE 0x100dd0d0
|
|
class MxRAMStreamProvider : public MxStreamProvider {
|
|
public:
|
|
MxRAMStreamProvider();
|
|
virtual ~MxRAMStreamProvider() override;
|
|
|
|
virtual MxResult SetResourceToGet(MxStreamController* p_resource) override; // vtable+0x14
|
|
virtual MxU32 GetFileSize() override; // vtable+0x18
|
|
virtual MxU32 GetStreamBuffersNum() override; // vtable+0x1c
|
|
virtual MxU32 GetLengthInDWords() override; // vtable+0x24
|
|
virtual MxU32* GetBufferForDWords() override; // vtable+0x28
|
|
|
|
inline MxU32* GetBufferOfFileSize() { return m_pBufferOfFileSize; }
|
|
|
|
protected:
|
|
MxU32 m_bufferSize;
|
|
MxU32 m_fileSize;
|
|
MxU32* m_pBufferOfFileSize;
|
|
MxU32 m_lengthInDWords;
|
|
MxU32* m_bufferForDWords;
|
|
};
|
|
|
|
#endif // MXRAMSTREAMPROVIDER_H
|