测试合并
Go to file
2019-02-01 09:18:07 -05:00
cmake build system improvements 2018-10-19 15:55:48 -04:00
extensions skip empty sentence 2019-01-30 14:51:08 -05:00
GUI repair stdout flush issue (#85) 2019-02-01 09:18:07 -05:00
include update build 2019-01-31 12:26:11 -05:00
vnrhook update willplus hook 2019-01-30 15:31:35 -05:00
x64libs update build 2019-01-31 12:26:11 -05:00
x86libs split lib folders 2019-01-30 23:54:57 -05:00
.gitattributes Line ending attributes for window LF 2016-12-12 00:50:06 +09:00
.gitignore ignore resource editor files 2019-01-15 04:29:17 -05:00
CMakeLists.txt add cli, move exception handlers and code parsers into host 2019-01-31 11:41:43 -05:00
CMakeSettings.json fix file ends 2018-12-18 16:55:07 -05:00
deploy.ps1 update build 2019-01-31 12:26:11 -05:00
LICENSE add license and update readme 2018-05-20 21:21:37 -04:00
README_ES.md update image 2019-01-28 07:05:29 -05:00
README_JP.md update image 2019-01-28 07:05:29 -05:00
README_SC.md Simplified Chinese translation & README (#83) 2019-01-31 11:59:21 -05:00
README.md Simplified Chinese translation & README (#83) 2019-01-31 11:59:21 -05:00

Textractor

日本語 Español 简体中文

Tutorial Video

Overview

Textractor (a.k.a. NextHooker) is an open-source x86/x64 text hooker for Windows/Wine based off of ITHVNR.

How it looks

Downloads

Releases of Textractor can be found here.

Previous releases of ITHVNR can be found here.

Features

  • Highly extensible
  • Auto hook many game engines (including some not supported by VNR!)
  • Hook text using /H "hook" codes (most AGTH codes supported)
  • Directly extract text using /R "read" codes

Extensions

See my Example Extension project to see how to build an extension.
See the extensions folder for examples of what extensions can do.

Contributing

All contributions are appreciated! Please email (no, I'm not busy!) me at akashmozumdar@gmail.com if you have any questions about the codebase.
You should use the standard process of making a pull request (fork, branch, commit changes, make PR from your branch to my master).
Contributing a translation is easy: just translate the strings in include/text.h as well as this README.

Compiling

Before compiling Textractor, you should get Visual Studio with CMake support, as well as Qt version 5.11
You should then be able to simply open the folder in Visual Studio, and build. Run Textractor.exe.

Project Architecture

The host (see GUI/host folder) injects vnrhook.dll (created from the vnrhook folder) into the target process and connects to it via 2 pipe files.
Host writes to hostPipe, vnrhook writes to hookPipe.
vnrhook waits for the pipe to be connected, then injects a few instructions into any text outputting functions (e.g. TextOut, GetGlyphOutline) that cause their input to be sent through the pipe.
Additional information about hooks is shared through a file view (a.k.a. section object) that is mapped to a reference to the TextHook class.
The text that the host receives through the pipe is then processed a little before being dispatched back to the GUI.
Finally, the GUI dispatches the text to extensions before displaying it.

Developers

If you're on this list and want your link changed let me know.

Special Thanks

  • Everybody adding issues!