diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-05 15:47:55 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-08-05 15:47:55 -0400 |
commit | 456ef376530fc4644732d499c862f1413b9987d9 (patch) | |
tree | ab28615220d16a9c32b6b1dab6ad4313b43ac0fb /include/components | |
parent | 66991ce9b81f4af3c095d38fa2187837d94e5469 (diff) |
level solid; basic collision/gravity
Diffstat (limited to 'include/components')
-rw-r--r-- | include/components/solid.hpp | 56 | ||||
-rw-r--r-- | include/components/texture.hpp | 12 |
2 files changed, 65 insertions, 3 deletions
diff --git a/include/components/solid.hpp b/include/components/solid.hpp new file mode 100644 index 0000000..d02d229 --- /dev/null +++ b/include/components/solid.hpp @@ -0,0 +1,56 @@ +#ifndef COMPONENTS_SOLID_HPP +#define COMPONENTS_SOLID_HPP + +#include "components/point.hpp" +#include "window.hpp" + +#include <algorithm> +#include <cstdint> + +class Solid { +public: + Solid(const char *path) { + bitmap = sdl2LoadSolid(path); + } + + ~Solid() { + if (bitmap != nullptr) + SDL_FreeSurface(bitmap); + } + + float collision(Vec2 p) const noexcept { + float dy = 0.f; + + if (at(p)) { + auto up = p; + while (up.y > 0 && at(up)) + up.y--; + + auto down = p; + while (down.y < bitmap->h && at(down)) + down.y++; + + if (down.y - p.y > p.y - up.y) + dy = -(p.y - up.y); + else + dy = down.y - p.y; + } + + return dy; + } + +private: + SDL_Surface *bitmap; + + bool at(Vec2 p) const noexcept { + const auto bm = reinterpret_cast<std::uint8_t *>(bitmap->pixels); + const int x = std::clamp(static_cast<int>(p.x), 0, bitmap->w); + const int y = std::clamp(static_cast<int>(p.y), 0, bitmap->h); + const int i = y * bitmap->w + x; + const auto val = bm[i * bitmap->format->BytesPerPixel]; + return val > 0; + } +}; + +#endif // COMPONENTS_SOLID_HPP + diff --git a/include/components/texture.hpp b/include/components/texture.hpp index f4d414e..14253f1 100644 --- a/include/components/texture.hpp +++ b/include/components/texture.hpp @@ -1,6 +1,7 @@ #ifndef COMPONENTS_TEXTURE_HPP #define COMPONENTS_TEXTURE_HPP +#include "components/point.hpp" #include "window.hpp" class Texture @@ -8,6 +9,8 @@ class Texture public: Texture(const char *path) { tex = sdl2LoadTexture(path); + if (tex) + SDL_QueryTexture(tex, nullptr, nullptr, &w, &h); } ~Texture() { @@ -18,15 +21,18 @@ public: 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}; + SDL_Rect rect {x, y, w, h}; - /* TODO err check */ - SDL_QueryTexture(tex, nullptr, nullptr, &rect.w, &rect.h); SDL_RenderCopy(rend, tex, nullptr, &rect); } + Point dim() const noexcept { + return Point {static_cast<float>(w), static_cast<float>(h)}; + } + private: SDL_Texture *tex; + int w, h; }; #endif // COMPONENTS_TEXTURE_HPP |