mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
bc5ca621a4
* Add ncc tool * Add symlink * Fixes * Try this * Try this * Try this * Try this * Add include path * Update style * Update style * Add more rules * Fix style * Update styles * Fix name parameter * Fix MxParam p * Fix m_unk0x pattern * Allow 4 digits for relative hex * Add missing offset * Fix some parameters * Fix some vtables * Fix more vtables * Update rules, fixes * More fixes * More fixes * More fixes * More fixes * More fixes * More fixes * More fixes * Fix last issue * Update readme * Update readme * Update CONTRIBUTING.md * Fix annotations * Rename * Update CONTRIBUTING.md * Update README.md
57 lines
926 B
C++
57 lines
926 B
C++
#ifndef MXTHREAD_H
|
|
#define MXTHREAD_H
|
|
|
|
#include "compat.h"
|
|
#include "mxsemaphore.h"
|
|
#include "mxtypes.h"
|
|
|
|
class MxCore;
|
|
|
|
// VTABLE: LEGO1 0x100dc860
|
|
class MxThread {
|
|
public:
|
|
// Note: Comes before virtual destructor
|
|
virtual MxResult Run();
|
|
|
|
MxResult Start(MxS32 p_stack, MxS32 p_flag);
|
|
|
|
void Terminate();
|
|
|
|
void Sleep(MxS32 p_milliseconds);
|
|
|
|
// Inferred, not in DLL
|
|
inline MxBool IsRunning() { return m_running; }
|
|
|
|
protected:
|
|
MxThread();
|
|
|
|
public:
|
|
virtual ~MxThread();
|
|
|
|
private:
|
|
static unsigned ThreadProc(void* p_thread);
|
|
|
|
MxULong m_hThread;
|
|
MxU32 m_threadId;
|
|
MxBool m_running;
|
|
MxSemaphore m_semaphore;
|
|
|
|
protected:
|
|
MxCore* m_target;
|
|
};
|
|
|
|
// VTABLE: LEGO1 0x100dc6d8
|
|
class MxTickleThread : public MxThread {
|
|
public:
|
|
MxTickleThread(MxCore* p_target, MxS32 p_frequencyMS);
|
|
|
|
// Only inlined, no offset
|
|
virtual ~MxTickleThread() {}
|
|
|
|
MxResult Run() override;
|
|
|
|
private:
|
|
MxS32 m_frequencyMS;
|
|
};
|
|
|
|
#endif // MXTHREAD_H
|