Skip to content

Commit

Permalink
SilentPatchVC: Add GCC/Clang-specific inline assembly statements
Browse files Browse the repository at this point in the history
This also includes a small wrapper to call a C++ function from GCC-style inline ASM
  • Loading branch information
TheComputerGuy96 committed Nov 14, 2024
1 parent 8a009e8 commit a2cfac1
Showing 1 changed file with 172 additions and 0 deletions.
172 changes: 172 additions & 0 deletions SilentPatchVC/SilentPatchVC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -671,6 +671,7 @@ float FixedRefValue()

void __declspec(naked) SubtitlesShadowFix()
{
#ifdef MSC_VER
_asm
{
mov [esp], eax
Expand All @@ -683,17 +684,50 @@ void __declspec(naked) SubtitlesShadowFix()
call Recalculate
jmp SubtitlesShadowFix_JumpBack
}
#elif defined(__GNUC__) || defined(__clang__)
__asm__ volatile
(
"mov [esp], eax\n"
"fild dword ptr [esp]\n"
"push eax\n"
"lea eax, [esp+0x20-0x18]\n"
"push eax\n"
"lea eax, [esp+0x24-0x14]\n"
"push eax\n"
"call %[Recalculate]\n"
"jmp %[SubtitlesShadowFix_JumpBack]"
:: [Recalculate] "i" (Recalculate),
[SubtitlesShadowFix_JumpBack] "m" (SubtitlesShadowFix_JumpBack)
);
#endif
}

// C-style wrapper for calling a C++ function in GCC-style inline assembly (the function signature is really important here)
RwFrame* __thiscall CVehicleModelInfo_GetExtrasFrame(CVehicleModelInfo* modelInfo, RpClump* clump)
{
return modelInfo->GetExtrasFrame(clump);
}

void __declspec(naked) CreateInstance_BikeFix()
{
#ifdef MSC_VER
_asm
{
push eax
mov ecx, ebp
call CVehicleModelInfo::GetExtrasFrame
retn
}
#elif defined(__GNUC__) || defined(__clang__)
__asm__ volatile
(
"push eax\n"
"mov ecx, ebp\n"
"call %[CVehicleModelInfo_GetExtrasFrame]\n"
"ret"
:: [CVehicleModelInfo_GetExtrasFrame] "i" (CVehicleModelInfo_GetExtrasFrame)
);
#endif
}

char** ppUserFilesDir = AddressByVersion<char**>(0x6022AA, 0x60228A, 0x601ECA);
Expand Down Expand Up @@ -733,6 +767,7 @@ unsigned int __cdecl AutoPilotTimerCalculation_VC(unsigned int nTimer, int nScal

void __declspec(naked) AutoPilotTimerFix_VC()
{
#ifdef MSC_VER
_asm {
push dword ptr[esp + 0xC]
push dword ptr[ebx + 0x10]
Expand All @@ -745,6 +780,22 @@ void __declspec(naked) AutoPilotTimerFix_VC()
pop ebx
retn 4
}
#elif defined(__GNUC__) || defined(__clang__)
__asm__ volatile
(
"push dword ptr [esp + 0xC]\n"
"push dword ptr [ebx + 0x10]\n"
"push eax\n"
"call %[AutoPilotTimerCalculation_VC]\n"
"add esp, 0xC\n"
"mov [ebx + 0xC], eax\n"
"add esp, 0x30\n"
"pop ebp\n"
"pop ebx\n"
"ret 4"
:: [AutoPilotTimerCalculation_VC] "i" (AutoPilotTimerCalculation_VC)
);
#endif
}


Expand Down Expand Up @@ -865,6 +916,7 @@ namespace SirenSwitchingFix
{
void __declspec(naked) IsFBIRanchOrFBICar()
{
#ifdef MSC_VER
_asm
{
mov dword ptr [esi+1Ch], 1Ch
Expand All @@ -881,6 +933,24 @@ namespace SirenSwitchingFix
xor al, al
retn
}
#elif defined(__GNUC__) || defined(__clang__)
__asm__ volatile
(
"mov dword ptr [esi+0x1C], 0x1C\n"

// al = 0 - high pitched siren
// al = 1 - normal siren
"cmp dword ptr [ebp+0x14], 90\n" // fbiranch
"je IsFBIRanchOrFBICar_HighPitchSiren\n"
"cmp dword ptr [ebp+0x14], 17\n" // fbicar
"setne al\n"
"ret\n"

"IsFBIRanchOrFBICar_HighPitchSiren:\n"
"xor al, al\n"
"ret"
);
#endif
}
}

Expand Down Expand Up @@ -949,6 +1019,7 @@ namespace RemoveDriverStatusFix
{
// if (m_nStatus != STATUS_WRECKED)
// m_nStatus = STATUS_ABANDONED;
#ifdef MSC_VER
_asm
{
mov cl, [ebx+50h]
Expand All @@ -962,6 +1033,21 @@ namespace RemoveDriverStatusFix
DontSetStatus:
retn
}
#elif defined(__GNUC__) || defined(__clang__)
__asm__ volatile
(
"mov cl, [ebx+0x50]\n"
"mov al, cl\n"
"and cl, 0xF8\n"
"cmp cl, 0x28\n"
"je DontSetStatus\n"
"and al, 7\n"
"or al, 0x20\n"

"DontSetStatus:\n"
"ret"
);
#endif
}
}

