mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2024-12-29 16:44:13 +08:00
69 lines
1.6 KiB
C
69 lines
1.6 KiB
C
|
#pragma once
|
||
|
|
||
|
// texthook.h
|
||
|
// 8/24/2013 jichi
|
||
|
// Branch: IHF_DLL/IHF_CLIENT.h, rev 133
|
||
|
//
|
||
|
// 8/24/2013 TODO:
|
||
|
// - Clean up this file
|
||
|
// - Reduce global variables. Use namespaces or singleton classes instead.
|
||
|
|
||
|
inline std::atomic<bool (*)(LPVOID addr, hook_stack *stack)> trigger_fun = nullptr;
|
||
|
|
||
|
// jichi 9/25/2013: This class will be used by NtMapViewOfSectionfor
|
||
|
// interprocedure communication, where constructor/destructor will NOT work.
|
||
|
struct CommonSharedMem
|
||
|
{
|
||
|
UINT32 waittime;
|
||
|
UINT32 keeprawtext;
|
||
|
uint64_t hash;
|
||
|
wchar_t text[1000];
|
||
|
bool fontCharSetEnabled;
|
||
|
UINT8 fontCharSet;
|
||
|
wchar_t fontFamily[100];
|
||
|
UINT codepage;
|
||
|
bool fastskipignore;
|
||
|
struct
|
||
|
{
|
||
|
bool use;
|
||
|
ThreadParam tp;
|
||
|
} embedtps[32];
|
||
|
};
|
||
|
class TextHook
|
||
|
{
|
||
|
public:
|
||
|
HookParam hp;
|
||
|
ALIGNPTR(uint64_t address, void *location);
|
||
|
uint64_t savetypeforremove;
|
||
|
bool Insert(HookParam hp);
|
||
|
void Clear();
|
||
|
|
||
|
private:
|
||
|
void Read();
|
||
|
bool InsertHookCode();
|
||
|
bool InsertReadCode();
|
||
|
bool InsertBreakPoint();
|
||
|
bool RemoveBreakPoint();
|
||
|
bool breakpointcontext(PCONTEXT);
|
||
|
void Send(uintptr_t dwDatabase);
|
||
|
int GetLength(hook_stack *stack, uintptr_t in); // jichi 12/25/2013: Return 0 if failed
|
||
|
int HookStrlen(BYTE *data);
|
||
|
void RemoveHookCode();
|
||
|
void RemoveReadCode();
|
||
|
bool waitfornotify(TextBuffer*, ThreadParam tp);
|
||
|
void parsenewlineseperator(TextBuffer*);
|
||
|
volatile DWORD useCount;
|
||
|
ALIGNPTR(uint64_t __1, HANDLE readerThread);
|
||
|
ALIGNPTR(uint64_t __2, HANDLE readerEvent);
|
||
|
bool err;
|
||
|
ALIGNPTR(BYTE __4[140], BYTE trampoline[x64 ? 140 : 40]);
|
||
|
ALIGNPTR(uint64_t __3, BYTE *local_buffer);
|
||
|
};
|
||
|
|
||
|
enum
|
||
|
{
|
||
|
MAX_HOOK = 2500
|
||
|
};
|
||
|
|
||
|
// EOF
|