summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-07-03 13:43:40 +0200
committerGitHub <noreply@github.com>2019-07-03 13:43:40 +0200
commit738bde1c1573f604b9550d9a008b3278d6c082fb (patch)
tree42b165bdad2b6bcc7478efc94786c6400330e520
parentfixed car colour texture bug (diff)
parentFix address of IsPedHeadAbovePos (diff)
downloadre3-738bde1c1573f604b9550d9a008b3278d6c082fb.tar
re3-738bde1c1573f604b9550d9a008b3278d6c082fb.tar.gz
re3-738bde1c1573f604b9550d9a008b3278d6c082fb.tar.bz2
re3-738bde1c1573f604b9550d9a008b3278d6c082fb.tar.lz
re3-738bde1c1573f604b9550d9a008b3278d6c082fb.tar.xz
re3-738bde1c1573f604b9550d9a008b3278d6c082fb.tar.zst
re3-738bde1c1573f604b9550d9a008b3278d6c082fb.zip
-rw-r--r--src/entities/Ped.cpp2
-rw-r--r--src/patcher.h46
-rw-r--r--src/re3.cpp4
3 files changed, 34 insertions, 18 deletions
diff --git a/src/entities/Ped.cpp b/src/entities/Ped.cpp
index e908f14c..4d55de15 100644
--- a/src/entities/Ped.cpp
+++ b/src/entities/Ped.cpp
@@ -2084,7 +2084,7 @@ STARTPATCHES
InjectHook(0x4D2BB0, &CPed::Avoid, PATCH_JUMP);
InjectHook(0x4C6A50, &CPed::ClearAimFlag, PATCH_JUMP);
InjectHook(0x4C64F0, &CPed::ClearLookFlag, PATCH_JUMP);
- InjectHook(0x4E5BD0, &CPed::IsPedHeadAbovePos, PATCH_JUMP);
+ InjectHook(0x4EB670, &CPed::IsPedHeadAbovePos, PATCH_JUMP);
InjectHook(0x4E68A0, &CPed::FinishedAttackCB, PATCH_JUMP);
InjectHook(0x4E5BD0, &CheckForPedsOnGroundToAttack, PATCH_JUMP);
InjectHook(0x4E6BA0, &CPed::Attack, PATCH_JUMP);
diff --git a/src/patcher.h b/src/patcher.h
index 43618b47..87a6bea4 100644
--- a/src/patcher.h
+++ b/src/patcher.h
@@ -9,6 +9,11 @@
#define NOVMT __declspec(novtable)
#define SETVMT(a) *((DWORD_PTR*)this) = (DWORD_PTR)a
+#include <algorithm>
+#include <vector>
+
+#include "common.h"
+
enum
{
PATCH_CALL,
@@ -28,6 +33,21 @@ enum
extern int gtaversion;
+class StaticPatcher
+{
+private:
+ using Patcher = void(*)();
+
+ Patcher m_func;
+ StaticPatcher *m_next;
+ static StaticPatcher *ms_head;
+
+ void Run() { m_func(); }
+public:
+ StaticPatcher(Patcher func);
+ static void Apply();
+};
+
template<typename T>
inline T AddressByVersion(uint32_t addressIII10, uint32_t addressIII11, uint32_t addressIIISteam, uint32_t addressvc10, uint32_t addressvc11, uint32_t addressvcSteam)
{
@@ -110,9 +130,18 @@ ClearCC(AT address, unsigned int nCount)
VirtualProtect((void*)address, nCount, dwProtect[0], &dwProtect[1]);
}
+extern std::vector<int32> usedAddresses;
+
template<typename AT, typename HT> inline void
InjectHook(AT address, HT hook, unsigned int nType=PATCH_NOTHING)
{
+ if(std::any_of(usedAddresses.begin(), usedAddresses.end(),
+ [address](AT value) { return (int32)value == address; })) {
+ debug("Used address %#06x twice when injecting hook\n", address);
+ }
+
+ usedAddresses.push_back((int32)address);
+
DWORD dwProtect[2];
switch ( nType )
{
@@ -159,22 +188,5 @@ inline void InterceptVmethod(void *dst, T func, uint32_t a)
Patch(a, func);
}
-
-
-class StaticPatcher
-{
-private:
- using Patcher = void(*)();
-
- Patcher m_func;
- StaticPatcher *m_next;
- static StaticPatcher *ms_head;
-
- void Run() { m_func(); }
-public:
- StaticPatcher(Patcher func);
- static void Apply();
-};
-
#define STARTPATCHES static StaticPatcher Patcher([](){
#define ENDPATCHES });
diff --git a/src/re3.cpp b/src/re3.cpp
index 87552214..9dc39d46 100644
--- a/src/re3.cpp
+++ b/src/re3.cpp
@@ -16,6 +16,10 @@
#include "Automobile.h"
#include "debugmenu_public.h"
+#include <vector>
+
+std::vector<int32> usedAddresses;
+
void **rwengine = *(void***)0x5A10E1;
DebugMenuAPI gDebugMenuAPI;