inkcpp
Loading...
Searching...
No Matches
system.h
1/* Copyright (c) 2024 Julian Benda
2 *
3 * This file is part of inkCPP which is released under MIT license.
4 * See file LICENSE.txt or go to
5 * https://github.com/JBenda/inkcpp for full license details.
6 */
7#pragma once
8
9#include "config.h"
10
11#ifdef INK_ENABLE_UNREAL
12# include "Misc/AssertionMacros.h"
13# include "Misc/CString.h"
14# include "HAL/UnrealMemory.h"
15# include "Hash/CityHash.h"
16
17#endif
18#ifdef INK_ENABLE_STL
19# include <exception>
20# include <stdexcept>
21# include <optional>
22# include <cctype>
23# include <cstdint>
24# include <cstdio>
25# include <cstdarg>
26#endif
27
28// Platform specific defines //
29
30#ifdef INK_ENABLE_UNREAL
31# define inkZeroMemory(buff, len) FMemory::Memset(buff, 0, len)
32# define inkAssert(condition, text, ...) checkf(condition, TEXT(text), ##__VA_ARGS__)
33# define inkFail(text, ...) checkf(false, TEXT(text), ##__VA_ARGS__)
34# define FORMAT_STRING_STR "%hs"
35#else
36# define inkZeroMemory ink::internal::zero_memory
37# define inkAssert ink::ink_assert
38# define inkFail(...) ink::ink_assert(false, __VA_ARGS__)
39# define FORMAT_STRING_STR "%s"
40#endif
41
42namespace ink
43{
47typedef unsigned int uint32_t;
48
51
54
55#ifdef INK_ENABLE_UNREAL
57inline hash_t hash_string(const char* string)
58{
59 return CityHash32(string, FCStringAnsi::Strlen(string));
60}
61#else
62hash_t hash_string(const char* string);
63#endif
64
66typedef unsigned char byte_t;
67
70
72typedef const unsigned char* ip_t;
73
75typedef unsigned int size_t;
76
79
82
84struct list_flag {
85 int16_t list_id;
86 int16_t flag;
87
88 bool operator==(const list_flag& o) const { return list_id == o.list_id && flag == o.flag; }
89
90 bool operator!=(const list_flag& o) const { return ! (*this == o); }
91};
92
94constexpr list_flag null_flag{-1, -1};
96constexpr list_flag empty_flag{-1, 0};
97
98namespace internal
99{
101 static bool is_whitespace(const char* string, bool includeNewline = true)
102 {
103 // Iterate string
104 while (true) {
105 switch (*(string++)) {
106 case 0: return true;
107 case '\n':
108 if (! includeNewline)
109 return false;
110 case '\t':
111 case ' ': continue;
112 default: return false;
113 }
114 }
115 }
116
120 inline bool is_part_of_word(char character) { return isalpha(character) || isdigit(character); }
121
122 inline constexpr bool is_whitespace(char character, bool includeNewline = true)
123 {
124 switch (character) {
125 case '\n':
126 if (! includeNewline)
127 return false;
128 case '\t': [[fallthrough]];
129 case ' ': return true;
130 default: return false;
131 }
132 }
133
134#ifndef INK_ENABLE_UNREAL
136 void zero_memory(void* buffer, size_t length);
137#endif
138} // namespace internal
139
140#ifdef INK_ENABLE_STL
142using ink_exception = std::runtime_error;
143#else
144// Non-STL exception class
145class ink_exception
146{
147public:
148 ink_exception(const char* msg)
149 : _msg(msg)
150 {
151 }
152
153 inline const char* message() const { return _msg; }
154
155private:
156 const char* _msg;
157};
158#endif
159
160// assert
161#ifndef INK_ENABLE_UNREAL
162template<typename... Args>
163void ink_assert(bool condition, const char* msg = nullptr, Args... args)
164{
165 static const char* EMPTY = "";
166 if (msg == nullptr) {
167 msg = EMPTY;
168 }
169 if (! condition) {
170 if constexpr (sizeof...(args) > 0) {
171 char* message = static_cast<char*>(malloc(snprintf(nullptr, 0, msg, args...) + 1));
172 sprintf(message, msg, args...);
173 throw ink_exception(message);
174 } else {
175 throw ink_exception(msg);
176 }
177 }
178}
179
180template<typename... Args>
181[[noreturn]] inline void ink_assert(const char* msg = nullptr, Args... args)
182{
183 ink_assert(false, msg, args...);
184 exit(EXIT_FAILURE);
185}
186#endif
187
188namespace runtime::internal
189{
190 constexpr unsigned abs(int i) { return i < 0 ? -i : i; }
191
192 template<typename T>
193 struct always_false {
194 static constexpr bool value = false;
195 };
196
197 template<bool Con, typename T1, typename T2>
198 struct if_type {
199 using type = T1;
200 };
201
202 template<typename T1, typename T2>
203 struct if_type<false, T1, T2> {
204 using type = T2;
205 };
206
207 template<bool Con, typename T1, typename T2>
208 using if_t = typename if_type<Con, T1, T2>::type;
209
210 template<bool Enable, typename T = void>
211 struct enable_if {
212 };
213
214 template<typename T>
215 struct enable_if<true, T> {
216 using type = T;
217 };
218
219 template<bool Enable, typename T = void>
220 using enable_if_t = typename enable_if<Enable, T>::type;
221} // namespace runtime::internal
222
223
224#ifdef INK_ENABLE_STL
228template<typename T>
229using optional = std::optional<T>;
231constexpr std::nullopt_t nullopt = std::nullopt;
232#else
233struct nullopt_t {
234};
235
236constexpr nullopt_t nullopt;
237
238template<typename T>
239class optional
240{
241public:
242 optional() {}
243
244 optional(nullopt_t) {}
245
246 optional(T&& val)
247 : _has_value{true}
248 , _value{val}
249 {
250 }
251
252 optional(const T& val)
253 : _has_value{true}
254 , _value{val}
255 {
256 }
257
258 const T& operator*() const { return _value; }
259
260 T& operator*() { return _value; }
261
262 const T* operator->() const { return &_value; }
263
264 T* operator->() { return &_value; }
265
266 constexpr bool has_value() const { return _has_value; }
267
268 constexpr T& value()
269 {
270 test_value();
271 return _value;
272 }
273
274 constexpr const T& value() const
275 {
276 test_value();
277 return _value;
278 }
279
280 constexpr operator bool() const { return has_value(); }
281
282 template<typename U>
283 constexpr T value_or(U&& u) const
284 {
285 return _has_value ? _value : static_cast<T>(u);
286 }
287
288 template<typename... Args>
289 T& emplace(Args... args)
290 {
291 _value.~T();
292 return *(new (&_value) T(args...));
293 }
294
295private:
296 void test_value() const
297 {
298 if (! _has_value) {
299 inkFail("Can't access empty optional!");
300 }
301 }
302
303 bool _has_value = false;
304 T _value;
305};
306#endif
307} // namespace ink
Namespace contaning all modules and classes from InkCPP.
Definition choice.h:11
constexpr list_flag null_flag
value of an unset list_flag
Definition system.h:94
unsigned int uint32_t
define basic numeric type
Definition system.h:47
std::optional< T > optional
custom optional implementation for usage if STL is disabled
Definition system.h:229
const hash_t InvalidHash
Invalid hash value.
Definition system.h:53
uint32_t container_t
Used as the unique identifier for an ink container.
Definition system.h:78
unsigned char byte_t
Byte type.
Definition system.h:66
unsigned int size_t
Used for the size of arrays.
Definition system.h:75
uint32_t offset_t
Used to identify an offset in a data table (like a string in the string table)
Definition system.h:69
constexpr std::nullopt_t nullopt
an empty optional
Definition system.h:231
std::runtime_error ink_exception
exception type thrown if something goes wrong
Definition system.h:142
uint32_t thread_t
Used to uniquely identify threads.
Definition system.h:81
constexpr list_flag empty_flag
value representing an empty list
Definition system.h:96
hash_t hash_string(const char *string)
Simple hash for serialization of strings.
Definition system.h:57
const unsigned char * ip_t
Instruction pointer used for addressing within the story instructions.
Definition system.h:72
uint32_t hash_t
Name hash (used for temporary variables)
Definition system.h:50