-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemory.hpp
231 lines (207 loc) · 7.36 KB
/
memory.hpp
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
#pragma once
#include <limits>
#include <vector>
#include <map>
#include <functional>
#include "byte.hpp"
template <typename DataType = u8, typename AddressType = u16>
class MappedMemoryValue;
template <typename DataType = u8, typename AddressType = u16>
class MappedMemoryIterator;
template <typename DataType = u8, typename AddressType = u16>
class MappedMemory {
public:
friend class MappedMemoryIterator<DataType, AddressType>;
friend class MappedMemoryValue<DataType, AddressType>;
std::vector<DataType> memory;
std::map<
AddressType,
std::function<DataType(
MappedMemory* const mappedMemory,
const AddressType address
)>
> readFunctions;
std::map<
AddressType,
std::function<void(
MappedMemory* const mappedMemory,
const AddressType address,
const DataType data
)>
> writeFunctions;
void resize(const size_t size) {
memory.resize(size);
}
MappedMemoryIterator<DataType, AddressType> begin() {
return MappedMemoryIterator<DataType, AddressType>(this, 0);
}
MappedMemoryValue<DataType, AddressType> operator[] (
const AddressType address
) {
return MappedMemoryValue<DataType, AddressType>(this, address);
}
MappedMemory(const size_t size) {
resize(size);
readFunctions[std::numeric_limits<AddressType>::max()] = [] (
MappedMemory* const,
const AddressType) {
return DataType();
};
writeFunctions[std::numeric_limits<AddressType>::max()] = [] (
MappedMemory* const,
const AddressType,
const DataType) {
};
}
};
template <typename DataType, typename AddressType>
class MappedMemoryValue {
private:
MappedMemory<DataType, AddressType>* const mappedMemory;
const AddressType valueAddress;
public:
operator DataType() const {
return mappedMemory->readFunctions.lower_bound(valueAddress)
->second(mappedMemory, valueAddress);
}
void operator= (const DataType data) const {
mappedMemory->writeFunctions.lower_bound(valueAddress)
->second(mappedMemory, valueAddress, data);
}
MappedMemoryValue(
decltype(mappedMemory) mappedMemory,
decltype(valueAddress) valueAddress
) : mappedMemory{mappedMemory}, valueAddress{valueAddress} {
}
};
template <typename DataType, typename AddressType>
class MappedMemoryIterator {
private:
MappedMemory<DataType, AddressType>* mappedMemory;
AddressType currentAddress;
public:
void copy(const MappedMemoryIterator& source) {
mappedMemory = source.mappedMemory;
currentAddress = source.currentAddress;
}
MappedMemoryIterator(
decltype(mappedMemory) const mappedMemory,
const AddressType currentAddress
) : mappedMemory{mappedMemory},
currentAddress{currentAddress} {
}
MappedMemoryIterator(const MappedMemoryIterator& source) {
copy(source);
}
MappedMemoryIterator& operator= (const MappedMemoryIterator& source) {
copy(source);
return *this;
}
MappedMemoryValue<DataType, AddressType> operator* () const {
return MappedMemoryValue<DataType, AddressType>(
mappedMemory, currentAddress
);
}
MappedMemoryValue<DataType, AddressType> operator[]
(const AddressType offset) const {
return MappedMemoryValue<DataType, AddressType>(
mappedMemory, currentAddress + offset
);
}
friend bool operator== (
const MappedMemoryIterator& left,
const MappedMemoryIterator& right
) {
return (left.mappedMemory == right.mappedMemory
&& left.currentAddress == right.currentAddress
);
}
friend bool operator!= (
const MappedMemoryIterator& left,
const MappedMemoryIterator& right
) {
return (left.mappedMemory != right.mappedMemory
|| left.currentAddress != right.currentAddress
);
}
friend bool operator> (
const MappedMemoryIterator& left,
const MappedMemoryIterator& right
) {
return left.currentAddress > right.currentAddress;
}
friend bool operator>= (
const MappedMemoryIterator& left,
const MappedMemoryIterator& right
) {
return left.currentAddress >= right.currentAddress;
}
friend bool operator< (
const MappedMemoryIterator& left,
const MappedMemoryIterator& right
) {
return left.currentAddress < right.currentAddress;
}
friend bool operator<= (
const MappedMemoryIterator& left,
const MappedMemoryIterator& right
) {
return left.currentAddress <= right.currentAddress;
}
MappedMemoryIterator& operator++ () {
++currentAddress;
return *this;
}
MappedMemoryIterator& operator-- () {
--currentAddress;
return *this;
}
MappedMemoryIterator operator++ (int) {
auto old {*this};
++currentAddress;
return old;
}
MappedMemoryIterator operator-- (int) {
auto old {*this};
--currentAddress;
return old;
}
MappedMemoryIterator& operator+= (const AddressType offset) {
currentAddress += offset;
return *this;
}
MappedMemoryIterator& operator-= (const AddressType offset) {
currentAddress -= offset;
return *this;
}
friend MappedMemoryIterator operator+ (
const MappedMemoryIterator& left,
const AddressType right
) {
return MappedMemoryIterator(
left.mappedMemory,
left.currentAddress + right);
}
friend MappedMemoryIterator operator+ (
const AddressType left,
const MappedMemoryIterator& right
) {
return MappedMemoryIterator(
right.mappedMemory,
right.currentAddress + left);
}
friend MappedMemoryIterator operator- (
const MappedMemoryIterator& left,
const AddressType right
) {
return MappedMemoryIterator(
left.mappedMemory,
left.currentAddress - right);
}
friend AddressType operator- (
const MappedMemoryIterator& left,
const MappedMemoryIterator& right
) {
return left.currentAddress - right.currentAddress;
}
};