mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 08:24:16 +00:00
(Proposal) Adjustments to "decomp" language (#308)
* Adjustments to "decomp" language * Fix a comment * Fix accidental clang-formatting * Fix order * Fix order * Remove junk * Fix OFFSET * Adjustments based on new suggestions * Annotate globals * Globals in ISLE * More globals * Merge from parser2 branch * Allow prepending space for exact marker match * To eliminate noise, require the 0x prefix on offset for marker match * fix test from previous * Count tab stops for indented functions to reduce MISSED_END_OF_FUNCTION noise * FUNCTION to SYNTHETIC where needed * Missed marker conversion on SetAtomId * pylint cleanup, remove unused code * Fix unexpected function end, add more unit tests * Be more strict about synthetic name syntax * Revert "Missed marker conversion on SetAtomId" This reverts commitd87d665127
. * Revert "FUNCTION to SYNTHETIC where needed" This reverts commit8c815418d2
. * Implicit lookup by name for functions * Fix VTABLE SYNTHETIC and other decomp markers * Get vtable class name * Vtable marker should identify struct * No colon for SIZE comment * Update README.md * Update README.md * Update CONTRIBUTING.md * Update README.md * Update README.md * Update CONTRIBUTING.md * Update README.md * Update CONTRIBUTING.md * Fix destructor/annotation * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md --------- Co-authored-by: disinvite <disinvite@users.noreply.github.com>
This commit is contained in:

committed by
GitHub

parent
4f5b70013f
commit
494a556f8e
@@ -6,7 +6,7 @@ DECOMP_SIZE_ASSERT(MxDirect3D, 0x894);
|
||||
DECOMP_SIZE_ASSERT(MxDeviceModeFinder, 0xe4);
|
||||
DECOMP_SIZE_ASSERT(MxDeviceEnumerate, 0x198);
|
||||
|
||||
// OFFSET: LEGO1 0x1009b0a0
|
||||
// FUNCTION: LEGO1 0x1009b0a0
|
||||
MxDirect3D::MxDirect3D()
|
||||
{
|
||||
this->m_pDirect3d = NULL;
|
||||
@@ -15,13 +15,13 @@ MxDirect3D::MxDirect3D()
|
||||
this->m_pDeviceModeFinder = NULL;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1009b140
|
||||
// FUNCTION: LEGO1 0x1009b140
|
||||
MxDirect3D::~MxDirect3D()
|
||||
{
|
||||
Destroy();
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1009b1a0
|
||||
// FUNCTION: LEGO1 0x1009b1a0
|
||||
BOOL MxDirect3D::Create(
|
||||
HWND hWnd,
|
||||
BOOL fullscreen_1,
|
||||
@@ -57,7 +57,7 @@ BOOL MxDirect3D::Create(
|
||||
return success;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1009b210
|
||||
// FUNCTION: LEGO1 0x1009b210
|
||||
void MxDirect3D::Destroy()
|
||||
{
|
||||
if (this->m_pDirect3dDevice) {
|
||||
@@ -84,7 +84,7 @@ void MxDirect3D::Destroy()
|
||||
MxDirectDraw::Destroy();
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1009b290
|
||||
// FUNCTION: LEGO1 0x1009b290
|
||||
void MxDirect3D::Clear()
|
||||
{
|
||||
if (this->m_pDirect3dDevice) {
|
||||
@@ -98,7 +98,7 @@ void MxDirect3D::Clear()
|
||||
MxDirectDraw::DestroyButNotDirectDraw();
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1009b2d0
|
||||
// FUNCTION: LEGO1 0x1009b2d0
|
||||
BOOL MxDirect3D::CreateIDirect3D()
|
||||
{
|
||||
MxResult ret = IDirect3D_QueryInterface(m_pDirectDraw, IID_IDirect3D2, (LPVOID*) &m_pDirect3d);
|
||||
@@ -111,7 +111,7 @@ BOOL MxDirect3D::CreateIDirect3D()
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1009b310 STUB
|
||||
// STUB: LEGO1 0x1009b310
|
||||
BOOL MxDirect3D::D3DSetMode()
|
||||
{
|
||||
// TODO
|
||||
@@ -122,13 +122,13 @@ BOOL MxDirect3D::D3DSetMode()
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1009b8b0
|
||||
// FUNCTION: LEGO1 0x1009b8b0
|
||||
MxDeviceModeFinder::MxDeviceModeFinder()
|
||||
{
|
||||
memset(this, 0, sizeof(*this));
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1009b8d0
|
||||
// FUNCTION: LEGO1 0x1009b8d0
|
||||
MxDeviceModeFinder::~MxDeviceModeFinder()
|
||||
{
|
||||
if (m_deviceInfo) {
|
||||
@@ -137,7 +137,7 @@ MxDeviceModeFinder::~MxDeviceModeFinder()
|
||||
}
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1009c070 STUB
|
||||
// STUB: LEGO1 0x1009c070
|
||||
BOOL MxDeviceEnumerate::FUN_1009c070()
|
||||
{
|
||||
// TODO
|
||||
@@ -150,7 +150,7 @@ BOOL MxDeviceEnumerate::FUN_1009c070()
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1009c4c0
|
||||
// FUNCTION: LEGO1 0x1009c4c0
|
||||
void MxDirect3D::BuildErrorString(const char* p_format, ...)
|
||||
{
|
||||
va_list args;
|
||||
@@ -163,7 +163,7 @@ void MxDirect3D::BuildErrorString(const char* p_format, ...)
|
||||
OutputDebugString(buf);
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1009c6c0
|
||||
// FUNCTION: LEGO1 0x1009c6c0
|
||||
MxResult MxDeviceEnumerate::_DoEnumerate()
|
||||
{
|
||||
// TODO: what does ECX refer to in this context?
|
||||
@@ -180,14 +180,14 @@ MxResult MxDeviceEnumerate::_DoEnumerate()
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1009c710 STUB
|
||||
// STUB: LEGO1 0x1009c710
|
||||
BOOL FAR PASCAL EnumerateCallback(GUID FAR*, LPSTR, LPSTR, LPVOID)
|
||||
{
|
||||
// TODO
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
// OFFSET: LEGO1 0x1009c730 STUB
|
||||
// STUB: LEGO1 0x1009c730
|
||||
const char* MxDeviceEnumerate::EnumerateErrorToString(HRESULT p_error)
|
||||
{
|
||||
// TODO: This is a list of error messages, similar to the function in
|
||||
|
Reference in New Issue
Block a user