Commit 16d55c5
committed
Static / Dynamic allocator implemented
- Allocator identified at startup
- Completely untested (doesn't compile yet)
- Still need to handle WM_COMMAND, and pass them through to MenuManager
- Some class names are wrong / non-ideal :)1 parent 09840f0 commit 16d55c5Copy full SHA for 16d55c5
12 files changed
+340-17Lines changed: 340 additions & 17 deletions
File tree
Expand file treeCollapse file tree
Open diff view settings
Filter options
- PythonScript
- project
- src
Expand file treeCollapse file tree
Open diff view settings
Collapse file
PythonScript/project/PythonScript2010.vcxproj
Copy file name to clipboardExpand all lines: PythonScript/project/PythonScript2010.vcxproj+7Lines changed: 7 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
238 | 238 | |
239 | 239 | |
240 | 240 | |
| 241 | + |
241 | 242 | |
242 | 243 | |
243 | 244 | |
244 | 245 | |
245 | 246 | |
| 247 | + |
246 | 248 | |
247 | 249 | |
248 | 250 | |
| ||
254 | 256 | |
255 | 257 | |
256 | 258 | |
| 259 | + |
257 | 260 | |
258 | 261 | |
259 | 262 | |
| ||
267 | 270 | |
268 | 271 | |
269 | 272 | |
| 273 | + |
270 | 274 | |
271 | 275 | |
| 276 | + |
272 | 277 | |
273 | 278 | |
274 | 279 | |
275 | 280 | |
| 281 | + |
276 | 282 | |
277 | 283 | |
278 | 284 | |
| ||
286 | 292 | |
287 | 293 | |
288 | 294 | |
| 295 | + |
289 | 296 | |
290 | 297 | |
291 | 298 | |
|
Collapse file
PythonScript/project/PythonScript2010.vcxproj.filters
Copy file name to clipboardExpand all lines: PythonScript/project/PythonScript2010.vcxproj.filters+21Lines changed: 21 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
135 | 135 | |
136 | 136 | |
137 | 137 | |
| 138 | + |
| 139 | + |
| 140 | + |
| 141 | + |
| 142 | + |
| 143 | + |
| 144 | + |
| 145 | + |
| 146 | + |
138 | 147 | |
139 | 148 | |
140 | 149 | |
| ||
218 | 227 | |
219 | 228 | |
220 | 229 | |
| 230 | + |
| 231 | + |
| 232 | + |
| 233 | + |
| 234 | + |
| 235 | + |
| 236 | + |
| 237 | + |
| 238 | + |
| 239 | + |
| 240 | + |
| 241 | + |
221 | 242 | |
222 | 243 | |
223 | 244 | |
|
Collapse file
PythonScript/src/DynamicIDManager.cpp
Copy file name to clipboard+97Lines changed: 97 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
| 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 | + |
Collapse file
PythonScript/src/DynamicIDManager.h
Copy file name to clipboard+61Lines changed: 61 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
| 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 | + |
Collapse file
PythonScript/src/IDAllocator.h
Copy file name to clipboard+12Lines changed: 12 additions & 0 deletions
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| ||
| 1 | + |
| 2 | + |
| 3 | + |
| 4 | + |
| 5 | + |
| 6 | + |
| 7 | + |
| 8 | + |
| 9 | + |
| 10 | + |
| 11 | + |
| 12 | + |
0 commit comments