aboutsummaryrefslogtreecommitdiff
path: root/include/openvic-dataloader/v2script/AbstractSyntaxTree.hpp
blob: 7b382fd226f1c31c2440720e7e244a9b1bab88d4 (plain) (blame)
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
#pragma once

#include <iostream>
#include <memory>
#include <optional>
#include <string>
#include <string_view>
#include <type_traits>
#include <utility>
#include <vector>

#include <openvic-dataloader/detail/SelfType.hpp>
#include <openvic-dataloader/detail/TypeName.hpp>

#define OVDL_PRINT_FUNC_DEF std::ostream& print(std::ostream& stream, size_t indent) const override

// defines get_type_static and get_type for string type naming
#define OVDL_RT_TYPE_DEF                                                                              \
   static constexpr std::string_view get_type_static() { return ::ovdl::detail::type_name<type>(); } \
   constexpr std::string_view get_type() const override { return ::ovdl::detail::type_name<std::decay_t<decltype(*this)>>(); }

// defines type for self-class referencing
#define OVDL_TYPE_DEFINE_SELF                                                                                \
   struct _self_type_tag {};                                                                                \
   constexpr auto _self_type_helper()->decltype(::ovdl::detail::Writer<_self_type_tag, decltype(this)> {}); \
   using type = ::ovdl::detail::Read<_self_type_tag>;

namespace ovdl::v2script::ast {

   struct Node;
   using NodePtr = Node*;
   using NodeCPtr = const Node*;
   using NodeUPtr = std::unique_ptr<Node>;

   struct Node {
      Node(const Node&) = delete;
      Node& operator=(const Node&) = delete;
      Node() = default;
      Node(Node&&) = default;
      Node& operator=(Node&&) = default;
      virtual ~Node() = default;

      virtual std::ostream& print(std::ostream& stream, size_t indent) const = 0;
      static std::ostream& print_ptr(std::ostream& stream, NodeCPtr node, size_t indent);
      explicit operator std::string() const;

      static constexpr std::string_view get_type_static() { return detail::type_name<Node>(); }
      constexpr virtual std::string_view get_type() const = 0;

      template<typename T>
      constexpr bool is_type() const {
         return get_type().compare(detail::type_name<T>()) == 0;
      }

      template<typename T>
      constexpr std::optional<T&> cast_to() {
         if (is_type<T>()) return static_cast<T>(*this);
         return std::nullopt;
      }
   };

   inline std::ostream& operator<<(std::ostream& stream, Node const& node) {
      return node.print(stream, 0);
   }
   inline std::ostream& operator<<(std::ostream& stream, NodeCPtr node) {
      return Node::print_ptr(stream, node, 0);
   }

   template<class T, class... Args>
   NodePtr make_node_ptr(Args&&... args) {
      if constexpr (std::is_pointer_v<NodePtr>) {
         return new T(std::forward<Args>(args)...);
      } else {
         return NodePtr(new T(std::forward<Args>(args)...));
      }
   }

   template<typename To, typename From>
   To& cast_node_ptr(const From& from) {
      if constexpr (std::is_pointer_v<NodePtr>) {
         return *static_cast<To*>(from);
      } else {
         return *static_cast<To*>(from.get());
      }
   }

   template<typename To, typename From>
   const To& cast_node_cptr(const From& from) {
      if constexpr (std::is_pointer_v<NodePtr>) {
         return *static_cast<const To*>(from);
      } else {
         return *static_cast<const To*>(from.get());
      }
   }

   void copy_into_node_ptr_vector(const std::vector<NodePtr>& source, std::vector<NodeUPtr>& dest);

   struct AbstractStringNode : public Node {
      std::string _name;
      explicit AbstractStringNode(std::string&& name);
      OVDL_TYPE_DEFINE_SELF;
      OVDL_RT_TYPE_DEF;
      OVDL_PRINT_FUNC_DEF;
   };

#define OVDL_AST_STRING_NODE(NAME)                  \
   struct NAME final : public AbstractStringNode { \
      explicit NAME(std::string&& name);          \
      OVDL_TYPE_DEFINE_SELF;                      \
      OVDL_RT_TYPE_DEF;                           \
      OVDL_PRINT_FUNC_DEF;                        \
   }

   // Value Expression Nodes
   OVDL_AST_STRING_NODE(IdentifierNode);
   OVDL_AST_STRING_NODE(StringNode);

