Skip to content

Commit 6a4306f

Browse files
committed
WIP Tutorial
1 parent 5671d40 commit 6a4306f

10 files changed

+175
-3
lines changed

CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ add_executable(CodeNect
111111
src/ui/sidebar_indicator.cpp
112112
src/ui/simulation_control.cpp
113113
src/ui/terminal.cpp
114+
src/ui/tutorial.cpp
114115
src/ui/zoom.cpp
115116

116117
# color text editor

config.ini

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[general]
2-
version = 0.8
2+
version = 1.0
33
terminal = termite
44
fullscreen = false
55
width = 1024
@@ -8,6 +8,8 @@ vsync = 1
88
style = DARK
99
font = ProggyClean
1010
font_size = 13
11+
first_time = true
12+
tutorial_done = false
1113

1214
[clear_color]
1315
r = 0.45

src/core/config.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ const char* Config::fonts[6] = {
2626
"CousineRegular", "KarlaRegular", "RobotoMedium"
2727
};
2828
const char* Config::version;
29+
bool Config::first_time = true;
30+
bool Config::tutorial_done = false;
2931

3032
//Sidebar_c
3133
int Config::Sidebar_c::fade_in;
@@ -145,6 +147,11 @@ void Config::init_general(void)
145147
Config::win_height = std::stoi(ini.GetValue("general", "height", "720"));
146148
Config::vsync = std::stoi(ini.GetValue("general", "vsync", "1"));
147149

150+
const char* first_time = ini.GetValue("general", "first_time", "true");
151+
Config::first_time = Utils::bool_from_string(first_time);
152+
const char* tutorial_done = ini.GetValue("general", "tutorial_done", "false");
153+
Config::tutorial_done = Utils::bool_from_string(tutorial_done);
154+
148155
const float r = std::stof(ini.GetValue("clear_color", "r", "0.45f"));
149156
const float g = std::stof(ini.GetValue("clear_color", "g", "0.55f"));
150157
const float b = std::stof(ini.GetValue("clear_color", "b", "0.60f"));

src/core/config.hpp

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ struct Config
2525
static CSimpleIniA ini;
2626
static const char* fonts[6];
2727
static const char* version;
28+
static bool first_time;
29+
static bool tutorial_done;
2830

2931
struct Sidebar_c
3032
{

src/main.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include "ui/assessments.hpp"
2525
#include "ui/diff_viewer.hpp"
2626
#include "ui/info.hpp"
27+
#include "ui/tutorial.hpp"
2728

2829
int main(int argv, char** args)
2930
{
@@ -92,6 +93,10 @@ int main(int argv, char** args)
9293
if (CodeNect::Terminal::init() != RES_SUCCESS) return -1;
9394
CodeNect::Terminal::register_commands();
9495

96+
//Tutorial
97+
if (CodeNect::Tutorial::init() != RES_SUCCESS) return -1;
98+
CodeNect::Tutorial::register_commands();
99+
95100
#if DEBUG_MODE
96101
bool is_imgui_demo = true;
97102
#endif
@@ -144,6 +149,7 @@ int main(int argv, char** args)
144149
CodeNect::Terminal::draw();
145150
CodeNect::SimulationControl::draw();
146151
CodeNect::Docs::draw();
152+
CodeNect::Tutorial::draw();
147153

148154
app.render_end();
149155
}

src/modules/transpiler.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -507,6 +507,11 @@ int Transpiler::run(void)
507507
{
508508
// tcc_output_file(Transpiler::tcc_state, filename.c_str());
509509
Transpiler::add_message(std::move("Launching program..."));
510+
#ifdef OS_LINUX
511+
Transpiler::add_message(std::move("Switch to the terminal to see the program"));
512+
#elif OS_WIN
513+
Transpiler::add_message(std::move("Switch to the command prompt to see the program"));
514+
#endif
510515
Transpiler::has_ran = true;
511516
}
512517

src/ui/info.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ void Info::draw(void)
4040
ICON_FA_EXCLAMATION_TRIANGLE " You have a warning\nin your visual code");
4141
if (ImGui::Button("Click here for more info"))
4242
Terminal::is_open = true;
43+
ImGui::End();
4344
}
44-
ImGui::End();
4545

4646
ImGui::PopStyleVar(2);
4747
}

src/ui/tutorial.cpp

+123
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
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+
}

src/ui/tutorial.hpp

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#ifndef _TUTORIAL_HPP
2+
#define _TUTORIAL_HPP
3+
4+
#include <string>
5+
#include <map>
6+
#include "imgui.h"
7+
8+
namespace CodeNect
9+
{
10+
struct Tutorial
11+
{
12+
static ImGuiWindowFlags flags;
13+
static bool is_open;
14+
static ImVec2 pos;
15+
static ImVec2 size;
16+
static unsigned int current_step;
17+
static std::map<const std::string, bool> m_steps;
18+
19+
static int init(void);
20+
static void register_commands(void);
21+
static void toggle(void);
22+
static void draw(void);
23+
};
24+
}
25+
26+
#endif //_TUTORIAL_HPP

src/ui/zoom.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ void Zoom::draw(void)
6363
if (ImGui::Begin("Zoom", &Zoom::is_open, Zoom::flags))
6464
{
6565
ImGui::Text(ICON_FA_SEARCH_PLUS " %d%%", (int)(Zoom::zoom_factor * 100));
66+
ImGui::End();
6667
}
67-
ImGui::End();
6868
}
6969
}

0 commit comments

Comments
 (0)