-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathidLauncher.h
64 lines (53 loc) · 1.51 KB
/
idLauncher.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#pragma once
// Windows includes
#include <stdio.h>
#include <string>
#include <iostream>
#include <windows.h>
#include <tchar.h>
#include <Psapi.h>
#include <tlhelp32.h>
// internal includes
#include "INIReader.h"
// library includes
#include <boost/algorithm/string.hpp>
#include <boost/filesystem.hpp>
#include <boost/program_options.hpp>
namespace fs = boost::filesystem;
namespace po = boost::program_options;
using namespace std;
enum ProcessState {
PROCESS_STATE_SLEEP,
PROCESS_STATE_WAKE
};
// color codes
/*
Name FG BG
Black 30 40
Red 31 41
Green 32 42
Yellow 33 43
Blue 34 44
Magenta 35 45
Cyan 36 46
White 37 47
Bright Black 90 100
Bright Red 91 101
Bright Green 92 102
Bright Yellow 93 103
Bright Blue 94 104
Bright Magenta 95 105
Bright Cyan 96 106
Bright White 97 107
*/
#define COLOR_BLACK_FG 30
#define COLOR_BLACK_BG (COLOR_BLACK_FG + 0x10)
#define COLOR_RED_FG 31
#define COLOR_RED_BG (COLOR_RED_FG + 0x10)
#define COLOR_GREEN_FG 32
#define COLOR_GREEN_BG (COLOR_GREEN_FG + 0x10
#define COLOR_WHITE_FG 37
#define COLOR_WHITE_BG (COLOR_GREEN_FG + 0x10)
#define CONFIG_INI "config.ini"
#define DEFAULT_INI "[config]\r\nAutoExit=true\r\n\r\n[patches]\r\nUnsignedManifest=true\r\nChecksumChecks=true\r\nManifestHashes=true\r\nManifestSizes=true\r\nUnrestrictCvarsAndBinds=true\r\nBlockHTTP=true\r\nresource_loadMostRecent=true\r\n"
#define STEAM_LAUNCH_URI "steam://rungameid/782330"