New in Qt game development...
-
wrote on 16 May 2011, 07:44 last edited by
Hi everyone...
I'm new to this Qt environment and game development in Qt..
Can anyone give me some basic idea about starting with Qt in game development
Some tutorials to start?Thank you....
-
wrote on 16 May 2011, 07:59 last edited by
Maybe you can elaborate what tutorials do you want? gamedev is not a small topic. Are you talking about opengl or 2d drawing? etc.
Also I think you need first to go throught Qt manuals and tutorials. -
wrote on 16 May 2011, 08:10 last edited by
yeah... I have some basic knowledge in OpenGL , and I need to learn about integrating OpenGL libraries with Qt... do we need to edit project setting and locate opengl library files like we do for Visual Studio or the OpenGL libraries comes integrated with the Qt IDE.
Where can I find the Qt manuals and tutorials. Some basic tutorials in this site shows loading error.
-
wrote on 16 May 2011, 08:15 last edited by
If you want to use OpenGl check this "documentation":http://doc.trolltech.com/latest/qtopengl.html#details You can find OpenGL examples from here: http://doc.trolltech.com/4.7-snapshot/examples-opengl.html
But if you are developing 2d game, you could also consider QML "(Qt Quick)":http://doc.trolltech.com/latest/qtquick.html
-
wrote on 16 May 2011, 09:34 last edited by
I'm Getting this warnings in my first application... I didn't code much... the main.cpp is
@#include <QtGui>int main(int argc, char *argv[])
{
QApplication a(argc, argv);return a.exec();
}@
The system cannot execute the specified program.
The system cannot execute the specified program.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\mkspecs\features\mobility.prf:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\mkspecs\features\mobility.prf:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\lib\qtmaind.prl:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\lib\QtGuid.prl:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\lib\QtCored.prl:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\lib\qtmaind.prl:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\mkspecs\features\mobility.prf:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\lib\qtmain.prl:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\lib\QtGui.prl:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\lib\QtCore.prl:1: Unescaped backslashes are deprecated.
WARNING: c:\NokiaQtSDK\Simulator\Qt\msvc2005\lib\qtmain.prl:1: Unescaped backslashes are deprecated.
-
wrote on 17 May 2011, 06:31 last edited by
Corrected it... I've just re-created the project with only one simulator selected....
1/6