blob: 390269cf961622ff79b44462f44f1293a8c3d908 (
plain) (
blame)
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
|
#pragma once
#include <vector>
#include <map>
#include <windows.h>
#include <thread>
#include <chrono>
using namespace std::chrono_literals;
// https://github.com/erayarslan/WriteProcessMemory-Example
// http://stackoverflow.com/q/32798185
// http://stackoverflow.com/q/36018838
// http://stackoverflow.com/q/1387064
class Memory
{
public:
Memory(const std::string& processName);
~Memory();
template<class T>
std::vector<T> ReadData(const std::vector<int>& offsets, int numItems) {
std::vector<T> data;
data.resize(numItems);
for (int i=0; i<5; i++) {
if (ReadProcessMemory(_handle, (LPVOID)ComputeOffset(offsets), &data[0], sizeof(T) * numItems, NULL))
{
return data;
}
// std::this_thread::sleep_for(10ms);
}
ThrowError();
return {};
}
template <class T>
void WriteData(const std::vector<int>& offsets, const std::vector<T>& data) {
for (int i=0; i<5; i++) {
if (WriteProcessMemory(_handle, (LPVOID)ComputeOffset(offsets), &data[0], sizeof(T) * data.size(), NULL)) {
return;
}
// std::this_thread::sleep_for(10ms);
}
ThrowError();
}
private:
void ThrowError();
uintptr_t ComputeOffset(std::vector<int> offsets);
std::map<std::vector<int>, uintptr_t> _computedOffsets;
uintptr_t _baseAddress;
HANDLE _handle;
};
|