blob: 04f2fd7ffeda8d107fa3bdb7f7648f211d6be82d (
plain)
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
|
#pragma once
#include "SDL_events.h"
#include "special_members.hpp"
#include "uiComponent.h"
#include <glm/glm.hpp>
#include <memory>
#include <string>
class Ray;
class UIShader;
class Camera;
class GameMainSelector : public UIComponent {
public:
class Component {
public:
virtual ~Component() = default;
virtual bool click(const SDL_MouseButtonEvent &, const Ray &);
virtual bool move(const SDL_MouseMotionEvent &, const Ray &);
virtual bool handleInput(const SDL_Event &, const Position & pos);
virtual void render(const UIShader & shader, const Position & pos) const;
};
GameMainSelector(const Camera * c, glm::vec2 size);
void render(const UIShader & shader, const Position & pos) const override;
bool handleInput(const SDL_Event & e, const Position &) override;
void defaultClick(const Ray & ray);
std::unique_ptr<Component> target;
private:
const Camera * camera;
std::string clicked;
};
|