This commit is contained in:
2023-03-06 22:04:47 -08:00
parent 2271d8f4e2
commit 95e5aa1eeb
6 changed files with 61 additions and 16 deletions

Submodule lib/SDL updated: 87a83787a3...c9aec268fa

View File

@ -9,6 +9,7 @@ target_sources(${DAWN_TARGET_NAME}
UICanvas.cpp
UIComponent.cpp
UILabel.cpp
UIMenuController.cpp
)
tool_scenecomponent(UICanvas scene/components/ui/UICanvas.hpp)

View File

@ -1,14 +0,0 @@
// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "scene/SceneItemComponent.hpp"
namespace Dawn {
class UIMenuController : public SceneItemComponent {
public:
};
}

View File

@ -0,0 +1,30 @@
// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "UIMenuController.hpp"
using namespace Dawn;
UIMenuController::UIMenuController(SceneItem *item) :
SceneItemComponent(item),
active(false),
menuX(0),
menuY(0),
columns(4),
rows(4)
{
}
void UIMenuController::onStart() {
useEffectWithTeardown([&]{
if(!active) return activeTeardown = [&]{ };
return activeTeardown = [&]{
};
}, active)();
}

View File

@ -0,0 +1,28 @@
// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "scene/SceneItemComponent.hpp"
namespace Dawn {
class UIMenuController : public SceneItemComponent {
private:
std::function<void()> activeTeardown;
public:
StateProperty<bool_t> active;
StateProperty<int32_t> menuX;
StateProperty<int32_t> menuY;
StateProperty<int32_t> columns;
StateProperty<int32_t> rows;
StateEvent<int32_t, int32_t> eventItemChange;
StateEvent<int32_t, int32_t> eventItemSelected;
UIMenuController(SceneItem *item);
void onStart();
};
}