rhythmbullet/RhythmBullet/RhythmBulletGame.cs

113 lines
3.6 KiB
C#
Raw Normal View History

2018-09-11 05:05:34 +00:00
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
2018-09-15 19:05:14 +00:00
using RhythmBullet.Zer01HD.Game;
using RhythmBullet.Zer01HD.UI;
2018-09-15 19:05:14 +00:00
using RhythmBullet.Zer01HD.Utilities.ContentSystem;
2018-09-11 05:05:34 +00:00
namespace RhythmBullet
{
/// <summary>
/// This is the main type for your game.
/// </summary>
public class RhythmBulletGame : Game
{
2018-09-15 19:05:14 +00:00
public GraphicsDeviceManager Graphics;
2018-09-11 05:05:34 +00:00
SpriteBatch spriteBatch;
2018-09-15 19:05:14 +00:00
public readonly ContentSystem Assets;
private Screen currentScreen;
Screen CurrentScreen
2018-09-12 06:32:05 +00:00
{
get
{
return currentScreen;
}
set
{
2018-09-15 19:05:14 +00:00
if (currentScreen != null)
{
CurrentScreen.Hide();
}
2018-09-12 06:32:05 +00:00
currentScreen = value;
2018-09-15 19:05:14 +00:00
CurrentScreen.Show();
2018-09-12 06:32:05 +00:00
}
}
2018-09-11 05:05:34 +00:00
public RhythmBulletGame()
{
2018-09-15 19:05:14 +00:00
Graphics = new GraphicsDeviceManager(this);
Graphics.PreferredBackBufferWidth = 320;
Graphics.PreferredBackBufferHeight = 320;
Window.IsBorderless = true;
2018-09-11 05:05:34 +00:00
Content.RootDirectory = "Content";
2018-09-15 19:05:14 +00:00
Assets = new ContentSystem(Content);
2018-09-11 05:05:34 +00:00
}
/// <summary>
/// Allows the game to perform any initialization it needs to before starting to run.
/// This is where it can query for any required services and load any non-graphic
/// related content. Calling base.Initialize will enumerate through any components
/// and initialize them as well.
/// </summary>
protected override void Initialize()
{
// TODO: Add your initialization logic here
base.Initialize();
}
/// <summary>
/// LoadContent will be called once per game and is the place to load
/// all of your content.
/// </summary>
protected override void LoadContent()
{
// Create a new SpriteBatch, which can be used to draw textures.
spriteBatch = new SpriteBatch(GraphicsDevice);
2018-09-15 19:05:14 +00:00
CurrentScreen = new LoadingScreen(Content.Load<Texture2D>("recrown"));
2018-09-12 06:32:05 +00:00
2018-09-11 05:05:34 +00:00
// TODO: use this.Content to load your game content here
}
/// <summary>
/// UnloadContent will be called once per game and is the place to unload
/// game-specific content.
/// </summary>
protected override void UnloadContent()
{
// TODO: Unload any non ContentManager content here
}
/// <summary>
/// Allows the game to run logic such as updating the world,
/// checking for collisions, gathering input, and playing audio.
/// </summary>
/// <param name="gameTime">Provides a snapshot of timing values.</param>
protected override void Update(GameTime gameTime)
{
2018-09-15 19:05:14 +00:00
CurrentScreen.Update(gameTime);
2018-09-11 05:05:34 +00:00
base.Update(gameTime);
}
/// <summary>
/// This is called when the game should draw itself.
/// </summary>
/// <param name="gameTime">Provides a snapshot of timing values.</param>
protected override void Draw(GameTime gameTime)
{
2018-09-15 19:05:14 +00:00
GraphicsDevice.Clear(Color.White);
2018-09-12 06:32:05 +00:00
spriteBatch.Begin();
2018-09-15 19:05:14 +00:00
CurrentScreen.Draw(spriteBatch);
2018-09-12 06:32:05 +00:00
spriteBatch.End();
2018-09-11 05:05:34 +00:00
base.Draw(gameTime);
}
2018-09-15 19:05:14 +00:00
public void Resize(int width, int height)
{
2018-09-15 19:05:14 +00:00
Graphics.PreferredBackBufferWidth = width;
Graphics.PreferredBackBufferHeight = height;
}
2018-09-11 05:05:34 +00:00
}
}