Exemplo n.º 1
0
        /// <summary>
        /// Updates the menu entry.
        /// </summary>
        public virtual void Update(MenuScreen screen, bool isSelected,
            GameTime gameTime)
        {
            // When the menu selection changes, entries gradually fade between
            // their selected and deselected appearance, rather than instantly
            // popping to the new state.
            float fadeSpeed = (float)gameTime.ElapsedGameTime.TotalSeconds * 4;
            //float fadeSpeed = 1 * 4;

            if (isSelected)
                selectionFade = Math.Min(selectionFade + fadeSpeed, 1);
            else
                selectionFade = Math.Max(selectionFade - fadeSpeed, 0);
        }
Exemplo n.º 2
0
        /// <summary>
        /// Draws the menu entry. This can be overridden to customize the appearance.
        /// </summary>
        public virtual void Draw(MenuScreen screen, Vector2 position,
            bool isSelected, GameTime gameTime)
        {
            // Draw the selected entry in red, otherwise orange.
            Color color = isSelected ? Color.Red : Color.White;

            // Pulsate the size of the selected menu entry.
            double time = gameTime.TotalGameTime.TotalSeconds;

            float pulsate = 5;//float)Math.Sin(time * 6) + 1;

            float scale = 1 + pulsate * 0.05f * selectionFade;

            // Modify the alpha to fade text out during transitions.
            color = new Color(color.R, color.G, color.B, screen.TransitionAlpha);

            // Draw text, centered on the middle of each line.
            ScreenManager screenManager = screen.ScreenManager;

            SpriteBatch spriteBatch = new SpriteBatch(screenManager.Game.GraphicsDevice);

            SpriteFont font = screenManager.Font;

            //spriteBatch.Draw(mtexture, new Rectangle(0, 0, 1280, 720), Color.White);

            Vector2 origin = new Vector2(0, font.LineSpacing / 2);
            spriteBatch.Begin();
            spriteBatch.DrawString(font, text, new Vector2(position.X+2, position.Y+2), Color.Black, 0, origin, scale, SpriteEffects.None, 0);
            spriteBatch.DrawString(font, text, position, color, 0, origin, scale, SpriteEffects.None, 0);
            spriteBatch.End();
        }
Exemplo n.º 3
0
 /// <summary>
 /// Queries how much space this menu entry requires.
 /// </summary>
 public virtual int GetHeight(MenuScreen screen)
 {
     return screen.ScreenManager.Font.LineSpacing;
 }