main.cpp 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. #define GLEW_STATIC
  2. #include <GL/glew.h>
  3. #include <GLFW/glfw3.h>
  4. #define STB_IMAGE_IMPLEMENTATION
  5. #include "stb_image.h" // for .png loading
  6. #include "../../imgui.h"
  7. #ifdef _MSC_VER
  8. #pragma warning (disable: 4996) // 'This function or variable may be unsafe': strcpy, strdup, sprintf, vsnprintf, sscanf, fopen
  9. #endif
  10. static GLFWwindow* window;
  11. static GLuint fontTex;
  12. // This is the main rendering function that you have to implement and provide to ImGui (via setting up 'RenderDrawListsFn' in the ImGuiIO structuer)
  13. // We are using the fixed pipeline.
  14. // A faster way would be to collate all vertices from all cmd_lists into a single vertex buffer
  15. static void ImImpl_RenderDrawLists(ImDrawList** const cmd_lists, int cmd_lists_count)
  16. {
  17. if (cmd_lists_count == 0)
  18. return;
  19. // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, vertex/texcoord/color pointers.
  20. glEnable(GL_BLEND);
  21. glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
  22. glDisable(GL_CULL_FACE);
  23. glDisable(GL_DEPTH_TEST);
  24. glEnable(GL_SCISSOR_TEST);
  25. glEnableClientState(GL_VERTEX_ARRAY);
  26. glEnableClientState(GL_TEXTURE_COORD_ARRAY);
  27. glEnableClientState(GL_COLOR_ARRAY);
  28. // Setup texture
  29. glBindTexture(GL_TEXTURE_2D, fontTex);
  30. glEnable(GL_TEXTURE_2D);
  31. // Setup orthographic projection matrix
  32. const float width = ImGui::GetIO().DisplaySize.x;
  33. const float height = ImGui::GetIO().DisplaySize.y;
  34. glMatrixMode(GL_PROJECTION);
  35. glLoadIdentity();
  36. glOrtho(0.0f, width, height, 0.0f, -1.0f, +1.0f);
  37. glMatrixMode(GL_MODELVIEW);
  38. glLoadIdentity();
  39. // Render command lists
  40. for (int n = 0; n < cmd_lists_count; n++)
  41. {
  42. const ImDrawList* cmd_list = cmd_lists[n];
  43. const unsigned char* vtx_buffer = (const unsigned char*)cmd_list->vtx_buffer.begin();
  44. glVertexPointer(2, GL_FLOAT, sizeof(ImDrawVert), (void*)(vtx_buffer));
  45. glTexCoordPointer(2, GL_FLOAT, sizeof(ImDrawVert), (void*)(vtx_buffer+8));
  46. glColorPointer(4, GL_UNSIGNED_BYTE, sizeof(ImDrawVert), (void*)(vtx_buffer+16));
  47. int vtx_offset = 0;
  48. const ImDrawCmd* pcmd_end = cmd_list->commands.end();
  49. for (const ImDrawCmd* pcmd = cmd_list->commands.begin(); pcmd != pcmd_end; pcmd++)
  50. {
  51. glScissor((int)pcmd->clip_rect.x, (int)(height - pcmd->clip_rect.w), (int)(pcmd->clip_rect.z - pcmd->clip_rect.x), (int)(pcmd->clip_rect.w - pcmd->clip_rect.y));
  52. glDrawArrays(GL_TRIANGLES, vtx_offset, pcmd->vtx_count);
  53. vtx_offset += pcmd->vtx_count;
  54. }
  55. }
  56. glDisable(GL_SCISSOR_TEST);
  57. glDisableClientState(GL_COLOR_ARRAY);
  58. glDisableClientState(GL_TEXTURE_COORD_ARRAY);
  59. glDisableClientState(GL_VERTEX_ARRAY);
  60. }
  61. static const char* ImImpl_GetClipboardTextFn()
  62. {
  63. return glfwGetClipboardString(window);
  64. }
  65. static void ImImpl_SetClipboardTextFn(const char* text, const char* text_end)
  66. {
  67. if (!text_end)
  68. text_end = text + strlen(text);
  69. if (*text_end == 0)
  70. {
  71. // Already got a zero-terminator at 'text_end', we don't need to add one
  72. glfwSetClipboardString(window, text);
  73. }
  74. else
  75. {
  76. // Add a zero-terminator because glfw function doesn't take a size
  77. char* buf = (char*)malloc(text_end - text + 1);
  78. memcpy(buf, text, text_end-text);
  79. buf[text_end-text] = '\0';
  80. glfwSetClipboardString(window, buf);
  81. free(buf);
  82. }
  83. }
  84. // GLFW callbacks to get events
  85. static void glfw_error_callback(int error, const char* description)
  86. {
  87. fputs(description, stderr);
  88. }
  89. static void glfw_scroll_callback(GLFWwindow* window, double xoffset, double yoffset)
  90. {
  91. ImGuiIO& io = ImGui::GetIO();
  92. io.MouseWheel = (yoffset != 0.0f) ? yoffset > 0.0f ? 1 : - 1 : 0; // Mouse wheel: -1,0,+1
  93. }
  94. static void glfw_key_callback(GLFWwindow* window, int key, int scancode, int action, int mods)
  95. {
  96. ImGuiIO& io = ImGui::GetIO();
  97. if (action == GLFW_PRESS)
  98. io.KeysDown[key] = true;
  99. if (action == GLFW_RELEASE)
  100. io.KeysDown[key] = false;
  101. io.KeyCtrl = (mods & GLFW_MOD_CONTROL) != 0;
  102. io.KeyShift = (mods & GLFW_MOD_SHIFT) != 0;
  103. }
  104. static void glfw_char_callback(GLFWwindow* window, unsigned int c)
  105. {
  106. if (c > 0 && c <= 255)
  107. ImGui::GetIO().AddInputCharacter((char)c);
  108. }
  109. // OpenGL code based on http://open.gl tutorials
  110. void InitGL()
  111. {
  112. glfwSetErrorCallback(glfw_error_callback);
  113. if (!glfwInit())
  114. exit(1);
  115. glfwWindowHint(GLFW_RESIZABLE, GL_FALSE);
  116. window = glfwCreateWindow(1280, 720, "ImGui OpenGL example", NULL, NULL);
  117. glfwMakeContextCurrent(window);
  118. glfwSetKeyCallback(window, glfw_key_callback);
  119. glfwSetScrollCallback(window, glfw_scroll_callback);
  120. glfwSetCharCallback(window, glfw_char_callback);
  121. glewInit();
  122. }
  123. void InitImGui()
  124. {
  125. int w, h;
  126. glfwGetWindowSize(window, &w, &h);
  127. ImGuiIO& io = ImGui::GetIO();
  128. io.DisplaySize = ImVec2((float)w, (float)h); // Display size, in pixels. For clamping windows positions.
  129. io.DeltaTime = 1.0f/60.0f; // Time elapsed since last frame, in seconds (in this sample app we'll override this every frame because our timestep is variable)
  130. io.PixelCenterOffset = 0.5f; // Align OpenGL texels
  131. io.KeyMap[ImGuiKey_Tab] = GLFW_KEY_TAB; // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array.
  132. io.KeyMap[ImGuiKey_LeftArrow] = GLFW_KEY_LEFT;
  133. io.KeyMap[ImGuiKey_RightArrow] = GLFW_KEY_RIGHT;
  134. io.KeyMap[ImGuiKey_UpArrow] = GLFW_KEY_UP;
  135. io.KeyMap[ImGuiKey_DownArrow] = GLFW_KEY_DOWN;
  136. io.KeyMap[ImGuiKey_Home] = GLFW_KEY_HOME;
  137. io.KeyMap[ImGuiKey_End] = GLFW_KEY_END;
  138. io.KeyMap[ImGuiKey_Delete] = GLFW_KEY_DELETE;
  139. io.KeyMap[ImGuiKey_Backspace] = GLFW_KEY_BACKSPACE;
  140. io.KeyMap[ImGuiKey_Enter] = GLFW_KEY_ENTER;
  141. io.KeyMap[ImGuiKey_Escape] = GLFW_KEY_ESCAPE;
  142. io.KeyMap[ImGuiKey_A] = GLFW_KEY_A;
  143. io.KeyMap[ImGuiKey_C] = GLFW_KEY_C;
  144. io.KeyMap[ImGuiKey_V] = GLFW_KEY_V;
  145. io.KeyMap[ImGuiKey_X] = GLFW_KEY_X;
  146. io.KeyMap[ImGuiKey_Y] = GLFW_KEY_Y;
  147. io.KeyMap[ImGuiKey_Z] = GLFW_KEY_Z;
  148. io.RenderDrawListsFn = ImImpl_RenderDrawLists;
  149. io.SetClipboardTextFn = ImImpl_SetClipboardTextFn;
  150. io.GetClipboardTextFn = ImImpl_GetClipboardTextFn;
  151. // Load font texture
  152. glGenTextures(1, &fontTex);
  153. glBindTexture(GL_TEXTURE_2D, fontTex);
  154. glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
  155. glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
  156. const void* png_data;
  157. unsigned int png_size;
  158. ImGui::GetDefaultFontData(NULL, NULL, &png_data, &png_size);
  159. int tex_x, tex_y, tex_comp;
  160. void* tex_data = stbi_load_from_memory((const unsigned char*)png_data, (int)png_size, &tex_x, &tex_y, &tex_comp, 0);
  161. glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, tex_x, tex_y, 0, GL_RGBA, GL_UNSIGNED_BYTE, tex_data);
  162. stbi_image_free(tex_data);
  163. }
  164. void UpdateImGui()
  165. {
  166. ImGuiIO& io = ImGui::GetIO();
  167. // Setup timestep
  168. static double time = 0.0f;
  169. const double current_time = glfwGetTime();
  170. io.DeltaTime = (float)(current_time - time);
  171. time = current_time;
  172. // Setup inputs
  173. // (we already got mouse wheel, keyboard keys & characters from glfw callbacks polled in glfwPollEvents())
  174. double mouse_x, mouse_y;
  175. glfwGetCursorPos(window, &mouse_x, &mouse_y);
  176. io.MousePos = ImVec2((float)mouse_x, (float)mouse_y); // Mouse position, in pixels (set to -1,-1 if no mouse / on another screen, etc.)
  177. io.MouseDown[0] = glfwGetMouseButton(window, GLFW_MOUSE_BUTTON_LEFT) != 0;
  178. io.MouseDown[1] = glfwGetMouseButton(window, GLFW_MOUSE_BUTTON_RIGHT) != 0;
  179. // Start the frame
  180. ImGui::NewFrame();
  181. }
  182. // Application code
  183. int main(int argc, char** argv)
  184. {
  185. InitGL();
  186. InitImGui();
  187. while (!glfwWindowShouldClose(window))
  188. {
  189. ImGuiIO& io = ImGui::GetIO();
  190. io.MouseWheel = 0;
  191. glfwPollEvents();
  192. UpdateImGui();
  193. // Create a simple window
  194. // Tip: if we don't call ImGui::Begin()/ImGui::End() the widgets appears in a window automatically called "Debug"
  195. static bool show_test_window = true;
  196. static bool show_another_window = false;
  197. static float f;
  198. ImGui::Text("Hello, world!");
  199. ImGui::SliderFloat("float", &f, 0.0f, 1.0f);
  200. show_test_window ^= ImGui::Button("Test Window");
  201. show_another_window ^= ImGui::Button("Another Window");
  202. // Calculate and show framerate
  203. static float ms_per_frame[120] = { 0 };
  204. static int ms_per_frame_idx = 0;
  205. static float ms_per_frame_accum = 0.0f;
  206. ms_per_frame_accum -= ms_per_frame[ms_per_frame_idx];
  207. ms_per_frame[ms_per_frame_idx] = ImGui::GetIO().DeltaTime * 1000.0f;
  208. ms_per_frame_accum += ms_per_frame[ms_per_frame_idx];
  209. ms_per_frame_idx = (ms_per_frame_idx + 1) % 120;
  210. const float ms_per_frame_avg = ms_per_frame_accum / 120;
  211. ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", ms_per_frame_avg, 1000.0f / ms_per_frame_avg);
  212. // Show the ImGui test window
  213. // Most of user example code is in ImGui::ShowTestWindow()
  214. if (show_test_window)
  215. {
  216. ImGui::SetNewWindowDefaultPos(ImVec2(650, 20)); // Normally user code doesn't need/want to call it because positions are saved in .ini file anyway. Here we just want to make the demo initial state a bit more friendly!
  217. ImGui::ShowTestWindow(&show_test_window);
  218. }
  219. // Show another simple window
  220. if (show_another_window)
  221. {
  222. ImGui::Begin("Another Window", &show_another_window, ImVec2(200,100));
  223. ImGui::Text("Hello");
  224. ImGui::End();
  225. }
  226. // Rendering
  227. glViewport(0, 0, (int)io.DisplaySize.x, (int)io.DisplaySize.y);
  228. glClearColor(0.8f, 0.6f, 0.6f, 1.0f);
  229. glClear(GL_COLOR_BUFFER_BIT);
  230. ImGui::Render();
  231. glfwSwapBuffers(window);
  232. }
  233. ImGui::Shutdown();
  234. glfwTerminate();
  235. return 0;
  236. }