2019-01-15 02:06:17 +00:00
|
|
|
|
using Microsoft.Xna.Framework;
|
2018-11-01 06:10:49 +00:00
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
2018-12-05 05:37:05 +00:00
|
|
|
|
using RecrownedAthenaeum.Camera;
|
|
|
|
|
using RecrownedAthenaeum.ContentSystem;
|
2019-03-09 06:50:46 +00:00
|
|
|
|
using RecrownedAthenaeum.Input;
|
2018-12-05 05:37:05 +00:00
|
|
|
|
using RecrownedAthenaeum.ScreenSystem;
|
2019-01-28 17:41:36 +00:00
|
|
|
|
using RecrownedAthenaeum.UI.BookSystem;
|
|
|
|
|
using RecrownedAthenaeum.UI.SkinSystem;
|
2019-01-23 01:31:15 +00:00
|
|
|
|
using RhythmBullet.Screens.Transitions;
|
2018-09-15 19:05:14 +00:00
|
|
|
|
|
2019-01-23 01:31:15 +00:00
|
|
|
|
namespace RhythmBullet.Screens.MainMenu
|
2018-09-15 19:05:14 +00:00
|
|
|
|
{
|
|
|
|
|
class MainScreen : Screen
|
|
|
|
|
{
|
2019-01-15 02:13:54 +00:00
|
|
|
|
readonly ContentManagerController assets;
|
|
|
|
|
readonly FadeAwayTransition fat;
|
|
|
|
|
readonly Texture2D background;
|
|
|
|
|
readonly Book book;
|
|
|
|
|
readonly MainPage mainPage;
|
2018-11-18 05:27:05 +00:00
|
|
|
|
|
2019-01-28 17:41:36 +00:00
|
|
|
|
public MainScreen(ContentManagerController assets, ISkin skin) : base(true)
|
2018-09-15 19:05:14 +00:00
|
|
|
|
{
|
2018-11-18 05:27:05 +00:00
|
|
|
|
this.assets = assets;
|
2018-11-02 03:02:25 +00:00
|
|
|
|
background = assets.Get<Texture2D>("backgrounds/mainBG");
|
2018-11-13 01:43:03 +00:00
|
|
|
|
fat = new FadeAwayTransition(1.5f);
|
2019-01-28 17:41:36 +00:00
|
|
|
|
book = new Book(assets, skin);
|
|
|
|
|
mainPage = new MainPage();
|
2018-11-15 07:22:35 +00:00
|
|
|
|
book.AddPages(mainPage);
|
2019-03-09 06:50:46 +00:00
|
|
|
|
InputUtilities.InputListeners.Add(book);
|
2018-11-15 07:22:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-15 02:06:17 +00:00
|
|
|
|
public override void Initiate(Rectangle screenSize, Camera2D camera)
|
2018-11-15 07:22:35 +00:00
|
|
|
|
{
|
|
|
|
|
book.Initiate(camera, screenSize);
|
2019-01-15 02:06:17 +00:00
|
|
|
|
base.Initiate(screenSize, camera);
|
2018-11-15 07:22:35 +00:00
|
|
|
|
}
|
2018-11-02 03:02:25 +00:00
|
|
|
|
|
|
|
|
|
public override void Show()
|
|
|
|
|
{
|
2018-11-11 18:45:37 +00:00
|
|
|
|
Transitions.Add(fat);
|
2018-11-02 03:02:25 +00:00
|
|
|
|
base.Show();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Draw(SpriteBatch spriteBatch)
|
|
|
|
|
{
|
|
|
|
|
spriteBatch.Draw(background, ScreenSize, Color.White);
|
2018-11-13 01:43:03 +00:00
|
|
|
|
book.Draw(spriteBatch);
|
2018-11-02 03:02:25 +00:00
|
|
|
|
base.Draw(spriteBatch);
|
2018-09-15 19:05:14 +00:00
|
|
|
|
}
|
2018-11-12 06:33:40 +00:00
|
|
|
|
|
|
|
|
|
public override void Update(GameTime gameTime)
|
|
|
|
|
{
|
|
|
|
|
book.Update(gameTime);
|
|
|
|
|
base.Update(gameTime);
|
|
|
|
|
}
|
2018-09-15 19:05:14 +00:00
|
|
|
|
}
|
|
|
|
|
}
|