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"
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"
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"
55#ifdef INK_ENABLE_UNREAL
59 return CityHash32(
string, FCStringAnsi::Strlen(
string));
72typedef const unsigned char*
ip_t;
88 bool operator==(
const list_flag& o)
const {
return list_id == o.list_id && flag == o.flag; }
90 bool operator!=(
const list_flag& o)
const {
return ! (*
this == o); }
101 static bool is_whitespace(
const char*
string,
bool includeNewline =
true)
105 switch (*(
string++)) {
108 if (! includeNewline)
112 default:
return false;
120 inline bool is_part_of_word(
char character) {
return isalpha(character) || isdigit(character); }
122 inline constexpr bool is_whitespace(
char character,
bool includeNewline =
true)
126 if (! includeNewline)
128 case '\t': [[fallthrough]];
129 case ' ':
return true;
130 default:
return false;
134#ifndef INK_ENABLE_UNREAL
136 void zero_memory(
void* buffer,
size_t length);
153 inline const char* message()
const {
return _msg; }
161#ifndef INK_ENABLE_UNREAL
162template<
typename... Args>
163void ink_assert(
bool condition,
const char* msg =
nullptr, Args... args)
165 static const char* EMPTY =
"";
166 if (msg ==
nullptr) {
170 if constexpr (
sizeof...(args) > 0) {
171 char* message =
static_cast<char*
>(malloc(snprintf(
nullptr, 0, msg, args...) + 1));
172 sprintf(message, msg, args...);
180template<
typename... Args>
181[[noreturn]]
inline void ink_assert(
const char* msg =
nullptr, Args... args)
183 ink_assert(
false, msg, args...);
188namespace runtime::internal
190 constexpr unsigned abs(
int i) {
return i < 0 ? -i : i; }
193 struct always_false {
194 static constexpr bool value =
false;
197 template<
bool Con,
typename T1,
typename T2>
202 template<
typename T1,
typename T2>
203 struct if_type<false, T1, T2> {
207 template<
bool Con,
typename T1,
typename T2>
208 using if_t =
typename if_type<Con, T1, T2>::type;
210 template<
bool Enable,
typename T =
void>
215 struct enable_if<true, T> {
219 template<
bool Enable,
typename T =
void>
220 using enable_if_t =
typename enable_if<Enable, T>::type;
231constexpr std::nullopt_t
nullopt = std::nullopt;
258 const T& operator*()
const {
return _value; }
260 T& operator*() {
return _value; }
262 const T* operator->()
const {
return &_value; }
264 T* operator->() {
return &_value; }
266 constexpr bool has_value()
const {
return _has_value; }
274 constexpr const T& value()
const
280 constexpr operator bool()
const {
return has_value(); }
283 constexpr T value_or(U&& u)
const
285 return _has_value ? _value :
static_cast<T
>(u);
288 template<
typename... Args>
289 T& emplace(Args... args)
292 return *(
new (&_value) T(args...));
296 void test_value()
const
299 inkFail(
"Can't access empty optional!");
303 bool _has_value =
false;
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