   // Assignment Nodes
   OVDL_AST_STRING_NODE(FactorNode);
   OVDL_AST_STRING_NODE(MonthNode);
   OVDL_AST_STRING_NODE(NameNode);
   OVDL_AST_STRING_NODE(FireOnlyNode);
   OVDL_AST_STRING_NODE(IdNode);
   OVDL_AST_STRING_NODE(TitleNode);
   OVDL_AST_STRING_NODE(DescNode);
   OVDL_AST_STRING_NODE(PictureNode);
   OVDL_AST_STRING_NODE(IsTriggeredNode);

#undef OVDL_AST_STRING_NODE

   struct AssignNode final : public Node {
      std::string _name;
      NodeUPtr _initializer;
      explicit AssignNode(NodeCPtr name, NodePtr init);
      OVDL_TYPE_DEFINE_SELF;
      OVDL_RT_TYPE_DEF;
      OVDL_PRINT_FUNC_DEF;
   };

   struct AbstractListNode : public Node {
      std::vector<NodeUPtr> _statements;
      AbstractListNode(const std::vector<NodePtr>& statements = std::vector<NodePtr> {});
      OVDL_TYPE_DEFINE_SELF;
      OVDL_RT_TYPE_DEF;
      OVDL_PRINT_FUNC_DEF;
   };

#define OVDL_AST_LIST_NODE(NAME)                                                         \
   struct NAME final : public AbstractListNode {                                        \
      explicit NAME(const std::vector<NodePtr>& statements = std::vector<NodePtr> {}); \
      OVDL_TYPE_DEFINE_SELF;                                                           \
      OVDL_RT_TYPE_DEF;                                                                \
      OVDL_PRINT_FUNC_DEF;                                                             \
   }

   OVDL_AST_LIST_NODE(FileNode);
   OVDL_AST_LIST_NODE(ListNode);

   OVDL_AST_LIST_NODE(ModifierNode);
   OVDL_AST_LIST_NODE(MtthNode);
   OVDL_AST_LIST_NODE(EventOptionNode);
   OVDL_AST_LIST_NODE(BehaviorListNode);
   OVDL_AST_LIST_NODE(DecisionListNode);

#undef OVDL_AST_LIST_NODE

   struct EventNode final : public Node {
      enum class Type {
         Country,
         Province
      } _type;
      std::vector<NodeUPtr> _statements;
      explicit EventNode(Type type, const std::vector<NodePtr>& statements = {});
      OVDL_TYPE_DEFINE_SELF;
      OVDL_RT_TYPE_DEF;
      OVDL_PRINT_FUNC_DEF;
   };

   struct DecisionNode final : public Node {
      NodeUPtr _name;
      std::vector<NodeUPtr> _statements;
      explicit DecisionNode(NodePtr name, const std::vector<NodePtr>& statements = {});
      OVDL_TYPE_DEFINE_SELF;
      OVDL_RT_TYPE_DEF;
      OVDL_PRINT_FUNC_DEF;
   };

   struct EventMtthModifierNode final : public Node {
      NodeUPtr _factor_value;
      std::vector<NodeUPtr> _statements;
      EventMtthModifierNode() {}
      OVDL_TYPE_DEFINE_SELF;
      OVDL_RT_TYPE_DEF;
      OVDL_PRINT_FUNC_DEF;
   };

   // Packed single case
   struct ExecutionNode final : public Node {
      enum class Type {
         Effect,
         Trigger
      } _type;
      NodeUPtr _name;
      NodeUPtr _initializer;
      explicit ExecutionNode(Type type, NodePtr name, NodePtr init);
      OVDL_TYPE_DEFINE_SELF;
      OVDL_RT_TYPE_DEF;
      OVDL_PRINT_FUNC_DEF;
   };

   struct ExecutionListNode final : public Node {
      ExecutionNode::Type _type;
      std::vector<NodeUPtr> _statements;
      explicit ExecutionListNode(ExecutionNode::Type type, const std::vector<NodePtr>& statements);
      OVDL_TYPE_DEFINE_SELF;
      OVDL_RT_TYPE_DEF;
      OVDL_PRINT_FUNC_DEF;
   };

}

#undef OVDL_PRINT_FUNC_DECL
#undef OVDL_PRINT_FUNC_DEF
#undef OVDL_TYPE_DEFINE_SELF