262 lines
6.5 KiB
C++
262 lines
6.5 KiB
C++
#ifndef APP_H
|
|
#define APP_H
|
|
|
|
#include "binding/ruby.h"
|
|
#include "localization/localization.h"
|
|
#include "utils.h"
|
|
#include "window/window.h"
|
|
|
|
enum Type { IMAGE,
|
|
TEXT,
|
|
RECT };
|
|
|
|
namespace app {
|
|
struct Element {
|
|
Type type;
|
|
Vec2<float> position = {0, 0};
|
|
float rotation = 0;
|
|
Vec2<float> scale = {1, 1};
|
|
float z = 0;
|
|
bool click_through = false;
|
|
Ruby::Block on_click;
|
|
|
|
Element(Type type) : type(type) {}
|
|
virtual ~Element() = default;
|
|
virtual void render(Window &window, uint64_t abs_time) = 0;
|
|
virtual Vec2<float> size(Window *window) = 0;
|
|
|
|
void click() {
|
|
if (!mrb_nil_p(on_click.proc))
|
|
on_click.call();
|
|
}
|
|
};
|
|
|
|
struct EImage : Element {
|
|
uint64_t animation_id = UINT64_MAX;
|
|
|
|
EImage(uint64_t animation_id) : Element(Type::IMAGE), animation_id(animation_id) {
|
|
animation_pool.use(animation_id);
|
|
}
|
|
|
|
~EImage() {
|
|
if (animation_id != UINT64_MAX)
|
|
animation_pool.release(animation_id);
|
|
}
|
|
|
|
Vec2<float> size(Window *window) override {
|
|
Animation &animation = *animation_pool[animation_id];
|
|
if (animation.frames.empty())
|
|
return {0, 0};
|
|
return window->get_image_size(animation.frames[0]);
|
|
}
|
|
|
|
void render(Window &window, uint64_t abs_time) override {
|
|
Animation &animation = *animation_pool[animation_id];
|
|
if (animation.frames.empty())
|
|
return;
|
|
|
|
int frame_index = (int)((abs_time * animation.frame_rate) / 1000) % animation.frames.size();
|
|
window.draw(animation.frames[frame_index], position, z, rotation, scale);
|
|
}
|
|
};
|
|
|
|
struct EText : Element {
|
|
Localization::Key key;
|
|
uint64_t font_id = UINT64_MAX;
|
|
|
|
~EText() {
|
|
if (text_id != UINT64_MAX)
|
|
text_pool.release(text_id);
|
|
if (font_id != UINT64_MAX)
|
|
font_pool.release(font_id);
|
|
}
|
|
|
|
Color color = {255, 255, 255, 255};
|
|
|
|
EText(Localization::Key key, uint64_t font_id, Color color)
|
|
: Element(Type::TEXT), key(key), font_id(font_id), color(color) {
|
|
font_pool.use(font_id);
|
|
}
|
|
|
|
Vec2<float> size(Window *window) override {
|
|
if (text_id == UINT64_MAX)
|
|
return {0, 0};
|
|
return window->get_text_size(text_id);
|
|
};
|
|
|
|
void render(Window &window, uint64_t) override {
|
|
if (last_language != Localization::current_language || last_key != key || text_id == UINT64_MAX) {
|
|
std::string localized_str = Localization::get(key);
|
|
if (text_id != UINT64_MAX)
|
|
text_pool.release(text_id);
|
|
text_id = window.create_text(font_id, localized_str.c_str(), localized_str.size(), color);
|
|
last_language = Localization::current_language;
|
|
last_key = key;
|
|
}
|
|
window.write(text_id, position, z, rotation, scale);
|
|
}
|
|
|
|
private:
|
|
uint64_t text_id = UINT64_MAX;
|
|
Localization::LanguageCode last_language = UINT_MAX;
|
|
Localization::Key last_key = UINT_MAX;
|
|
};
|
|
|
|
struct ERect : Element {
|
|
Vec2<float> shape = {0, 0};
|
|
Color color = {255, 255, 255, 255};
|
|
Vec2<float> size(Window *) override {
|
|
return shape;
|
|
};
|
|
|
|
ERect(Vec2<float> shape, Color color) : Element(Type::RECT), shape(shape), color(color) {}
|
|
|
|
void render(Window &window, uint64_t) override {
|
|
window.draw_rect(Rect::from_size(position, shape), color, z, rotation);
|
|
}
|
|
};
|
|
|
|
inline Pool<Element> element_pool;
|
|
|
|
struct Scene {
|
|
std::vector<uint64_t> element_ids;
|
|
Ruby::Block update;
|
|
|
|
~Scene() {
|
|
for (const uint64_t &id : element_ids)
|
|
element_pool.release(id);
|
|
}
|
|
|
|
void add_element(uint64_t element_id) {
|
|
auto it = std::lower_bound(
|
|
element_ids.begin(),
|
|
element_ids.end(),
|
|
element_id,
|
|
[](auto &a, auto &b) {
|
|
auto e_a = element_pool[a];
|
|
auto e_b = element_pool[b];
|
|
return e_a->z < e_b->z || (e_a->z == e_b->z && a < b);
|
|
}
|
|
);
|
|
element_pool.use(element_id);
|
|
element_ids.insert(it, element_id);
|
|
}
|
|
|
|
void delete_element(uint64_t element_id) {
|
|
auto it = std::find(element_ids.begin(), element_ids.end(), element_id);
|
|
if (it != element_ids.end()) {
|
|
element_pool.release(element_id);
|
|
element_ids.erase(it);
|
|
}
|
|
}
|
|
|
|
void update_scene(uint64_t delta_time) {
|
|
if (!mrb_nil_p(update.proc)) {
|
|
mrb_value dt_val = mrb_int_value(Ruby::mrb, delta_time);
|
|
update.call(1, &dt_val);
|
|
}
|
|
}
|
|
|
|
void click(Vec2<float> position) {
|
|
std::vector<uint64_t> clicked_elements = elements_at(position);
|
|
for (const uint64_t &id : clicked_elements)
|
|
element_pool[id]->click();
|
|
}
|
|
|
|
std::vector<uint64_t> elements_at(Vec2<float> position) {
|
|
std::vector<uint64_t> result;
|
|
|
|
for (auto it = element_ids.rbegin(); it != element_ids.rend(); ++it) {
|
|
Element *e = element_pool[*it];
|
|
Vec2<float> size = e->size(&window);
|
|
Rect rect = Rect::from_size(e->position, size * e->scale);
|
|
if (rect.contains(position)) {
|
|
result.push_back(*it);
|
|
if (e->click_through)
|
|
continue;
|
|
else
|
|
break;
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
void render(Window &window, uint64_t abs_time) {
|
|
for (const uint64_t &e : element_ids)
|
|
element_pool[e]->render(window, abs_time);
|
|
}
|
|
};
|
|
|
|
inline Pool<Scene> scene_pool;
|
|
|
|
struct App {
|
|
uint64_t current_scene_id = 0;
|
|
bool running = true;
|
|
Vec2<float> mouse_position = {-1, -1};
|
|
|
|
void switch_to_scene(uint64_t scene_id) {
|
|
scene_pool.release(current_scene_id);
|
|
scene_pool.use(scene_id);
|
|
current_scene_id = scene_id;
|
|
}
|
|
|
|
App(Vec2<float> size, const char *title) {
|
|
window.update(size, title);
|
|
Scene *loading_scene = new Scene{};
|
|
current_scene_id = scene_pool.acquire(loading_scene);
|
|
}
|
|
|
|
void loop() {
|
|
const uint64_t target_ms = 1000 / 60;
|
|
|
|
uint64_t time_a = window.get_time();
|
|
uint64_t time_b = window.get_time();
|
|
|
|
while (running) {
|
|
time_a = window.get_time();
|
|
uint64_t frame_time = time_a - time_b;
|
|
if (frame_time <= target_ms)
|
|
usleep((target_ms - frame_time) * 1000);
|
|
|
|
time_b = window.get_time();
|
|
|
|
uint64_t dt = window.delta_time();
|
|
|
|
Scene *scene = scene_pool[current_scene_id];
|
|
|
|
Event e;
|
|
while (window.poll(e)) {
|
|
switch (e.type) {
|
|
case Event::QUIT:
|
|
running = false;
|
|
break;
|
|
case Event::MOUSE_BUTTON_DOWN:
|
|
scene->click(e.mouse_button.position);
|
|
break;
|
|
case Event::MOUSE_MOVE:
|
|
mouse_position = e.mouse_move.position;
|
|
break;
|
|
case Event::MOUSE_LEAVE:
|
|
mouse_position = {-1, -1};
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
window.consume(e);
|
|
}
|
|
|
|
scene->update_scene(dt);
|
|
scene->render(window, window.get_time());
|
|
|
|
window.render();
|
|
|
|
window.clear();
|
|
}
|
|
}
|
|
};
|
|
} // namespace app
|
|
|
|
inline app::App *app_ = nullptr;
|
|
|
|
#endif |