Library to draw overlay on top of game
Project description
Game Overlay SDK
Library to write text messages on top of game window.
Supported Graphical APIs:
- DirectX 11
- DirectX 12
- Vulkan
Supported Architectures:
- x86
- x64
Usage
To draw overlay for fullscreen game you have to hook inside game process before initializing of graphical API, so there are two options to achive it:
- Create suspended process, install hooks and resume threads
- Register a callback for CreateProcess Event, if target process was created - suspend all threads, install hooks and resume all threads( I use WMI to achive it)
Both of these options are implemented, so there are:
def run_process (exe_path, exe_args = "", steam_app_id = None)
def start_monitor (process_name)
Important note: for start_monitor you need to provide executable name exactly like in TaskManager and run target process by yourself while for run_process you need to provide full path to the executable and SDK will run it for you
As soon as DLL was loaded inside game process you are able to call
send_message (message)
To send message and render it on top of game process window For Inter Process Communication I use Memory Mapped Files, so send_message method just sends data to this Memory Mapped File and DLL which was injected to game process reads it.
Important note: message will be showed as soon as game presents new frame and I don't ensure that all your messages will be displayed, for example if you send messages faster than game draws frames only the latest message will be displayed, also game process reads data one time per 200ms(but I use queue in python code to buffer messages, so real rate could be bigger)
Also, there are several methods to control log level of Cpp code:
set_log_level (level) # level here is not related to python's log levels!
enable_monitor_logger ()
disble_monitor_logger ():
enable_dev_logger ()
I recommend to use enable_monitor_logger by default
And method which should be called in the end:
release_resources ()
And I've added python logging handler to write log messages on top of game window
overlay_log_handler = game_overlay_sdk.injector.OvelrayLogHandler ()
Usage with Steam Games
Steam forks game process by default so there are two process and it's impossible to distinguish them and it breaks DLL injection, for run_process DLL will be loaded to the wrong process so no overlay will be drawed while for start_monitor it's almost random, it may hangs if wrong process was selected or may works well
Fortunately there is a way to force Steam to create only one process, we just need to create file steam_appid.txt in game folder, and it should be done only once per game, that's why there is steam_app_id argument in run_process method. You can get app_id here
Examples
How does it look?
How to achive it?
Code:
import argparse
import time
import game_overlay_sdk
import game_overlay_sdk.injector
import threading
import logging
logging.basicConfig (filename = 'test.log', level = logging.WARNING)
logger = logging.getLogger (__name__)
logger.setLevel (logging.INFO)
overlay_log_handler = game_overlay_sdk.injector.OvelrayLogHandler ()
formatter = logging.Formatter ('%(levelname)s:%(message)s')
overlay_log_handler.setFormatter (formatter)
logger.addHandler (overlay_log_handler)
class MessageThread (threading.Thread):
def __init__ (self):
super (MessageThread, self).__init__ ()
self.need_quit = False
def run (self):
i = 0
while not self.need_quit:
logger.info ('Hi from python OverlayLogHandler %d' % i)
i = i + 1
time.sleep (1)
def main ():
parser = argparse.ArgumentParser ()
parser.add_argument ('--exe_path', type = str, help = 'exe path', required = True)
parser.add_argument ('--exe_args', type = str, help = 'exe args', default = '')
parser.add_argument ('--steam_app_id', type = int, help = 'for steam games please provide app_id', required = False)
args = parser.parse_args ()
game_overlay_sdk.injector.enable_monitor_logger ()
game_overlay_sdk.injector.run_process (args.exe_path, args.exe_args, args.steam_app_id)
# start sending messages to overlay
thread = MessageThread ()
thread.start ()
input ("Press Enter to stop...")
thread.need_quit = True
thread.join ()
game_overlay_sdk.injector.release_resources ()
if __name__ == "__main__":
main ()
Command line(I use trial demo of Tomb Raider, for another Steam game you need to change steam_app_id):
python examples\overlay_log_handler.py --exe_path "D:\Steam\steamapps\common\Shadow of the Tomb Raider Trial\SOTTR.exe" --steam_app_id 974630
Example with start_monitor instead run_process:
Code:
import argparse
import time
import game_overlay_sdk
import game_overlay_sdk.injector
import threading
import logging
class MessageThread (threading.Thread):
def __init__ (self):
super (MessageThread, self).__init__ ()
self.need_quit = False
def run (self):
i = 0
while not self.need_quit:
try:
game_overlay_sdk.injector.send_message ('Hi from python %d' % i)
i = i + 1
time.sleep (1)
except game_overlay_sdk.injector.InjectionError as err:
if err.exit_code == game_overlay_sdk.injector.CustomExitCodes.TARGET_PROCESS_IS_NOT_CREATED_ERROR.value:
logging.warning ('target process is not created')
time.sleep (5)
elif err.exit_code == game_overlay_sdk.injector.CustomExitCodes.TARGET_PROCESS_WAS_TERMINATED_ERROR.value:
logging.warning ('target process was stopped')
# in monitor mode we can run process several times so dont need to stop this thread here
i = 0
time.sleep (5)
else:
raise err
def main ():
logging.basicConfig (level = logging.DEBUG)
parser = argparse.ArgumentParser ()
parser.add_argument ('--name', type = str, help = 'process name', required = True)
args = parser.parse_args ()
game_overlay_sdk.injector.enable_monitor_logger ()
game_overlay_sdk.injector.start_monitor (args.name)
# start sending messages to overlay
thread = MessageThread ()
thread.start ()
input ("Press Enter to stop...")
thread.need_quit = True
thread.join ()
game_overlay_sdk.injector.release_resources ()
if __name__ == "__main__":
main ()
Command Line:
python examples\monitor.py --name SOTTR.exe
Important note: with start_monitor you can run target process several times sequentially the only requirement here: dont run several processes at the same time
To get more examples please go to github page
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file game_overlay_sdk-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: game_overlay_sdk-1.0.0-py3-none-any.whl
- Upload date:
- Size: 2.5 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | caa15a8597d31da7304f7ad085d36e6746ebcb06dd401e1123e8415e1ed5a3bb |
|
MD5 | d1b7dd977518cd54ca5861adf76b0618 |
|
BLAKE2b-256 | f85bfb311476012e6ec6de19d8e863cb09bb16f54eb648d40edf30af1629c88f |