diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-10-30 12:26:48 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-10-30 12:26:48 +0100 |
commit | 51787d2240b8836b31e38e0590090bbb9041d8c2 (patch) | |
tree | 9d18db6661cc208a1ae4dba8097437a6a09ab39c /Classes.h | |
parent | f873d61f36a46c42cc444dcb596f0d354ae3d202 (diff) | |
parent | 822b531a4f9b8120f1126fbaec085b8b6fab4c57 (diff) |
Merge branch 'master' of https://github.com/simonsan/Age_of_Empires_II_Definitive-Edition-SDKHEADmaster
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'Classes.h')
-rw-r--r-- | Classes.h | 114 |
1 files changed, 80 insertions, 34 deletions
@@ -1,6 +1,7 @@ #pragma once // Generated using ReClass 2016 #include <cstdint> +#include "Engine.h" struct Vector4 { @@ -191,6 +192,29 @@ public: yScreenPos = pos.y; } + bool IsAllied(Player* other) + { + int32_t playerNumber = Engine::Get()->GetPlayerNumber(other); + int32_t* diplomacy = (int32_t*)((int64_t)this + 0xd0); + return *(diplomacy + playerNumber) == 2; + } + + bool IsEnemy(Player* other) + { + int32_t playerNumber = Engine::Get()->GetPlayerNumber(other); + int32_t* diplomacy = (int32_t*)((int64_t)this + 0xd0); + return *(diplomacy + playerNumber) == 4; + } + + bool IsNeutral(Player* other) + { + int32_t playerNumber = Engine::Get()->GetPlayerNumber(other); + int32_t* diplomacy = (int32_t*)((int64_t)this + 0xd0); + + //TODO is 0 correct? + return *(diplomacy + playerNumber) == 1; + } + }; //Size=0x93A0 class World @@ -220,8 +244,7 @@ class Map public: int32_t GetTileSize() { - static int32_t tileOffset = 0x5B38; - return *reinterpret_cast<int32_t*>((int64_t)this + tileOffset); + return *reinterpret_cast<int32_t*>((int64_t)this + 0x5B38); } }; //Size=0x5CC8 @@ -281,36 +304,67 @@ public: class UnitData { public: - char pad_0x0000[0x20]; //0x0000 - __int16 Class; //0x0020 - char pad_0x0022[0x26]; //0x0022 - __int16 unk; //0x0048 - __int16 maxHp; //0x004A - char pad_0x004C[0x8]; //0x004C - float collisionX; //0x0054 - float collisionY; //0x0058 - float collisionZ; //0x005C - char pad_0x0060[0x120]; //0x0060 - char* name; //0x0180 -}; //Size=0x0408 + char* GetName() + { + return *reinterpret_cast<char**>(*(uint64_t*)this + 0x848); + } + + Vector3 GetCollision() + { + return *(Vector3*)(*(uint64_t*)this + 0x718); + } + +}; class Unit { +private: + float GetPosX() + { + int32_t position = *reinterpret_cast<int64_t*>((uint64_t)this + 0x1a0) ^ 0x187F64ADC21CDE88 ^ 0x4F019E376DDAD1E5; + return *(float*)(&position); + } + + float GetPosY() + { + int32_t position = *reinterpret_cast<int64_t*>((uint64_t)this + 0x308) ^ 0x51E534524D81CFA6; + return *(float*)(&position); + } + + float GetPosZ() + { + int32_t position = (*reinterpret_cast<int64_t*>((uint64_t)this + 0x3f8) - 0x17258AE0D9C58D92 ) ^ 0x78E0AFEAF822FC61; + return *(float*)(&position); + } + public: - char pad_0x0000[0x10]; //0x0000 - UnitData* pUnitData; //0x0010 - Player* pOwner; //0x0018 - char pad_0x0020[0x70]; //0x0020 - float fHealth; //0x0090 - char pad_0x0094[0x4]; //0x0094 - Vector3 position; - - //When moving sadly height isnt set. When attack it works. + + UnitData* GetUnitData() + { + return reinterpret_cast<UnitData*>((uint64_t)this + 0x10); + } + + Player* GetOwner() + { + return *reinterpret_cast<Player**>((uint64_t)this + 0x18); + } + + Vector3 GetPosition() + { + return Vector3(GetPosX(), GetPosY(), GetPosZ()); + } + + float GetHealth() + { + int32_t position = (*reinterpret_cast<int64_t*>((uint64_t)this + 0x100) + 0x16F41E044E9AB282 - 0x3E3A7DDCA209C1DB); + return *(float*)(&position); + } + Vector3* GetTargetPosition() { - uint64_t actionList = *reinterpret_cast<uint64_t*>((uint64_t)this + 0x288); - if (!actionList){return NULL;} + uint64_t actionList = *reinterpret_cast<uint64_t*>((uint64_t)this + 0x648); + if (!actionList) { return NULL; } uint64_t targetDataWrapper = *reinterpret_cast<uint64_t*>(actionList + 0x10); if (!targetDataWrapper) { return NULL; } uint64_t actionMoveTo = *reinterpret_cast<uint64_t*>(targetDataWrapper); @@ -318,15 +372,7 @@ public: return reinterpret_cast<Vector3*>(actionMoveTo + 0x38); } - - typedef char(__fastcall* fhsMoveToCaller)(Unit* unit, Unit* targetUnit, World* world, int64_t zero, float xPos, float yPos, int zero2); - void MoveTo(World* world, float xPos, float yPos) - { - static fhsMoveToCaller moveUnitCaller = (fhsMoveToCaller)((int64_t)GetModuleHandle(NULL) + 0xc863a0); //outdated and desync - moveUnitCaller(this, 0, world, 0, xPos, yPos, 0); - } - -}; //Size=0x0250 +}; class ObjectManager { |