The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
1answer
96 views

How to go about front end UI to main Game Engine and then to Game Over Phase [closed]

I am about to complete my first ever game. I have used Qt for windowing and OpenGL for actual game logic. I am confused about .. things which are related to design so according to FAQ, these kinda ...
1
vote
0answers
80 views

What is the right way to use a QStateMachine for a text adventure game?

I have seen a couple topics about this already but they were a bit vague for me so I decided to make this. I'm working on a little adventure game just for fun in Qt, its basically just text on the ...
0
votes
0answers
47 views

How to dump the dom in Qt Script?

Good afternoon, I’ve connected the Qt (4.8) script engine up within my application. I’m still learning how to make my application accessible from scripts. I’d like to debug it by enumerating ...
1
vote
1answer
232 views

How to have qt5 work on desktop like on mobile devices (es2, correct glsl version)?

I am looking for help/information concerning this issue : My work: I have an opengl es2 render engine that works on an iOS app. I almost managed to make it work by calling the same openGL rendering ...
1
vote
0answers
108 views

How to make an oscillation move on opengl qt

I'm trying to make a character make an oscillation move. That is, the character will start by rotating to a certain angle, say 60 degrees, and then slowly come back to an upright position then rotate ...
5
votes
1answer
256 views

Working Qt controls in a 3d environment

I need some advice from a Qt expert. The background: I have a 3D engine (ogre3d) working in concert with Qt. The 3D Content is displayed in a widget (using a custom OS window in the client area). I'm ...
0
votes
1answer
313 views

Pyglet vs. PyQt [closed]

I need to implement a really simple card game. As the game logic is written in Python I chose to stick with some Python framework even if my goal is to develop a Windows only version. I also don't ...
2
votes
3answers
363 views

Application toolkits like QT versus traditional game/multimedia libraries like SFML

I currently intend to use SFML for my next game project. I'll need a substantial GUI though (RPG/strategy-type) so I'll either have to implement my own or try to find an appropriate third party ...
0
votes
0answers
179 views

using OGRE with a GUI kit [closed]

I am currently working on a level editor for my game. The rendering in the editor will be done by Ogre3d however I'm still unsure which GUI kit I should pick, so I wanted to ask whether anyone has ...
2
votes
1answer
374 views

Is it possible to billboard a sprite using a transformation matrix?

None of the current topics on billboarding seemed to answer this question. But, given a sprite (or quad) that has it's own 4x4 transformation matrix a camera with a view matrix (a standard 4x4 ...
2
votes
1answer
250 views

Most efficient way to implement walls and shadows in 2d

I am making a 2d top-down programming game similar to robocode. There will be up to 1000 walls (lines) in the arena, and up to 50 robots. Each robot can see in a 90 degree arc, and cannot see through ...
1
vote
2answers
615 views

QT for lan game devleopment

I am making a small game for a course in my school and was planning on using QT to build it. I have worked with pygame[last year] and turbo c++[about 5 years agao] to make games, small easy stuff. ...
3
votes
2answers
2k views

What are the advantages and limitations of using Qt for game development?

I know there is already a thread asking for example 3d games written using Qt. What I'd like to have a discussion about is whether or not Qt is a good framework for game development. In my experience ...
1
vote
0answers
408 views

Which 3D rendering engine for a MotionBuilder Clone (with only character animation editing capabilities)? [closed]

I want to write a 3D App (think of a MotionBuilder clone for simplicity sake) that would be able to import a scene from common packages and apply/run my own character animation algorithms. Normal ...
0
votes
2answers
2k views

looking for simple 3d games made with Qt

Hi i need to make simple education games in 3d for that i need GUI and editor like function this is no problem . but the openGL stuff i need to learn by example. do you know places where i see ...
6
votes
2answers
580 views

OpenGL or OpenGL ES

What should I learn? OpenGL 4.1 or OpenGL ES 2.0? I will be developing desktop applications using Qt but I may start developing mobile applications in a few months, too. I don't know anything about ...
5
votes
2answers
521 views

What resources are available for using Qt as a toolkit for games

Qt is an excellent application toolkit and overall the best for C++. While some large projects use Qt (KDE for example), I haven't seen many games using it. So I decided to make my own. But what does ...