inkcpp
Loading...
Searching...
No Matches
config.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#ifdef INKCPP_API
10# define INK_ENABLE_UNREAL
11#elif INKCPP_BUILD_CLIB
12# define INK_ENABLE_CSTD
13#else
14# define INK_ENABLE_STL
15# define INK_ENABLE_CSTD
16#endif
17
18// Only turn on if you have json.hpp and you want to use it with the compiler
19// #define INK_EXPOSE_JSON
20
21namespace ink::config
22{
26static constexpr int limitGlobalVariables = -50;
27static constexpr int limitGlobalVariableObservers = -10;
28static constexpr int limitThreadDepth = -10;
29static constexpr int limitEvalStackDepth = -20;
30static constexpr int limitContainerDepth = -20;
35static constexpr int limitEditableLists = -5;
37static constexpr int limitActiveTags = -10;
38// temporary variables and callstack;
39static constexpr int limitRuntimeStack = -20;
40// references and callstack
41static constexpr int limitReferenceStack = -20;
42// max number of elements in one output (a string is one element)
43// no dynamic support now! (FIXME)
44static constexpr int limitOutputSize = 200;
45// max number of choices per choice
46static constexpr int maxChoices = -10;
47// max number of list types, and there total amount of flags
48static constexpr int maxListTypes = -20;
49static constexpr int maxFlags = -200;
50// number of max initelized lists
51static constexpr int maxLists = -50;
52static constexpr int maxArrayCallArity = 10;
53} // namespace ink::config