I am intending to develop a story book using cocos2d. So i think i want to create scenes corresponding to the book pages. The book may consist of some 100 pages. So creating that much scene will be redundant. Is there any other ways in cocos2d for implementing the book pages and transition between pages

link|improve this question

43% accept rate
feedback

1 Answer

up vote 1 down vote accepted

First of all,

If you are thinking about specifying each page of the book as a separated in order to define a particular scene, you will get in trouble :)

It would be much better to specify each scene in a .plist file. Define all the Book page content in a Key-Value fashion using several plists (one per page for example), and then just code a "Page Loader" Class which takes a *page_X.plist* file and return a Scene Object in your app.

Something like:

Scene *loaded = [SceneLoader sceneFromFile:@"page_1.plist"];

For the transitions, each plist should contain information about how to transition your particular scene, you should take at CCTransitionTurnPage

Good luck!

link|improve this answer
I think CCTransition page can be used only with CCReplaceScene. But replacing some 50 scenes will lead to application crash due to memory warning. So is there any other method to the page turn with turning effect. – Priyanka V Jun 28 '11 at 4:23
Replace scene does not take more memory, I think you're getting confused with PushScene, take a look here: cocos2d-iphone.org/wiki/doku.php/… – Mr.Gando Jun 28 '11 at 4:28
But my app is crashing when turning some 20 pages. Will replace scene remove the currently running scene from stack? – Priyanka V Jun 28 '11 at 4:59
Well, if you are not using ARC, I would recommend you to perform your respective releases manually when replacing scenes. I think this is not associated to this question anymore though :) – Mr.Gando Jun 28 '11 at 5:18
I remove the crash while replacing scene by using purgeCachedData. – Priyanka V Jun 29 '11 at 10:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.