fix run and examples folred

This commit is contained in:
2026-02-26 09:36:24 +03:00
parent c5e5224755
commit fcb2d78aae
11 changed files with 4 additions and 25 deletions

113
bin/layers/ui_layer/ui_layer.cpp Executable file
View File

@@ -0,0 +1,113 @@
#include "ui_layer.hpp"
#include "utils.hpp"
namespace example
{
void ui_layer::on_attach()
{
CONNECT(this);
hack::log()("on_attach");
}
void ui_layer::on_detach()
{
DISCONNECT();
hack::log()("on_detach");
}
void ui_layer::render()
{
VE_PUSH_FONT(REGULAR, 30);
if (ImGui::BeginMainMenuBar())
{
if (ImGui::BeginMenu("File"))
{
if (ImGui::MenuItem("New")) {}
if (ImGui::MenuItem("Open", "Ctrl+O")) {}
ImGui::EndMenu();
}
if (ImGui::BeginMenu("Edit"))
{
if (ImGui::MenuItem("Undo", "CTRL+Z")) {}
if (ImGui::MenuItem("Redo", "CTRL+Y", false, false)) {} // Disabled item
ImGui::Separator();
if (ImGui::MenuItem("Cut", "CTRL+X")) {}
if (ImGui::MenuItem("Copy", "CTRL+C")) {}
if (ImGui::MenuItem("Paste", "CTRL+V")) {}
ImGui::EndMenu();
}
ImGui::EndMainMenuBar();
}
ImGui::SetNextWindowPos(m_pos);
ImGui::SetNextWindowSize(m_size);
if (!ImGui::Begin(VE_NO_NAME("Test signal"), nullptr, m_win_flags)) ImGui::End();
if (ImGui::Button("Test signal", ImVec2(128, 130)))
{
VE::event e { test_event::TEST_EVEN_1, std::string("test event 1 message"), "asdf-asdf-asdf" };
EMIT(e);
auto r = e.get_result<std::string>();
hack::log()(r);
e = { test_event::TEST_EVEN_2, std::string("test event 2 message") };
EMIT(e);
r = e.get_result<std::string>();
hack::log()(r);
}
ImPlot::ShowDemoWindow();
ImPlot3D::ShowDemoWindow();
ImGui::ShowDemoWindow();
ImGui::TextDisabled("asdfasdf");
if (ImGui::BeginTable("table1", 3))
{
for (int row = 0; row < 4; row++)
{
ImGui::TableNextRow();
for (int column = 0; column < 3; column++)
{
ImGui::TableSetColumnIndex(column);
ImGui::Text("Row %d Column %d", row, column);
}
}
ImGui::EndTable();
}
VE_POP_FONT();
ImGui::End();
}
void ui_layer::on_event(VE::event& e)
{
// для событий от перефирии
// if (e.m_type.type() == typeid(VE::event_type))
// {
// auto t = std::any_cast<VE::event_type>(e.m_type);
// if (t != VE::event_type::MOUSE_CURSOR_POSITION)
// hack::log()((int)t);
// }
if (e.m_type.type() == typeid(test_event))
{
auto t = std::any_cast<test_event>(e.m_type);
if (t == test_event::TEST_EVEN_1)
{
hack::log()(std::any_cast<std::string>(e.m_data));
e.m_result = std::string("test_event_1");
}
}
}
void ui_layer::update()
{
}
}

View File

@@ -0,0 +1,17 @@
#pragma once
#include <VE.hpp>
namespace example
{
class ui_layer : public VE::layer, public VE::flags, public VE::connector
{
VE_OVERIDE();
VE_EVENT_OVERIDE();
ImVec2 m_size = ImVec2{ 1200.f, 400.f };
ImVec2 m_pos = ImVec2{ 1200.f, 400.f };
std::string m_key;
};
}