Create a Camera by setting its bounds and its current pixel/meter ratio
The initial pixel/meter ratio
Add an actor to the level, putting it into the appropriate z plane
The actor to add
If the world's camera is supposed to follow an Actor, this code will figure out the point on which the camera should center, and will request that the camera center on that point.
NB: The camera may decide not to center on that point, depending on zoom and camera bounds.
Determine whether a sprite is within the region being shown by the camera, so that we can reduce the overhead on the renderer.
The X coordinate of the top left corner of the sprite, in meters
The Y coordinate of the top left corner of the sprite, in meters
The radius of the circumscribing circle
Render the actors associated with this camera
Update a camera's bounds by providing a new maximum (X, Y) coordinate
The new minimum X value (in meters)
The new minimum Y value (in meters)
The new maximum X value (in meters)
The new maximum Y value (in meters)
Make the camera follow an Actor. Optionally add x,y to the actor's center, and center the camera on that point instead.
The actor to follow
Amount of x distance to add to actor center
Amount of y distance to add to actor center
Set the center point on which the camera should focus
NB: this is called (indirectly) by the render loop in order to make sure we don't go out of bounds.
The X coordinate of the center point (in meters)
The Y coordinate of the center point (in meters)
The Camera is used to determine /how much/ of a world to render, and /which part/. The Camera can have a minimum X and Y coordinate, and a maximum X and Y coordinate. It also has a zoom factor, and a current center point.
The zoom factor and center point give a rectangular region. The min and max coordinates give another rectangular region. If the first region is not fully within the second, we shift it so that it is within, and then we only show those things that are within it.
Note that the camera center can be changed dynamically, in response to changes in the world to which the camera is attached.