Hook IBaseUI function.

  1. #include <metahook.h>
  2.  
  3. #include <IBaseUI.h>
  4.  
  5. IBaseUI *g_pBaseUI = ;
  6.  
  7. void (__fastcall *g_pfnCBaseUI_Initialize)(void *pthis, int edx, CreateInterfaceFn *factories, int count) = ;
  8. void (__fastcall *g_pfnCBaseUI_Start)(void *pthis, int edx, struct cl_enginefuncs_s *engineFuncs, int interfaceVersion) = ;
  9. void (__fastcall *g_pfnCBaseUI_Shutdown)(void *pthis, int edx) = ;
  10. int (__fastcall *g_pfnCBaseUI_Key_Event)(void *pthis, int edx, int down, int keynum, const char *pszCurrentBinding) = ;
  11. void (__fastcall *g_pfnCBaseUI_CallEngineSurfaceProc)(void *pthis, int edx, void *hwnd, unsigned int msg, unsigned int wparam, long lparam) = ;
  12. void (__fastcall *g_pfnCBaseUI_Paint)(void *pthis, int edx, int x, int y, int right, int bottom) = ;
  13. void (__fastcall *g_pfnCBaseUI_HideGameUI)(void *pthis, int edx) = ;
  14. void (__fastcall *g_pfnCBaseUI_ActivateGameUI)(void *pthis, int edx) = ;
  15. bool (__fastcall *g_pfnCBaseUI_IsGameUIVisible)(void *pthis, int edx) = ;
  16. void (__fastcall *g_pfnCBaseUI_HideConsole)(void *pthis, int edx) = ;
  17. void (__fastcall *g_pfnCBaseUI_ShowConsole)(void *pthis, int edx) = ;
  18.  
  19. class CBaseUI : public IBaseUI
  20. {
  21. public:
  22. void Initialize(CreateInterfaceFn *factories, int count);
  23. void Start(struct cl_enginefuncs_s *engineFuncs, int interfaceVersion);
  24. void Shutdown(void);
  25. int Key_Event(int down, int keynum, const char *pszCurrentBinding);
  26. void CallEngineSurfaceProc(void *hwnd, unsigned int msg, unsigned int wparam, long lparam);
  27. void Paint(int x, int y, int right, int bottom);
  28. void HideGameUI(void);
  29. void ActivateGameUI(void);
  30. bool IsGameUIVisible(void);
  31. void HideConsole(void);
  32. void ShowConsole(void);
  33. };
  34.  
  35. void CBaseUI::Initialize(CreateInterfaceFn *factories, int count)
  36. {
  37. return g_pfnCBaseUI_Initialize(this, , factories, count);
  38. }
  39.  
  40. void CBaseUI::Start(struct cl_enginefuncs_s *engineFuncs, int interfaceVersion)
  41. {
  42. return g_pfnCBaseUI_Start(this, , engineFuncs, interfaceVersion);
  43. }
  44.  
  45. void CBaseUI::Shutdown(void)
  46. {
  47. return g_pfnCBaseUI_Shutdown(this, );
  48. }
  49.  
  50. int CBaseUI::Key_Event(int down, int keynum, const char *pszCurrentBinding)
  51. {
  52. return g_pfnCBaseUI_Key_Event(this, , down, keynum, pszCurrentBinding);
  53. }
  54.  
  55. void CBaseUI::CallEngineSurfaceProc(void *hwnd, unsigned int msg, unsigned int wparam, long lparam)
  56. {
  57. return g_pfnCBaseUI_CallEngineSurfaceProc(this, , hwnd, msg, wparam, lparam);
  58. }
  59.  
  60. void CBaseUI::Paint(int x, int y, int right, int bottom)
  61. {
  62. return g_pfnCBaseUI_Paint(this, , x, y, right, bottom);
  63. }
  64.  
  65. void CBaseUI::HideGameUI(void)
  66. {
  67. return g_pfnCBaseUI_HideGameUI(this, );
  68. }
  69.  
  70. void CBaseUI::ActivateGameUI(void)
  71. {
  72. return g_pfnCBaseUI_ActivateGameUI(this, );
  73. }
  74.  
  75. bool CBaseUI::IsGameUIVisible(void)
  76. {
  77. return g_pfnCBaseUI_IsGameUIVisible(this, );
  78. }
  79.  
  80. void CBaseUI::HideConsole(void)
  81. {
  82. return g_pfnCBaseUI_HideConsole(this, );
  83. }
  84.  
  85. void CBaseUI::ShowConsole(void)
  86. {
  87. return g_pfnCBaseUI_ShowConsole(this, );
  88. }
  89.  
  90. void BaseUI_InstallHook(void)
  91. {
  92. CreateInterfaceFn EngineCreateInterface = g_pMetaHookAPI->GetEngineFactory();
  93. g_pBaseUI = (IBaseUI *)EngineCreateInterface(BASEUI_INTERFACE_VERSION, );
  94.  
  95. CBaseUI BaseUI;
  96. DWORD *pVFTable = *(DWORD **)&BaseUI;
  97.  
  98. g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_Initialize);
  99. g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_Start);
  100. g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_Shutdown);
  101. g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_Key_Event);
  102. g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_CallEngineSurfaceProc);
  103. g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_Paint);
  104. g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_HideGameUI);
  105. g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_ActivateGameUI);
  106. g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_IsGameUIVisible);
  107. g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[], (void *&)g_pfnCBaseUI_HideConsole);
  108. g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[], (void *&)g_pfnCBaseUI_ShowConsole);
  109. }

