|
| 1 | +#include "ui/tutorial.hpp" |
| 2 | + |
| 3 | +#include "IconsFontAwesome5.h" |
| 4 | +#include "core/defines.hpp" |
| 5 | +#include "core/commands.hpp" |
| 6 | +#include "core/config.hpp" |
| 7 | +#include "core/font.hpp" |
| 8 | +#include "core/utils.hpp" |
| 9 | +#include "ui/alert.hpp" |
| 10 | + |
| 11 | +namespace CodeNect |
| 12 | +{ |
| 13 | +ImGuiWindowFlags Tutorial::flags = |
| 14 | + ImGuiWindowFlags_NoCollapse | |
| 15 | + ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoResize | |
| 16 | + ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_NoTitleBar | |
| 17 | + ImGuiWindowFlags_AlwaysAutoResize; |
| 18 | +bool Tutorial::is_open = false; |
| 19 | +ImVec2 Tutorial::pos; |
| 20 | +ImVec2 Tutorial::size; |
| 21 | +unsigned int Tutorial::current_step = 0; |
| 22 | +std::map<const std::string, bool> Tutorial::m_steps = { |
| 23 | + {"Open Sidebar", false}, |
| 24 | + {"Open Command Palette", false}, |
| 25 | + {"Create New Project", false}, |
| 26 | + {"Create Node Variables", false}, |
| 27 | + {"Create Node Operation", false}, |
| 28 | + {"Create Node Print", false}, |
| 29 | + {"Connecting Nodes", false}, |
| 30 | + {"Transpiling Visual Code", false}, |
| 31 | + {"Running Visual Code", false}, |
| 32 | +}; |
| 33 | + |
| 34 | +int Tutorial::init(void) |
| 35 | +{ |
| 36 | + const int x = Config::win_width; |
| 37 | + const int y = (float)Config::win_height/2; |
| 38 | + |
| 39 | + Tutorial::pos = ImVec2(x, y); |
| 40 | + Tutorial::size = ImVec2(Config::win_width * 0.30, Config::win_height - 16); |
| 41 | + |
| 42 | + if (Config::first_time && !Config::tutorial_done) |
| 43 | + { |
| 44 | + Alert::open(ALERT_TYPE::SUCCESS, "Hi, this is the first time you have\nopened this software, would you like to start the tutorial?"); |
| 45 | + Alert::has_cb = true; |
| 46 | + Alert::fn_custom_draw = []() |
| 47 | + { |
| 48 | + if (ImGui::Button(ICON_FA_CHECK " Yes, begin the tutorial")) |
| 49 | + { |
| 50 | + Tutorial::is_open = true; |
| 51 | + // Config::first_time = false; |
| 52 | + // Config::ini.SetValue("general", "first_time", "false"); |
| 53 | + // Config::save_user_config(); |
| 54 | + Alert::close(); |
| 55 | + } |
| 56 | + |
| 57 | + ImGui::SameLine(); |
| 58 | + |
| 59 | + if (ImGui::Button(ICON_FA_TIMES " No, I already know how to use it")) |
| 60 | + { |
| 61 | + Tutorial::is_open = false; |
| 62 | + // Config::first_time = false; |
| 63 | + // Config::ini.SetValue("general", "first_time", "false"); |
| 64 | + // Config::save_user_config(); |
| 65 | + Alert::close(); |
| 66 | + } |
| 67 | + }; |
| 68 | + } |
| 69 | + |
| 70 | + return RES_SUCCESS; |
| 71 | +} |
| 72 | + |
| 73 | +void Tutorial::register_commands(void) |
| 74 | +{ |
| 75 | + Command* cmd = new Command("Tutorial", "start the tutorial wizard", ICON_FA_MAGIC); |
| 76 | + cmd->set_fn(Tutorial::toggle); |
| 77 | + cmd->m_close_command_palette = true; |
| 78 | + Commands::register_cmd(*cmd); |
| 79 | +} |
| 80 | + |
| 81 | +void Tutorial::toggle(void) |
| 82 | +{ |
| 83 | + Tutorial::is_open = !Tutorial::is_open; |
| 84 | +} |
| 85 | + |
| 86 | +void Tutorial::draw(void) |
| 87 | +{ |
| 88 | + if (!Tutorial::is_open) |
| 89 | + return; |
| 90 | + |
| 91 | + ImGui::SetNextWindowPos(Tutorial::pos, ImGuiCond_Always, ImVec2(1, 0.5)); |
| 92 | + ImGui::SetNextWindowSize(Tutorial::size); |
| 93 | + ImGui::PushStyleVar(ImGuiStyleVar_WindowPadding, ImVec2(16, 16)); |
| 94 | + |
| 95 | + if (ImGui::Begin("Tutorial", &Tutorial::is_open, Tutorial::flags)) |
| 96 | + { |
| 97 | + Font::use_font(FONT_SIZE::LARGE); |
| 98 | + Utils::center_text(ICON_FA_MAGIC " TUTORIAL", true); |
| 99 | + Font::unuse_font(); |
| 100 | + ImGui::Separator(); |
| 101 | + unsigned int step = 0; |
| 102 | + |
| 103 | + for (std::pair<const std::string, bool>& e : Tutorial::m_steps) |
| 104 | + { |
| 105 | + const char* id = e.first.c_str(); |
| 106 | + ImGui::PushID(id); |
| 107 | + if (step == Tutorial::current_step) |
| 108 | + ImGui::SetNextItemOpen(true); |
| 109 | + |
| 110 | + if (ImGui::TreeNode(id)) |
| 111 | + { |
| 112 | + ImGui::TreePop(); |
| 113 | + } |
| 114 | + ImGui::PopID(); |
| 115 | + ++step; |
| 116 | + } |
| 117 | + |
| 118 | + ImGui::End(); |
| 119 | + } |
| 120 | + |
| 121 | + ImGui::PopStyleVar(1); |
| 122 | +} |
| 123 | +} |
0 commit comments