Separated
This commit is contained in:
parent
ac1d04353e
commit
31c1965331
@ -23,6 +23,17 @@ namespace gui {
|
|||||||
const fs::path font;
|
const fs::path font;
|
||||||
|
|
||||||
bool initialized{ false };
|
bool initialized{ false };
|
||||||
|
|
||||||
|
void habilete_menu() noexcept;
|
||||||
|
|
||||||
|
void adresse_menu() noexcept;
|
||||||
|
|
||||||
|
void endurance_menu() noexcept;
|
||||||
|
|
||||||
|
void chance_menu() noexcept;
|
||||||
|
|
||||||
|
void stat_second_menu() noexcept;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Gui() = delete;
|
Gui() = delete;
|
||||||
|
|
||||||
|
@ -58,50 +58,20 @@ void gui::Gui::render_gui(const Controller &controller) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ImGui::BeginGroup();
|
ImGui::BeginGroup();
|
||||||
{
|
habilete_menu();
|
||||||
ImGui::BeginChild("habilete", ImVec2(ImGui::GetWindowWidth() / 3, ImGui::GetWindowHeight() * 0.2f), true);
|
|
||||||
ImGui::Text("Habileté");
|
|
||||||
ImGui::EndChild();
|
|
||||||
}
|
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
|
|
||||||
{
|
adresse_menu();
|
||||||
ImGui::BeginChild("adresse", ImVec2(ImGui::GetWindowWidth() / 3, ImGui::GetWindowHeight() * 0.2f), true);
|
|
||||||
ImGui::Text("Adresse");
|
|
||||||
ImGui::Text("Bottom pane1");
|
|
||||||
ImGui::Text("Bottom pane2");
|
|
||||||
ImGui::Text("Bottom pane3");
|
|
||||||
ImGui::Text("Bottom pane4");
|
|
||||||
ImGui::EndChild();
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
endurance_menu();
|
||||||
ImGui::BeginChild("endurance", ImVec2(ImGui::GetWindowWidth() / 3, ImGui::GetWindowHeight() * 0.2f), true);
|
|
||||||
ImGui::Text("Endurance");
|
|
||||||
ImGui::Text("Bottom pane1");
|
|
||||||
ImGui::Text("Bottom pane2");
|
|
||||||
ImGui::Text("Bottom pane3");
|
|
||||||
ImGui::Text("Bottom pane4");
|
|
||||||
ImGui::EndChild();
|
|
||||||
}
|
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
|
|
||||||
{
|
chance_menu();
|
||||||
ImGui::BeginChild("chance", ImVec2(ImGui::GetWindowWidth() / 3, ImGui::GetWindowHeight() * 0.2f), true);
|
|
||||||
ImGui::Text("Chance");
|
|
||||||
ImGui::Text("Bottom pane1");
|
|
||||||
ImGui::Text("Bottom pane2");
|
|
||||||
ImGui::Text("Bottom pane3");
|
|
||||||
ImGui::Text("Bottom pane4");
|
|
||||||
ImGui::EndChild();
|
|
||||||
}
|
|
||||||
ImGui::EndGroup();
|
ImGui::EndGroup();
|
||||||
|
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
{
|
|
||||||
ImGui::BeginChild("stats secondaire", ImVec2(ImGui::GetWindowWidth() / 3, ImGui::GetWindowHeight() * 0.4f), true);
|
stat_second_menu();
|
||||||
ImGui::Text("STAT. SECONDAIRES");
|
|
||||||
ImGui::EndChild();
|
|
||||||
}
|
|
||||||
|
|
||||||
ImGui::End();
|
ImGui::End();
|
||||||
|
|
||||||
@ -117,3 +87,45 @@ void gui::Gui::render_gpu() const {
|
|||||||
ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());
|
ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void gui::Gui::habilete_menu() noexcept {
|
||||||
|
ImGui::BeginChild("habilete", ImVec2(ImGui::GetWindowWidth() / 3, ImGui::GetWindowHeight() * 0.2f), true);
|
||||||
|
ImGui::Text("Habileté");
|
||||||
|
ImGui::EndChild();
|
||||||
|
}
|
||||||
|
|
||||||
|
void gui::Gui::adresse_menu() noexcept {
|
||||||
|
ImGui::BeginChild("adresse", ImVec2(ImGui::GetWindowWidth() / 3, ImGui::GetWindowHeight() * 0.2f), true);
|
||||||
|
ImGui::Text("Adresse");
|
||||||
|
ImGui::Text("Bottom pane1");
|
||||||
|
ImGui::Text("Bottom pane2");
|
||||||
|
ImGui::Text("Bottom pane3");
|
||||||
|
ImGui::Text("Bottom pane4");
|
||||||
|
ImGui::EndChild();
|
||||||
|
}
|
||||||
|
|
||||||
|
void gui::Gui::endurance_menu() noexcept {
|
||||||
|
ImGui::BeginChild("endurance", ImVec2(ImGui::GetWindowWidth() / 3, ImGui::GetWindowHeight() * 0.2f), true);
|
||||||
|
ImGui::Text("Endurance");
|
||||||
|
ImGui::Text("Bottom pane1");
|
||||||
|
ImGui::Text("Bottom pane2");
|
||||||
|
ImGui::Text("Bottom pane3");
|
||||||
|
ImGui::Text("Bottom pane4");
|
||||||
|
ImGui::EndChild();
|
||||||
|
}
|
||||||
|
|
||||||
|
void gui::Gui::chance_menu() noexcept {
|
||||||
|
ImGui::BeginChild("chance", ImVec2(ImGui::GetWindowWidth() / 3, ImGui::GetWindowHeight() * 0.2f), true);
|
||||||
|
ImGui::Text("Chance");
|
||||||
|
ImGui::Text("Bottom pane1");
|
||||||
|
ImGui::Text("Bottom pane2");
|
||||||
|
ImGui::Text("Bottom pane3");
|
||||||
|
ImGui::Text("Bottom pane4");
|
||||||
|
ImGui::EndChild();
|
||||||
|
}
|
||||||
|
|
||||||
|
void gui::Gui::stat_second_menu() noexcept {
|
||||||
|
ImGui::BeginChild("stats secondaire", ImVec2(ImGui::GetWindowWidth() / 3, ImGui::GetWindowHeight() * 0.4f), true);
|
||||||
|
ImGui::Text("STAT. SECONDAIRES");
|
||||||
|
ImGui::EndChild();
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user