Expand Down Expand Up @@ -1034,12 +1120,22 @@ namespace NullTerminatedLines
static void* orgSscanf_LoadPath;
__declspec(naked) static void sscanf1_LoadPath_Terminate()
{
#ifdef MSC_VER
_asm
{
mov eax, [esp+4]
mov byte ptr [eax+ecx], 0
jmp [orgSscanf_LoadPath]
}
#elif defined(__GNUC__) || defined(__clang__)
__asm__ volatile
(
"mov eax, [esp+4]\n"
"mov byte ptr [eax+ecx], 0\n"
"jmp %[orgSscanf_LoadPath]"
:: [orgSscanf_LoadPath] "m" (orgSscanf_LoadPath)
);
#endif
}
}

Expand All @@ -1064,16 +1160,26 @@ namespace PickupEffectsFixes
{
__declspec(naked) static void PickUpEffects_BigDollarColor()
{
#ifdef MSC_VER
_asm
{
mov byte ptr [esp+184h-170h], 0
mov dword ptr [esp+184h-174h], 37
retn
}
#elif defined(__GNUC__) || defined(__clang__)
__asm__ volatile
(
"mov byte ptr [esp+0x184-0x170], 0\n"
"mov dword ptr [esp+0x184-0x174], 37\n"
"ret"
);
#endif
}

__declspec(naked) static void PickUpEffects_Minigun2Glow()
{
#ifdef MSC_VER
_asm
{
cmp ecx, 294 // minigun2
Expand All @@ -1089,6 +1195,23 @@ namespace PickupEffectsFixes
mov ebx, ecx
retn
}
#elif defined(__GNUC__) || defined(__clang__)
__asm__ volatile
(
"cmp ecx, 294\n" // minigun2
"jnz NotMinigun2\n"
"mov byte ptr [esp+0x184-0x170], 0\n"
"xor eax, eax\n"
"jmp Return\n"

"NotMinigun2:\n"
"lea eax, [ecx+1]\n"

"Return:\n"
"mov ebx, ecx\n"
"ret"
);
#endif
}
}

Expand All @@ -1105,6 +1228,7 @@ namespace IsPlayerTargettingCharFix
__declspec(naked) static void IsPlayerTargettingChar_ExtraChecks()
{
// After this extra block of code, there is a jz Return, so set ZF to 0 here if this path is to be entered
#ifdef MSC_VER
_asm
{
test bl, bl
Expand All @@ -1125,6 +1249,31 @@ namespace IsPlayerTargettingCharFix
xor al, al
retn
}
#elif defined(__GNUC__) || defined(__clang__)
__asm__ volatile
(
"test bl, bl\n"
"jnz ReturnToUpdateCompareFlag\n"
"mov eax, %[bUseMouse3rdPerson]\n"
"cmp byte ptr [eax], 0\n"
"jne CmpAndReturn\n"
"mov ecx, %[TheCamera]\n"
"call %[Using1stPersonWeaponMode]\n"
"test al, al\n"
"jz ReturnToUpdateCompareFlag\n"

"CmpAndReturn:\n"
"cmp byte ptr [esp+0x11C-0x10C], 0\n"
"ret\n"

"ReturnToUpdateCompareFlag:\n"
"xor al, al\n"
"ret"
:: [bUseMouse3rdPerson] "m" (bUseMouse3rdPerson),
[TheCamera] "m" (TheCamera),
[Using1stPersonWeaponMode] "m" (Using1stPersonWeaponMode)
);
#endif
}
}

Expand Down Expand Up @@ -1210,13 +1359,24 @@ namespace SelectableBackfaceCulling
static void* EntityRender_Prologue_JumpBack;
__declspec(naked) static void __fastcall EntityRender_Original(CEntity*)
{
#ifdef MSC_VER
_asm
{
push ebx
mov ebx, ecx
cmp dword ptr [ebx+4Ch], 0
jmp [EntityRender_Prologue_JumpBack]
}
#elif defined(__GNUC__) || defined(__clang__)
__asm__ volatile
(
"push ebx\n"
"mov ebx, ecx\n"
"cmp dword ptr [ebx+0x4C], 0\n"
"jmp %[EntityRender_Prologue_JumpBack]"
:: [EntityRender_Prologue_JumpBack] "m" (EntityRender_Prologue_JumpBack)
);
#endif
}

static bool ShouldDisableBackfaceCulling(const CEntity* entity)
Expand Down Expand Up @@ -1392,6 +1552,7 @@ namespace TommyFistShakeWithWeapons

static __declspec(naked) void CheckWeaponGroupHook()
{
#ifdef MSC_VER
_asm
{
push dword ptr [eax]
Expand All @@ -1400,6 +1561,17 @@ namespace TommyFistShakeWithWeapons
test al, al
retn
}
#elif defined(__GNUC__) || defined(__clang__)
__asm__ volatile
(
"push dword ptr [eax]\n"
"call %[WeaponProhibitsFistShake]\n"
"add esp, 4\n"
"test al, al\n"
"ret"
:: [WeaponProhibitsFistShake] "i" (WeaponProhibitsFistShake)
);
#endif
}

template<std::size_t Index>
Expand Down

0 comments on commit a2cfac1

Please sign in to comment.