rhythmbullet/RhythmBullet/RhythmBulletGame.cs

140 lines
4.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.Game.ContentResolvers;
2018-10-29 03:42:47 +00:00
using RhythmBullet.Zer01HD.Game.Preferences;
using RhythmBullet.Zer01HD.UI;
2018-10-29 03:42:47 +00:00
using RhythmBullet.Zer01HD.Utilities;
2018-09-15 19:05:14 +00:00
using RhythmBullet.Zer01HD.Utilities.ContentSystem;
using RhythmBullet.Zer01HD.Utilities.UI;
2018-10-29 03:42:47 +00:00
using System;
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;
2018-10-29 03:42:47 +00:00
readonly ResolutionContentResolver resolutionContentResolver;
public PreferencesManager preferencesManager;
2018-09-15 19:05:14 +00:00
private Screen currentScreen;
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);
resolutionContentResolver = new ResolutionContentResolver();
FontContentResolver fcr = new FontContentResolver(resolutionContentResolver);
Assets.contentResolver.Add(typeof(Texture2D), resolutionContentResolver);
Assets.contentResolver.Add(typeof(SpriteFont), fcr);
2018-10-29 03:42:47 +00:00
preferencesManager = new PreferencesManager(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "/RhythmBullet",
new Controls(),
new General());
}
public Screen Screen
{
get
{
return currentScreen;
}
set
{
if (currentScreen != null)
{
Screen.Hide();
}
currentScreen = value;
Screen.Show();
}
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-10-29 03:42:47 +00:00
Screen = 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-10-29 03:42:47 +00:00
Screen.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-10-29 03:42:47 +00:00
Screen.Draw(spriteBatch);
2018-09-12 06:32:05 +00:00
spriteBatch.End();
2018-09-11 05:05:34 +00:00
base.Draw(gameTime);
}
2018-10-29 03:42:47 +00:00
public void PreAssetLoad()
{
Assets.UnloadAll();
resolutionContentResolver.Width = Graphics.PreferredBackBufferWidth;
resolutionContentResolver.Height = Graphics.PreferredBackBufferHeight;
2018-10-29 03:42:47 +00:00
QueueContent();
}
public void PostAssetLoad()
{
}
void QueueContent()
{
}
2018-09-11 05:05:34 +00:00
}
}