I'm working on figuring out C++ still. What I've been trying to do is make global instances of certain classes (the class controlling input stored in a global variable, the class controlling graphics stored in a global variable, the class controlling the overall game system stored in a variable, etc.) It's been working fine so far. But now I need to give an instance of the input controller data from the system controller.
In my game.h file (the one that runs the main loop and a few other things), I have defined the system as such
"global gameSystem"
in game.cpp I can access a variable in there named "keyCodes"
In my input.cpp file, I've included game.h and global.h (it didn't work with just game.h, so thought I'd try global.h too), and I can see the instance of gameSystem, but I cannot access it's keyCodes variable.
Any idea how to fix this? This sort of thing worked for me when I programmed in AS3 and Ruby. I like how modular it keeps things. So I'd really like to do it the same way in this x.x
global gameSystemwould instantiate an instance of classglobalnamedgameSystem. – dauphic Aug 22 '12 at 20:56main(). – cdhowie Aug 22 '12 at 21:01