main.cpp 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. // ImGui - standalone example application for SDL2 + OpenGL
  2. #include <imgui.h>
  3. #include "imgui_impl_sdl.h"
  4. #include <stdio.h>
  5. #include <SDL.h>
  6. #include <SDL_opengl.h>
  7. int main(int, char**)
  8. {
  9. // Setup SDL
  10. if (SDL_Init(SDL_INIT_EVERYTHING) != 0)
  11. {
  12. printf("Error: %s\n", SDL_GetError());
  13. return -1;
  14. }
  15. // Setup window
  16. SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
  17. SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 24);
  18. SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE, 8);
  19. SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 2);
  20. SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 2);
  21. SDL_DisplayMode current;
  22. SDL_GetCurrentDisplayMode(0, &current);
  23. SDL_Window *window = SDL_CreateWindow("ImGui SDL2+OpenGL example", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 1280, 720, SDL_WINDOW_OPENGL|SDL_WINDOW_RESIZABLE);
  24. SDL_GLContext glcontext = SDL_GL_CreateContext(window);
  25. // Setup ImGui binding
  26. ImGui_ImplSdl_Init(window);
  27. // Load Fonts
  28. // (see extra_fonts/README.txt for more details)
  29. //ImGuiIO& io = ImGui::GetIO();
  30. //io.Fonts->AddFontDefault();
  31. //io.Fonts->AddFontFromFileTTF("../../extra_fonts/Cousine-Regular.ttf", 15.0f);
  32. //io.Fonts->AddFontFromFileTTF("../../extra_fonts/DroidSans.ttf", 16.0f);
  33. //io.Fonts->AddFontFromFileTTF("../../extra_fonts/ProggyClean.ttf", 13.0f);
  34. //io.Fonts->AddFontFromFileTTF("../../extra_fonts/ProggyTiny.ttf", 10.0f);
  35. //io.Fonts->AddFontFromFileTTF("c:\\Windows\\Fonts\\ArialUni.ttf", 18.0f, NULL, io.Fonts->GetGlyphRangesJapanese());
  36. // Merge glyphs from multiple fonts into one (e.g. combine default font with another with Chinese glyphs, or add icons)
  37. //static const ImWchar icons_ranges[] = { 0xf000, 0xf3ff, 0 }; // will not be copied by AddFont* so keep in scope.
  38. //ImFontConfig icons_config; icons_config.MergeMode = true; icons_config.PixelSnapH = true;
  39. //io.Fonts->AddFontFromFileTTF("../../extra_fonts/DroidSans.ttf", 18.0f);
  40. //io.Fonts->AddFontFromFileTTF("../../extra_fonts/fontawesome-webfont.ttf", 18.0f, &icons_config, icons_ranges);
  41. bool show_test_window = true;
  42. bool show_another_window = false;
  43. ImVec4 clear_color = ImColor(114, 144, 154);
  44. // Main loop
  45. bool done = false;
  46. while (!done)
  47. {
  48. SDL_Event event;
  49. while (SDL_PollEvent(&event))
  50. {
  51. ImGui_ImplSdl_ProcessEvent(&event);
  52. if (event.type == SDL_QUIT)
  53. done = true;
  54. }
  55. ImGui_ImplSdl_NewFrame(window);
  56. // 1. Show a simple window
  57. // Tip: if we don't call ImGui::Begin()/ImGui::End() the widgets appears in a window automatically called "Debug"
  58. {
  59. static float f = 0.0f;
  60. ImGui::Text("Hello, world!");
  61. ImGui::SliderFloat("float", &f, 0.0f, 1.0f);
  62. ImGui::ColorEdit3("clear color", (float*)&clear_color);
  63. if (ImGui::Button("Test Window")) show_test_window ^= 1;
  64. if (ImGui::Button("Another Window")) show_another_window ^= 1;
  65. ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate);
  66. }
  67. // 2. Show another simple window, this time using an explicit Begin/End pair
  68. if (show_another_window)
  69. {
  70. ImGui::SetNextWindowSize(ImVec2(200,100), ImGuiSetCond_FirstUseEver);
  71. ImGui::Begin("Another Window", &show_another_window);
  72. ImGui::Text("Hello");
  73. ImGui::End();
  74. }
  75. // 3. Show the ImGui test window. Most of the sample code is in ImGui::ShowTestWindow()
  76. if (show_test_window)
  77. {
  78. ImGui::SetNextWindowPos(ImVec2(650, 20), ImGuiSetCond_FirstUseEver);
  79. ImGui::ShowTestWindow(&show_test_window);
  80. }
  81. // Rendering
  82. glViewport(0, 0, (int)ImGui::GetIO().DisplaySize.x, (int)ImGui::GetIO().DisplaySize.y);
  83. glClearColor(clear_color.x, clear_color.y, clear_color.z, clear_color.w);
  84. glClear(GL_COLOR_BUFFER_BIT);
  85. ImGui::Render();
  86. SDL_GL_SwapWindow(window);
  87. }
  88. // Cleanup
  89. ImGui_ImplSdl_Shutdown();
  90. SDL_GL_DeleteContext(glcontext);
  91. SDL_DestroyWindow(window);
  92. SDL_Quit();
  93. return 0;
  94. }