aboutsummaryrefslogtreecommitdiff
path: root/V3/Screens/VictoryScreen.cs
diff options
context:
space:
mode:
authorThomas Leyh <leyh.thomas@web.de>2016-07-24 08:14:18 +0200
committerThomas Leyh <leyh.thomas@web.de>2016-07-24 08:14:18 +0200
commitced3d03bdb3ce866d832e03fb212865140905a9a (patch)
tree2a16c2063a46d3c354ce1585029dda3124f6ad93 /V3/Screens/VictoryScreen.cs
parent0394dccaf06e1009e591a6ff4d645895574724c1 (diff)
downloadV3-release.tar.gz
V3-release.tar.bz2
Add project files.v1.0release
Diffstat (limited to 'V3/Screens/VictoryScreen.cs')
-rw-r--r--V3/Screens/VictoryScreen.cs76
1 files changed, 76 insertions, 0 deletions
diff --git a/V3/Screens/VictoryScreen.cs b/V3/Screens/VictoryScreen.cs
new file mode 100644
index 0000000..ffb2406
--- /dev/null
+++ b/V3/Screens/VictoryScreen.cs
@@ -0,0 +1,76 @@
+using System;
+using Microsoft.Xna.Framework;
+using Microsoft.Xna.Framework.Content;
+using Microsoft.Xna.Framework.Graphics;
+using Ninject;
+using V3.Input;
+
+namespace V3.Screens
+{
+ // ReSharper disable once ClassNeverInstantiated.Global
+ public sealed class VictoryScreen : AbstractScreen, IInitializable
+ {
+ private static TimeSpan sTotalDelay = TimeSpan.FromSeconds(1);
+
+ private readonly ContentManager mContentManager;
+ private readonly GraphicsDeviceManager mGraphicsDeviceManager;
+
+ private Rectangle mVictoryRectangle;
+ private Vector2 mFontCenter;
+ private Vector2 mCenter;
+ private SpriteFont mVictoryFont;
+ private Texture2D mRectangle;
+
+ private TimeSpan mDelayTimer = sTotalDelay;
+
+ /// <summary>
+ /// Creates a victory screen if the player defeats the boss enemy.
+ /// </summary>
+
+ public VictoryScreen(ContentManager contentManager,
+ GraphicsDeviceManager graphicsDeviceManager
+ )
+ : base(false, true)
+ {
+ mContentManager = contentManager;
+ mGraphicsDeviceManager = graphicsDeviceManager;
+ }
+
+ public override bool HandleKeyEvent(IKeyEvent keyEvent)
+ {
+ return false;
+ }
+
+ public void Initialize()
+ {
+ mRectangle = mContentManager.Load<Texture2D>("Sprites/WhiteRectangle");
+ mVictoryFont = mContentManager.Load<SpriteFont>("Fonts/VictoryFont");
+ }
+
+ public override void Update(GameTime gameTime)
+ {
+ var viewport = mGraphicsDeviceManager.GraphicsDevice.Viewport;
+ if (mDelayTimer > TimeSpan.Zero)
+ mDelayTimer -= gameTime.ElapsedGameTime;
+
+ mCenter = new Vector2(viewport.Width / 2f, viewport.Height / 2f);
+ mFontCenter = mVictoryFont.MeasureString("Die Rache ist euer!") / 2;
+ mVictoryRectangle = new Rectangle(0, (int)mCenter.Y - (int)mFontCenter.Y - 10, viewport.Width, (int)mFontCenter.Y * 2 - 10);
+ }
+
+ public override void Draw(GameTime gameTime, SpriteBatch spriteBatch)
+ {
+ float displayRatio = (float)(1 - mDelayTimer.TotalMilliseconds / sTotalDelay.TotalMilliseconds);
+ spriteBatch.Begin();
+ spriteBatch.Draw(mRectangle,
+ mVictoryRectangle,
+ Color.Black * 0.8f * displayRatio);
+
+ spriteBatch.DrawString(mVictoryFont,
+ "Die Rache ist euer!",
+ mCenter,
+ Color.DarkGoldenrod * displayRatio, 0, mFontCenter, 1.0f, SpriteEffects.None, 0.5f);
+ spriteBatch.End();
+ }
+ }
+ }