mirror of
https://github.com/digital-jellyfish/Virtu.git
synced 2024-10-31 19:04:45 +00:00
26bd5e3aa9
Modified to clear audio buffer on reset. Refactored keyboard services and unified key bindings where practical. --HG-- extra : convert_revision : svn%3Affd33b8c-2492-42e0-bdc5-587b920b7d6d/trunk%4044385
46 lines
1.3 KiB
C#
46 lines
1.3 KiB
C#
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.GamerServices;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
using Microsoft.Xna.Framework.Input;
|
|
|
|
namespace Jellyfish.Library
|
|
{
|
|
public class GameBase : Game
|
|
{
|
|
public GameBase() :
|
|
this(null)
|
|
{
|
|
}
|
|
|
|
public GameBase(string name)
|
|
{
|
|
Name = name;
|
|
|
|
GraphicsDeviceManager = new GraphicsDeviceManager(this);
|
|
GraphicsDeviceService = (IGraphicsDeviceService)Services.GetService(typeof(IGraphicsDeviceService));
|
|
|
|
Components.Add(new GamerServicesComponent(this));
|
|
Content.RootDirectory = "Content";
|
|
if (!string.IsNullOrEmpty(Name))
|
|
{
|
|
Window.Title = Name;
|
|
}
|
|
}
|
|
|
|
protected override void Update(GameTime gameTime)
|
|
{
|
|
GamePadState gamePadState = GamePad.GetState(PlayerIndex.One);
|
|
if (gamePadState.Buttons.Back == ButtonState.Pressed)
|
|
{
|
|
Exit();
|
|
}
|
|
|
|
base.Update(gameTime);
|
|
}
|
|
|
|
public string Name { get; private set; }
|
|
public GraphicsDeviceManager GraphicsDeviceManager { get; private set; }
|
|
public IGraphicsDeviceService GraphicsDeviceService { get; private set; }
|
|
}
|
|
}
|