mirror of
https://github.com/isledecomp/isle-portable.git
synced 2024-11-22 23:48:12 -05:00
3b155bfe38
* Open discussion * Move annotations of header-implemented functions back to `.h` files * Adjust `README.md` * Relocate annotation * linter * Comment markers in headers only, rename script, update github actions * type hint compat * Rename github action, better argparse for linter * Type hints, working test for byname ignore * Move annotation * CI rename and enable warnfail, enforce mode always on * Two step linting * or one step * continue on error * two jobs instead * Fixes --------- Co-authored-by: disinvite <disinvite@users.noreply.github.com>
65 lines
2.3 KiB
C++
65 lines
2.3 KiB
C++
#ifndef MXDISKSTREAMCONTROLLER_H
|
|
#define MXDISKSTREAMCONTROLLER_H
|
|
|
|
#include "decomp.h"
|
|
#include "mxdsbuffer.h"
|
|
#include "mxstl/stlcompat.h"
|
|
#include "mxstreamcontroller.h"
|
|
#include "mxtypes.h"
|
|
|
|
#include <string.h>
|
|
|
|
// VTABLE: LEGO1 0x100dccb8
|
|
// SIZE 0xc8
|
|
class MxDiskStreamController : public MxStreamController {
|
|
public:
|
|
MxDiskStreamController();
|
|
virtual ~MxDiskStreamController() override;
|
|
|
|
virtual MxResult Tickle() override; // vtable+0x8
|
|
virtual MxResult Open(const char* p_filename) override; // vtable+0x14
|
|
virtual MxResult vtable0x18(undefined4 p_unknown, undefined4 p_unknown2) override; // vtable+0x18
|
|
virtual MxResult vtable0x20(MxDSAction* p_action) override; // vtable+0x20
|
|
virtual MxResult vtable0x24(undefined4 p_unknown) override; // vtable+0x24
|
|
virtual MxResult vtable0x28() override; // vtable+0x28
|
|
virtual MxResult vtable0x30(undefined4 p_unknown) override; // vtable+0x30
|
|
virtual MxResult vtable0x34(undefined4 p_unknown); // vtable+0x34
|
|
|
|
// FUNCTION: LEGO1 0x100c7360
|
|
inline virtual const char* ClassName() const override // vtable+0x0c
|
|
{
|
|
// GLOBAL: LEGO1 0x10102144
|
|
return "MxDiskStreamController";
|
|
}
|
|
|
|
// FUNCTION: LEGO1 0x100c7370
|
|
inline virtual MxBool IsA(const char* name) const override // vtable+0x10
|
|
{
|
|
return !strcmp(name, MxDiskStreamController::ClassName()) || MxStreamController::IsA(name);
|
|
}
|
|
|
|
private:
|
|
MxStreamListMxDSAction m_list0x64; // 0x64
|
|
undefined m_unk70; // 0x70
|
|
list<MxDSBuffer*> m_list0x74; // 0x74
|
|
MxStreamListMxDSAction m_list0x80; // 0x80
|
|
undefined2 m_unk8c; // 0x8c
|
|
MxStreamListMxDSAction m_list0x90; // 0x90
|
|
MxCriticalSection m_critical9c; // 0x9c
|
|
MxStreamListMxDSAction m_list0xb8; // 0xb8
|
|
undefined m_unkc4; // 0xc4
|
|
};
|
|
|
|
// TEMPLATE: LEGO1 0x100c7330
|
|
// list<MxDSAction *,allocator<MxDSAction *> >::_Buynode
|
|
|
|
// TEMPLATE: LEGO1 0x100c7420
|
|
// list<MxDSBuffer *,allocator<MxDSBuffer *> >::~list<MxDSBuffer *,allocator<MxDSBuffer *> >
|
|
|
|
// TEMPLATE: LEGO1 0x100c7490
|
|
// list<MxDSBuffer *,allocator<MxDSBuffer *> >::_Buynode
|
|
|
|
// TEMPLATE: LEGO1 0x100c74e0
|
|
// List<MxDSBuffer *>::~List<MxDSBuffer *>
|
|
|
|
#endif // MXDISKSTREAMCONTROLLER_H
|