main.cpp 4.0 KB

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