vote up 4 vote down star
6

Trying to decide on a library for creating a window and capturing user input for my OpenGL app, but there are just way too many choices:

GLUT is simply outdated. I liked GLFW but it seems you can't set the window position before displaying it (I wanted it centered, is that so much to ask?) so you see it appear and then shift over, which bothers me. Plus development seems to have stopped on it too. SFML has some nice features, but it uses event polling rather than callbacks which I prefer for decoupling. I don't think I need all the GUI features of FLTK. SDL is slow (doesn't seem to take advantage of the GPU). And the other 3 I don't know much about (FreeGLUT, OpenGLUT, OGLWFW). So which is the lesser of the evils? Are there others I haven't heard about?

I'm just trying to make a simple 2D game. I'm familiar enough with OpenGL that I don't really need drawing routines, but I probably wouldn't complain about other functions that might be useful if they are implemented properly.

flag

73% accept rate
OGLWFW seems to be Win32-only at the moment. The website says that Linux/Mac support is "planned." You haven't said whether licensing or cross-platform support is an issue - if it is, you might want to make note of that. – greyfade Aug 10 at 3:32
Oh. I must have glossed over that. Cross-platform is nice... especially since I'm developing on Ubuntu right now. Licensing is only a minor concern as I never seem to complete anything anyways... I never get to the point where I'm capable of selling it. – Mark Aug 10 at 4:03

3 Answers

vote up 3 vote down check

I'd go for Qt. Nice general purpose library + opengl support

link|flag
Right...forgot about Qt. Steep learning curve though, no? Tried using it once before, completely baffled me. – Mark Aug 10 at 0:52
Hrm... at least the editor it came with was (confusing). NetBeans 6.8 seems to have some level of support for Qt, so getting a simple app up and running wasn't so bad. – Mark Aug 10 at 1:11
I use Qt with Visual Studio on Windows and Vim/make on *nix boxes. It has really good documentation and clean API. I think there are tutorials for using it with IDEs like Eclipse/NetBeans/etc.. Just google for them – gonzo Aug 10 at 1:34
1  
Got something simple up and running now... starting to really like it :) Not only does it have perty callbacks... they're magically already registered for me. Seems to force you to separate your code, which is probably a good thing or I'd probably have a big mess already :D – Mark Aug 10 at 3:14
vote up 4 vote down

SDL allows you to create an OpenGL context that is accelerated (depending on drivers / hardware support).

I know you tagged as C++, however pygame (python) is a great library for creating 2D games, which also supports an OpenGL context. Pygame is built on SDL.

Clutter is a new OpenGL based GUI library with bindings for Perl, Python, C#, C++, Vala and Ruby. I haven't used it myself. From the website:

Clutter uses OpenGL (and optionally OpenGL ES for use on Mobile and embedded platforms) for rendering but with an API which hides the underlying GL complexity from the developer. The Clutter API is intended to be easy to use, efficient and flexible.

link|flag
SDL is still C-esque (requires cleanup) and uses event polling rather than callbacks, and doesn't seem to have very good integration with OpenGL (requires the usage of SDL wrapper functions?). – Mark Aug 10 at 0:55
Once you set up the OpenGL context in pygame or SDL you can use any OpenGL you want. I have an OpenGL app that basically used SDL for windowing and event polling and OpenGL for the graphics. – Karl Voigtland Aug 10 at 1:09
Well, yeah... I'm not saying it doesn't work, just is going to take a lot more convincing to beat out the other libraries. – Mark Aug 10 at 1:13
Clutter seems rather confusing. Do you know any open sourced programs that are written in clutter? – the_drow Aug 11 at 10:26
2  
@the_drow: I think the most high profile open-source user of Clutter right now is the Intel Moblin netbook OS: moblin.org. – Karl Voigtland Aug 11 at 11:24
vote up 3 vote down

GLUT and the other GLUT alternatives should not be used in any sort of production application. They are good for putting together a quick demo application or to try something out, but not for much more than that.

If you're trying to make an OpenGL game, I'd recommend SDL. It focuses more on gaming needs. It most definitely can be used with OpenGL. A brief google for "SDL OpenGL" turned up this link on how to initialize OpenGL with SDL. Enabling OpenGL should also enable hardware rendering with the GPU.

Qt is a reasonable alternative, but it's better if you want to embed OpenGL within a larger, desktop application (think 3D modeling, CAD/CAM, medical visualization, etc) where you need access to standard OS widgets for the UI.

link|flag
Yeah... but Qt also seems so much more modern and well designed! My game is going to have an editor... I can make use of those extra widgets :p I'll consider SDL for future projects though. – Mark Aug 11 at 17:11

Your Answer

Get an OpenID
or

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