From eeeb8b539217a822244c4f4b36f0355dd6c323fa Mon Sep 17 00:00:00 2001 From: a2x <45197573+a2x@users.noreply.github.com> Date: Fri, 8 Sep 2023 20:38:52 +1000 Subject: [PATCH] Fetch offsets for entity list, local player and view matrix --- src/main.cpp | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 170b1dd..5457ef5 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -73,6 +73,52 @@ void generate_json_for_type_scope(const sdk::CSchemaSystemTypeScope* type_scope) output << json.dump(4); } +std::uint64_t get_entity_list() noexcept { + std::optional address = process::find_pattern("client.dll", "48 8B 0D ? ? ? ? 48 89 7C 24 ? 8B FA C1 EB"); + + if (!address.has_value()) + return 0; + + return process::resolve_rip_relative_address(address.value()).value_or(0); +} + +std::uint64_t get_local_player() noexcept { + std::optional address = process::find_pattern("client.dll", "48 8B 0D ? ? ? ? F2 0F 11 44 24 ? F2 41 0F 10 00"); + + if (!address.has_value()) + return 0; + + address = process::resolve_rip_relative_address(address.value()); + + if (!address.has_value()) + return 0; + + return process::read_memory(address.value()) + 0x50; +} + +std::uint64_t get_view_matrix() noexcept { + std::optional address = process::find_pattern("client.dll", "48 8D 0D ? ? ? ? 48 C1 E0 06"); + + if (!address.has_value()) + return 0; + + return process::resolve_rip_relative_address(address.value()).value_or(0); +} + +void fetch_offsets() noexcept { + const std::optional client_base = process::get_module_base("client.dll"); + + if (!client_base.has_value()) { + spdlog::error("failed to get client.dll base."); + + return; + } + + spdlog::info("entity list: {:#x}", get_entity_list() - client_base.value()); + spdlog::info("local player controller: {:#x}", get_local_player() - client_base.value()); + spdlog::info("view matrix: {:#x}", get_view_matrix() - client_base.value()); +} + int main() { if (!std::filesystem::exists("generated")) std::filesystem::create_directory("generated"); @@ -102,6 +148,8 @@ int main() { generate_json_for_type_scope(type_scope); } + fetch_offsets(); + spdlog::info("done!"); return 0;