Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
Buffer.hpp
1#pragma once
2
3#include <EngineCore/Utils/MemoryAllocator.hpp>
4
5#include "Assert.hpp"
6#include "IntTypes.hpp"
7
8namespace Grindstone {
9 class BufferView {
10 public:
11 BufferView() : bufferPtr(nullptr), size(0) {}
12 BufferView(void* bufferPtr, uint64_t size) : bufferPtr(bufferPtr), size(size) {}
13
14 ~BufferView() {
15 bufferPtr = nullptr;
16 size = 0;
17 }
18
19 void* Get() {
20 return bufferPtr;
21 }
22
23 const void* Get() const {
24 return bufferPtr;
25 }
26
27 template<typename T>
28 T* Get() {
29 return static_cast<T*>(bufferPtr);
30 }
31
32 template<typename T>
33 const T* Get() const {
34 return static_cast<const T*>(bufferPtr);
35 }
36
37 uint64_t GetSize() const {
38 return size;
39 }
40
41 protected:
42 void* bufferPtr = nullptr;
43 uint64_t size = 0;
44 };
45
46 class Buffer {
47 public:
48 Buffer() : bufferPtr(nullptr), capacity(0) {}
49 Buffer(uint64_t capacity) : capacity(capacity) {
50 this->bufferPtr = static_cast<Byte*>(Grindstone::Memory::AllocatorCore::AllocateRaw(capacity, alignof(Buffer), "Buffer"));
51 }
52
53 Buffer(void* bufferPtr, const uint64_t capacity) : bufferPtr(static_cast<Byte*>(bufferPtr)), capacity(capacity) {}
54
55 // Copy-Constructor
56 Buffer(const Buffer& other) : capacity(other.capacity) {
57 bufferPtr = static_cast<Byte*>(Grindstone::Memory::AllocatorCore::AllocateRaw(capacity, alignof(Buffer), "Buffer"));
58 memcpy(bufferPtr, other.bufferPtr, capacity);
59 }
60
61 // Move-Constructor
62 Buffer(Buffer&& other) noexcept : capacity(other.capacity), bufferPtr(bufferPtr) {
63 bufferPtr = other.bufferPtr;
64 capacity = other.capacity;
65
66 other.bufferPtr = nullptr;
67 other.capacity = 0;
68 }
69
70 ~Buffer() {
71 Grindstone::Memory::AllocatorCore::Free(bufferPtr);
72 bufferPtr = nullptr;
73 capacity = 0;
74 }
75
76 void ZeroInitialize() {
77 if (bufferPtr) {
78 memset(bufferPtr, 0, capacity);
79 }
80 }
81
82 virtual BufferView GetBufferView(uint64_t segmentOffset, uint64_t segmentSize) {
83 Byte* targetPtr = bufferPtr + segmentOffset;
84 if (targetPtr < bufferPtr) {
85 GS_ASSERT_ENGINE("Start of view is before start of buffer.")
86 return {};
87 }
88
89 if (targetPtr + segmentSize > bufferPtr + capacity) {
90 GS_ASSERT_ENGINE("End of view is after end of buffer.")
91 return {};
92 }
93
94 return {targetPtr, segmentSize};
95 }
96
97 Buffer& operator=(const Buffer& other) {
98 if(this == &other) {
99 return *this;
100 }
101
102 capacity = other.capacity;
103 bufferPtr = static_cast<Byte*>(Grindstone::Memory::AllocatorCore::AllocateRaw(capacity, alignof(Buffer), "Buffer"));
104 memcpy(bufferPtr, other.bufferPtr, capacity);
105 return *this;
106 }
107
108 Buffer& operator=(Buffer&& other) noexcept {
109 if (this == &other) {
110 return *this;
111 }
112
113 if (bufferPtr) {
114 Grindstone::Memory::AllocatorCore::Free(bufferPtr);
115 }
116
117 bufferPtr = other.bufferPtr;
118 capacity = other.capacity;
119
120 other.bufferPtr = nullptr;
121 other.capacity = 0;
122
123 return *this;
124 }
125
126 Byte& operator[](int index) {
127 return bufferPtr[index];
128 }
129
130 Byte operator[](int index) const {
131 return bufferPtr[index];
132 }
133
134 explicit operator bool() const {
135 return bufferPtr != nullptr;
136 }
137
138 void Clear() {
139 if (bufferPtr != nullptr) {
140 Grindstone::Memory::AllocatorCore::Free(bufferPtr);
141 bufferPtr = nullptr;
142 }
143
144 capacity = 0;
145 }
146
147 Byte* Get() {
148 return bufferPtr;
149 }
150
151 const Byte* Get() const {
152 return bufferPtr;
153 }
154
155 uint64_t GetCapacity() const {
156 return capacity;
157 }
158
159 protected:
160 Byte* bufferPtr = nullptr;
161 uint64_t capacity = 0;
162 };
163
164 class ResizableBuffer : public Buffer {
165 public:
166 ResizableBuffer() : Buffer(), currentPtr(nullptr), size(0) {}
167
168 ResizableBuffer(uint64_t capacity) : Buffer() {
169 bufferPtr = static_cast<Byte*>(Grindstone::Memory::AllocatorCore::AllocateRaw(capacity, alignof(ResizableBuffer), "ResizableBuffer"));
170 currentPtr = bufferPtr;
171 this->capacity = capacity;
172 }
173
174 virtual ~ResizableBuffer() {
175 currentPtr = nullptr;
176 size = 0;
177 }
178
179 // Copy-Constructor
180 ResizableBuffer(const ResizableBuffer& other) {
181 capacity = other.capacity;
182 size = other.size;
183
184 bufferPtr = static_cast<Byte*>(Grindstone::Memory::AllocatorCore::AllocateRaw(capacity, alignof(ResizableBuffer), "ResizableBuffer"));
185 currentPtr = other.currentPtr;
186
187 memcpy(bufferPtr, other.bufferPtr, size);
188 }
189
190 // Copy-Constructor
191 ResizableBuffer(ResizableBuffer&& other) noexcept {
192 bufferPtr = other.bufferPtr;
193 currentPtr = other.currentPtr;
194 capacity = other.capacity;
195 size = other.size;
196
197 other.bufferPtr = nullptr;
198 other.currentPtr = nullptr;
199 other.capacity = 0;
200 other.size = 0;
201 }
202
203 virtual BufferView GetBufferView(uint64_t segmentOffset, uint64_t segmentSize) override {
204 Byte* targetPtr = bufferPtr + segmentOffset;
205 if (targetPtr < bufferPtr) {
206 GS_ASSERT_ENGINE("Start of view is before start of buffer.")
207 return BufferView();
208 }
209
210 if (targetPtr + segmentSize > bufferPtr + size) {
211 GS_ASSERT_ENGINE("End of view is after end of used buffer.")
212 return BufferView();
213 }
214
215 return BufferView(targetPtr, segmentSize);
216 }
217
218 void* AddToBuffer(const void* srcPtr, uint64_t srcSize) {
219 if (srcPtr == nullptr) {
220 GS_ASSERT_ENGINE("Source memory is nullptr.")
221 return nullptr;
222 }
223
224 uint64_t spaceLeft = GetSpaceLeft();
225 if (srcSize > spaceLeft) {
226 GS_ASSERT_ENGINE("Source memory size is too small to fit.")
227 return nullptr;
228 }
229
230 memcpy(currentPtr, srcPtr, srcSize);
231 Byte* prevPtr = currentPtr;
232 currentPtr += srcSize;
233 size += srcSize;
234 return prevPtr;
235 }
236
237 uint64_t GetSpaceLeft() const {
238 return capacity - size;
239 }
240
241 uint64_t GetUsedSize() const {
242 return size;
243 }
244
245 protected:
246 Byte* currentPtr = nullptr;
247 uint64_t size = 0;
248 };
249}
Definition Buffer.hpp:9
Definition Buffer.hpp:46
Definition Buffer.hpp:164