[MetaHook] BaseUI hook的更多相关文章

  1. [MetaHook] GameUI hook

    Hook GameUI function. #include <metahook.h> #include <IGameUI.h> IGameUI *g_pGameUI = ; ...

  2. [MetaHook] Surface hook

    Hook ISurface function. #include <metahook.h> #include <vgui/ISurface.h> using namespace ...

  3. [MetaHook] Event Hook

    #include <metahook.h> struct event_hook_t { event_hook_t *next; char *name; void (*pfnEvent)(e ...

  4. [MetaHook] Load large texture from model

    We need hook "GL_LoadTexture" engine function. GL_LOADTEXTURE_SIG from hw.dll(3266) engine ...

  5. svnserver hook python

    在使用中可能会遇到的错误排除 :1.Error: svn: 解析"D:\www\test"出错,或svn: E020024: Error resolving case of 'D: ...

  6. Android Hook技术

    原文:http://blog.csdn.net/u011068702/article/details/53208825 附:Android Hook 全面入侵监听器 第一步.先爆项目demo照片,代码 ...

  7. Frida HOOK微信实现骰子作弊

    由于微信摇骰子的功能在本地进行随机后在发送,所以存在可以hook掉判断骰子数的方法进行修改作弊. 1.frida实现hook java层函数1)写个用来测试的demo,当我们点击按钮的时候会弹出窗口显 ...

  8. java的关闭钩子(Shutdown Hook)

    Runtime.getRuntime().addShutdownHook(shutdownHook);    这个方法的含义说明:        这个方法的意思就是在jvm中增加一个关闭的钩子,当jv ...

  9. IDT HOOK思路整理

    IDT(中断描述符表)分为IRQ(真正的硬件中断)和软件中断(又叫异常). HOOK的思路为,替换键盘中断处理的函数地址为自己的函数地址.这样在键盘驱动和过滤驱动之前就可以截获键盘输入. 思路确定之后 ...

随机推荐

  1. c#.net 使用NPOI导入导出标准Excel (asp.net winform csharp)

    尝试过很多Excel导入导出方法,都不太理想,无意中逛到oschina时,发现了NPOI,无需Office COM组件且不依赖Office,顿时惊为天人,怀着无比激动的心情写下此文. 曾使用过的方法 ...

  2. js document.createElement()的用法 (转)

    document.createElement()的用法 分析代码时,发现自己的盲点--document.createElement(),冲浪一番,总结了点经验. document.createElem ...

  3. .net开发windows服务小结

        今天学习了在.net下创建一个windows服务,总结一下学习心得.     开发环境:visual studio 2012   一.编写程序 (1)创建一个空解决方法 (2)添加一个控制台应 ...

  4. DDL触发器的应用

    一般来说,DML触发器可以监测得到具体对象的具体数据的变更.然而,DDL触发器则能够对一些服务器的行为作出监控,比如我们可以利用DDL触发器来做登录限制啊,做一些日志控制啊之类的. 好,然后简单粗暴上 ...

  5. MySQL用户无法登陆问题

    安装完MySQL后,我们通常添加拥有相应权限的普通用户用来访问数据库.在使用普通用户(假设为tom)本地登录数据库的时候,经常会出现无法登录的情况,但是从其他的mysql客户端却可以登录.在本地使用t ...

  6. SQL Server 2008 R2——PIVOT 行转列 以及聚合函数的选择

    ==================================声明================================== 本文原创,转载在正文中显要的注明作者和出处,并保证文章的完 ...

  7. apache指定的网络名不再可用

    如果Apache的error.log还是出现大量的:Sat Dec 24 17:21:28 2006] [warn] (OS 64)指定的网络名不再可 用. : winnt_accept: Async ...

  8. JQuery中的extend函数

    1.jQuery.fn.extend(object) 扩展 jQuery 元素集来提供新的方法(通常用来制作插件). 例如:增加两个插件方法. jQuery.fn.extend({ check: fu ...

  9. Altium Designer 出现错误提示(警告)adding items to hidden net GND/VCC

    一般出现这个提示,不是错误. 可以取消net 网格标号 这样就不会报这个警告了. 还可以设置规则,不让它报告. 点击确定,但是再次打开工程时有得警告这个错误了.我想,还是取消NET标注.

  10. proteus 运行出错,用户名不可使用中文!

    仿真的时候提示如图提示 cannot open ’c\user\小名\AppData\local\temp\LISA0089.sdf’ 系统用户名不能是中文! 解决办法:重新建立个账户,记得用英文命名 ...