2012-08-09 09:45:04 +00:00
|
|
|
#region Using Statements
|
2011-12-01 09:16:01 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
using ANX.Framework.NonXNA;
|
|
|
|
using ANX.Framework.Graphics;
|
2012-01-27 17:15:57 +00:00
|
|
|
#if XNAEXT
|
2011-12-01 09:16:01 +00:00
|
|
|
using ANX.Framework.Input.MotionSensing;
|
2012-01-27 17:15:57 +00:00
|
|
|
#endif
|
2011-12-01 09:16:01 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2012-08-09 09:45:04 +00:00
|
|
|
// This file is part of the ANX.Framework created by the
|
|
|
|
// "ANX.Framework developer group" and released under the Ms-PL license.
|
|
|
|
// For details see: http://anxframework.codeplex.com/license
|
2011-12-01 09:16:01 +00:00
|
|
|
|
|
|
|
namespace ANX.InputSystem.Recording
|
|
|
|
{
|
2012-01-27 17:15:57 +00:00
|
|
|
#if XNAEXT
|
|
|
|
|
2011-12-01 09:16:01 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Wrapper aroung another IMotionSensingDevice, will record all inputs and allows playback.
|
|
|
|
/// </summary>
|
|
|
|
public class RecordingMotionSensingDevice : RecordableDevice, IMotionSensingDevice
|
|
|
|
{
|
|
|
|
public GraphicsDevice GraphicsDevice
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
set
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public MotionSensingDeviceType DeviceType
|
|
|
|
{
|
|
|
|
get { throw new NotImplementedException(); }
|
|
|
|
}
|
|
|
|
|
|
|
|
public MotionSensingDeviceState GetState()
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
throw new NotImplementedException();
|
|
|
|
}
|
|
|
|
}
|
2012-01-27 17:15:57 +00:00
|
|
|
#endif
|
2011-12-01 09:16:01 +00:00
|
|
|
}
|