aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-simulation/GameAdvancementHook.hpp
blob: 75af718387052bcadab1c4f9c5ef76028c663fe6 (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
#pragma once

#include <chrono>
#include <functional>
#include <vector>
#include "openvic-simulation/utility/Getters.hpp"

namespace OpenVic {
   // Conditionally advances game with provided behaviour
   // Class governs game speed and pause state
   class GameAdvancementHook {
   public:
      using AdvancementFunction = std::function<void()>;
      using RefreshFunction = std::function<void()>;
      using speed_t = int8_t;

      // Minimum number of miliseconds before the simulation advances
      static const std::vector<std::chrono::milliseconds> GAME_SPEEDS;

   private:
      using time_point_t = std::chrono::time_point<std::chrono::high_resolution_clock>;

      time_point_t last_polled_time;
      // A function pointer that advances the simulation, intended to be a capturing
      // lambda or something similar. May need to be reworked later
      AdvancementFunction trigger_function;
      RefreshFunction refresh_function;
      speed_t PROPERTY_CUSTOM_NAME(current_speed, get_simulation_speed);

   public:
      bool is_paused;

      GameAdvancementHook(
         AdvancementFunction tick_function, RefreshFunction update_function, bool start_paused = true, speed_t starting_speed = 0
      );

      void set_simulation_speed(speed_t speed);
      void increase_simulation_speed();
      void decrease_simulation_speed();
      bool can_increase_simulation_speed() const;
      bool can_decrease_simulation_speed() const;
      GameAdvancementHook& operator++();
      GameAdvancementHook& operator--();
      void conditionally_advance_game();
      void reset();
   };
}