2
0
mirror of https://github.com/Thracky/GlosSI.git synced 2024-11-09 07:10:28 +00:00
GlosSI-fork/SteamTarget/SteamTargetRenderer.h

121 lines
2.6 KiB
C
Raw Normal View History

2016-11-18 00:40:14 +00:00
/*
Copyright 2016 Peter Repukat - FlatspotSoftware
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
2016-11-18 00:40:14 +00:00
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
2016-11-18 00:22:07 +00:00
#pragma once
#include <Windows.h>
#include <dwmapi.h>
#include <SFML\System.hpp>
#include <SFML\Graphics.hpp>
#include <iostream>
#include <thread>
#include <QApplication>
2016-11-18 00:22:07 +00:00
#include <QTimer>
#include <QProcess>
#include <QBuffer>
#include <QDatastream>
#include <QSharedmemory>
#include <QSettings>
#include <QCoreApplication>
#include <QDir>
#include <psapi.h>
2016-11-18 00:22:07 +00:00
#include "VirtualControllerThread.h"
#include <atomic>
class SteamTargetRenderer : public QApplication
2016-11-18 00:22:07 +00:00
{
Q_OBJECT
public:
SteamTargetRenderer(int& argc, char** argv);
2016-11-18 00:22:07 +00:00
~SteamTargetRenderer();
void run();
2016-11-18 00:22:07 +00:00
private:
void stop();
void getSteamOverlay();
void RunSfWindowLoop();
void makeSfWindowTransparent(sf::RenderWindow& window);
void drawDebugEdges();
void hookBindings();
void loadLogo();
std::atomic<bool> bRunLoop = true;
2016-11-18 00:22:07 +00:00
bool bUseDesktopConfig = false;
bool bDrawDebugEdges = false;
2016-11-18 00:22:07 +00:00
bool bDrawOverlay = true;
bool bVsync = false;
int iRefreshRate = 30;
2016-11-18 00:22:07 +00:00
sf::CircleShape sfCshape;
sf::RenderWindow sfWindow;
std::thread renderThread;
HWND consoleHwnd;
HMODULE hmodGameOverlayRenderer = nullptr;
2016-11-20 08:19:58 +00:00
#ifdef _AMD64_
WCHAR* overlayModuleName = L"GameOverlayRenderer64.dll";
2016-11-20 08:19:58 +00:00
#else
WCHAR* overlayModuleName = L"GameOverlayRenderer.dll";
2016-11-20 08:19:58 +00:00
#endif
static std::atomic<bool> overlayOpen;
static HHOOK hook;
static LRESULT WINAPI HookCallback(int nCode, WPARAM wParam, LPARAM lParam);
2017-02-05 00:39:47 +00:00
HWND hwForeGroundWindow = nullptr;
2016-11-18 00:22:07 +00:00
bool bNeedFocusSwitch = false;
VirtualControllerThread controllerThread;
2016-11-18 00:22:07 +00:00
bool bEnableControllers = true;
2016-11-18 00:22:07 +00:00
static std::atomic<bool> bHookSteam;
QTimer updateTimer;
std::unique_ptr<sf::Texture> spriteTexture;
sf::Sprite backgroundSprite;
static BOOL WINAPI ConsoleCtrlCallback(_In_ DWORD dwCtrlType);
const QString LaunchGame = "LaunchGame";
const QString LaunchedProcessFinished = "LaunchedProcessFinished";
const QString IsSteamHooked = "IsSteamHooked";
const QStringList defaultSharedMemData = QStringList()
<< LaunchGame
<< ""
<< ""
<< LaunchedProcessFinished
<< "0"
<< IsSteamHooked
<< "-1";
2016-11-18 00:22:07 +00:00
private slots:
void launchApp();
void checkSharedMem();
2016-11-18 00:22:07 +00:00
};