Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dear ImGui Updates: v1.89.8 Release / Docking Branch #2311

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

richardeakin
Copy link
Collaborator

@richardeakin richardeakin commented Aug 7, 2023

This updates Dear ImGui sources to v1.89.8, docking branch. Also hoping to get a consensus on what branch people would like to see in the master repo. Personally, I think the new ImGui Tables API is a must for data debugging, although that does live in the official release branch. I know that on various client projects, we've switched to using docking as it allows for a cleaner user-facing GUI, and although the API appears stable who knows when it'll make it into the official release branch.

Important code changes include:

  • imgui_tables.cpp is new
  • imgui_impl_opengl3_loader.h is new but kept private to src folder (gl loader only used by imgui_impl_opengl3.cpp)
  • Using CinderImGuiConfig.h now
    • It was already in the cinder repo, just wasn't being #includeed.
    • Fixes IM_ASSERTS not being catchable
    • defines IMGUI_DEFINE_MATH_OPERATORS (see release notes in v1.89.4)

I had to make minor upates to my own GUI code in various places (ListBox(), GetContentAvailWidth() -> ImGui::GetContentRegionAvail().x)

Last thing to note: we're discussing moving Dear ImGui to a submodule for a future release (likely when v2.0 lands), let us know if any feedback on that as well.

Needed:

  • add imgui_tables.cpp to the Xcode project. I don't have access to an OS X machine right now. This is why the unit test is only failing on the OS X target (cmake is looking for imgui_tables.cpp already)

- imgui_tables.cpp is new
- imgui_impl_opengl3_loader.h is new but kept private to src folder (gl loader only used by imgui_impl_opengl3.cpp)
- Fixes IM_ASSERTS not being catchable
- defines IMGUI_DEFINE_MATH_OPERATORS (see release notes in v1.89.4)
@richardeakin richardeakin added the imgui Dear ImGui things label Aug 7, 2023
@richardeakin
Copy link
Collaborator Author

I just pushed an additional update that fixes IM_ASSERTs called from within imgui.cpp, imgui_widgets.cpp, etc, that don't include CinderImGui.h first. Tested and breakipoints now get correctly routed to CI_BREAKPOINT(), and you can use things like LoggerBreakpoint() now to hunt down a missing ImGui::End(), for example.

This is because if the user doesn't define IMGUI_USER_CONFIG, CinderImGui.h will include its own config header called "cinder/CinderImGuiConfig.h". But imgui.h is written so that if IMGUI_USER_CONFIG isn't defined, then it will #include "imconfig.h", here. Two other ways we could fix this:

  • Define a IMGUI_USER_CONFIG = "cinder/CinderImGuiConfig.h" macro for cinder targets, on each platform (msvc, xcode, cmake).
  • Move the contents of our CinderImGuiConfig.h to imconfig.h and just keep imconfig.h. Drawback is updating would wipe out the cinder mods for our types and handlers if you're not careful.

I think this is a decent middleground, where all you need to do after updating, is to copy that #include redirect so that imgui.h and everything else is looking at CinderImGuiConfig.h, which is versioned in the cinder repo.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
imgui Dear ImGui things
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant