NasNas
An intuitive and beginner friendly 2D game framework for C++
Utils.hpp
1 
5 #pragma once
6 
7 #include <algorithm>
8 #include <functional>
9 #include <initializer_list>
10 #include <string>
11 
12 #include <NasNas/core/data/Rect.hpp>
13 
14 namespace ns::utils {
15 
16  namespace path {
17  auto getFilename(const std::string& path) -> std::string;
18  auto getStem(const std::string& path) -> std::string;
19  auto getExtension(const std::string& path) -> std::string;
20  auto getPath(const std::string& path) -> std::string;
21  void removeFilename(std::string& path);
22  }
23 
24  struct bool_switch {
25  bool_switch(std::function<void()> on_true, std::function<void()> on_false);
26  virtual auto operator=(bool value) -> bool_switch&;
27  auto operator=(const bool_switch& other) -> bool_switch&;
28  virtual explicit operator bool() const;
29  protected:
30  bool m_val;
31  std::function<void()> m_on_true;
32  std::function<void()> m_on_false;
33  };
34 
35  auto getRandomFloat(float min, float max) -> float;
36  auto getRandomInt(int min, int max) -> int;
37 
43  auto computeBounds(std::initializer_list<sf::FloatRect> rects) -> ns::FloatRect;
44 
45  template <typename It>
46  auto computeBounds(It begin, It end) -> ns::FloatRect {
47  if (begin == end)
48  return {};
49  float left = begin->left;
50  float top = begin->top;
51  float right = begin->left + begin->width;
52  float bottom = begin->top + begin->height;
53  for (auto it = ++begin; it != end; ++it) {
54  auto& rect = *it;
55  left = std::min(left, rect.left);
56  top = std::min(top, rect.top);
57  right = std::max(right, rect.left + rect.width);
58  bottom = std::max(bottom, rect.top + rect.height);
59  }
60 
61  return {left, top, right-left, bottom-top};
62  }
63 }
auto computeBounds(std::initializer_list< sf::FloatRect > rects) -> ns::FloatRect
Compute the union between multiple FloatRect.