https://www.makeschool.com/docs/?source=mgwu#!/cocos2d/1.0/scenes

Scenes in Cocos2D

In Cocos2D you have to have a CCScene as the root node of your scene graph. CCScene is a subclass of CCNode. Any CCNode subclass can be added to a scene by using the addChild: method. By default any CCScene is initialized as a full screen node. Only one CCScene can be active at a time. The currenty active scene is considered on the stage.

Scene lifecycle

Cocos2D provides multiple lifecyle events that can be relevant for your scenes and other nodes in your scene. These events are trigerred when a scene gets initialized and when it becomes active/inactive. Each of the scene transition events is represented by one method in CCNode that gets called by the CCDirector. You can override these methods in any CCNode. The Objective-C default initializer method init gets called when scene/node is initialized from Cocos2D code. When you created your scene/node in SpriteBuilder didLoadFromCCB is the designated initializer method. Here is an overview of all the lifecycle methods:

  • init: The default Obj-C initializer. If the scene is not created in SpriteBuilder you mostly use this method to build the scene by adding different nodes as children.

  • didLoadFromCCBIf you created your scene in SpriteBuilder this method is called when the complete scene is loaded and all code connections are set up. You implement this method to access and manipulate the content of the scene. You cannot access child nodes of the scene or code connection variables before this method is called.

  • onEnter: This method gets called as soon as the replacement of the currently active scene with this scene begins. If you are using an animated scene transition this method will be called at the beginning of the transition. You can add any code that shall be executed when the scene starts to enter the stage.

  • onEnterTransitionDidFinish: If you are using an animated scene transition this method will be called when the transition finishes. If you are not using transitions this method is called at the same time as onEnter. Implement this method to execute code once the scene has fully entered the stage.

  • onExit: Is called when the scene leaves the stage. If the scene leaves the stage with a transition, this event is called when the transition finishes.

  • onExitTransitionDidStart: Is called when the scene leaves the stage. If the scene leaves the stage with a transition, this event is called when the transition starts.

Note: you have to call the super implementation when you override onEnteronEnterTransitionDidFinishonExit or onExitTransitionDidStart.

Scene Graph and Scene Management

Each CCScene stores a hierarchy of different CCNode instances. CCScene itself is an invisible node that is only used as a container. Most CCNodesubclasses are used to present an object on the screen (a single color surface or a texture). The hierarchical structure of CCNode instances is called the scene graph.

The following diagram shows multiple different scenes and scene graphs of a game: 

The diagram represents three different scenes of which each contains multiple nodes. There are a couple of takeaways from this diagram:

  • CCDirector is the instance that controls which scene gets presented on the stage. One can tell CCDirector to present the main menu, the gameplay scene or the highscore scene. CCDirector will only present one scene at a time.
  • CCScenes are used to build a logical group of objects. In Cocos2D this always means one scene represents one screen. One will have scenes for menus, leaderboards, gameplay, etc. Scenes itself don't have a representation, their sole goal is to group CCNode instances.
  • CCNodes Basically anything that is visible in Cocos2D is a subclass of CCNode.

Games in Cocos2D consist of different scenes. The flow of the game is defined by telling the CCDirector when which scene shall be presented (menu first, then gameplay, then leaderboard). The content of the scenes is a compilation of different nodes. A CCNode can again contain other CCNode instances. The hierarchy of CCNode instances in a scene is called the scene graph.

Creating a Scene

The default SpriteBuilder and Cocos2D projects come with one scene. For most games you will have to create additional scenes. You can either create scenes in SpriteBuilder or in code.

  • Create a Scene CCB-File in SpriteBuilder and load the scene in code utilizing CCBReader:

      CCScene *gameplayScene = [CCBReader loadAsScene:@"Gameplay"];
  • Create a subclass of CCScene in Xcode and intialize:

      CCScene *gameplayScene = * [GameplayScene scene];

When to create the Scene content

For most games you will create the content for your scenes in SpriteBuilder or in the init method of your CCScene subclass. However, when certain scenes need to allocate a lot of memory it can be helpful to create the actual scene content in the onEnter method and removing it when onExit is called. This way the memory is only used when the scene is active on the stage.

Switching between Scenes

The CCDirector is responsible for presenting and hiding scenes. The easiest way to replace a scene, without a transition is using the replaceScene: method:

[[CCDirector sharedDirector] replaceScene:gameplayScene];

Using this method the CCDirector will replace the currently active scene with the gameplayScene.

Transitioned Scene Changes

If you want to provide a transition effect for swapping the scene you can use the replaceScene:withTransition:. It takes a CCTransition as parameter. A CCTransition can be easily created using one of the initializer methods that provide pre defined transition effects:

CCTransition *transition = [CCTransition transitionCrossFadeWithDuration:1.f];
[[CCDirector sharedDirector] replaceScene:gameplayScene withTransition:transition];

To get an overview of the different available transitions and the transition options, take a look at the Cocos2D class reference for CCTransition.

Using the Scene Navigation stack

Another option instead of replacing scenes is pushing and popping scenes. When you push a new scene, the old scene gets deactivated but remains in a the stack of scenes. When you pop a scene that scene gets removed from the navigation stack and the top most controller of the navigation stack gets presented.

