2018-09-11 05:05:34 +00:00
|
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
|
using Microsoft.Xna.Framework.Input;
|
2018-12-05 05:37:05 +00:00
|
|
|
|
using RecrownedAthenaeum.Camera;
|
|
|
|
|
using RecrownedAthenaeum.ContentSystem;
|
2019-01-23 01:33:42 +00:00
|
|
|
|
using RecrownedAthenaeum.ContentSystem.ContentResolvers;
|
2018-12-05 05:37:05 +00:00
|
|
|
|
using RecrownedAthenaeum.Input;
|
|
|
|
|
using RecrownedAthenaeum.Persistence;
|
|
|
|
|
using RecrownedAthenaeum.ScreenSystem;
|
2019-01-23 01:33:42 +00:00
|
|
|
|
using RecrownedAthenaeum.SpecialTypes;
|
|
|
|
|
using RecrownedAthenaeum.UI.Skin;
|
|
|
|
|
using RhythmBullet.Audio;
|
|
|
|
|
using RhythmBullet.Preferences;
|
|
|
|
|
using RhythmBullet.Screens.MainMenu;
|
2018-10-29 03:42:47 +00:00
|
|
|
|
using System;
|
2018-10-30 23:29:54 +00:00
|
|
|
|
using System.Diagnostics;
|
2019-01-23 01:33:42 +00:00
|
|
|
|
using System.IO;
|
2018-09-11 05:05:34 +00:00
|
|
|
|
|
2019-01-23 01:33:42 +00:00
|
|
|
|
namespace RhythmBullet
|
2018-09-11 05:05:34 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// This is the main type for your game.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class RhythmBulletGame : Game
|
|
|
|
|
{
|
2018-10-30 23:29:54 +00:00
|
|
|
|
public const int WORLD_WIDTH = 4;
|
|
|
|
|
public const int WORLD_HEIGHT = 3;
|
|
|
|
|
public static int pixels_per_WU;
|
|
|
|
|
|
2018-10-31 06:10:15 +00:00
|
|
|
|
GraphicsDeviceManager graphics;
|
2018-09-11 05:05:34 +00:00
|
|
|
|
SpriteBatch spriteBatch;
|
2018-11-20 05:08:11 +00:00
|
|
|
|
public readonly ContentManagerController assets;
|
2018-10-29 03:42:47 +00:00
|
|
|
|
readonly ResolutionContentResolver resolutionContentResolver;
|
|
|
|
|
public PreferencesManager preferencesManager;
|
2018-11-13 01:40:27 +00:00
|
|
|
|
private ScreenManager screenManager;
|
2018-11-15 07:22:35 +00:00
|
|
|
|
public Camera2D Camera { get; private set; }
|
2018-11-13 01:40:27 +00:00
|
|
|
|
private bool resizing;
|
2018-11-18 05:27:05 +00:00
|
|
|
|
private bool initialLoadComplete;
|
|
|
|
|
private MainScreen mainScreen;
|
2018-11-18 06:17:23 +00:00
|
|
|
|
private Texture2D currentCursorTexture;
|
2018-11-20 05:08:11 +00:00
|
|
|
|
internal readonly MusicController musicController;
|
2019-01-21 05:32:51 +00:00
|
|
|
|
private SkinManager skinManager = new SkinManager();
|
|
|
|
|
private readonly ISkin skin;
|
2018-11-18 06:17:23 +00:00
|
|
|
|
|
2018-09-11 05:05:34 +00:00
|
|
|
|
public RhythmBulletGame()
|
|
|
|
|
{
|
2018-10-31 06:10:15 +00:00
|
|
|
|
graphics = new GraphicsDeviceManager(this);
|
2018-09-11 05:05:34 +00:00
|
|
|
|
Content.RootDirectory = "Content";
|
2018-11-20 05:08:11 +00:00
|
|
|
|
assets = new ContentManagerController(Content);
|
|
|
|
|
|
|
|
|
|
musicController = new MusicController();
|
2019-01-21 05:32:51 +00:00
|
|
|
|
skin = skinManager.Skin;
|
2018-09-16 06:37:48 +00:00
|
|
|
|
resolutionContentResolver = new ResolutionContentResolver();
|
|
|
|
|
FontContentResolver fcr = new FontContentResolver(resolutionContentResolver);
|
2018-11-20 05:08:11 +00:00
|
|
|
|
assets.contentPathModifier.Add(typeof(Texture2D), resolutionContentResolver);
|
|
|
|
|
assets.contentPathModifier.Add(typeof(SpriteFont), fcr);
|
2019-01-21 05:32:51 +00:00
|
|
|
|
preferencesManager = new PreferencesManager(
|
|
|
|
|
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "/RhythmBullet",
|
2018-10-30 23:29:54 +00:00
|
|
|
|
new General(),
|
|
|
|
|
new Controls());
|
2018-10-31 06:10:15 +00:00
|
|
|
|
preferencesManager.Load();
|
|
|
|
|
Resolution resolution = preferencesManager.GetPreferences<General>().Resolution;
|
|
|
|
|
graphics.PreferredBackBufferWidth = resolution.Width;
|
|
|
|
|
graphics.PreferredBackBufferHeight = resolution.Height;
|
2019-01-23 01:33:42 +00:00
|
|
|
|
RecrownedAthenaeum.Configuration.graphicsDeviceManager = graphics;
|
2018-10-29 03:42:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
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
|
2018-11-12 05:05:51 +00:00
|
|
|
|
/// related content. Calling base.Initialize will enumerate through any components
|
2018-09-11 05:05:34 +00:00
|
|
|
|
/// and initialize them as well.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected override void Initialize()
|
|
|
|
|
{
|
2018-10-30 23:29:54 +00:00
|
|
|
|
Resolution resolution = preferencesManager.GetPreferences<General>().Resolution;
|
|
|
|
|
resolutionContentResolver.Width = resolution.Width;
|
|
|
|
|
resolutionContentResolver.Height = resolution.Height;
|
2018-11-20 05:08:11 +00:00
|
|
|
|
musicController.musicList.path = preferencesManager.GetPreferences<General>().MusicDirectory;
|
|
|
|
|
musicController.musicList.StartSearch();
|
2018-10-30 23:29:54 +00:00
|
|
|
|
Debug.WriteLine("Initial setup complete.");
|
2018-09-11 05:05:34 +00:00
|
|
|
|
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-11-15 07:22:35 +00:00
|
|
|
|
Camera = new Camera2D(graphics.GraphicsDevice);
|
2019-01-23 01:33:42 +00:00
|
|
|
|
screenManager = new ScreenManager(Camera);
|
2019-01-14 05:17:27 +00:00
|
|
|
|
screenManager.ShowFirstScreenEvent += ShowFirstScreen;
|
2018-10-31 06:10:15 +00:00
|
|
|
|
QueueContent();
|
2018-11-18 05:27:05 +00:00
|
|
|
|
screenManager.Screen = new LoadingScreen(this, Content.Load<Texture2D>("RhythmBullet"), 0.7f);
|
2018-09-11 05:05:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// UnloadContent will be called once per game and is the place to unload
|
|
|
|
|
/// game-specific content.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected override void UnloadContent()
|
|
|
|
|
{
|
2018-11-20 05:08:11 +00:00
|
|
|
|
assets.UnloadAll();
|
2018-11-18 06:17:23 +00:00
|
|
|
|
screenManager.Dispose();
|
|
|
|
|
currentCursorTexture.Dispose();
|
2018-09-11 05:05:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Allows the game to run logic such as updating the world,
|
2018-10-30 23:29:54 +00:00
|
|
|
|
/// checking for collisions, gathering input, and playing audio.
|
2018-09-11 05:05:34 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="gameTime">Provides a snapshot of timing values.</param>
|
|
|
|
|
protected override void Update(GameTime gameTime)
|
|
|
|
|
{
|
2019-01-23 01:33:42 +00:00
|
|
|
|
if (assets.Done)
|
2018-10-30 23:29:54 +00:00
|
|
|
|
{
|
2019-01-23 01:33:42 +00:00
|
|
|
|
if (resizing)
|
|
|
|
|
{
|
|
|
|
|
assets.Update();
|
|
|
|
|
}
|
|
|
|
|
else if (!initialLoadComplete && CheckReadyForInitiate())
|
|
|
|
|
{
|
|
|
|
|
Initiate();
|
|
|
|
|
}
|
2018-11-02 02:20:46 +00:00
|
|
|
|
}
|
2019-01-23 01:33:42 +00:00
|
|
|
|
else
|
2018-10-31 06:10:15 +00:00
|
|
|
|
{
|
2019-01-23 01:33:42 +00:00
|
|
|
|
assets.Update();
|
2018-10-30 23:29:54 +00:00
|
|
|
|
}
|
2019-01-21 05:32:51 +00:00
|
|
|
|
screenManager.UpdateCurrentScreen(gameTime, CheckReadyForInitiate());
|
2018-10-30 23:29:54 +00:00
|
|
|
|
|
2018-11-09 05:48:24 +00:00
|
|
|
|
InputUtilities.Update();
|
2018-11-15 07:22:35 +00:00
|
|
|
|
Camera.Update();
|
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-11-13 01:45:57 +00:00
|
|
|
|
screenManager.DrawCurrentScreen(spriteBatch);
|
2018-09-11 05:05:34 +00:00
|
|
|
|
base.Draw(gameTime);
|
|
|
|
|
}
|
2018-09-11 21:26:38 +00:00
|
|
|
|
|
2018-10-31 06:10:15 +00:00
|
|
|
|
public void Resize(int width, int height)
|
2018-09-11 21:26:38 +00:00
|
|
|
|
{
|
2018-10-31 23:21:44 +00:00
|
|
|
|
pixels_per_WU = height / WORLD_HEIGHT;
|
2018-10-31 06:10:15 +00:00
|
|
|
|
resolutionContentResolver.Width = width;
|
|
|
|
|
resolutionContentResolver.Height = height;
|
|
|
|
|
graphics.PreferredBackBufferWidth = width;
|
|
|
|
|
graphics.PreferredBackBufferHeight = height;
|
|
|
|
|
resizing = true;
|
2018-11-20 05:08:11 +00:00
|
|
|
|
assets.UnloadAll();
|
2018-10-29 03:42:47 +00:00
|
|
|
|
QueueContent();
|
2019-01-14 05:17:27 +00:00
|
|
|
|
screenManager.Resize(new LoadingScreen(this, Content.Load<Texture2D>("loading_ring"), 0.4f, true));
|
2019-01-21 05:32:51 +00:00
|
|
|
|
UpdateCursor();
|
2018-10-29 03:42:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-31 06:10:15 +00:00
|
|
|
|
private void PostResize()
|
2018-10-29 03:42:47 +00:00
|
|
|
|
{
|
2018-10-31 06:10:15 +00:00
|
|
|
|
graphics.ApplyChanges();
|
2018-11-13 01:40:27 +00:00
|
|
|
|
screenManager.PostResize();
|
2018-09-16 06:37:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-31 06:10:15 +00:00
|
|
|
|
private void QueueContent()
|
2018-09-16 06:37:48 +00:00
|
|
|
|
{
|
2018-11-20 05:08:11 +00:00
|
|
|
|
assets.Queue<Texture2D>("cursor", false);
|
|
|
|
|
assets.Queue<Texture2D>("title");
|
|
|
|
|
assets.Queue<Texture2D>("default_cover", false);
|
|
|
|
|
assets.Queue<Texture2D>("backgrounds/mainBG");
|
2019-01-15 23:59:19 +00:00
|
|
|
|
assets.Queue<TextureAtlas>("UI");
|
2018-09-11 21:26:38 +00:00
|
|
|
|
}
|
2018-11-13 01:40:27 +00:00
|
|
|
|
|
2019-01-21 05:32:51 +00:00
|
|
|
|
private void Initiate()
|
|
|
|
|
{
|
|
|
|
|
initialLoadComplete = true;
|
|
|
|
|
UpdateCursor();
|
|
|
|
|
mainScreen = new MainScreen(assets);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void UpdateCursor()
|
2018-11-18 06:17:23 +00:00
|
|
|
|
{
|
2019-01-21 05:32:51 +00:00
|
|
|
|
Texture2D texture = skin.CursorTexture;
|
2018-11-18 06:17:23 +00:00
|
|
|
|
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));
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-21 05:32:51 +00:00
|
|
|
|
private bool CheckReadyForInitiate()
|
|
|
|
|
{
|
|
|
|
|
return assets.Done && musicController.musicList.Searched && skinManager.ReadyForUse;
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-14 05:17:27 +00:00
|
|
|
|
private void ShowFirstScreen(Screen Screen)
|
2018-11-13 01:40:27 +00:00
|
|
|
|
{
|
2018-11-18 05:27:05 +00:00
|
|
|
|
Screen.NextScreen = mainScreen;
|
2018-11-13 01:40:27 +00:00
|
|
|
|
}
|
2018-09-11 05:05:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|