2012-05-26 23:50:49 +00:00
|
|
|
|
#if WINDOWS
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using XNACC.Console;
|
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
2012-05-27 00:08:33 +00:00
|
|
|
|
using Microsoft.Xna.Framework.Content;
|
|
|
|
|
using Microsoft.Xna.Framework;
|
2012-05-29 03:31:46 +00:00
|
|
|
|
using Axios.Engine.Log;
|
2012-05-27 00:08:33 +00:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The empty AxiosCommandConsole is so that when you use the comamnd console
|
|
|
|
|
* in your game you don't need #if WINDOWS/#endif precompiler - when you attempt
|
|
|
|
|
* to use it on WP7/Xbox 360 it just won't do anything.
|
|
|
|
|
*
|
|
|
|
|
* Perhaps one day we should develop a customized console that doesn't require keyboard input
|
|
|
|
|
* to still allow debugging on WP7/Xbox 360
|
|
|
|
|
* -- Nathan Adams [adamsna@datanethost.net] - 5/26/2012
|
|
|
|
|
*/
|
2012-05-26 23:50:49 +00:00
|
|
|
|
|
|
|
|
|
namespace Axios.Engine
|
|
|
|
|
{
|
2012-05-27 03:53:55 +00:00
|
|
|
|
public class AxiosCommandConsole : CommandConsoleBase
|
2012-05-26 23:50:49 +00:00
|
|
|
|
{
|
2012-05-27 03:53:55 +00:00
|
|
|
|
//private AxiosGameScreen _gameScreen;
|
2012-05-26 23:50:49 +00:00
|
|
|
|
public AxiosCommandConsole(AxiosGameScreen gameScreen)
|
|
|
|
|
: base(gameScreen.ScreenManager.Game)
|
|
|
|
|
{
|
2012-05-27 03:53:55 +00:00
|
|
|
|
//_gameScreen = gameScreen;
|
2012-05-26 23:50:49 +00:00
|
|
|
|
Keyboard = gameScreen.ScreenManager.InputState;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public AxiosCommandConsole(AxiosGameScreen gameScreen, SpriteFont font)
|
|
|
|
|
: base(gameScreen.ScreenManager.Game, font)
|
|
|
|
|
{
|
2012-05-27 03:53:55 +00:00
|
|
|
|
//_gameScreen = gameScreen;
|
2012-05-26 23:50:49 +00:00
|
|
|
|
Keyboard = gameScreen.ScreenManager.InputState;
|
|
|
|
|
}
|
2012-05-27 00:08:33 +00:00
|
|
|
|
|
2012-05-27 03:53:55 +00:00
|
|
|
|
protected void LoadDefault()
|
2012-05-27 00:08:33 +00:00
|
|
|
|
{
|
|
|
|
|
FadeColor = Color.White * 0.5f;
|
|
|
|
|
Texture2D tmp = new Texture2D(GraphicsDevice, 1, 1);
|
|
|
|
|
tmp.SetData<Color>(new Color[] { Color.Black });
|
|
|
|
|
FadeImage = tmp;
|
2012-05-27 03:53:55 +00:00
|
|
|
|
}
|
2012-05-27 00:08:33 +00:00
|
|
|
|
|
2012-05-29 03:31:46 +00:00
|
|
|
|
private void ShowAxiosLog()
|
|
|
|
|
{
|
|
|
|
|
AddOutputToLog("============");
|
|
|
|
|
foreach (string l in AxiosLog.Instance.GetLogList())
|
|
|
|
|
AddOutputToLog(l);
|
|
|
|
|
AddOutputToLog("============");
|
|
|
|
|
}
|
2012-05-27 03:53:55 +00:00
|
|
|
|
|
2012-05-29 03:31:46 +00:00
|
|
|
|
public override void InitializeCustomCommands()
|
|
|
|
|
{
|
|
|
|
|
AddCommand(new CmdObject("axioslog", "Displays the current Axios Log", input => { ShowAxiosLog(); }));
|
|
|
|
|
base.InitializeCustomCommands();
|
|
|
|
|
}
|
2012-05-27 03:53:55 +00:00
|
|
|
|
public override void LoadContent(ContentManager content)
|
|
|
|
|
{
|
|
|
|
|
base.LoadContent(content);
|
|
|
|
|
}
|
2012-05-29 03:31:46 +00:00
|
|
|
|
|
2012-05-27 03:53:55 +00:00
|
|
|
|
protected override void LoadContent()
|
|
|
|
|
{
|
2012-05-29 03:31:46 +00:00
|
|
|
|
|
2012-05-27 03:53:55 +00:00
|
|
|
|
if (Font == null)
|
|
|
|
|
Font = Game.Content.Load<SpriteFont>("Console");
|
2012-05-27 00:08:33 +00:00
|
|
|
|
base.LoadContent();
|
|
|
|
|
}
|
2012-05-29 03:31:46 +00:00
|
|
|
|
|
|
|
|
|
protected override void UnloadContent()
|
|
|
|
|
{
|
|
|
|
|
base.UnloadContent();
|
|
|
|
|
ms_commands.Remove("axioslog");
|
|
|
|
|
}
|
2012-05-27 00:08:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#else
|
|
|
|
|
|
2012-05-26 23:50:49 +00:00
|
|
|
|
#endif
|