blob: da3cd02fbc4ff0b4dfccc0bb6483f5d9b9068e9e (
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
46
47
48
49
50
51
52
53
54
55
|
#include <sstream>
#include "UnkCode.h"
using namespace std;
UnkCode::UnkCode()
{
code = 0;
}
UnkCode::UnkCode(unsigned char* byte)
{
code = 0;
Parse(byte);
}
UnkCode::UnkCode(unsigned char code, bool)
{
SetCode(code);
}
// Getters / Setters
unsigned char UnkCode::GetCode()
{
return code;
}
void UnkCode::SetCode(unsigned char value)
{
code = value;
}
// Re-implemented
string UnkCode::GenAsm()
{
stringstream tmpAsmOut;
tmpAsmOut << "db $" << hex << (short)code;
return tmpAsmOut.str();
}
bool UnkCode::Parse(unsigned char* byte)
{
code = byte[0];
return true;
}
bool UnkCode::IsValid(unsigned char* byte)
{
return true;
}
unsigned int UnkCode::Arguments()
{
return 0;
}
|