I was building a game using the Platformer start up that comes bundled with XNA. Then I decided I want some vertical scrolling so I tried to implement a 2D Camera according to this tutorial - http://www.david-amador.com/2009/10/xna-camera-2d-with-zoom-and-rotation/
I implemented it and that's where things went to hell. Everything broke, even the .DrawString methods that are now rendering incomplete text. I guess it has something to do with the coordinates system I was using.
Here is a screen of the errors with just the scrolling background and some text: http://dl.dropbox.com/u/15148588/xna-errors.JPG (there should be at least 5 lines of text there)
For example, here is a "Background" class:
class Background
{
// The image representing the parallaxing background
Texture2D texture;
// An array of positions of the parallaxing background
Vector2[] positions;
// The speed which the background is moving
int speed;
public void Initialize(ContentManager content, String texturePath, int screenWidth, int speed)
{
// Load the background texture we will be using
texture = content.Load<Texture2D>(texturePath);
// Set the speed of the background
this.speed = speed;
// If we divide the screen with the texture width then we can determine the number of tiles need.
// We add 1 to it so that we won't have a gap in the tiling
positions = new Vector2[screenWidth / texture.Width + 2];
// Set the initial positions of the parallaxing background
for (int i = 0; i < positions.Length; i++)
{
// We need the tiles to be side by side to create a tiling effect
positions[i] = new Vector2(i * texture.Width, 0);
}
}
public void Update()
{
// Update the positions of the background
for (int i = 0; i < positions.Length; i++)
{
// Update the position of the screen by adding the speed
positions[i].X += speed;
// If the speed has the background moving to the left
if (speed <= 0)
{
// Check the texture is out of view then put that texture at the end of the screen
if (positions[i].X <= -texture.Width)
{
positions[i].X = texture.Width * (positions.Length - 1);
}
}
// If the speed has the background moving to the right
else
{
// Check if the texture is out of view then position it to the start of the screen
if (positions[i].X >= texture.Width * (positions.Length - 1))
{
positions[i].X = -texture.Width;
}
}
}
}
public void Draw(SpriteBatch spriteBatch)
{
for (int i = 0; i < positions.Length; i++)
{
spriteBatch.Draw(texture, positions[i], Color.White);
}
}
}
}
Taken straight from the start up sample. If I don't draw anything but the strings it's fine but if I try drawing even this Background everything breaks. Please help. Finally, here's my Draw method of the Game class
protected override void Draw(GameTime gameTime)
{
// Start drawing
spriteBatch.Begin(SpriteSortMode.FrontToBack, BlendState.AlphaBlend,
null, null, null, null, camera.get_transformation(GraphicsDevice));
GraphicsDevice.Clear(Color.CornflowerBlue);
mainBackground.Draw(spriteBatch);
// Draw the score
spriteBatch.DrawString(scoreFont, scoreString, new Vector2(25f, 25f), Color.White);
// Draw the diagnostics
spriteBatch.DrawString(diagFont, diagString, new Vector2(25f, 50f), Color.White);
// Stop drawing
spriteBatch.End();
base.Draw(gameTime);
}
Thanks!