Page 2 of 3

Posted: Thu Jul 23, 2009 1:07 am
by bhbtti
haha you not understanding my question
i just want a framework so i can build off of it

Posted: Thu Jul 23, 2009 1:41 am
by wildrj
http://sourceforge.net/projects/sirrf << simple irrlicht frame work.

Posted: Thu Jul 23, 2009 3:11 am
by bhbtti
what do i do with it

Posted: Thu Jul 23, 2009 5:39 am
by Sylence
Ok there is one step you should do before planning ^^
Learn programming

Posted: Thu Jul 23, 2009 8:03 am
by FuzzYspo0N
what do i do with it
You create a state, "menu state" or "game state"

http://sourceforge.net/apps/trac/sirrf/ ... als/v0.1.x

Posted: Thu Jul 23, 2009 9:06 am
by Virion
Sylence wrote:Ok there is one step you should do before planning ^^
Learn programming
i second this as well :wink:

Posted: Thu Jul 23, 2009 10:30 am
by bhbtti
i followed guide but i dont understand how to set it up cant find dependiecies

in sirrf

Posted: Thu Jul 23, 2009 10:43 am
by Camel
bhbtti wrote:i followed guide but i dont understand how to set it up cant find dependiecies

in sirrf
Ok, with all the information you've provided I've been able to track down the exact cause for these missing dependencies and provide an equally informative response.

You just need to . . . . .

Posted: Thu Jul 23, 2009 10:46 am
by bhbtti
i compile in visual studio but i get errors cant find dependiencies.h

Code: Select all

#ifndef __MYSTATE_H__
#define __MYSTATE_H__

// Include files
#include "dependencies.h"
#include "../core/GameState.h"


// MyState class
class MyState : public GameState
{
public:

     // Initialisation, deinitialisation and control...
     MyState();
     ~MyState();

     void init();
     void clear();

     void update(f32 deltaTime);
     void render();
};

#endif

Posted: Thu Jul 23, 2009 11:17 am
by CuteAlien
bhbtti wrote:i compile in visual studio but i get errors cant find dependiencies.h
Does the file exist? If so - check in which path it is and add that path to the include paths (somewhere in project settings, not sure how they are called in VS).

But anyway - I didn't joke when I told you to start with small games and build up from there. You have to get comfortable with the programming language, your development environment (for example Visual Studion) and so on before you can really do games. I don't think it is a good idea starting with 3D games (as I suppose you are trying to do). So starting by reading code of a 2D game like Bitplane proposed and working your way through it to understand it will probably be a faster way to learn. Or start with the irrlicht examples - they are documented rather well - and then start with adding minor modifications. The important thing is - you have to learn the basics first.

Posted: Thu Jul 23, 2009 3:39 pm
by FuzzYspo0N
compile in visual studio but i get errors cant find dependiencies.h
Dont copy paste code if you dont know what its doing or where it goes.

sirrf is a framework, meaning that you code your game INTO THE EXISTING CODE BASE, as in, open sirrf.sln, under the game folder in the solution explorer there is an empty filter called "game" , if you make your class PART of the sirrf solution, it will work.

And as CuteAlien suggested, learn to use the tools you are attempting to use for games, or start somewhere simpler like game maker.

Posted: Thu Jul 23, 2009 7:27 pm
by namespace
My advice is to grab a good C++ book (most big bookstores have them) and go through it.

Then start looking through the tutorials and they'll make more sense, it's like reading a secret code, it's not meant to be difficult, but if words are all out of order and have symbols between them your not going to understand it until you understand for example == means equals while = means assign whats on the right to the left.

Go through C++ before you try to write a document in it's code.

Posted: Thu Jul 23, 2009 7:29 pm
by bhbtti
i have 2 years with c++ experience

Posted: Thu Jul 23, 2009 7:50 pm
by Virion
bhbtti wrote:i compile in visual studio but i get errors cant find dependiencies.h
bhbtti wrote:i have 2 years with c++ experience
:lol:

Posted: Thu Jul 23, 2009 8:09 pm
by bhbtti
haha got jokes