-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
101 lines (76 loc) · 2.32 KB
/
main.cpp
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
#include <iostream>
#define PY_SSIZE_T_CLEAN
#include <Python.h>
// #include <dlfcn.h>
#include <stdexcept>
#include "imgui_python_binding.h"
#include "plugin_loader.h"
#include "plugin_manager.h"
#include "imgui.h"
#include "backends/imgui_impl_glfw.h"
#include "backends/imgui_impl_opengl3.h"
#include <GLFW/glfw3.h>
#include <string>
#include <vector>
#include <map>
GLFWwindow* window;
PluginManager pluginManager;
void init_bindings() {
PyImport_AppendInittab(ImguiPythonBinding::moduleName, ImguiPythonBinding::PyInit_addon);
}
void cleanup() {
ImGui_ImplOpenGL3_Shutdown();
ImGui_ImplGlfw_Shutdown();
ImGui::DestroyContext();
glfwTerminate();
}
void init() {
// Initialize GLFW and create a window
glfwInit();
window = glfwCreateWindow(800, 600, "Plugin loader example", NULL, NULL);
glfwMakeContextCurrent(window);
// Initialize ImGui
IMGUI_CHECKVERSION();
ImGui::CreateContext();
ImGui_ImplGlfw_InitForOpenGL(window, true);
ImGui_ImplOpenGL3_Init("#version 330");
// try {
pluginManager.init();
// } catch (std::runtime_error e) {
// //cleanup();
// }
}
// Main loop
void loop() {
while (!glfwWindowShouldClose(window)) {
glfwPollEvents();
ImGui_ImplOpenGL3_NewFrame();
ImGui_ImplGlfw_NewFrame();
ImGui::NewFrame();
// Create a ImGui window
// ImGui::Text("This is a ImGui window!");
// Call update functions of all loaded plugins
for (auto&& p : pluginManager.plugins) {
ImGui::Begin(p->name.c_str());
p->update();
ImGui::End();
}
// ImGui::Begin("MyWindow");
// // ImGui::GetWindowDrawList()->AddRect(ImVec2(10, 10), ImVec2(10 + 60, 10 + 60), IM_COL32(255, 0, 0, 255));
// ImGui::GetForegroundDrawList()->AddRect(ImVec2(50, 50), ImVec2(50 + 100, 50 + 100), IM_COL32(255, 0, 0, 255));
// ImGui::End();
ImGui::Render();
int display_w, display_h;
glfwGetFramebufferSize(window, &display_w, &display_h);
glViewport(0, 0, display_w, display_h);
glClear(GL_COLOR_BUFFER_BIT);
ImGui_ImplOpenGL3_RenderDrawData(ImGui::GetDrawData());
glfwSwapBuffers(window);
}
}
int main(int argc, char *argv[]) {
init();
loop();
cleanup();
return 0;
}