Merge pull request #406 from thinkingmaster/master

Some internal changes + xoverlay fix
This commit is contained in:
Jenny White 2018-04-30 19:43:36 +03:00 committed by GitHub
commit b8fda88017
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 50 additions and 75 deletions

View File

@ -38,7 +38,8 @@ target_sources(cathook PRIVATE
"${CMAKE_CURRENT_LIST_DIR}/trace.hpp"
"${CMAKE_CURRENT_LIST_DIR}/velocity.hpp"
"${CMAKE_CURRENT_LIST_DIR}/votelogger.hpp"
"${CMAKE_CURRENT_LIST_DIR}/MiscTemporary.hpp")
"${CMAKE_CURRENT_LIST_DIR}/MiscTemporary.hpp"
"${CMAKE_CURRENT_LIST_DIR}/Options.hpp")
target_include_directories(cathook PRIVATE "${CMAKE_CURRENT_LIST_DIR}")

13
include/Options.hpp Normal file
View File

@ -0,0 +1,13 @@
/*
Created by Jenny White on 29.04.18.
Copyright (c) 2018 nullworks. All rights reserved.
*/
#pragma once
namespace options
{
}

View File

@ -13,11 +13,7 @@
class ConVar;
class IClientEntity;
namespace hacks
{
namespace shared
{
namespace aimbot
namespace hacks::shared::aimbot
{
// Used to store aimbot data to prevent calculating it again
@ -61,5 +57,3 @@ void DoSlowAim(Vector &inputAngle);
bool UpdateAimkey();
float EffectiveTargetingRange();
}
}
}

View File

@ -9,16 +9,10 @@
#include "common.hpp"
namespace hacks
{
namespace shared
{
namespace announcer
namespace hacks::shared::announcer
{
void playsound(const std::string &);
void init();
void shutdown();
}
}
}

View File

@ -10,11 +10,7 @@
class CatVar;
class CUserCmd;
namespace hacks
{
namespace shared
{
namespace antiaim
namespace hacks::shared::antiaim
{
// TODO paste AA from AimTux
@ -35,6 +31,4 @@ extern int safe_space;
void SetSafeSpace(int safespace);
bool ShouldAA(CUserCmd *cmd);
void ProcessUserCmd(CUserCmd *cmd);
}
}
}
}

View File

@ -7,15 +7,12 @@
#pragma once
namespace hacks
{
namespace tf2
{
namespace antibackstab
namespace hacks::tf2::antibackstab
{
extern bool noaa;
void CreateMove();
void PaintTraverse();
}
}
}

View File

@ -13,11 +13,7 @@
#include "ac/antiaim.hpp"
#include "ac/bhop.hpp"
namespace hacks
{
namespace shared
{
namespace anticheat
namespace hacks::shared::anticheat
{
void Accuse(int eid, const std::string &hack, const std::string &details);
@ -27,6 +23,4 @@ void CreateMove();
void ResetPlayer(int index);
void ResetEverything();
}
}
}
}

View File

@ -9,16 +9,10 @@
#include "common.hpp"
namespace hacks
{
namespace tf2
{
namespace antidisguise
namespace hacks::tf2::antidisguise
{
extern CatVar enabled;
void Draw();
}
}
}

View File

@ -7,15 +7,9 @@
#pragma once
namespace hacks
{
namespace tf2
{
namespace autobackstab
namespace hacks::tf2::autobackstab
{
void CreateMove();
const Vector GetWorldSpaceCenter(CachedEntity *ent);
}
}
}

View File

@ -6,13 +6,8 @@
*/
#pragma once
namespace hacks
{
namespace shared
{
namespace deadringer
namespace hacks::shared::deadringer
{
void CreateMove();
}
}
}

View File

@ -9,13 +9,8 @@
#include "common.hpp"
namespace hacks
{
namespace tf
{
namespace autodetonator
namespace hacks::tf::autodetonator
{
void CreateMove();
}
}
}

View File

@ -31,7 +31,8 @@ target_sources(cathook PRIVATE
"${CMAKE_CURRENT_LIST_DIR}/ucccccp_cmds.cpp"
"${CMAKE_CURRENT_LIST_DIR}/velocity.cpp"
"${CMAKE_CURRENT_LIST_DIR}/votelogger.cpp"
"${CMAKE_CURRENT_LIST_DIR}/MiscTemporary.cpp")
"${CMAKE_CURRENT_LIST_DIR}/MiscTemporary.cpp"
"${CMAKE_CURRENT_LIST_DIR}/Options.cpp")
add_subdirectory(core)
add_subdirectory(classinfo)

8
src/Options.cpp Normal file
View File

@ -0,0 +1,8 @@
/*
Created by Jenny White on 29.04.18.
Copyright (c) 2018 nullworks. All rights reserved.
*/
#include "Options.hpp"
#include "core/cvwrapper.hpp"

View File

@ -49,7 +49,9 @@ DEFINE_HOOKED_METHOD(SDL_GL_SwapWindow, void, SDL_Window *window)
}
{
PROF_SECTION(SWAPWINDOW_tf2);
//SDL_GL_MakeCurrent(window, tf2_sdl);
#if EXTERNAL_DRAWING
SDL_GL_MakeCurrent(window, tf2_sdl);
#endif
original::SDL_GL_SwapWindow(window);
// glXMakeContextCurrent(wminfo.info.x11.display,
// wminfo.info.x11.window,

View File

@ -77,8 +77,8 @@ void initialize()
logging::Info("Xoverlay initialized");
}
xoverlay_show();
context = SDL_GL_CreateContext(sdl_hooks::window);
#else
//context = SDL_GL_CreateContext(sdl_hooks::window);
glClearColor(1.0, 0.0, 0.0, 0.5);
glewExperimental = GL_TRUE;
glewInit();
@ -159,10 +159,9 @@ void draw_begin()
PROF_SECTION(DRAWEX_draw_begin);
#if EXTERNAL_DRAWING
xoverlay_draw_begin();
#else
{
PROF_SECTION(draw_begin__SDL_GL_MakeCurrent);
//SDL_GL_MakeCurrent(sdl_hooks::window, context);
// SDL_GL_MakeCurrent(sdl_hooks::window, context);
}
#endif
{
@ -179,12 +178,12 @@ void draw_end()
PROF_SECTION(draw_end__glez_end);
glez_end();
}
{
PROF_SECTION(draw_end__SDL_GL_MakeCurrent);
//SDL_GL_MakeCurrent(sdl_hooks::window, nullptr);
}
#if EXTERNAL_DRAWING
xoverlay_draw_end();
{
PROF_SECTION(draw_end__SDL_GL_MakeCurrent);
SDL_GL_MakeCurrent(sdl_hooks::window, nullptr);
}
#endif
}
}