summaryrefslogtreecommitdiff
path: root/src/port/ui/Tools.cpp
blob: 9bfdda26bdd1b902630f4c3c27e04252e1a896de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#include "Tools.h"
#include "port/ui/PortMenu.h"
#include "UIWidgets.h"
#include "libultraship/src/Context.h"

#include <imgui.h>
#include <map>
#include <libultraship/libultraship.h>
#include <spdlog/fmt/fmt.h>
#include "spdlog/formatter.h"
#include <common_structs.h>
#include <defines.h>
#include "port/Game.h"
#include "engine/editor/SceneManager.h"

extern "C" {
#include "code_800029B0.h"
#include "code_80057C60.h"
}

namespace Editor {

    ToolsWindow::~ToolsWindow() {
        SPDLOG_TRACE("destruct tools window");
    }

    void ToolsWindow::InitElement() {
        
    }

    void ToolsWindow::DrawElement() {
        static bool toggleGroundSnap = CVarGetInteger("gEditorSnapToGround", 0);
        static bool toggleBoundary = CVarGetInteger("gEditorBoundary", 0);
        static int selectedTool = 0; // 0: Move, 1: Rotate, 2: Scale

        // Save button
        if (ImGui::Button(ICON_FA_FLOPPY_O, ImVec2(50, 25))) {
            SaveLevel();
        }

        ImGui::SameLine();

        ImVec4 defaultColor = ImGui::GetStyle().Colors[ImGuiCol_Button];
        // Function to check and highlight the selected button
        auto ToolButton = [&](const char* label, int id) {
            bool isSelected = (selectedTool == id);
            ImGui::PushStyleColor(ImGuiCol_Button, isSelected ? ImVec4(0.4f, 0.7f, 0.9f, 1.0f) : defaultColor);
            
            if (ImGui::Button(label, ImVec2(50, 25))) {
                selectedTool = id; // Set the selected tool
                CVarSetInteger("eGizmoMode", id);
            }
    
            ImGui::PopStyleColor();
        };

        // Draw buttons
        ToolButton(ICON_FA_ARROWS, 0);
        if (ImGui::IsItemHovered()) {
            ImGui::BeginTooltip();
            ImGui::Text("Translate");
            ImGui::EndTooltip();
        }
        ImGui::SameLine();
        ToolButton(ICON_FA_REPEAT, 1);
        if (ImGui::IsItemHovered()) {
            ImGui::BeginTooltip();
            ImGui::Text("Rotate");
            ImGui::EndTooltip();
        }
        ImGui::SameLine();
        ToolButton(ICON_FA_EXPAND, 2);
        if (ImGui::IsItemHovered()) {
            ImGui::BeginTooltip();
            ImGui::Text("Scale");
            ImGui::EndTooltip();
        }

        ImGui::SameLine();

        // Snap to ground
        ImGui::PushStyleColor(ImGuiCol_Button, toggleGroundSnap ? ImVec4(0.4f, 0.7f, 0.9f, 1.0f) : defaultColor);

        if (ImGui::Button(ICON_FA_LINK, ImVec2(50, 25))) {
            toggleGroundSnap = !toggleGroundSnap;

            CVarSetInteger("gEditorSnapToGround", toggleGroundSnap);
        }
        ImGui::PopStyleColor();
        if (ImGui::IsItemHovered()) {
            ImGui::BeginTooltip();
            ImGui::Text("Snap object to surface");
            ImGui::EndTooltip();
        }

        ImGui::SameLine();

        // Boundary
        ImGui::PushStyleColor(ImGuiCol_Button, toggleBoundary ? ImVec4(0.4f, 0.7f, 0.9f, 1.0f) : defaultColor);
        if (ImGui::Button(toggleBoundary ? "Map Boundaries" : "Map Boundaries", ImVec2(125, 25))) {
            toggleBoundary = !toggleBoundary;

            CVarSetInteger("gEditorBoundary", toggleBoundary);
        }
        ImGui::PopStyleColor();
        if (ImGui::IsItemHovered()) {
            ImGui::BeginTooltip();
            ImGui::Text("Stops translated objects from leaving the track area.");
            ImGui::Text("This helps prevent moving objects really far away off the level.");
            ImGui::EndTooltip();
        }

        ImGui::SameLine();

        // Toggle player human/ai
        bool playerToggle = (gPlayerOne->type & PLAYER_KART_AI);
        ImGui::PushStyleColor(ImGuiCol_Button, defaultColor);
        if (ImGui::Button(playerToggle ? ICON_FA_DESKTOP : ICON_FA_GAMEPAD, ImVec2(50, 25))) {
            if (playerToggle) {
                gPlayerOne->type &= ~PLAYER_KART_AI;
            } else {
                gPlayerOne->type |= PLAYER_KART_AI;
            }

        }
        ImGui::PopStyleColor();
        if (ImGui::IsItemHovered()) {
            ImGui::BeginTooltip();
            ImGui::Text("Toggle player 1's AI or human player state.");
            ImGui::EndTooltip();
        }

        ImGui::SameLine();

        // Play/pause button
        ImGui::PushStyleColor(ImGuiCol_Button, defaultColor);
        if (ImGui::Button(gIsEditorPaused ? ICON_FA_PLAY : ICON_FA_PAUSE, ImVec2(50, 25))) {

            gIsEditorPaused = !gIsEditorPaused;
        }
        ImGui::PopStyleColor();

        ImGui::SameLine();

        // Toggle hud
        ImGui::PushStyleColor(ImGuiCol_Button, gIsHUDVisible ? ImVec4(0.4f, 0.7f, 0.9f, 1.0f) : defaultColor);
        if (ImGui::Button("Toggle HUD", ImVec2(150, 25))) {

            gIsHUDVisible = !gIsHUDVisible;
        }
        ImGui::PopStyleColor();

        ImGui::SameLine();

        // Delete
        if (ImGui::Button(ICON_FA_TRASH_O, ImVec2(50, 25))) {
            gEditor.DeleteObject();
        }
    }
}