From cdc71b248d67fa5d1ac10a4a35ac3a58f757255e Mon Sep 17 00:00:00 2001 From: BDKPlayer Date: Fri, 31 Jul 2020 16:14:55 +0200 Subject: Working minimal version --- CastleManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CastleManager.cpp') diff --git a/CastleManager.cpp b/CastleManager.cpp index 373d6e5..2b7ab6f 100644 --- a/CastleManager.cpp +++ b/CastleManager.cpp @@ -39,13 +39,13 @@ void CastleManager::OnUnitCreated(Unit* unit) { return; } - Player* owningPlayer = unit->pOwner; + Player* owningPlayer = unit->GetOwner(); if (!owningPlayer || owningPlayer == Engine::Get()->GetLocalPlayer()) { return; } - if (strcmp("CSTL", unit->pUnitData->name) == 0) + if (strcmp("CSTL", unit->GetUnitData()->GetName()) == 0) { std::string message = std::string(owningPlayer->name) + " is building a castle!"; const char* charMessage = message.c_str(); -- cgit v1.2.3 From be9a9b51f2258cceb7cf911c3e6981134c06a552 Mon Sep 17 00:00:00 2001 From: BDKPlayer Date: Sat, 1 Aug 2020 14:27:24 +0200 Subject: Updates more features to current game version: - CastleManager - RelicManager - CustomLoadingScreen --- CastleManager.cpp | 12 ++++++++++-- Core.cpp | 12 +++++------- Engine.cpp | 11 +---------- Engine.h | 1 - InitialiseOffsets.cpp | 6 +----- Offsets.cpp | 13 ++++++------- Offsets.h | 1 - 7 files changed, 23 insertions(+), 33 deletions(-) (limited to 'CastleManager.cpp') diff --git a/CastleManager.cpp b/CastleManager.cpp index 2b7ab6f..6b85e36 100644 --- a/CastleManager.cpp +++ b/CastleManager.cpp @@ -11,6 +11,7 @@ bool warningEnabled = true; int notification = 0; +ThreadSafeQueue localMessages; ThreadSafeQueue teamMessages; ThreadSafeQueue allMessages; @@ -40,7 +41,7 @@ void CastleManager::OnUnitCreated(Unit* unit) return; } Player* owningPlayer = unit->GetOwner(); - if (!owningPlayer || owningPlayer == Engine::Get()->GetLocalPlayer()) + if (!owningPlayer /*|| owningPlayer == Engine::Get()->GetLocalPlayer()*/) { return; } @@ -53,7 +54,7 @@ void CastleManager::OnUnitCreated(Unit* unit) switch (notification) { case 0: - Engine::Get()->PrintNotification(charMessage); + localMessages.push(message); break; case 1: teamMessages.push(message); @@ -69,6 +70,13 @@ void CastleManager::OnUnitCreated(Unit* unit) void CastleManager::OnMenuMainWindow() { + if (!localMessages.isEmpty()) + { + std::string message; + localMessages.pop(message); + Engine::Get()->PrintNotification(message.c_str()); + } + if (!teamMessages.isEmpty()) { std::string message; diff --git a/Core.cpp b/Core.cpp index 318fba2..17f0f03 100644 --- a/Core.cpp +++ b/Core.cpp @@ -82,20 +82,18 @@ void __fastcall OnCreateUnitHook(Registers* registers) Core::Core() { - //printf("Core::Core()\n"); - //onCreateUnitHook.Hook((BYTE*)GetModuleHandle(NULL) + Offsets::createUnitHook, (BYTE*)OnCreateUnitHook, 15); + onCreateUnitHook.Hook((BYTE*)GetModuleHandle(NULL) + Offsets::createUnitHook, (BYTE*)OnCreateUnitHook, 15); FeatureManager* featureManager = FeatureManager::Get(); //featureManager->RegisterFeature(new InitialiseOffsets()); //Register Features here - //featureManager->RegisterFeature(new ResourceInformation()); + featureManager->RegisterFeature(new ResourceInformation()); featureManager->RegisterFeature(new ESP()); featureManager->RegisterFeature(new MinimapText()); - //featureManager->RegisterFeature(new RelicManager()); - //featureManager->RegisterFeature(new CustomLoadingScreen("C:\\wallpaper.jpg")); - //featureManager->RegisterFeature(new PauseManager()); - //featureManager->RegisterFeature(new CastleManager()); + featureManager->RegisterFeature(new RelicManager()); + featureManager->RegisterFeature(new CustomLoadingScreen("C:\\wallpaper.jpg")); + featureManager->RegisterFeature(new CastleManager()); #ifdef _DEBUG featureManager->RegisterFeature(new Debug()); diff --git a/Engine.cpp b/Engine.cpp index 7f797dc..bb3db2a 100644 --- a/Engine.cpp +++ b/Engine.cpp @@ -208,15 +208,6 @@ Player* Engine::GetLocalPlayer() const return *reinterpret_cast(tribePanelInven + Offsets::tribePanelInven_localPlayer); } -// -//Pauses the game -void Engine::PauseGame() const -{ - typedef int64_t(__fastcall* tPauseGame)(CommHandler* CommHandler); - static tPauseGame fPauseGame = (tPauseGame)(base + Offsets::pauseGame); - fPauseGame(Get()->GetGame()->pCommHandler); -} - // //Sends a chat message. Only to be called from rendering thread void Engine::SendChat(const char* message, bool teamchat) const @@ -240,7 +231,7 @@ void Engine::PrintNotification(const char* message) const { typedef void(__fastcall* tPrintNotification) (GameScreen* AVGameScreen, const char* message, int unknown); static tPrintNotification fPrintNotification = (tPrintNotification)(base + Offsets::printNotification); - fPrintNotification(GetMainScreen()->pGameScreen, message, 1); + fPrintNotification(GetMainScreen()->pGameScreen, message, 0); } void Engine::PrintBottomNotification(const char* message, unsigned int hexcolor) const diff --git a/Engine.h b/Engine.h index 692418c..4344e25 100644 --- a/Engine.h +++ b/Engine.h @@ -41,7 +41,6 @@ public: Player* GetPlayerByName(char* playername) const; Player* GetLocalPlayer() const; - void PauseGame() const; void SendChat(const char* message, bool teamchat = false) const; void PrintNotification(const char* message) const; void PrintBottomNotification(const char* message, unsigned int hexcolor) const; diff --git a/InitialiseOffsets.cpp b/InitialiseOffsets.cpp index 4611db8..d626897 100644 --- a/InitialiseOffsets.cpp +++ b/InitialiseOffsets.cpp @@ -57,11 +57,7 @@ void InitialiseOffsets::OnInitialise() printBottomText = Pattern::FindSignature("AoE2DE_s.exe", "48 8B C4 48 83 EC 78 F3 0F 10 05 ? ? ? ? 41"); printBottomText -= base; printf("printBottomText: %x\n", printBottomText); - - pauseGame = Pattern::FindSignature("AoE2DE_s.exe", "48 89 5C 24 ? 55 48 8D 6C 24 ? 48 81 EC ? ? ? ? 80"); - pauseGame -= base; - printf("pauseGame: %x\n", pauseGame); - + sendChat = Pattern::FindSignature("AoE2DE_s.exe", "E8 ? ? ? ? 90 48 8B 05 ? ? ? ? F2") - 0x94; sendChat -= base; printf("sendChat: %x\n", sendChat); diff --git a/Offsets.cpp b/Offsets.cpp index 56695f7..129d0bf 100644 --- a/Offsets.cpp +++ b/Offsets.cpp @@ -22,19 +22,18 @@ namespace Offsets int64_t minimapHookOffset = 0xCB2616; //Functions - int64_t printNotification = 0xca7b10; //48 83 EC 48 48 8B 05 ? ? ? ? 4C 8D //4 - int64_t printBottomText = 0xc914d0; //48 8B C4 48 83 EC 78 F3 0F 10 05 ? ? ? ? 41 //4 - int64_t pauseGame = 0x874620; //48 89 5C 24 ? 55 48 8D 6C 24 ? 48 81 EC ? ? ? ? 80 //3 + int64_t printNotification = 0xCA8AC0; //48 83 EC 48 48 8B 05 ? ? ? ? 4C 8D //4 + int64_t printBottomText = 0xc92480; //48 8B C4 48 83 EC 78 F3 0F 10 05 ? ? ? ? 41 //4 //E8 ? ? ? ? 90 48 8B 05 ? ? ? ? F2 - 0x94 //1 - int64_t sendChat = 0xa158c0; + int64_t sendChat = 0xa16090; - int64_t createUnitHook = 0xeacf60; //48 89 5C 24 ? 48 89 6C 24 ? 57 48 83 EC 20 8B 41 //3 + int64_t createUnitHook = 0xeadf40; //48 89 5C 24 ? 48 89 6C 24 ? 57 48 83 EC 20 8B 41 //4 int64_t playerArrayStart = 0x2a8; //Manual Update //CustomLoadingScreen - int64_t pathToLoadScreen = 0x2012278; // /resources/loading_slash.png - int64_t loadPathToLoadScreen = 0xfe0eae; // x-ref /resources/loading_slash.png + int64_t pathToLoadScreen = 0x2013488; // /resources/loading_slash.png + int64_t loadPathToLoadScreen = 0xfe1ece; // x-ref /resources/loading_slash.png } \ No newline at end of file diff --git a/Offsets.h b/Offsets.h index 74edc51..4530bc0 100644 --- a/Offsets.h +++ b/Offsets.h @@ -18,7 +18,6 @@ namespace Offsets //Functions extern int64_t printNotification; extern int64_t printBottomText; - extern int64_t pauseGame; extern int64_t sendChat; extern int64_t createUnitHook; -- cgit v1.2.3