aboutsummaryrefslogtreecommitdiff
path: root/include/openvic-dataloader/v2script/AbstractSyntaxTree.hpp
blob: 8ff910fe70fb6509e6c7595d99437c11d9150b49 (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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
#pragma once

#include <cstddef>
#include <cstdint>
#include <iostream>
#include <memory>
#include <string>
#include <string_view>
#include <type_traits>
#include <utility>
#include <vector>

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

namespace lexy {
   struct nullopt;
}

namespace ovdl::v2script {
   class Parser;
}

#define OVDL_PRINT_FUNC_DEF std::ostream& print(std::ostream& stream, std::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 NodeLocation {
      const char* _begin = nullptr;
      const char* _end = nullptr;

      NodeLocation() = default;
      NodeLocation(const char* pos) : _begin(pos),
                              _end(pos) {}
      NodeLocation(const char* begin, const char* end) : _begin(begin),
                                             _end(end) {}

      NodeLocation(const NodeLocation&) = default;
      NodeLocation& operator=(const NodeLocation&) = default;

      NodeLocation(NodeLocation&&) = default;
      NodeLocation& operator=(NodeLocation&&) = default;

      const char* begin() const { return _begin; }
      const char* end() const { return _end; }

      static inline NodeLocation make_from(const char* begin, const char* end) {
         end++;
         if (begin >= end) return NodeLocation(begin);
         return NodeLocation(begin, end);
      }
   };

   struct Node {
      Node(const Node&) = delete;
      Node& operator=(const Node&) = delete;
      Node(NodeLocation location) : _location(location) {}
      Node(Node&&) = default;
      Node& operator=(Node&&) = default;
      virtual ~Node() = default;

      virtual std::ostream& print(std::ostream& stream, std::size_t indent) const = 0;
      static std::ostream& print_ptr(std::ostream& stream, NodeCPtr node, std::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;

      static constexpr std::string_view get_base_type_static() { return detail::type_name<Node>(); }
      constexpr virtual std::string_view get_base_type() const { return get_base_type_static(); }

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

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

      template<typename T>
      constexpr T* cast_to() {
         if (is_derived_from<T>() || is_type<Node>()) return (static_cast<T*>(this));
         return nullptr;
      }

      template<typename T>
      constexpr const T* const cast_to() const {
         if (is_derived_from<T>() || is_type<Node>()) return (static_cast<const T*>(this));
         return nullptr;
      }

      const NodeLocation location() const { return _location; }

      struct line_col {
         uint32_t line;
         uint32_t column;
      };

   private:
      friend class ::ovdl::v2script::Parser;
      const line_col get_begin_line_col(const Parser& parser) const;
      const line_col get_end_line_col(const Parser& parser) const;

   private:
      NodeLocation _location;
   };

   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);
   }
   inline std::ostream& operator<<(std::ostream& stream, Node::line_col const& val) {
      return stream << '(' << val.line << ':' << val.column << ')';
   }

   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;
      AbstractStringNode();
      AbstractStringNode(std::string&& name);
      AbstractStringNode(NodeLocation location);
      AbstractStringNode(NodeLocation location, std::string&& name);
      OVDL_TYPE_DEFINE_SELF;
      OVDL_RT_TYPE_DEF;
      OVDL_PRINT_FUNC_DEF;
      static constexpr std::string_view get_base_type_static() { return detail::type_name<AbstractStringNode>(); }
      constexpr std::string_view get_base_type() const override { return ::ovdl::detail::type_name<std::decay_t<decltype(*this)>>(); }
   };

#define OVDL_AST_STRING_NODE(NAME)                       \
   struct NAME final : public AbstractStringNode {      \
      NAME();                                          \
      NAME(std::string&& name);                        \
      NAME(lexy::nullopt);                             \
      NAME(NodeLocation location);                     \
      NAME(NodeLocation location, std::string&& name); \
      NAME(NodeLocation location, lexy::nullopt);      \
      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;
      AssignNode(NodeLocation location, 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> {});
      AbstractListNode(NodeLocation location, const std::vector<NodePtr>& statements = std::vector<NodePtr> {});
      OVDL_TYPE_DEFINE_SELF;
      OVDL_RT_TYPE_DEF;
      OVDL_PRINT_FUNC_DEF;
      static constexpr std::string_view get_base_type_static() { return detail::type_name<AbstractListNode>(); }
      constexpr std::string_view get_base_type() const override { return ::ovdl::detail::type_name<std::decay_t<decltype(*this)>>(); }
   };

#define OVDL_AST_LIST_NODE(NAME)                                                                       \
   struct NAME final : public AbstractListNode {                                                      \
      NAME(const std::vector<NodePtr>& statements = std::vector<NodePtr> {});                        \
      NAME(lexy::nullopt);                                                                           \
      NAME(NodeLocation location, const std::vector<NodePtr>& statements = std::vector<NodePtr> {}); \
      NAME(NodeLocation location, lexy::nullopt);                                                    \
      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;
      EventNode(Type type, const std::vector<NodePtr>& statements = {});
      EventNode(NodeLocation location, 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;
      DecisionNode(NodePtr name, const std::vector<NodePtr>& statements = {});
      DecisionNode(NodeLocation location, 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() : Node({}) {}
      EventMtthModifierNode(NodeLocation location) : Node(location) {}
      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;
      ExecutionNode(Type type, NodePtr name, NodePtr init);
      ExecutionNode(NodeLocation location, 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;
      ExecutionListNode(ExecutionNode::Type type, const std::vector<NodePtr>& statements);
      ExecutionListNode(NodeLocation location, 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