- Mirror the remaining non-Python 2V3 closure headers (98 more, 173 total): EffectLib, EterGrnLib, SpeedTreeLib, SphereLib, PRTerrainLib, EterImageLib, EterBase/Poly, cipher/tea, EterLib Grp*/IME/Input/MSWindow/StateManager, GameLib actor/map/race headers, EterPack. - SDK shims: granny.h, SpeedTreeRT.h, imm.h, Dimm.h (the SDK MIDL header, not mirrored), dinput/d3dx8 additions; D3D8 render-state enums, FVF macros and the COM resource hierarchy; more Win32 GDI/handle types with layout static_asserts. - PORT edits for MSVC-permissive code (typename, friend visibility, <algorithm>, pointer→uintptr_t) and PRTerrainLib/StdAfx.h dropping the ScriptLib/Python include. - port_logic links the vendored cryptopp/minilzo. - extension/src/platform: port_platform target with 103 generated stub files (1917 function stubs, 146 static members) from the new platform_stub.py (clang -ast-dump-filter); MT_PLATFORM_STUB() marks every unimplemented body. libmtgodot links port_platform and port_gate.sh builds it. Gate: macOS, Android, iOS, Windows (mingw) PASS; Linux BLOCKED (no toolchain). Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
110 lines
2.2 KiB
C++
110 lines
2.2 KiB
C++
// Platform skeleton for EterGrnLib/Thing.h (40250 EterGrnLib/Thing.cpp), generated by platform_stub.py.
|
|
// Every MT_PLATFORM_STUB() body is unimplemented: replace it with the platform implementation.
|
|
#include "EterGrnLib/StdAfx.h"
|
|
#include "EterGrnLib/Thing.h"
|
|
|
|
#include "../PlatformStub.h"
|
|
|
|
auto CGraphicThing::Type() -> CGraphicThing::TType
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
return mt_platform_stub_return<CGraphicThing::TType>();
|
|
}
|
|
|
|
CGraphicThing::CGraphicThing(const char * c_szFileName) : CResource(c_szFileName) // initializers as in 40250
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
}
|
|
|
|
CGraphicThing::~CGraphicThing()
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
}
|
|
|
|
auto CGraphicThing::CreateDeviceObjects() -> bool
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
return mt_platform_stub_return<bool>();
|
|
}
|
|
|
|
auto CGraphicThing::DestroyDeviceObjects() -> void
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
}
|
|
|
|
auto CGraphicThing::CheckModelIndex(int) const -> bool
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
return mt_platform_stub_return<bool>();
|
|
}
|
|
|
|
auto CGraphicThing::GetModelPointer(int) -> CGrannyModel *
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
return mt_platform_stub_return<CGrannyModel *>();
|
|
}
|
|
|
|
auto CGraphicThing::GetModelCount() const -> int
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
return mt_platform_stub_return<int>();
|
|
}
|
|
|
|
auto CGraphicThing::CheckMotionIndex(int) const -> bool
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
return mt_platform_stub_return<bool>();
|
|
}
|
|
|
|
auto CGraphicThing::GetMotionPointer(int) -> CGrannyMotion *
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
return mt_platform_stub_return<CGrannyMotion *>();
|
|
}
|
|
|
|
auto CGraphicThing::GetMotionCount() const -> int
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
return mt_platform_stub_return<int>();
|
|
}
|
|
|
|
auto CGraphicThing::Initialize() -> void
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
}
|
|
|
|
auto CGraphicThing::LoadModels() -> bool
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
return mt_platform_stub_return<bool>();
|
|
}
|
|
|
|
auto CGraphicThing::LoadMotions() -> bool
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
return mt_platform_stub_return<bool>();
|
|
}
|
|
|
|
auto CGraphicThing::OnLoad(int, const void *) -> bool
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
return mt_platform_stub_return<bool>();
|
|
}
|
|
|
|
auto CGraphicThing::OnClear() -> void
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
}
|
|
|
|
auto CGraphicThing::OnIsEmpty() const -> bool
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
return mt_platform_stub_return<bool>();
|
|
}
|
|
|
|
auto CGraphicThing::OnIsType(TType) -> bool
|
|
{
|
|
MT_PLATFORM_STUB();
|
|
return mt_platform_stub_return<bool>();
|
|
}
|