aboutsummaryrefslogtreecommitdiffstats
path: root/include/components
diff options
context:
space:
mode:
Diffstat (limited to 'include/components')
-rw-r--r--include/components/player.hpp9
-rw-r--r--include/components/point.hpp9
-rw-r--r--include/components/texture.hpp33
-rw-r--r--include/components/velocity.hpp10
4 files changed, 61 insertions, 0 deletions
diff --git a/include/components/player.hpp b/include/components/player.hpp
new file mode 100644
index 0000000..0940195
--- /dev/null
+++ b/include/components/player.hpp
@@ -0,0 +1,9 @@
+#ifndef COMPONENTS_PLAYER_HPP
+#define COMPONENTS_PLAYER_HPP
+
+struct Player {
+ char unused = 0;
+};
+
+#endif // COMPONENTS_PLAYER_HPP
+
diff --git a/include/components/point.hpp b/include/components/point.hpp
new file mode 100644
index 0000000..b0d0f35
--- /dev/null
+++ b/include/components/point.hpp
@@ -0,0 +1,9 @@
+#ifndef COMPONENTS_POINT_HPP
+#define COMPONENTS_POINT_HPP
+
+#include "vec2.hpp"
+
+struct Point : public Vec2 {};
+
+#endif // COMPONENTS_POINT_HPP
+
diff --git a/include/components/texture.hpp b/include/components/texture.hpp
new file mode 100644
index 0000000..f4d414e
--- /dev/null
+++ b/include/components/texture.hpp
@@ -0,0 +1,33 @@
+#ifndef COMPONENTS_TEXTURE_HPP
+#define COMPONENTS_TEXTURE_HPP
+
+#include "window.hpp"
+
+class Texture
+{
+public:
+ Texture(const char *path) {
+ tex = sdl2LoadTexture(path);
+ }
+
+ ~Texture() {
+ if (tex != nullptr)
+ SDL_DestroyTexture(tex);
+ }
+
+ void operator()(SDL_Renderer *rend, Point p) const noexcept {
+ const int x = static_cast<int>(p.x);
+ const int y = static_cast<int>(p.y);
+ SDL_Rect rect {x, y, 0, 0};
+
+ /* TODO err check */
+ SDL_QueryTexture(tex, nullptr, nullptr, &rect.w, &rect.h);
+ SDL_RenderCopy(rend, tex, nullptr, &rect);
+ }
+
+private:
+ SDL_Texture *tex;
+};
+
+#endif // COMPONENTS_TEXTURE_HPP
+
diff --git a/include/components/velocity.hpp b/include/components/velocity.hpp
new file mode 100644
index 0000000..2337ebd
--- /dev/null
+++ b/include/components/velocity.hpp
@@ -0,0 +1,10 @@
+#ifndef COMPONENTS_VELOCITY_HPP
+#define COMPONENTS_VELOCITY_HPP
+
+#include "vec2.hpp"
+
+struct Velocity : public Vec2 {};
+
+#endif // COMPONENTS_VELOCITY_HPP
+
+