rhythmbullet/RhythmBullet/RhythmBulletGame.cs

198 lines
7.6 KiB
C#

using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using RecrownedAthenaeum.Audio;
using RecrownedAthenaeum.ContentResolvers;
using RecrownedAthenaeum.Preferences;
using RecrownedAthenaeum.Screens.MainMenu;
using RecrownedAthenaeum.Camera;
using RecrownedAthenaeum.ContentSystem;
using RecrownedAthenaeum.DataTypes;
using RecrownedAthenaeum.Input;
using RecrownedAthenaeum.Persistence;
using RecrownedAthenaeum.ScreenSystem;
using System;
using System.Diagnostics;
namespace RecrownedAthenaeum
{
/// <summary>
/// This is the main type for your game.
/// </summary>
public class RhythmBulletGame : Game
{
public const int WORLD_WIDTH = 4;
public const int WORLD_HEIGHT = 3;
public static int pixels_per_WU;
GraphicsDeviceManager graphics;
SpriteBatch spriteBatch;
public readonly ContentManagerController assets;
readonly ResolutionContentResolver resolutionContentResolver;
public PreferencesManager preferencesManager;
private ScreenManager screenManager;
public Camera2D Camera { get; private set; }
private bool resizing;
private bool initialLoadComplete;
private MainScreen mainScreen;
private Texture2D currentCursorTexture;
internal readonly MusicController musicController;
public RhythmBulletGame()
{
graphics = new GraphicsDeviceManager(this);
Content.RootDirectory = "Content";
assets = new ContentManagerController(Content);
musicController = new MusicController();
resolutionContentResolver = new ResolutionContentResolver();
FontContentResolver fcr = new FontContentResolver(resolutionContentResolver);
assets.contentPathModifier.Add(typeof(Texture2D), resolutionContentResolver);
assets.contentPathModifier.Add(typeof(SpriteFont), fcr);
preferencesManager = new PreferencesManager(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "/RhythmBullet",
new General(),
new Controls());
preferencesManager.Load();
Resolution resolution = preferencesManager.GetPreferences<General>().Resolution;
graphics.PreferredBackBufferWidth = resolution.Width;
graphics.PreferredBackBufferHeight = resolution.Height;
}
/// <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()
{
Resolution resolution = preferencesManager.GetPreferences<General>().Resolution;
resolutionContentResolver.Width = resolution.Width;
resolutionContentResolver.Height = resolution.Height;
musicController.musicList.path = preferencesManager.GetPreferences<General>().MusicDirectory;
musicController.musicList.StartSearch();
Debug.WriteLine("Initial setup complete.");
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);
Camera = new Camera2D(graphics.GraphicsDevice);
screenManager = new ScreenManager(graphics, Camera);
screenManager.RequireNextScreenEvent += RequireNextScreen;
QueueContent();
screenManager.Screen = new LoadingScreen(this, Content.Load<Texture2D>("RhythmBullet"), 0.7f);
}
/// <summary>
/// UnloadContent will be called once per game and is the place to unload
/// game-specific content.
/// </summary>
protected override void UnloadContent()
{
assets.UnloadAll();
screenManager.Dispose();
currentCursorTexture.Dispose();
}
/// <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)
{
if (!assets.Done)
{
assets.Update();
}
else if (resizing)
{
resizing = false;
PostResize();
}
else if (!initialLoadComplete)
{
Debug.WriteLine("Initial load complete.");
initialLoadComplete = true;
SetUpCursor();
mainScreen = new MainScreen(assets);
}
screenManager.UpdateCurrentScreen(gameTime, assets.Done && musicController.musicList.Searched);
InputUtilities.Update();
Camera.Update();
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)
{
screenManager.DrawCurrentScreen(spriteBatch);
base.Draw(gameTime);
}
public void Resize(int width, int height)
{
pixels_per_WU = height / WORLD_HEIGHT;
resolutionContentResolver.Width = width;
resolutionContentResolver.Height = height;
graphics.PreferredBackBufferWidth = width;
graphics.PreferredBackBufferHeight = height;
resizing = true;
assets.UnloadAll();
QueueContent();
screenManager.Resize(new LoadingScreen(this, Content.Load<Texture2D>("loading_ring"), 0.4f));
SetUpCursor();
}
private void PostResize()
{
graphics.ApplyChanges();
screenManager.PostResize();
}
private void QueueContent()
{
assets.Queue<Texture2D>("cursor", false);
assets.Queue<Texture2D>("title");
assets.Queue<Texture2D>("default_cover", false);
assets.Queue<Texture2D>("backgrounds/mainBG");
}
private void SetUpCursor()
{
Texture2D texture = assets.Get<Texture2D>("cursor");
int cursorSize = (int)(0.08f * graphics.PreferredBackBufferHeight);
Debug.WriteLine("Cursor size length: " + cursorSize);
RenderTarget2D renderTarget = new RenderTarget2D(GraphicsDevice, cursorSize, cursorSize);
GraphicsDevice.SetRenderTarget(renderTarget);
GraphicsDevice.Clear(Color.Transparent);
spriteBatch.Begin();
spriteBatch.Draw(texture, new Rectangle(0, 0, cursorSize, cursorSize), Color.White);
spriteBatch.End();
GraphicsDevice.SetRenderTarget(null);
currentCursorTexture?.Dispose();
currentCursorTexture = renderTarget;
Mouse.SetCursor(MouseCursor.FromTexture2D(currentCursorTexture, currentCursorTexture.Width / 2, currentCursorTexture.Height / 2));
}
private void RequireNextScreen(Screen Screen)
{
Screen.NextScreen = mainScreen;
}
}
}