2019-05-30 15:24:47 -04:00
|
|
|
#include <direct.h>
|
2019-06-02 17:42:51 -04:00
|
|
|
#include <csignal>
|
2019-06-30 06:53:39 -04:00
|
|
|
#include <windows.h>
|
2019-05-30 15:24:47 -04:00
|
|
|
#include "common.h"
|
|
|
|
#include "patcher.h"
|
|
|
|
#include "Renderer.h"
|
2019-05-30 18:32:50 -04:00
|
|
|
#include "Credits.h"
|
2019-05-31 05:44:43 -04:00
|
|
|
#include "Camera.h"
|
2019-06-27 04:58:51 -04:00
|
|
|
#include "Weather.h"
|
|
|
|
#include "Clock.h"
|
|
|
|
#include "World.h"
|
|
|
|
#include "Vehicle.h"
|
2019-07-19 05:57:12 -04:00
|
|
|
#include "ModelIndices.h"
|
2019-06-27 04:58:51 -04:00
|
|
|
#include "Streaming.h"
|
|
|
|
#include "PathFind.h"
|
|
|
|
#include "Boat.h"
|
|
|
|
#include "Automobile.h"
|
2019-05-30 15:24:47 -04:00
|
|
|
#include "debugmenu_public.h"
|
|
|
|
|
2019-07-02 14:28:20 -04:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
std::vector<int32> usedAddresses;
|
|
|
|
|
2019-05-30 15:24:47 -04:00
|
|
|
void **rwengine = *(void***)0x5A10E1;
|
|
|
|
|
|
|
|
DebugMenuAPI gDebugMenuAPI;
|
|
|
|
|
|
|
|
WRAPPER void *gtanew(uint32 sz) { EAXJMP(0x5A0690); }
|
|
|
|
WRAPPER void gtadelete(void *p) { EAXJMP(0x5A07E0); }
|
|
|
|
|
|
|
|
// overload our own new/delete with GTA's functions
|
|
|
|
void *operator new(size_t sz) { return gtanew(sz); }
|
|
|
|
void operator delete(void *ptr) noexcept { gtadelete(ptr); }
|
|
|
|
|
2019-06-02 18:25:46 -04:00
|
|
|
#ifdef USE_PS2_RAND
|
2019-05-30 15:24:47 -04:00
|
|
|
unsigned __int64 myrand_seed = 1;
|
2019-05-30 17:49:06 -04:00
|
|
|
#else
|
|
|
|
unsigned long int myrand_seed = 1;
|
|
|
|
#endif
|
2019-05-30 15:24:47 -04:00
|
|
|
|
|
|
|
int
|
|
|
|
myrand(void)
|
|
|
|
{
|
2019-06-02 18:25:46 -04:00
|
|
|
#ifdef USE_PS2_RAND
|
2019-05-30 17:49:06 -04:00
|
|
|
// Use our own implementation of rand, stolen from PS2
|
2019-05-30 15:24:47 -04:00
|
|
|
myrand_seed = 0x5851F42D4C957F2D * myrand_seed + 1;
|
|
|
|
return ((myrand_seed >> 32) & 0x7FFFFFFF);
|
2019-05-30 17:49:06 -04:00
|
|
|
#else
|
|
|
|
// or original codewarrior rand
|
|
|
|
myrand_seed = myrand_seed * 1103515245 + 12345;
|
|
|
|
return((myrand_seed >> 16) & 0x7FFF);
|
|
|
|
#endif
|
2019-05-30 15:24:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
mysrand(unsigned int seed)
|
|
|
|
{
|
|
|
|
myrand_seed = seed;
|
|
|
|
}
|
|
|
|
|
|
|
|
int gDbgSurf;
|
|
|
|
|
2019-05-31 05:44:43 -04:00
|
|
|
void (*DebugMenuProcess)(void);
|
|
|
|
void (*DebugMenuRender)(void);
|
|
|
|
static void stub(void) { }
|
|
|
|
|
|
|
|
void
|
|
|
|
DebugMenuInit(void)
|
|
|
|
{
|
|
|
|
if(DebugMenuLoad()){
|
|
|
|
DebugMenuProcess = (void(*)(void))GetProcAddress(gDebugMenuAPI.module, "DebugMenuProcess");
|
|
|
|
DebugMenuRender = (void(*)(void))GetProcAddress(gDebugMenuAPI.module, "DebugMenuRender");
|
|
|
|
}
|
|
|
|
if(DebugMenuProcess == nil || DebugMenuRender == nil){
|
|
|
|
DebugMenuProcess = stub;
|
|
|
|
DebugMenuRender = stub;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-06-27 04:58:51 -04:00
|
|
|
void WeaponCheat();
|
|
|
|
void HealthCheat();
|
|
|
|
void TankCheat();
|
|
|
|
void BlowUpCarsCheat();
|
|
|
|
void ChangePlayerCheat();
|
|
|
|
void MayhemCheat();
|
|
|
|
void EverybodyAttacksPlayerCheat();
|
|
|
|
void WeaponsForAllCheat();
|
|
|
|
void FastTimeCheat();
|
|
|
|
void SlowTimeCheat();
|
|
|
|
void MoneyCheat();
|
|
|
|
void ArmourCheat();
|
|
|
|
void WantedLevelUpCheat();
|
|
|
|
void WantedLevelDownCheat();
|
|
|
|
void SunnyWeatherCheat();
|
|
|
|
void CloudyWeatherCheat();
|
|
|
|
void RainyWeatherCheat();
|
|
|
|
void FoggyWeatherCheat();
|
|
|
|
void FastWeatherCheat();
|
|
|
|
void OnlyRenderWheelsCheat();
|
|
|
|
void ChittyChittyBangBangCheat();
|
|
|
|
void StrongGripCheat();
|
|
|
|
void NastyLimbsCheat();
|
|
|
|
|
2019-07-19 05:57:12 -04:00
|
|
|
DebugMenuEntry *carCol1;
|
|
|
|
DebugMenuEntry *carCol2;
|
|
|
|
|
2019-06-27 04:58:51 -04:00
|
|
|
void
|
2019-07-19 05:57:12 -04:00
|
|
|
SpawnCar(int id)
|
2019-06-27 04:58:51 -04:00
|
|
|
{
|
|
|
|
CVector playerpos;
|
|
|
|
CStreaming::RequestModel(id, 0);
|
|
|
|
CStreaming::LoadAllRequestedModels(false);
|
2019-06-28 06:34:02 -04:00
|
|
|
if(CStreaming::HasModelLoaded(id)){
|
2019-07-19 05:57:12 -04:00
|
|
|
playerpos = FindPlayerCoors();
|
2019-06-27 04:58:51 -04:00
|
|
|
int node = ThePaths.FindNodeClosestToCoors(playerpos, 0, 100.0f, false, false);
|
|
|
|
if(node < 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
CVehicle *v;
|
2019-07-19 05:57:12 -04:00
|
|
|
if(CModelInfo::IsBoatModel(id))
|
|
|
|
return;
|
|
|
|
else
|
|
|
|
v = new CAutomobile(id, RANDOM_VEHICLE);
|
|
|
|
|
|
|
|
v->bHasBeenOwnedByPlayer = true;
|
|
|
|
if(carCol1)
|
|
|
|
DebugMenuEntrySetAddress(carCol1, &v->m_currentColour1);
|
|
|
|
if(carCol2)
|
|
|
|
DebugMenuEntrySetAddress(carCol2, &v->m_currentColour2);
|
|
|
|
|
|
|
|
v->GetPosition() = ThePaths.m_pathNodes[node].pos;
|
|
|
|
v->GetPosition().z += 4.0f;
|
|
|
|
v->SetOrientation(0.0f, 0.0f, 3.49f);
|
|
|
|
v->m_status = STATUS_ABANDONED;
|
|
|
|
v->m_nDoorLock = CARLOCK_UNLOCKED;
|
2019-06-27 04:58:51 -04:00
|
|
|
CWorld::Add(v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-11 06:48:49 -04:00
|
|
|
static void
|
2019-07-08 15:37:47 -04:00
|
|
|
FixCar(void)
|
|
|
|
{
|
|
|
|
CVehicle *veh = FindPlayerVehicle();
|
2019-07-09 17:49:44 -04:00
|
|
|
if(veh == nil)
|
2019-07-08 15:37:47 -04:00
|
|
|
return;
|
2019-07-09 17:49:44 -04:00
|
|
|
veh->m_fHealth = 1000.0f;
|
|
|
|
if(!veh->IsCar())
|
|
|
|
return;
|
|
|
|
((CAutomobile*)veh)->Damage.SetEngineStatus(0);
|
2019-07-08 15:37:47 -04:00
|
|
|
((CAutomobile*)veh)->Fix();
|
|
|
|
}
|
|
|
|
|
2019-07-11 06:48:49 -04:00
|
|
|
static void
|
|
|
|
ToggleComedy(void)
|
|
|
|
{
|
|
|
|
CVehicle *veh = FindPlayerVehicle();
|
|
|
|
if(veh == nil)
|
|
|
|
return;
|
|
|
|
veh->bComedyControls = !veh->bComedyControls;
|
|
|
|
}
|
|
|
|
|
2019-07-19 05:57:12 -04:00
|
|
|
static const char *carnames[] = {
|
|
|
|
"landstal", "idaho", "stinger", "linerun", "peren", "sentinel", "patriot", "firetruk", "trash", "stretch", "manana", "infernus", "blista", "pony",
|
|
|
|
"mule", "cheetah", "ambulan", "fbicar", "moonbeam", "esperant", "taxi", "kuruma", "bobcat", "mrwhoop", "bfinject", "corpse", "police", "enforcer",
|
|
|
|
"securica", "banshee", "predator", "bus", "rhino", "barracks", "train", "chopper", "dodo", "coach", "cabbie", "stallion", "rumpo", "rcbandit",
|
|
|
|
"bellyup", "mrwongs", "mafia", "yardie", "yakuza", "diablos", "columb", "hoods", "airtrain", "deaddodo", "speeder", "reefer", "panlant", "flatbed",
|
|
|
|
"yankee", "escape", "borgnine", "toyz", "ghost",
|
|
|
|
};
|
|
|
|
|
2019-06-12 06:34:22 -04:00
|
|
|
void
|
|
|
|
DebugMenuPopulate(void)
|
2019-05-30 15:24:47 -04:00
|
|
|
{
|
|
|
|
if(DebugMenuLoad()){
|
2019-06-27 04:58:51 -04:00
|
|
|
static const char *weathers[] = {
|
|
|
|
"Sunny", "Cloudy", "Rainy", "Foggy"
|
|
|
|
};
|
|
|
|
DebugMenuEntry *e;
|
|
|
|
e = DebugMenuAddVar("Time & Weather", "Current Hour", &CClock::GetHoursRef(), nil, 1, 0, 23, nil);
|
|
|
|
DebugMenuEntrySetWrap(e, true);
|
|
|
|
e = DebugMenuAddVar("Time & Weather", "Current Minute", &CClock::GetMinutesRef(),
|
|
|
|
[](){ CWeather::InterpolationValue = CClock::GetMinutes()/60.0f; }, 1, 0, 59, nil);
|
|
|
|
DebugMenuEntrySetWrap(e, true);
|
|
|
|
e = DebugMenuAddVar("Time & Weather", "Old Weather", (int16*)&CWeather::OldWeatherType, nil, 1, 0, 3, weathers);
|
|
|
|
DebugMenuEntrySetWrap(e, true);
|
|
|
|
e = DebugMenuAddVar("Time & Weather", "New Weather", (int16*)&CWeather::NewWeatherType, nil, 1, 0, 3, weathers);
|
|
|
|
DebugMenuEntrySetWrap(e, true);
|
2019-06-30 15:06:55 -04:00
|
|
|
DebugMenuAddVar("Time & Weather", "Wind", (float*)&CWeather::Wind, nil, 0.1f, 0.0f, 1.0f);
|
2019-06-27 04:58:51 -04:00
|
|
|
DebugMenuAddVar("Time & Weather", "Time scale", (float*)0x8F2C20, nil, 0.1f, 0.0f, 10.0f);
|
|
|
|
|
|
|
|
DebugMenuAddCmd("Cheats", "Weapons", WeaponCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Money", MoneyCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Health", HealthCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Wanted level up", WantedLevelUpCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Wanted level down", WantedLevelDownCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Tank", TankCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Blow up cars", BlowUpCarsCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Change player", ChangePlayerCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Mayhem", MayhemCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Everybody attacks player", EverybodyAttacksPlayerCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Weapons for all", WeaponsForAllCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Fast time", FastTimeCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Slow time", SlowTimeCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Armour", ArmourCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Sunny weather", SunnyWeatherCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Cloudy weather", CloudyWeatherCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Rainy weather", RainyWeatherCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Foggy weather", FoggyWeatherCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Fast weather", FastWeatherCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Only render wheels", OnlyRenderWheelsCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Chitty chitty bang bang", ChittyChittyBangBangCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Strong grip", StrongGripCheat);
|
|
|
|
DebugMenuAddCmd("Cheats", "Nasty limbs", NastyLimbsCheat);
|
|
|
|
|
2019-07-19 05:57:12 -04:00
|
|
|
static int spawnCarId = MI_LANDSTAL;
|
|
|
|
e = DebugMenuAddVar("Spawn", "Spawn Car ID", &spawnCarId, nil, 1, MI_LANDSTAL, MI_GHOST, carnames);
|
|
|
|
DebugMenuEntrySetWrap(e, true);
|
|
|
|
DebugMenuAddCmd("Spawn", "Spawn Car", [](){
|
|
|
|
if(spawnCarId == MI_TRAIN ||
|
|
|
|
spawnCarId == MI_CHOPPER ||
|
|
|
|
spawnCarId == MI_AIRTRAIN ||
|
|
|
|
spawnCarId == MI_DEADDODO ||
|
|
|
|
spawnCarId == MI_ESCAPE)
|
|
|
|
return;
|
|
|
|
SpawnCar(spawnCarId);
|
|
|
|
});
|
|
|
|
static uint8 dummy;
|
|
|
|
carCol1 = DebugMenuAddVar("Spawn", "First colour", &dummy, nil, 1, 0, 255, nil);
|
|
|
|
carCol2 = DebugMenuAddVar("Spawn", "Second colour", &dummy, nil, 1, 0, 255, nil);
|
|
|
|
DebugMenuAddCmd("Spawn", "Spawn Stinger", [](){ SpawnCar(MI_STINGER); });
|
|
|
|
DebugMenuAddCmd("Spawn", "Spawn Infernus", [](){ SpawnCar(MI_INFERNUS); });
|
|
|
|
DebugMenuAddCmd("Spawn", "Spawn Cheetah", [](){ SpawnCar(MI_CHEETAH); });
|
|
|
|
DebugMenuAddCmd("Spawn", "Spawn Esperanto", [](){ SpawnCar(MI_ESPERANT); });
|
|
|
|
DebugMenuAddCmd("Spawn", "Spawn Stallion", [](){ SpawnCar(MI_STALLION); });
|
|
|
|
DebugMenuAddCmd("Spawn", "Spawn Kuruma", [](){ SpawnCar(MI_KURUMA); });
|
|
|
|
DebugMenuAddCmd("Spawn", "Spawn Taxi", [](){ SpawnCar(MI_TAXI); });
|
|
|
|
DebugMenuAddCmd("Spawn", "Spawn Police", [](){ SpawnCar(MI_POLICE); });
|
|
|
|
DebugMenuAddCmd("Spawn", "Spawn Enforcer", [](){ SpawnCar(MI_ENFORCER); });
|
|
|
|
DebugMenuAddCmd("Spawn", "Spawn Banshee", [](){ SpawnCar(MI_BANSHEE); });
|
|
|
|
DebugMenuAddCmd("Spawn", "Spawn Yakuza", [](){ SpawnCar(MI_YAKUZA); });
|
|
|
|
DebugMenuAddCmd("Spawn", "Spawn Dodo", [](){ SpawnCar(MI_DODO); });
|
|
|
|
|
|
|
|
|
2019-07-08 15:37:47 -04:00
|
|
|
DebugMenuAddCmd("Debug", "Fix Car", FixCar);
|
2019-07-11 06:48:49 -04:00
|
|
|
DebugMenuAddCmd("Debug", "Toggle Comedy Controls", ToggleComedy);
|
|
|
|
|
2019-05-30 15:24:47 -04:00
|
|
|
DebugMenuAddVarBool8("Debug", "Show Ped Road Groups", (int8*)&gbShowPedRoadGroups, nil);
|
|
|
|
DebugMenuAddVarBool8("Debug", "Show Car Road Groups", (int8*)&gbShowCarRoadGroups, nil);
|
|
|
|
DebugMenuAddVarBool8("Debug", "Show Collision Polys", (int8*)&gbShowCollisionPolys, nil);
|
|
|
|
DebugMenuAddVarBool8("Debug", "Don't render Buildings", (int8*)&gbDontRenderBuildings, nil);
|
|
|
|
DebugMenuAddVarBool8("Debug", "Don't render Big Buildings", (int8*)&gbDontRenderBigBuildings, nil);
|
|
|
|
DebugMenuAddVarBool8("Debug", "Don't render Peds", (int8*)&gbDontRenderPeds, nil);
|
|
|
|
DebugMenuAddVarBool8("Debug", "Don't render Objects", (int8*)&gbDontRenderObjects, nil);
|
|
|
|
DebugMenuAddVar("Debug", "Dbg Surface", &gDbgSurf, nil, 1, 0, 34, nil);
|
2019-05-30 18:32:50 -04:00
|
|
|
|
|
|
|
DebugMenuAddCmd("Debug", "Start Credits", CCredits::Start);
|
|
|
|
DebugMenuAddCmd("Debug", "Stop Credits", CCredits::Stop);
|
2019-05-30 15:24:47 -04:00
|
|
|
}
|
2019-06-12 06:34:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
int (*RsEventHandler_orig)(int a, int b);
|
|
|
|
int
|
|
|
|
delayedPatches10(int a, int b)
|
|
|
|
{
|
|
|
|
DebugMenuInit();
|
|
|
|
DebugMenuPopulate();
|
2019-05-30 15:24:47 -04:00
|
|
|
|
|
|
|
return RsEventHandler_orig(a, b);
|
|
|
|
}
|
2019-06-12 06:34:22 -04:00
|
|
|
*/
|
2019-05-30 15:24:47 -04:00
|
|
|
|
2019-06-01 13:18:19 -04:00
|
|
|
void __declspec(naked) HeadlightsFix()
|
|
|
|
{
|
|
|
|
static const float fMinusOne = -1.0f;
|
|
|
|
_asm
|
|
|
|
{
|
|
|
|
fld [esp+708h-690h]
|
|
|
|
fcomp fMinusOne
|
|
|
|
fnstsw ax
|
|
|
|
and ah, 5
|
|
|
|
cmp ah, 1
|
|
|
|
jnz HeadlightsFix_DontLimit
|
|
|
|
fld fMinusOne
|
|
|
|
fstp [esp+708h-690h]
|
|
|
|
|
|
|
|
HeadlightsFix_DontLimit:
|
|
|
|
fld [esp+708h-690h]
|
|
|
|
fabs
|
|
|
|
fld st
|
|
|
|
push 0x5382F2
|
|
|
|
retn
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-02 17:42:51 -04:00
|
|
|
const int re3_buffsize = 1024;
|
|
|
|
static char re3_buff[re3_buffsize];
|
|
|
|
|
|
|
|
void re3_assert(const char *expr, const char *filename, unsigned int lineno, const char *func)
|
|
|
|
{
|
|
|
|
int nCode;
|
|
|
|
|
|
|
|
strcpy_s(re3_buff, re3_buffsize, "Assertion failed!" );
|
|
|
|
strcat_s(re3_buff, re3_buffsize, "\n" );
|
|
|
|
|
|
|
|
strcat_s(re3_buff, re3_buffsize, "File: ");
|
|
|
|
strcat_s(re3_buff, re3_buffsize, filename );
|
|
|
|
strcat_s(re3_buff, re3_buffsize, "\n" );
|
|
|
|
|
|
|
|
strcat_s(re3_buff, re3_buffsize, "Line: " );
|
|
|
|
_itoa_s( lineno, re3_buff + strlen(re3_buff), re3_buffsize - strlen(re3_buff), 10 );
|
|
|
|
strcat_s(re3_buff, re3_buffsize, "\n");
|
|
|
|
|
|
|
|
strcat_s(re3_buff, re3_buffsize, "Function: ");
|
|
|
|
strcat_s(re3_buff, re3_buffsize, func );
|
|
|
|
strcat_s(re3_buff, re3_buffsize, "\n" );
|
|
|
|
|
|
|
|
strcat_s(re3_buff, re3_buffsize, "Expression: ");
|
|
|
|
strcat_s(re3_buff, re3_buffsize, expr);
|
|
|
|
strcat_s(re3_buff, re3_buffsize, "\n");
|
|
|
|
|
|
|
|
strcat_s(re3_buff, re3_buffsize, "\n" );
|
|
|
|
strcat_s(re3_buff, re3_buffsize, "(Press Retry to debug the application)");
|
|
|
|
|
|
|
|
|
2019-06-30 06:53:39 -04:00
|
|
|
nCode = ::MessageBoxA(nil, re3_buff, "RE3 Assertion Failed!",
|
2019-06-02 17:42:51 -04:00
|
|
|
MB_ABORTRETRYIGNORE|MB_ICONHAND|MB_SETFOREGROUND|MB_TASKMODAL);
|
|
|
|
|
|
|
|
if (nCode == IDABORT)
|
|
|
|
{
|
|
|
|
raise(SIGABRT);
|
|
|
|
_exit(3);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nCode == IDRETRY)
|
|
|
|
{
|
|
|
|
__debugbreak();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nCode == IDIGNORE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
void re3_debug(char *format, ...)
|
|
|
|
{
|
|
|
|
va_list va;
|
|
|
|
va_start(va, format);
|
|
|
|
vsprintf_s(re3_buff, re3_buffsize, format, va);
|
|
|
|
va_end(va);
|
|
|
|
|
2019-06-19 09:22:42 -04:00
|
|
|
printf("%s", re3_buff);
|
2019-06-02 17:42:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void re3_trace(const char *filename, unsigned int lineno, const char *func, char *format, ...)
|
|
|
|
{
|
|
|
|
char buff[re3_buffsize *2];
|
|
|
|
va_list va;
|
|
|
|
va_start(va, format);
|
|
|
|
vsprintf_s(re3_buff, re3_buffsize, format, va);
|
|
|
|
va_end(va);
|
|
|
|
|
|
|
|
sprintf_s(buff, re3_buffsize * 2, "[%s.%s:%d]: %s", filename, func, lineno, re3_buff);
|
|
|
|
|
|
|
|
OutputDebugStringA(buff);
|
|
|
|
}
|
2019-05-31 19:58:19 -04:00
|
|
|
|
2019-05-30 15:24:47 -04:00
|
|
|
void
|
|
|
|
patch()
|
|
|
|
{
|
|
|
|
StaticPatcher::Apply();
|
|
|
|
|
2019-06-29 11:54:09 -04:00
|
|
|
// Patch<float>(0x46BC61+6, 1.0f); // car distance
|
2019-05-30 15:24:47 -04:00
|
|
|
InjectHook(0x59E460, printf, PATCH_JUMP);
|
2019-06-28 15:24:22 -04:00
|
|
|
InjectHook(0x475E00, printf, PATCH_JUMP); // _Error
|
|
|
|
|
2019-05-30 15:24:47 -04:00
|
|
|
|
2019-06-01 13:18:19 -04:00
|
|
|
// stolen from silentpatch (sorry)
|
|
|
|
Patch<WORD>(0x5382BF, 0x0EEB);
|
|
|
|
InjectHook(0x5382EC, HeadlightsFix, PATCH_JUMP);
|
|
|
|
|
2019-07-07 12:00:02 -04:00
|
|
|
// InterceptCall(&open_script_orig, open_script, 0x438869);
|
2019-05-30 15:24:47 -04:00
|
|
|
|
2019-06-12 06:34:22 -04:00
|
|
|
// InterceptCall(&RsEventHandler_orig, delayedPatches10, 0x58275E);
|
2019-05-30 15:24:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WINAPI
|
|
|
|
DllMain(HINSTANCE hInst, DWORD reason, LPVOID)
|
|
|
|
{
|
|
|
|
if(reason == DLL_PROCESS_ATTACH){
|
|
|
|
|
|
|
|
AllocConsole();
|
|
|
|
freopen("CONIN$", "r", stdin);
|
|
|
|
freopen("CONOUT$", "w", stdout);
|
|
|
|
freopen("CONOUT$", "w", stderr);
|
|
|
|
|
|
|
|
if (*(DWORD*)0x5C1E75 == 0xB85548EC) // 1.0
|
|
|
|
patch();
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|