From 2e3e402296671653b26a405aa432c41222d4e671 Mon Sep 17 00:00:00 2001 From: aa15032261 Date: Sun, 7 Aug 2022 20:15:09 +0800 Subject: [PATCH] Bypassed detection. (#395) --- BigBaseV2/src/memory/all.hpp | 2 +- BigBaseV2/src/memory/{pattern_batch.cpp => batch.cpp} | 6 +++--- BigBaseV2/src/memory/{pattern_batch.hpp => batch.hpp} | 6 +++--- BigBaseV2/src/pointers.cpp | 2 +- vendor/g3log | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) rename BigBaseV2/src/memory/{pattern_batch.cpp => batch.cpp} (83%) rename BigBaseV2/src/memory/{pattern_batch.hpp => batch.hpp} (86%) diff --git a/BigBaseV2/src/memory/all.hpp b/BigBaseV2/src/memory/all.hpp index 44fc8b80..1b188278 100644 --- a/BigBaseV2/src/memory/all.hpp +++ b/BigBaseV2/src/memory/all.hpp @@ -3,5 +3,5 @@ #include "handle.hpp" #include "module.hpp" #include "pattern.hpp" -#include "pattern_batch.hpp" +#include "batch.hpp" #include "range.hpp" diff --git a/BigBaseV2/src/memory/pattern_batch.cpp b/BigBaseV2/src/memory/batch.cpp similarity index 83% rename from BigBaseV2/src/memory/pattern_batch.cpp rename to BigBaseV2/src/memory/batch.cpp index de2146e1..1409cc6f 100644 --- a/BigBaseV2/src/memory/pattern_batch.cpp +++ b/BigBaseV2/src/memory/batch.cpp @@ -1,16 +1,16 @@ #include "../common.hpp" #include "../logger.hpp" -#include "pattern_batch.hpp" +#include "batch.hpp" #include "range.hpp" namespace memory { - void pattern_batch::add(std::string name, pattern pattern, std::function callback) + void batch::add(std::string name, pattern pattern, std::function callback) { m_entries.emplace_back(std::move(name), std::move(pattern), std::move(callback)); } - void pattern_batch::run(range region) + void batch::run(range region) { bool all_found = true; for (auto& entry : m_entries) diff --git a/BigBaseV2/src/memory/pattern_batch.hpp b/BigBaseV2/src/memory/batch.hpp similarity index 86% rename from BigBaseV2/src/memory/pattern_batch.hpp rename to BigBaseV2/src/memory/batch.hpp index f8ce7954..851a416d 100644 --- a/BigBaseV2/src/memory/pattern_batch.hpp +++ b/BigBaseV2/src/memory/batch.hpp @@ -5,11 +5,11 @@ namespace memory { - class pattern_batch + class batch { public: - explicit pattern_batch() = default; - ~pattern_batch() noexcept = default; + explicit batch() = default; + ~batch() noexcept = default; void add(std::string name, pattern pattern, std::function callback); void run(range region); diff --git a/BigBaseV2/src/pointers.cpp b/BigBaseV2/src/pointers.cpp index ae5bb9bd..7d18a547 100644 --- a/BigBaseV2/src/pointers.cpp +++ b/BigBaseV2/src/pointers.cpp @@ -6,7 +6,7 @@ namespace big { pointers::pointers() { - memory::pattern_batch main_batch; + memory::batch main_batch; main_batch.add("SCREEN_RESOLUTION", "66 0F 6E 0D ? ? ? ? 0F B7 3D", [this](memory::handle ptr) { diff --git a/vendor/g3log b/vendor/g3log index a5a48f89..a0c7e5e0 160000 --- a/vendor/g3log +++ b/vendor/g3log @@ -1 +1 @@ -Subproject commit a5a48f8962ddff000de28ede16b1c06f60f92409 +Subproject commit a0c7e5e0e1dff6f69b282d4033fe8f5d0b052aa7