Hi,
just want to ask what UI libraries are you using (if any) in your orx project?
I was searching for some and found for instance libRocket (
https://github.com/libRocket/libRocket) which should be easily integrated. Anyone has experienced with it? Or with some other libraries?
Thanks
Comments
https://bitbucket.org/volcanomobile/orxrocket
but it's a bit of an overkill, and there is currently no way to animate Rocket objects (needs a deeper integration with orxOBJECT)
I'm using a very light home made UI lib for my games which trigger some orx TRACK to do stuffs.
Philippe
Do you have a licence in mind for this piece of code?
In all seriousness, though, I tend to use the What The Fuck Public License for most of my projects, for this purpose.
I would welcome some UI in orx, but I think it isn't so straightforward to implement it. Because you know, everyone need something different, someone need only basic UI, some other needs some very-custom-specialized controls. The easiest way is to use some UI lib and only write some binding.
Anyway, I was looking to libRocket and to your binding to orx, lydesik. I would like to know your opinion on the library. What's wrong with animation problem? How extensible the library is (that is, if I want to make some custom control, is it possible with little effort or some huge amount of work is needed)?
I've also found TurboBadger (https://github.com/fruxo/turbobadger) which looks also interesting.
And also found NoesisGUI (http://www.noesisengine.com/noesis_gui_features.htm) which proprietary. But I would rather use OSS library than a proprietary one.
From skimming through some documentation in libRocket and the TurboBadger (as I haven't the time to try them) I like the TurboBadger better. Have someone use it?
As I written in the first post, if someone has some experience with some other framework, just throw your opinion here.
what The Fuck v1 or v2?
On topic: you can use normal objects, just reparent them to the camera and set them to a group that will be rendered last.
In addition to Lydesik's libRocket integration, some other users claimed to have had an ImGui approach (myself I was looking maybe into using blendish/oui for another iteration of ScrollEd, so for the editor, not for in-game UI).
I personally have a similar approach than Knolan and Lydesik: I'm using regular objects that are children of cameras for UI. My UI code is about 15-20 lines that will do picking and trigger tracks on the picked objects that are associated with them in config. That's about it. All the logic happens in those track and I use it for buttons, labels, scrolling texts, etc etc. I never had any need for typical UI "widgets", but I guess it's all contextual and depends heavily and one's game's needs.
It looks something like this, using Scroll:
A few details:
- mvMousePosition and mu64InteractionID are member variables of my Game class which derives from Scroll
- "Action" is the input I listen for UI interaction in this case (usually left click in both menus and game as well as left click + enter in menus, as I also support keyboard menu navigation that moves the mouse cursor between interactable entries)
And here's a generic base class for my menu entries:
As well as a few actual menu entries:
Thanks for the links about TurboBadger and NoesisGUI, I'll have a look into them, just out of curiosity.
was also looking for the CEGUI and it looks very good. I don't think that approach "using only orxObjects" would be sufficient for me. I would need also some more complicated dialogs, widgets, etc. and don't want to implement all from the scratch. So for now will look at CEGUI. Do you think that it would be possible to use CEGUI's OpenGL rendered or I would need to implement the custom one on the top of the orx? (I'm talking about the in game GUI here)
For the editor I was looking for the ImGui and I like it. Also oui-blendish looks nice.
Thanks for the all opinions.
And yes, some games have more advanced UI needs than basic buttons/dialog boxes, howver I guess I could provide an extra tutorial with a few common UI widgets. Lemme know if anyone is interested.
Error: I've read the OpenGL doc about glUniform (https://www.opengl.org/sdk/docs/man/html/glUniform.xhtml) but this error could happens in multiply cases. As I'm not OGL expert, I really don't know where could be the problem.
Do you know where could be the problem?
Thanks
But as I'm not the expert I don't know if it is right way to solve it.
Something you can try is, when CEGUI's rendering is done, to call orxDisplay_SetVideoMode(orxNULL). This will not modify the video mode per se but will reinit all rendering internals, including the activation of the default shader.
This error happens before rendering any CEGUI content. Why do you think that adding glUseProgramObjectARB() before setting the shader params isn't appropriate fix?
edit: But from the other side, why should someone pay for glUseProgramObjectARB() if he isn't using other shaders? The question is how slow the glUseProgramObjectARB() is? Maybe only some debug check could be added that will test the current acctive program? Or call glUseProgramObjectARB() before rendering the frame?
edit2: After more thinking, I agree with your previous answer, but would like to have some debug check as mentioned above (that the default shader used is the right one).
Thank You
As for the way it works, orx setups the render once in orxDisplay_Init() (which is called before you bootstrap CEGUI), and doesn't expect anyone to change anything with that has been setup. Or more precisely, it expects to have good citizen: whichever is changed by something else is expected to be put back as it was when that something is done executing, ie. that the default shader has been put back the way it was setup in the first place.
The orxDisplay_SetVideoMode(orxNULL) is only there to help reset things when some custom render call isn't a good citizen and doesn't restore everything as it was.
In addition to this, it also has better performances than querying OpenGL about all the current states to back them up locally as usually all the glGet* calls imply a CPU->GPU sync point, whereas orx caches those data on the CPU side when setting them up in the first place.
I think that we may need to modify orxDisplay_SetVideoMode(orxNULL) (null parameter means the path in this function where null is handled) to reset some more parameters to be able to use CEGUI OpenGL renderer (or maybe not if the custom renderer would be provided, see below). And there we could set the default shader and no debug checks are needed then.
Anyway, I was trying to make the CEGUI working but I can't. I have just root window (which is empty, it's logical root concept) and it crashed in nvidia OpenGL driver. When using integrated GFX the the crash isn't there, but only black screen is shown. I have logged the OpenGL calls when rendering the GUI and when not. But I don't know which could cause this. I'm attaching the log maybe some could spot something.
The lines between "-- CEGUI logs" and "-- CEGUI end" are the calls made by CEGUI. If I don't render the CEGUI, these lines aren't there and anything is ok.
Maybe I should make a custom CEGUI renderer for the orx. That was also my plan at the beginning but want to give a shot for the OpenGL renderer. Apparently it isn't working (or I'm doing it wrong
maybe it can help
thanks for the reply.
I've tried your code but without the luck. I would just go with implementing the custom renderer then and see how it goes.
I have to admit I'm still a bit fuzzy on how the CEGUI code gets injected in this sequence, but things are not cleaned after it gets executed (back to the fixed pipeline and the internal matrices are not reset either).