I've created a simple puzzle game, where I have to load a new layer of puzzle pieces after the first level is done. How do I manage that ? Do I have to create a class for each scene, or can I implement it straight away in the class where the scene of level 1 exists ? If yes, how do i do that ? Or is it more convenient to make different layers for the levels ? And if you could give me a small example of how to switch to another layer, I would be very thankful. Currently, I have a menu class and a Game class. When you click the "Start game" button in the menu, it will take you to the game scene, which is in the Game class. Where do I put next layers/scenes ? I hope my points are clear, if not please inform me. Thanks in advance.
|
feedback
|
|
So you managed you create your puzzle game's first level and now you're unsure about "going to the next level"? You don't need to make a new class per stage. One class is enough. Your Game class should be able to read some data and interpret it to build the stage. An interesting method would be having a .plist file in your project containing the necessary data for every level of the game. The .plist file is a Dictionary. You can make a key representing the first level (1) and another key representing the second level (2) and so on. The value for each key would be another dictionary with further data: A key for the number of monsters in the level: (monsters), a key for the time limit in the level, etc.......... The point is, it is wasteful to create a whole new class for every level you got. As long as one, main class can interpret a certain source of information and build it, it will be enough. Anyway, if you were wondering about transferring between CCScenes, here's an useful link: http://www.cocos2d-iphone.org/wiki/doku.php/prog_guide:lesson_3._menus_and_scenes | |||||||||||
feedback
|