This commit is contained in:
2023-03-05 15:51:07 -08:00
parent 7d20397e83
commit aeb5014a07
10 changed files with 49 additions and 8 deletions

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

View File

@ -153,16 +153,20 @@ void RenderPipeline::renderSceneCamera(Scene *scene, Camera *camera) {
assertUnreachable(); assertUnreachable();
} }
auto children = canvas->item.chil auto renderables = canvas->item->findChildrenDeep<UIComponentRendaerable>();
auto itChild = renderables.begin();
while(itChild != renderables.end()) {
++itChild;
}
// auto itChild = canvas->children.begin(); // auto itChild = canvas->children.begin();
// while(itChild != canvas->children.end()) { // while(itChild != canvas->children.end()) {
// vectorAppend(&shaderPassItems, (*itChild)->getPassItems( // vectorAppend(&shaderPassItems, (*itChild)->getPassItems(
// projection, view, model // projection, view, model
// )); // ));
// ++itChild; // ++itChild;
// } // }
// ++itCanvas; ++itCanvas;
} }
// Debug Lines // Debug Lines

View File

@ -7,6 +7,7 @@
#include "display/Transform.hpp" #include "display/Transform.hpp"
#include "event/Event.hpp" #include "event/Event.hpp"
#include "scene/Scene.hpp" #include "scene/Scene.hpp"
#include "util/array.hpp"
namespace Dawn { namespace Dawn {
class SceneItemComponent; class SceneItemComponent;
@ -113,6 +114,22 @@ namespace Dawn {
} }
return children; return children;
} }
template<class T>
std::vector<T*> findChildrenDeep() {
std::vector<Transform*> itemsToCheck = this->transform.children;
std::vector<T*> itemsFound;
while(itemsToCheck.size() > 0) {
auto item = itemsToCheck.begin();
vectorAppend(&itemsToCheck, (*item)->children);
auto component = (*item)->item->getComponent<T>();
if(component != nullptr) itemsFound.push_back(component);
itemsToCheck.erase(item);
}
return itemsFound;
}
/** /**
* Destroy this SceneItem. * Destroy this SceneItem.

View File

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

View File

@ -8,6 +8,11 @@
#include "UICanvas.hpp" #include "UICanvas.hpp"
namespace Dawn { namespace Dawn {
class UIComponentRendaerable {
public:
int32_t cum;
};
class UIComponent : public SceneItemComponent { class UIComponent : public SceneItemComponent {
private: private:
UICanvas *canvas = nullptr; UICanvas *canvas = nullptr;

View File

@ -24,8 +24,8 @@ void UILabel::updateMesh() {
// std::string text = this->getGame()->localeManager.getString(key); // std::string text = this->getGame()->localeManager.getString(key);
this->font->buffer( this->font->buffer(
this->text, text,
this->fontSize, fontSize,
-1, -1,
&this->mesh, &this->mesh,
&this->measure &this->measure

View File

@ -5,6 +5,7 @@
#pragma once #pragma once
#include "UIComponent.hpp" #include "UIComponent.hpp"
#include "display/font/Font.hpp"
namespace Dawn { namespace Dawn {
class UILabel : public UIComponent { class UILabel : public UIComponent {

View File

@ -24,4 +24,5 @@ add_subdirectory(save)
set(DIR_GAME_ASSETS games/tictactoe) set(DIR_GAME_ASSETS games/tictactoe)
tool_language(locale_en ${DIR_GAME_ASSETS}/locale/en.xml) tool_language(locale_en ${DIR_GAME_ASSETS}/locale/en.xml)
tool_tileset(tileset_xo texture_xo ${DIR_GAME_ASSETS}/xo.png 1 4) tool_tileset(tileset_xo texture_xo ${DIR_GAME_ASSETS}/xo.png 1 4)
tool_truetype(truetype_bizudp ${DIR_GAME_ASSETS}/font/BIZUDPGothic-Bold.ttf truetype_bizudp 2048 2048 120)

View File

@ -9,6 +9,7 @@
#include "prefabs/TicTacToeTilePrefab.hpp" #include "prefabs/TicTacToeTilePrefab.hpp"
#include "display/mesh/TriangleMesh.hpp" #include "display/mesh/TriangleMesh.hpp"
#include "components/TicTacToeGame.hpp" #include "components/TicTacToeGame.hpp"
#include "scene/components/ui/UILabel.hpp"
#include "state/State.hpp" #include "state/State.hpp"
@ -43,11 +44,21 @@ namespace Dawn {
tile->ticTacToe->tile = i++; tile->ticTacToe->tile = i++;
} }
} }
auto canvasItem = this->createSceneItem();
auto canvas = canvasItem->addComponent<UICanvas>();
auto labelItem = this->createSceneItem();
auto label = labelItem->addComponent<UILabel>();
label->font = &this->game->assetManager.get<TrueTypeAsset>("truetype_bizudp")->font;
label->text = "Hello World";
labelItem->transform.setParent(canvas->transform);
} }
std::vector<Asset*> getRequiredAssets() override { std::vector<Asset*> getRequiredAssets() override {
auto assMan = &this->game->assetManager; auto assMan = &this->game->assetManager;
std::vector<Asset*> assets; std::vector<Asset*> assets;
assets.push_back(assMan->get<TrueTypeAsset>("truetype_bizudp"));
vectorAppend(&assets, SimpleSpinningCubePrefab::getRequiredAssets(assMan)); vectorAppend(&assets, SimpleSpinningCubePrefab::getRequiredAssets(assMan));
vectorAppend(&assets, TicTacToeTilePrefab::getRequiredAssets(assMan)); vectorAppend(&assets, TicTacToeTilePrefab::getRequiredAssets(assMan));
return assets; return assets;