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.
35 lines
1.1 KiB
35 lines
1.1 KiB
#include "gui/guecstra.hpp"
|
|
|
|
namespace guecs {
|
|
|
|
Clickable make_action(DinkyECS::World& target, Events::GUI event) {
|
|
return {[&, event](auto ent, auto data){
|
|
// BUG: I think entityt here shifted and isn't part of the world anymore
|
|
// BUG: it's actually coming from the GUI so passing it here is wrong
|
|
// remember that ent is passed in from the UI::mouse handler
|
|
target.send<Events::GUI>(event, ent, data);
|
|
}};
|
|
}
|
|
|
|
Clickable make_action(DinkyECS::World& target, Events::GUI event, std::any data) {
|
|
return {[&, event, data](auto ent, auto){
|
|
// BUG: I think entityt here shifted and isn't part of the world anymore
|
|
// BUG: it's actually coming from the GUI so passing it here is wrong
|
|
// remember that ent is passed in from the UI::mouse handler
|
|
target.send<Events::GUI>(event, ent, data);
|
|
}};
|
|
}
|
|
|
|
|
|
void GrabSource::grab() {
|
|
sprite->setOrigin({128, 128});
|
|
}
|
|
|
|
void GrabSource::move(sf::Vector2i position) {
|
|
sprite->setPosition({
|
|
float(position.x),
|
|
float(position.y)
|
|
});
|
|
}
|
|
|
|
}
|
|
|