up vote 21 down vote favorite
13
share [g+] share [fb]

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.

link|improve this question

43% accept rate
1  
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
1  
agreed. I found CEGUI a bit messy as well. – bobobobo Jul 7 '09 at 4:10
feedback

8 Answers

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|improve this answer
The way Qt integrates these widgets also seems to be the most sophisticated way to integrate them. – nebukadnezzar Feb 17 '11 at 2:22
feedback

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|improve this answer
We've used Scaleform in the past and it's good. It does require a competent Flash programmer, but as long as you have one it's a good option. – George Sealy Feb 7 '11 at 23:41
feedback

I second Qt as recommended in another answer. You can use a combination of QWidget, QGraphicItem, QGLWidget, QTimeLine, the QtAnimation framework, and QStyle, depending on the specific things you need. For example, if all you need is a plain setup/launch UI that's not integrated with the game content, you can get away with simple QWidget+CSS programming. Otherwise you may wish to integrate fancy QGraphicItems into your QGLWidget, and animate UI transitions with QTimeLine or QtAnimation.

link|improve this answer
feedback

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|improve this answer
feedback

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

link|improve this answer
is it so much a GUI library? – gatoatigrado Jul 5 '10 at 1:29
What's your definition of GUI library? It supports displays and fonts and rectangles and shape-drawing and sprites and other graphics concepts. It supports mouse and keyboard events, and other inputs. So, yes, it is a GUI library. Hmmmm.. perhaps it doesn't have enough support for drop-down menus and list boxes and the like, though. Is that your concern? – Oddthinking Jul 5 '10 at 5:45
Yes, widgets make it usable for GUIs as I think of them (I think the author was referring to form GUIs), and perhaps more centrally, a GUI library usually has layout routines, to e.g. fit everything nicely when the window, resolution, etc. changes. – gatoatigrado Jul 16 '10 at 21:22
feedback

Supposedly Scaleform now includes a complete UI framework named Scaleform CLIK, which can be used for both game and 3d application UI development. They even provide a sample App Kit that shows how to use CLIK for OpenGL and D3D desktop apps.

Having the UI layer based in Flash with direct binding from C++ is super powerful, as it allows your artists to create beautifully animated Flash UI while your programmers handle layout and data population. You can even add 3D animation effects and tilting to the UI if you use the Scaleform/Flash solution.

Good luck!

link|improve this answer
So how is this openGl, exactly? – Timothy Groote Aug 3 '11 at 14:37
feedback

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

link|improve this answer
Not a GUI library – Stefan Monov Jan 20 '10 at 23:49
oops, didn't read the qwuestion – Claudiu Jan 28 '10 at 1:25
feedback

How about:

http://glfw.sourceforge.net

link|improve this answer
3  
Hmm, it looks like it's just a GLUT replacement, not an actual GUI library. – Jim Buck Aug 12 '09 at 15:07
Not a GUI library. – Nick Jan 20 '10 at 15:31
feedback

Your Answer

 
or
required, but never shown

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