Registering the Scene

Now that we have all of the code written for our scene, the last step is to make the active controller aware of it, therefore being able to play the scene and select it from the menu screen. To do this, we need to register our scene.

Scene registration is done in the BM_SceneRegister_registerScenes() function found in the BM_SceneRegister.c file:

BM_Error BM_SceneRegister_registerScenes()
{
    BM_ASSERT(BM_Controller_Active_registerScene(&BM_Scene_Clouds_init));
    BM_ASSERT(BM_Controller_Active_registerScene(&BM_Scene_Phone_init));
    BM_ASSERT(BM_Controller_Active_registerScene(&BM_Scene_Unicycle_init));
    BM_ASSERT(BM_Controller_Active_registerScene(&BM_Scene_Glitch_init));

    return BM_NO_ERR;
}

An important note is that a maximum of 4 scenes are allowed to be on the device. Therefore, if there are already 4 scenes defined in this function, you will need to remove one scene. For now, we will remove all of the scenes and register our custom scene:

BM_Error BM_SceneRegister_registerScenes()
{
    BM_ASSERT(BM_Controller_Active_registerScene(&BM_Scene_CatPad_init));

    return BM_NO_ERR;
}

To register a scene, we call the function BM_Controller_Active_registerScene() which expects a function pointer to our scene's init function. We encapsulate this function call in a BM_ASSERT macro to catch any failures that may occur. If registration fails, then the system will enter into an infinite loop.

We also need to include the BM_Scene_CatPad.h header in BM_SceneRegister.h:

#include "BM_Controller_Active.h"
#include "BM_ErrorCodes.h"
#include "BM_Common.h"

//  Include header files to your scenes here
#include "BM_Scene_CatPad.h"

That is everything that we need to do for our custom scene! After compiling and loading the executable onto the device, we should be able to play the scene!