Cocos2D provides methods to pop and push scenes with or without transitions:

  • pushScene:withTransition:
  • popScene:withTransition:
  • pushScene:
  • popScene

Additionally there is a popToRootScene method that empties the complete navigation stack and returns to the first scene.

When building User Interfaces with multiple scenes (e.g. menu structures) you should use the navigation stack instead of manually replacing scenes. The most common pattern is to provide a back button that pops the latest scene on the navigation stack.

Scenes in Cocos2D的更多相关文章

  1. 高屋建瓴 cocos2d-x-3.0架构设计 Cocos2d (v.3.0) rendering pipeline roadmap(原文)

    Cocos2d (v.3.0) rendering pipeline roadmap Why (the vision) The way currently Cocos2d does rendering ...

  2. cocos2d-x项目101次相遇: Scenes , Director, Layers, Sprites

    cocos2d-x 101次相遇 / 文件夹  1   安装和环境搭建 -xcode  2   Scenes , Director, Layers, Sprites 3   建立图片菜单  4   在 ...

  3. cocos2d Programming Guide

    http://python.cocos2d.org/doc/programming_guide/index.html The cocos2d Programming Guide provides in ...

  4. cocos2d学习网址

    http://python.cocos2d.org/doc/programming_guide/index.html http://bbs.tairan.com/article-25-1.html h ...

  5. 小尝试一下 cocos2d

    好奇 cocos2d 到底是怎样一个框架,正好有个项目需要一个游戏框架,所以稍微了解了一下.小结一下了解到的情况. 基本概念 首先呢,因为 cocos2d 是基于 pyglet 做的,你完全可以直接用 ...

  6. 采用cocos2d-x lua 制作数字滚动效果样例

    require "Cocos2d"require "Cocos2dConstants"local testscene = class("testsce ...

  7. Cocos2d 利用继承Draw方法制作可显示三维数据(宠物三维等)的三角形显示面板

    很久没有写博客了,这段时间比较忙,又是搬家又是做自己的项目,还有太多琐碎的事情缠身,好不容易抽出时间把最近自己做的一些简单例子记录一下. 在我的项目中,我需要一个显示面板来显示游戏中的一个三维数据,例 ...

  8. iPhone开发与cocos2d 经验谈

    转CSDN jilongliang : 首先,对于一个完全没有mac开发经验,甚至从没摸过苹果系统的开发人员来说,首先就是要熟悉apple的那一套开发框架(含开发环境IDE.开发框架uikit,还有开 ...

  9. cocos2d学习记录

    视频 - http://www.manew.com/forum-105-3.html一个论坛帖 - http://www.zhihu.com/question/21114802官网 - http:// ...

随机推荐

  1. ListView Viewholder的坑 线性布局的坑

    1.ListView Viewholder的坑 /** * 默认带图片的menu adapter */ public static class MenuImageAdapter extends Bas ...

  2. Postman-简单使用(1)

    Postman-简单使用(1) Postman-简单使用 Postman-进阶使用 Postman-CI集成Jenkins Postman功能(https://www.getpostman.com/f ...

  3. AS3项目基础框架搭建分享robotlegs2 + starling1.3 + feathers1.1

    这个框架和我之前使用robotlegs1版本的大体相同,今天要写一个新的聊天软件就把之前的框架升级到了2.0并且把代码整理了一下. 使用适配器模式使得starling的DisplayObject和fl ...

  4. 剑指Offer - 九度1366 - 栈的压入、弹出序列

    剑指Offer - 九度1366 - 栈的压入.弹出序列2014-02-05 20:41 题目描述: 输入两个整数序列,第一个序列表示栈的压入顺序,请判断第二个序列是否为该栈的弹出顺序.假设压入栈的所 ...

  5. diskimage-builder element

    root阶段 创建或修改初始根文件系统内容. 这是添加替代分销支持的地方,还是建立在现有图像上的自定义. 只有一个元素可以一次使用它,除非特别注意不要盲目覆盖,而是适应其他元素提取的上下文. -cac ...

  6. python使用工具简介介绍

    我从研究生开学以来就开始在学python,现在来简单分享下一些基本的使用命令和快捷方式 Pycharm: 运行程序 ctrl+alt+F10 删除一行ctrl+D 注释ctrl+/ 安装python所 ...

  7. HDU 1937 F - Finding Seats 枚举

    F - Finding Seats Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u S ...

  8. Struts1 Spring2 iBatis2 框架的集成

    这个是属于比较老的框架了,奈何现在公司用的产品就是如此,闲来就搭一个集成框架吧 依赖jar包 antlr-.jar aspectj-.jar aspectjrt.jar aspectjweaver-. ...

  9. 【bzoj4636】蒟蒻的数列 离散化+线段树

    原文地址:http://www.cnblogs.com/GXZlegend/p/6801379.html 题目描述 蒟蒻DCrusher不仅喜欢玩扑克,还喜欢研究数列 题目描述 DCrusher有一个 ...

  10. 【Luogu】P4103大工程(虚树DP)

    题目链接 我貌似发现这类DP就是先别管什么虚树……把树形DP搞出来套上虚树板子就好了 这个树形DP就是设sum为答案,sumd为子树内所有点的深度和(当然指的是被询问的点),maxi指子树内最深的点的 ...