jueves, 17 de septiembre de 2009

Layer & Camera System

MindShake includes support to add layers and cameras, with no limits, you can create as many layers and objects inside layers as you want.

MindShake includes managers for layers and cameras which act as factories, so you can easily create new objects. Later, to easy access to these objects, you can store the reference or give them a name, so you can ask the managers to recover one object with its name.

By default all layers created are configured to adjust to camera renders. If the user want to have a serie of static sprites on the screen, the common way is to put them on a layer that is ignored by camera transformations.

To create a usable sprite layer you need one instance of the scene manager and then invoke the method CreateSpriteLayer.
That is done in this way:

//Obtain an instance of scene manager
pSceneManager = IDevice::GetInstance()->GetSceneManager();

//Add and modify a new layer
pLayer = pSceneManager->CreateSpriteLayer();
pLayer->EnableCameraTransformations(false);

With this example you see how to create a new sprite layer and modify it to ignore the cameras, so any sprite created into this layer will be shown relative to the upper left corner of the screen.

With the layer created you can now add one or more cameras to view diferent parts of our world.
When we add a new camera it is important to tell it the size and position of the viewport (the region where the camera content will be seen) and the dimensions of the world (the region where this camera can move).
Now you can see one example of scroll.

//Obtain an instance of camera manager
pCameraManager = IDevice::GetInstance()->GetCameraManager();
    
//Add and modify a new camera
pCamera = pCameraManager->CreateCamera2D();
pCamera->SetViewPort(0, 0, 320, 240);
pCamera->SetWorld(0, 0, 640, 480);
If our window have a 320x240 size, with this example you will see a scroll effect when move the camera around the world, because it have double size than camera viewport.

It is easy to create more cameras, you only meed to set the viewports in order to view them correctly, for example you can split the screen with three cameras, two of them at the top and one at the bottom.
//Add and modify a new camera (top left)
pCameraTopLeft = pCameraManager->CreateCamera2D();
pCameraTopLeft->SetViewPort(0, 0, 160, 120);
pCameraTopLeft->SetWorld(0, 0, 640, 480);

//Add and modify a new camera (top right)
pCameraTopRight = pCameraManager->CreateCamera2D();
pCameraTopRight->SetViewPort(160, 0, 160, 120);
pCameraTopRight->SetWorld(0, 0, 640, 480);

//Add and modify a new camera (bottom)
pCameraBottom = pCameraManager->CreateCamera2D();
pCameraBottom->SetViewPort(0, 120, 320, 120);
pCameraBottom->SetWorld(0, 0, 640, 480);
Now you can move the cameras with the SetPosition method and every viewport will automatically show the camera content.

No hay comentarios:

Publicar un comentario