aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-simulation/dataloader/NodeTools.hpp
blob: 51e3e8254e84a6d87f75d98f032e30255d5a385c (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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
#pragma once

#include <cstdint>
#include <functional>
#include <optional>
#include <type_traits>

#include <openvic-dataloader/detail/SymbolIntern.hpp>
#include <openvic-dataloader/v2script/AbstractSyntaxTree.hpp>

#include <tsl/ordered_set.h>

#include "openvic-simulation/types/Colour.hpp"
#include "openvic-simulation/types/Date.hpp"
#include "openvic-simulation/types/IndexedMap.hpp"
#include "openvic-simulation/types/OrderedContainers.hpp"
#include "openvic-simulation/types/Vector.hpp"
#include "openvic-simulation/utility/Getters.hpp"
#include "openvic-simulation/utility/TslHelper.hpp"

#define MOV(...) static_cast<std::remove_reference_t<decltype(__VA_ARGS__)>&&>(__VA_ARGS__)
#define FWD(...) static_cast<decltype(__VA_ARGS__)>(__VA_ARGS__)

namespace OpenVic {
   namespace ast {
      using namespace ovdl::v2script::ast;
      using NodeCPtr = Node const*;

      constexpr std::string_view get_type_name(NodeKind kind) {
#define NODE_CASE(Node) \
   case Node: return OpenVic::utility::type_name<ast::Node>();
         switch (kind) {
            using enum NodeKind;
            NODE_CASE(FileTree);
            NODE_CASE(IdentifierValue);
            NODE_CASE(StringValue);
            NODE_CASE(ListValue);
            NODE_CASE(NullValue);
            NODE_CASE(EventStatement);
            NODE_CASE(AssignStatement);
            NODE_CASE(ValueStatement);
         default: ovdl::detail::unreachable();
         }
      }
#undef NODE_CASE
   }

   using name_list_t = std::vector<std::string>;
   std::ostream& operator<<(std::ostream& stream, name_list_t const& name_list);

   template<typename T>
   concept Reservable = requires(T& t, size_t size) {
      { t.size() } -> std::same_as<size_t>;
      t.reserve(size);
   };
   constexpr void reserve_more(Reservable auto& t, size_t size) {
      t.reserve(t.size() + size);
   }

   namespace NodeTools {
      template<typename Fn, typename Return = void, typename... Args>
      concept Functor = requires(Fn&& fn, Args&&... args) {
         { std::invoke(FWD(fn), FWD(args)...) } -> std::same_as<Return>;
      };

      template<typename Fn, typename Return = void, typename... Args>
      concept FunctorConvertible = requires(Fn&& fn, Args&&... args) {
         { std::invoke(FWD(fn), FWD(args)...) } -> std::convertible_to<Return>;
      };

      template<typename Fn, typename... Args>
      concept Callback = Functor<Fn, bool, Args...>;

      template<typename Fn>
      concept NodeCallback = Callback<Fn, ast::NodeCPtr>;

      template<typename Fn>
      concept KeyValueCallback = Callback<Fn, std::string_view, ast::NodeCPtr>;

      template<typename Fn>
      concept LengthCallback = Functor<Fn, std::size_t, std::size_t>;

      template<typename... Args>
      using callback_t = std::function<bool(Args...)>;

      using node_callback_t = callback_t<ast::NodeCPtr>;
      constexpr bool success_callback(ast::NodeCPtr) {
         return true;
      }

      using key_value_callback_t = callback_t<std::string_view, ast::NodeCPtr>;
      constexpr bool key_value_success_callback(std::string_view, ast::NodeCPtr) {
         return true;
      }
      inline bool key_value_invalid_callback(std::string_view key, ast::NodeCPtr) {
         Logger::error("Invalid dictionary key: ", key);
         return false;
      }

      node_callback_t expect_identifier(callback_t<std::string_view> callback);
      node_callback_t expect_string(callback_t<std::string_view> callback, bool allow_empty = false);
      node_callback_t expect_identifier_or_string(callback_t<std::string_view> callback, bool allow_empty = false);

      node_callback_t expect_bool(callback_t<bool> callback);
      node_callback_t expect_int_bool(callback_t<bool> callback);

      node_callback_t expect_int64(callback_t<int64_t> callback, int base = 10);
      node_callback_t expect_uint64(callback_t<uint64_t> callback, int base = 10);

      template<std::signed_integral T>
      NodeCallback auto expect_int(callback_t<T>& callback, int base = 10) {
         return expect_int64([callback](int64_t val) -> bool {
            if (static_cast<int64_t>(std::numeric_limits<T>::lowest()) <= val &&
               val <= static_cast<int64_t>(std::numeric_limits<T>::max())) {
               return callback(val);
            }
            Logger::error(
               "Invalid int: ", val, " (valid range: [", static_cast<int64_t>(std::numeric_limits<T>::lowest()), ", ",
               static_cast<int64_t>(std::numeric_limits<T>::max()), "])"
            );
            return false;
         }, base);
      }
      template<std::signed_integral T>
      NodeCallback auto expect_int(callback_t<T>&& callback, int base = 10) {
         return expect_int(callback, base);
      }

      template<std::integral T>
      NodeCallback auto expect_uint(callback_t<T>& callback, int base = 10) {
         return expect_uint64([callback](uint64_t val) -> bool {
            if (val <= static_cast<uint64_t>(std::numeric_limits<T>::max())) {
               return callback(val);
            }
            Logger::error(
               "Invalid uint: ", val, " (valid range: [0, ", static_cast<uint64_t>(std::numeric_limits<T>::max()), "])"
            );
            return false;
         }, base);
      }
      template<std::integral T>
      NodeCallback auto expect_uint(callback_t<T>&& callback, int base = 10) {
         return expect_uint(callback, base);
      }

      callback_t<std::string_view> expect_fixed_point_str(callback_t<fixed_point_t> callback);
      node_callback_t expect_fixed_point(callback_t<fixed_point_t> callback);
      /* Expect a list of 3 base 10 values, each either in the range [0, 1] or (1, 255], representing RGB components. */
      node_callback_t expect_colour(callback_t<colour_t> callback);
      /* Expect a hexadecimal value representing a colour in ARGB format. */
      node_callback_t expect_colour_hex(callback_t<colour_argb_t> callback);

      callback_t<std::string_view> expect_date_str(callback_t<Date> callback);
      node_callback_t expect_date(callback_t<Date> callback);
      node_callback_t expect_date_string(callback_t<Date> callback);
      node_callback_t expect_date_identifier_or_string(callback_t<Date> callback);
      node_callback_t expect_years(callback_t<Timespan> callback);
      node_callback_t expect_months(callback_t<Timespan> callback);
      node_callback_t expect_days(callback_t<Timespan> callback);

      node_callback_t expect_ivec2(callback_t<ivec2_t> callback);
      node_callback_t expect_fvec2(callback_t<fvec2_t> callback);
      node_callback_t expect_assign(key_value_callback_t callback);

      using length_callback_t = std::function<size_t(size_t)>;
      constexpr size_t default_length_callback(size_t size) {
         return size;
      };

      node_callback_t expect_list_and_length(length_callback_t length_callback, node_callback_t callback);
      node_callback_t expect_list_of_length(size_t length, node_callback_t callback);
      node_callback_t expect_list(node_callback_t callback);
      node_callback_t expect_length(callback_t<size_t> callback);

      node_callback_t expect_key(
         ovdl::symbol<char> key, node_callback_t callback, bool* key_found = nullptr, bool allow_duplicates = false
      );

      node_callback_t expect_key(
         std::string_view key, node_callback_t callback, bool* key_found = nullptr, bool allow_duplicates = false
      );

      node_callback_t expect_dictionary_and_length(length_callback_t length_callback, key_value_callback_t callback);
      node_callback_t expect_dictionary(key_value_callback_t callback);

      struct dictionary_entry_t {
         enum class expected_count_t : uint8_t {
            _MUST_APPEAR = 0b01,
            _CAN_REPEAT = 0b10,

            ZERO_OR_ONE = 0,
            ONE_EXACTLY = _MUST_APPEAR,
            ZERO_OR_MORE = _CAN_REPEAT,
            ONE_OR_MORE = _MUST_APPEAR | _CAN_REPEAT
         } expected_count;
         node_callback_t callback;
         size_t count;

         dictionary_entry_t(expected_count_t new_expected_count, node_callback_t&& new_callback)
            : expected_count { new_expected_count }, callback { MOV(new_callback) }, count { 0 } {}

         constexpr bool must_appear() const {
            return static_cast<uint8_t>(expected_count) & static_cast<uint8_t>(expected_count_t::_MUST_APPEAR);
         }
         constexpr bool can_repeat() const {
            return static_cast<uint8_t>(expected_count) & static_cast<uint8_t>(expected_count_t::_CAN_REPEAT);
         }
      };
      using enum dictionary_entry_t::expected_count_t;

      template<StringMapCase Case>
      using template_key_map_t = template_string_map_t<dictionary_entry_t, Case>;

      using key_map_t = template_key_map_t<StringMapCaseSensitive>;
      using case_insensitive_key_map_t = template_key_map_t<StringMapCaseInsensitive>;

      template<IsOrderedMap Map>
      bool add_key_map_entry(
         Map&& key_map, std::string_view key, dictionary_entry_t::expected_count_t expected_count,
         NodeCallback auto&& callback
      ) {
         if (!key_map.contains(key)) {
            key_map.emplace(key, dictionary_entry_t { expected_count, MOV(callback) });
            return true;
         }
         Logger::error("Duplicate expected dictionary key: ", key);
         return false;
      }

      template<IsOrderedMap Map>
      bool remove_key_map_entry(Map&& key_map, std::string_view key) {
         if (key_map.erase(key) == 0) {
            Logger::error("Failed to find dictionary key to remove: ", key);
            return false;
         }
         return true;
      }

      template<IsOrderedMap Map>
      KeyValueCallback auto dictionary_keys_callback(
         Map&& key_map, KeyValueCallback auto&& default_callback
      ) {
         return [&key_map, default_callback = FWD(default_callback)](std::string_view key, ast::NodeCPtr value) mutable -> bool {
            typename std::remove_reference_t<Map>::iterator it = key_map.find(key);
            if (it == key_map.end()) {
               return default_callback(key, value);
            }
            dictionary_entry_t& entry = it.value();
            if (++entry.count > 1 && !entry.can_repeat()) {
               Logger::error("Invalid repeat of dictionary key: ", key);
               return false;
            }
            if (entry.callback(value)) {
               return true;
            } else {
               Logger::error("Callback failed for dictionary key: ", key);
               return false;
            }
         };
      }

      template<IsOrderedMap Map>
      bool check_key_map_counts(Map&& key_map) {
         bool ret = true;
         for (auto key_entry : mutable_iterator(key_map)) {
            dictionary_entry_t& entry = key_entry.second;
            if (entry.must_appear() && entry.count < 1) {
               Logger::error("Mandatory dictionary key not present: ", key_entry.first);
               ret = false;
            }
            entry.count = 0;
         }
         return ret;
      }

      template<IsOrderedMap Map>
      constexpr bool add_key_map_entries(Map&& key_map) {
         return true;
      }

      template<IsOrderedMap Map, typename... Args>
      bool add_key_map_entries(
         Map&& key_map, std::string_view key, dictionary_entry_t::expected_count_t expected_count,
         NodeCallback auto&& callback, Args&&... args
      ) {
         bool ret = add_key_map_entry(FWD(key_map), FWD(key), expected_count, FWD(callback));
         ret &= add_key_map_entries(FWD(key_map), FWD(args)...);
         return ret;
      }
      template<IsOrderedMap Map>
      NodeCallback auto expect_dictionary_key_map_and_length_and_default(
         Map&& key_map, LengthCallback auto&& length_callback, KeyValueCallback auto&& default_callback
      ) {
         return [length_callback = FWD(length_callback), default_callback = FWD(default_callback), key_map = MOV(key_map)](ast::NodeCPtr node) mutable -> bool {
            bool ret = expect_dictionary_and_length(
               FWD(length_callback), dictionary_keys_callback(key_map, FWD(default_callback))
            )(node);
            ret &= check_key_map_counts(key_map);
            return ret;
         };
      }

      template<IsOrderedMap Map>
      NodeCallback auto expect_dictionary_key_map_and_length(
         Map&& key_map, LengthCallback auto&& length_callback
      ) {
         return expect_dictionary_key_map_and_length_and_default(
            FWD(key_map), FWD(length_callback), key_value_invalid_callback
         );
      }

      template<IsOrderedMap Map>
      NodeCallback auto expect_dictionary_key_map_and_default(
         Map&& key_map, KeyValueCallback auto&& default_callback
      ) {
         return expect_dictionary_key_map_and_length_and_default(
            FWD(key_map), default_length_callback, FWD(default_callback)
         );
      }

      template<StringMapCase Case>
      NodeCallback auto expect_dictionary_key_map(template_key_map_t<Case>&& key_map) {
         return expect_dictionary_key_map_and_length_and_default(
            MOV(key_map), default_length_callback, key_value_invalid_callback
         );
      }

      template<IsOrderedMap Map, typename... Args>
      NodeCallback auto expect_dictionary_key_map_and_length_and_default(
         Map&& key_map, LengthCallback auto&& length_callback, KeyValueCallback auto&& default_callback,
         Args&&... args
      ) {
         // TODO - pass return value back up (part of big key_map_t rewrite?)
         add_key_map_entries(FWD(key_map), FWD(args)...);
         return expect_dictionary_key_map_and_length_and_default(FWD(key_map), FWD(length_callback), FWD(default_callback));
      }

      template<StringMapCase Case = StringMapCaseSensitive, typename... Args>
      NodeCallback auto expect_dictionary_keys_and_length_and_default(
         LengthCallback auto&& length_callback, KeyValueCallback auto&& default_callback, Args&&... args
      ) {
         return expect_dictionary_key_map_and_length_and_default(
            template_key_map_t<Case> {}, FWD(length_callback), FWD(default_callback), FWD(args)...
         );
      }

      template<StringMapCase Case = StringMapCaseSensitive, typename... Args>
      NodeCallback auto expect_dictionary_keys_and_length(LengthCallback auto&& length_callback, Args&&... args) {
         return expect_dictionary_key_map_and_length_and_default(
            template_key_map_t<Case> {}, FWD(length_callback), key_value_invalid_callback, FWD(args)...
         );
      }

      template<StringMapCase Case = StringMapCaseSensitive, typename... Args>
      NodeCallback auto expect_dictionary_keys_and_default(KeyValueCallback auto&& default_callback, Args&&... args) {
         return expect_dictionary_key_map_and_length_and_default(
            template_key_map_t<Case> {}, default_length_callback, FWD(default_callback), FWD(args)...
         );
      }

      template<StringMapCase Case = StringMapCaseSensitive, typename... Args>
      NodeCallback auto expect_dictionary_keys(Args&&... args) {
         return expect_dictionary_key_map_and_length_and_default(
            template_key_map_t<Case> {}, default_length_callback, key_value_invalid_callback, FWD(args)...
         );
      }

      LengthCallback auto reserve_length_callback(Reservable auto& reservable) {
         return [&reservable](size_t size) -> size_t {
            reserve_more(reservable, size);
            return size;
         };
      }
      NodeCallback auto expect_list_reserve_length(Reservable auto& reservable, NodeCallback auto&& callback) {
         return expect_list_and_length(reserve_length_callback(reservable), FWD(callback));
      }
      NodeCallback auto expect_dictionary_reserve_length(Reservable auto& reservable, KeyValueCallback auto&& callback) {
         return expect_dictionary_and_length(reserve_length_callback(reservable), FWD(callback));
      }
      template<IsOrderedMap Map, typename... Args>
      NodeCallback auto expect_dictionary_key_map_reserve_length_and_default(
         Reservable auto& reservable, Map&& key_map, KeyValueCallback auto&& default_callback,
         Args&&... args
      ) {
         return expect_dictionary_key_map_and_length_and_default(
            FWD(key_map), reserve_length_callback(reservable), FWD(default_callback), FWD(args)...
         );
      }
      template<IsOrderedMap Map, typename... Args>
      NodeCallback auto expect_dictionary_key_map_reserve_length(
         Reservable auto& reservable, Map&& key_map, Args&&... args
      ) {
         return expect_dictionary_key_map_and_length(FWD(key_map), reserve_length_callback(reservable), FWD(args)...);
      }
      template<StringMapCase Case = StringMapCaseSensitive, typename... Args>
      NodeCallback auto expect_dictionary_keys_reserve_length_and_default(
         Reservable auto& reservable, KeyValueCallback auto&& default_callback, Args&&... args
      ) {
         return expect_dictionary_keys_and_length_and_default<Case>(
            reserve_length_callback(reservable), FWD(default_callback), FWD(args)...
         );
      }
      template<StringMapCase Case = StringMapCaseSensitive, typename... Args>
      NodeCallback auto expect_dictionary_keys_reserve_length(Reservable auto& reservable, Args&&... args) {
         return expect_dictionary_keys_and_length<Case>(reserve_length_callback(reservable), FWD(args)...);
      }

      node_callback_t name_list_callback(callback_t<name_list_t&&> callback);

      template<typename T, StringMapCase Case>
      Callback<std::string_view> auto expect_mapped_string(
         template_string_map_t<T, Case> const& map, Callback<T> auto&& callback, bool warn = false
      ) {
         return [&map, callback = FWD(callback), warn](std::string_view string) -> bool {
            const typename template_string_map_t<T, Case>::const_iterator it = map.find(string);
            if (it != map.end()) {
               return callback(it->second);
            }
            Logger::warn_or_error(warn, "String not found in map: ", string);
            return warn;
         };
      }

      template<typename T>
      Callback<T> auto assign_variable_callback_cast(auto& var) {
         return [&var](T val) -> bool {
            var = val;
            return true;
         };
      }

      template<typename T>
      requires std::is_integral_v<T> || std::is_enum_v<T>
      callback_t<T> assign_variable_callback_cast(auto& var) {
         return [&var](T val) -> bool {
            var = val;
            return true;
         };
      }

      template<typename T>
      Callback<T> auto assign_variable_callback(T& var) {
         return assign_variable_callback_cast<T, T>(var);
      }

      /* By default this will only allow an optional to be set once. Set allow_overwrite
       * to true to allow multiple assignments, with the last taking precedence. */
      template<typename T>
      Callback<T> auto assign_variable_callback_opt(
         std::optional<T>& var, bool allow_overwrite = false
      ) {
         return [&var, allow_overwrite](T const& val) -> bool {
            if (!allow_overwrite && var.has_value()) {
               Logger::error("Cannot assign value to already-initialised optional!");
               return false;
            }
            var = val;
            return true;
         };
      }

      callback_t<std::string_view> assign_variable_callback_string(std::string& var);

      template<typename T>
      Callback<T&&> auto move_variable_callback(T& var) {
         return [&var](T&& val) -> bool {
            var = std::move(val);
            return true;
         };
      }

      template<typename T>
      requires requires(T& t) { t += T {}; }
      Callback<T> auto add_variable_callback(T& var) {
         return [&var](T val) -> bool {
            var += val;
            return true;
         };
      }

      template<typename T>
      requires requires(T& t) { t++; }
      KeyValueCallback auto increment_callback(T& var) {
         return [&var](std::string_view, ast::NodeCPtr) -> bool {
            var++;
            return true;
         };
      }

      template<typename T>
      Callback<T const&> auto assign_variable_callback_pointer(T const*& var) {
         return [&var](T const& val) -> bool {
            var = &val;
            return true;
         };
      }

      /* By default this will only allow an optional to be set once. Set allow_overwrite
       * to true to allow multiple assignments, with the last taking precedence. */
      template<typename T>
      Callback<T const&> auto assign_variable_callback_pointer_opt(
         std::optional<T const*>& var, bool allow_overwrite = false
      ) {
         return [&var, allow_overwrite](T const& val) -> bool {
            if (!allow_overwrite && var.has_value()) {
               Logger::error("Cannot assign pointer value to already-initialised optional!");
               return false;
            }
            var = &val;
            return true;
         };
      }

      template<typename T, typename U>
      Callback<T> auto vector_callback(std::vector<U>& vec) {
         return [&vec](T val) -> bool {
            vec.emplace_back(std::move(val));
            return true;
         };
      }

      template<typename T>
      Callback<T> auto vector_callback(std::vector<T>& vec) {
         return vector_callback<T, T>(vec);
      }

      template<typename T>
      Callback<T&> auto vector_callback_pointer(std::vector<T*>& vec) {
         return [&vec](T& val) -> bool {
            vec.emplace_back(&val);
            return true;
         };
      }

      template<typename T, typename U, typename... SetArgs>
      Callback<T> auto set_callback(tsl::ordered_set<U, SetArgs...>& set, bool warn = false) {
         return [&set, warn](T val) -> bool {
            if (set.emplace(std::move(val)).second) {
               return true;
            }
            Logger::warn_or_error(warn, "Duplicate set entry: \"", val, "\"");
            return warn;
         };
      }

      template<typename T, typename... SetArgs>
      Callback<T const&> auto set_callback_pointer(tsl::ordered_set<T const*, SetArgs...>& set, bool warn = false) {
         return [&set, warn](T const& val) -> bool {
            if (set.emplace(&val).second) {
               return true;
            }
            Logger::warn_or_error(warn, "Duplicate set entry: \"", &val, "\"");
            return warn;
         };
      }

      template<typename Key, typename Value, typename... MapArgs>
      Callback<Value> auto map_callback(
         tsl::ordered_map<Key, Value, MapArgs...>& map, Key key, bool warn = false
      ) {
         return [&map, key, warn](Value value) -> bool {
            if (map.emplace(key, std::move(value)).second) {
               return true;
            }
            Logger::warn_or_error(warn, "Duplicate map entry with key: \"", key, "\"");
            return warn;
         };
      }

      template<typename Key, typename Value>
      Callback<Value> auto map_callback(
         IndexedMap<Key, Value>& map, Key const* key, bool warn = false
      ) {
         return [&map, key, warn](Value value) -> bool {
            if (key == nullptr) {
               Logger::error("Null key in map_callback");
               return false;
            }
            typename IndexedMap<Key, Value>::value_ref_t map_value = map[*key];
            bool ret = true;
            if (map_value != Value {}) {
               Logger::warn_or_error(warn, "Duplicate map entry with key: \"", key, "\"");
               ret = warn;
            }
            map_value = std::move(value);
            return ret;
         };
      }

      /* Often used for rotations which must be negated due to OpenVic's coordinate system being orientated
       * oppositely to Vic2's. */
      template<typename T = fixed_point_t>
      constexpr Callback<T> auto negate_callback(Callback<T> auto&& callback) {
         return [callback](T val) -> bool {
            return callback(-val);
         };
      }

      /* Often used for map-space coordinates which must have their y-coordinate flipped due to OpenVic using the
       * top-left of the map as the origin as opposed Vic2 using the bottom-left. */
      template<typename T>
      constexpr Callback<vec2_t<T>> auto flip_y_callback(Callback<vec2_t<T>> auto&& callback, T height) {
         return [callback, height](vec2_t<T> val) -> bool {
            val.y = height - val.y;
            return callback(val);
         };
      }

      template<typename T>
      constexpr Callback<T> auto flip_height_callback(Callback<T> auto&& callback, T height) {
         return [callback, height](T val) -> bool {
            return callback(height - val);
         };
      }
   }
}

#undef FWD
#undef MOV