vote up 7 vote down star
5

It must come with source. I've looked at these which look semi-promising:

glgooey, guichan, and cegui. I've come across others that look more Windows-y than game-y, but that's not the direction I am looking to go in.

I would like some simple functionality of typical controls (lists, dropdown box, etc.) but with support for graphical widgets that you would normally find in game frontends. Mouse clicking, dragging, dropping, etc. and sound effect hooks would be nice. (These libs often leave hooks for the external system to tell it when/where mouse events are occurring.)

It would get rendered on top of what my own 3D engine is rendering for the game, so it must be able to play nicely with rendering code outside of the lib.

The best criteria is whether or not a reasonable 2D game could be implemented just with the GUI library and minimal glue code. (By glue code, I mean init code, hooking up the mouse, and game logic.) I am creating a 3D game, but this criteria gives a pretty solid idea of what level of interactivity I would like in the GUI.

flag

36% accept rate
Those are the ones I found when I was looking for the same thing a while ago. I used CEGUI for a while but it was kinda bloated. – thekidder Oct 17 '08 at 3:43
agreed. I found CEGUI a bit messy as well. – bobobobo Jul 7 at 4:10

6 Answers

vote up 3 vote down

We are using CEGUI, but I can't say I'm all that impressed. It's so complex that it is difficult to debug, even for simple things.

If you're willing to pay for a GUI library I've heard good things about Scaleform. It runs on most platforms and is an accelerated runtime for Flash that you can embed in your 3D engine. I haven't actually used it yet, but I intend to evaluate it as a CEGUI replacement.

link|flag
vote up 1 vote down

I used GLui for this little demo:

HexPlanet

It works well for little interfaces but I wouldn't recommend it for a large game.

Shy's suggestion about Qt is very good. It would be perfect for a game editor but it may be difficult to style it for an in-game gui, and it's still kind of experimental.

I'd recommend looking into RBG Gui which is a similar to CeGUI. It's very nice looking, and has a full widget set. However, the sample implementation is build on OGRE, you'd have to write a pure OpenGL backend, but that doesn't look to hard because the underlying support code is separated out and written with this kind of thing in mind, most of the gui system is render-system agnostic.

link|flag
vote up 0 vote down

I've used pyOpenGL, which works for wherever python works and wherever the pyOpenGL bindings have been ported to.

link|flag
vote up 0 vote down

As of one of the latest versions, QT can do OpenGL widgets almost seamlessly the same why it does normal widgets.
Check out this article:
The sources are available directly from here:
svn://labs.trolltech.com/svn/graphics/dojo/modelviewer

Ofcourse QT is released as open source and it also has quite an extensive support for 2D drawing using QPainter, which can also paint on OpenGL.

link|flag
vote up 0 vote down

If Python is an acceptable language, PyGame sounds like a good fit. As the name suggests, it was made for game development.

link|flag
vote up 0 vote down

How about:

http://glfw.sourceforge.net

link|flag
1  
Hmm, it looks like it's just a GLUT replacement, not an actual GUI library. – Jim Buck Aug 12 at 15:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.