You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.2 KiB
42 lines
1.2 KiB
#include "combat_ui.hpp"
|
|
#include "constants.hpp"
|
|
#include "color.hpp"
|
|
|
|
namespace gui {
|
|
CombatUI::CombatUI(GameLevel level) :
|
|
$level(level)
|
|
{
|
|
$gui.position(RAY_VIEW_X, RAY_VIEW_HEIGHT, RAY_VIEW_WIDTH, SCREEN_HEIGHT - RAY_VIEW_HEIGHT);
|
|
$gui.layout(
|
|
"[*%(100,150)button_attack1 | *%(100,150)button_attack2 | *%(100,150)button_attack3 | *%(100,150)button_heal]"
|
|
"[ >.%(100,50)label_hp | *%.(100,50)bar_hp | _ ]");
|
|
}
|
|
|
|
void CombatUI::render(TexturePack& textures) {
|
|
auto& world = $gui.world();
|
|
|
|
for(auto& [name, cell] : $gui.cells()) {
|
|
if(name.starts_with("button_")) {
|
|
auto button = $gui.entity(name);
|
|
world.set<lel::Cell>(button, cell);
|
|
world.set<Sprite>(button, {"trash_button"});
|
|
world.set<Clickable>(button, {100});
|
|
world.set<Textual>(button, {name});
|
|
} else if(name.starts_with("bar_")) {
|
|
auto meter = $gui.entity(name);
|
|
world.set<lel::Cell>(meter, cell);
|
|
world.set<Rectangle>(meter, {});
|
|
world.set<Meter>(meter, {});
|
|
} else {
|
|
// ignored, it's just space
|
|
$gui.entity(name);
|
|
}
|
|
}
|
|
|
|
$gui.init(textures);
|
|
}
|
|
|
|
void CombatUI::draw(sf::RenderWindow& window) {
|
|
$gui.render(window);
|
|
}
|
|
}
|
|
|