summaryrefslogtreecommitdiff
path: root/aoe2hd/include/CodePatcher.h
blob: 1713b217d9ba7bed91ab21700215dc47750c5b8b (plain)
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
#ifndef CODEPATCHER_H
#define CODEPATCHER_H

#include <vector>
#include <map>

extern "C" {
#include "native.h"
}


typedef struct code_patch
{
    unsigned long addr;
    std::vector<unsigned char> old_code;
    std::vector<unsigned char> new_code;
    long new_offset;
    long suspend;
} code_patch;

class CodePatcher
{
public:
    CodePatcher(const native_data& nd);
    virtual ~CodePatcher();
    bool addPatch(const std::string& name,
                  unsigned long addr,
                  const std::vector<unsigned char>& old_code,
                  const std::vector<unsigned char>& new_code,
                  long new_offset = 0);
    void setPatchSuspend(const std::string& name, long doSuspend);
    bool doPatch(const std::string& name, int doUnPatch);
    bool autoPatch(const std::string& name);
    std::string toString();
private:
    const native_data& nd;
    std::map<std::string, code_patch> patch_map;
    bool codePatchExists(const std::string& name)
    {
        return patch_map.find(name) != patch_map.end();
    }
    bool codeCmp(unsigned long addr, std::vector<unsigned char> code);
};

#endif // CODEPATCHER_H