added lots of developer attributes
This commit is contained in:
parent
c0e2f85eae
commit
5ac399a71d
@ -1,6 +1,7 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -13,6 +14,7 @@ namespace ANX.Framework.Content
|
||||
#if !WINDOWSMETRO //TODO: search replacement for Win8
|
||||
[SerializableAttribute]
|
||||
#endif
|
||||
[Developer("GinieDP")]
|
||||
public class ContentLoadException : Exception
|
||||
{
|
||||
/// <summary>
|
||||
|
@ -2,6 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using ANX.Framework.NonXNA.PlatformSystem;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -9,6 +10,7 @@ using ANX.Framework.NonXNA.PlatformSystem;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
public class ContentManager : IDisposable
|
||||
{
|
||||
#region Constants
|
||||
|
@ -5,6 +5,7 @@ using System.IO;
|
||||
using System.Reflection;
|
||||
using ANX.Framework.Graphics;
|
||||
using ANX.Framework.NonXNA.Reflection;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -14,6 +15,7 @@ using ANX.Framework.NonXNA.Reflection;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
public sealed class ContentReader : BinaryReader
|
||||
{
|
||||
private GraphicsProfile graphicsProfile;
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -10,6 +11,7 @@ using System;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
|
||||
[Developer("GinieDP")]
|
||||
public sealed class ContentSerializerAttribute : Attribute
|
||||
{
|
||||
public string ElementName { get; set; }
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -10,6 +11,7 @@ using System;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
|
||||
[Developer("GinieDP")]
|
||||
public sealed class ContentSerializerIgnoreAttribute : Attribute
|
||||
{
|
||||
}
|
||||
|
@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -7,6 +8,7 @@
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Class)]
|
||||
[Developer("GinieDP")]
|
||||
public sealed class ContentSerializerCollectionItemNameAttribute : Attribute
|
||||
{
|
||||
private string collectionItemName;
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -10,6 +11,7 @@ using System;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)]
|
||||
[Developer("GinieDP")]
|
||||
public sealed class ContentSerializerRuntimeTypeAttribute : Attribute
|
||||
{
|
||||
public string RuntimeType
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -10,6 +11,7 @@ using System;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)]
|
||||
[Developer("GinieDP")]
|
||||
public sealed class ContentSerializerTypeVersionAttribute : Attribute
|
||||
{
|
||||
public int TypeVersion
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
|
||||
#endregion // Using Statements
|
||||
@ -10,6 +11,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
public abstract class ContentTypeReader
|
||||
{
|
||||
/// <summary>
|
||||
|
@ -1,6 +1,7 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
|
||||
#endregion // Using Statements
|
||||
@ -11,6 +12,7 @@ using System.Collections.Generic;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
public sealed class ContentTypeReaderManager
|
||||
{
|
||||
private ContentReader contentReader;
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System.IO;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
#endregion // Using Statements
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
@ -38,6 +39,7 @@ SOFTWARE.
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal static class Decompressor
|
||||
{
|
||||
public static Stream DecompressStream(BinaryReader reader, Stream input, int num)
|
||||
|
@ -1,4 +1,5 @@
|
||||
using ANX.Framework.Graphics;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -6,7 +7,8 @@
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
public class AlphaTestEffectReader : ContentTypeReader<AlphaTestEffect>
|
||||
[Developer("GinieDP")]
|
||||
public class AlphaTestEffectReader : ContentTypeReader<AlphaTestEffect>
|
||||
{
|
||||
protected internal override AlphaTestEffect Read(ContentReader input, AlphaTestEffect existingInstance)
|
||||
{
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using ANX.Framework.Graphics;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using ANX.Framework.Graphics;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
public class BasicEffectReader : ContentTypeReader<BasicEffect>
|
||||
{
|
||||
protected internal override BasicEffect Read(ContentReader input, BasicEffect existingInstance)
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using ANX.Framework.Graphics;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using ANX.Framework.Graphics;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
public class DualTextureEffectReader : ContentTypeReader<DualTextureEffect>
|
||||
{
|
||||
protected internal override DualTextureEffect Read(ContentReader input, DualTextureEffect existingInstance)
|
||||
|
@ -2,6 +2,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using ANX.Framework.Graphics;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -11,6 +12,7 @@ using ANX.Framework.Graphics;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
public class EffectMaterialReader : ContentTypeReader<EffectMaterial>
|
||||
{
|
||||
protected internal override EffectMaterial Read(ContentReader input, EffectMaterial existingInstance)
|
||||
|
@ -4,6 +4,7 @@ using System.IO;
|
||||
using ANX.Framework.ContentPipeline;
|
||||
using ANX.Framework.Graphics;
|
||||
using ANX.Framework.NonXNA;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -13,6 +14,7 @@ using ANX.Framework.NonXNA;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class EffectReader : ContentTypeReader<Effect>
|
||||
{
|
||||
protected internal override Effect Read(ContentReader input, Effect existingInstance)
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using ANX.Framework.Graphics;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using ANX.Framework.Graphics;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
public class EnvironmentMapEffectReader : ContentTypeReader<EnvironmentMapEffect>
|
||||
{
|
||||
protected internal override EnvironmentMapEffect Read(ContentReader input, EnvironmentMapEffect existingInstance)
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using ANX.Framework.Graphics;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
|
||||
#endregion // Using Statements
|
||||
@ -10,6 +11,7 @@ using ANX.Framework.Graphics;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
public class IndexBufferReader : ContentTypeReader<IndexBuffer>
|
||||
{
|
||||
protected internal override IndexBuffer Read(ContentReader input, IndexBuffer existingInstance)
|
||||
|
@ -2,6 +2,7 @@
|
||||
using System;
|
||||
using ANX.Framework.Graphics;
|
||||
using ANX.Framework.NonXNA;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -11,6 +12,7 @@ using ANX.Framework.NonXNA;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
public class ModelReader : ContentTypeReader<Model>
|
||||
{
|
||||
protected internal override Model Read(ContentReader input, Model existingInstance)
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using ANX.Framework.Graphics;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using ANX.Framework.Graphics;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
public class SkinnedEffectReader : ContentTypeReader<SkinnedEffect>
|
||||
{
|
||||
protected internal override SkinnedEffect Read(ContentReader input, SkinnedEffect existingInstance)
|
||||
|
@ -2,6 +2,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using ANX.Framework.Graphics;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -11,6 +12,7 @@ using ANX.Framework.Graphics;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class SpriteFontReader : ContentTypeReader<SpriteFont>
|
||||
{
|
||||
protected internal override SpriteFont Read(ContentReader input, SpriteFont existingInstance)
|
||||
|
@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using ANX.Framework.Graphics;
|
||||
using ANX.Framework.NonXNA;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -8,6 +9,7 @@ using ANX.Framework.NonXNA;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class Texture2DReader : ContentTypeReader<Texture2D>
|
||||
{
|
||||
protected internal override Texture2D Read(ContentReader input, Texture2D existingInstance)
|
||||
|
@ -3,6 +3,7 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using ANX.Framework.Graphics;
|
||||
using ANX.Framework.NonXNA;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -12,6 +13,7 @@ using ANX.Framework.NonXNA;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class Texture3DReader : ContentTypeReader<Texture3D>
|
||||
{
|
||||
protected internal override Texture3D Read(ContentReader input, Texture3D existingInstance)
|
||||
|
@ -3,6 +3,7 @@ using System;
|
||||
using System.Collections.Generic;
|
||||
using ANX.Framework.Graphics;
|
||||
using ANX.Framework.NonXNA;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -12,6 +13,7 @@ using ANX.Framework.NonXNA;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class TextureCubeReader : ContentTypeReader<TextureCube>
|
||||
{
|
||||
protected internal override TextureCube Read(ContentReader input, TextureCube existingInstance)
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using ANX.Framework.Graphics;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using ANX.Framework.Graphics;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class TextureReader : ContentTypeReader<Texture>
|
||||
{
|
||||
protected internal override Texture Read(ContentReader input, Texture existingInstance)
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using ANX.Framework.Graphics;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
|
||||
#endregion // Using Statements
|
||||
@ -10,6 +11,7 @@ using ANX.Framework.Graphics;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class VertexBufferReader : ContentTypeReader<VertexBuffer>
|
||||
{
|
||||
protected internal override VertexBuffer Read(ContentReader input, VertexBuffer existingInstance)
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using ANX.Framework.Graphics;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
|
||||
#endregion // Using Statements
|
||||
@ -10,6 +11,7 @@ using ANX.Framework.Graphics;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class VertexDeclarationReader : ContentTypeReader<VertexDeclaration>
|
||||
{
|
||||
protected internal override VertexDeclaration Read(ContentReader input, VertexDeclaration existingInstance)
|
||||
|
@ -46,7 +46,9 @@ using System;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
using System.IO;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
[Developer("GinieDP")]
|
||||
internal class LzxDecoder
|
||||
{
|
||||
public static uint[] position_base = null;
|
||||
|
@ -7,8 +7,10 @@
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
// For details see: http://anxframework.codeplex.com/license
|
||||
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class BoundingBoxReader : ContentTypeReader<BoundingBox>
|
||||
{
|
||||
protected internal override BoundingBox Read(ContentReader input, BoundingBox existingInstance)
|
||||
|
@ -7,8 +7,10 @@
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
// For details see: http://anxframework.codeplex.com/license
|
||||
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class BoundingFrustumReader : ContentTypeReader<BoundingFrustum>
|
||||
{
|
||||
protected internal override BoundingFrustum Read(ContentReader input, BoundingFrustum existingInstance)
|
||||
|
@ -7,8 +7,10 @@
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
// For details see: http://anxframework.codeplex.com/license
|
||||
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class BoundingSphereReader : ContentTypeReader<BoundingSphere>
|
||||
{
|
||||
protected internal override BoundingSphere Read(ContentReader input, BoundingSphere existingInstance)
|
||||
|
@ -7,8 +7,10 @@
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
// For details see: http://anxframework.codeplex.com/license
|
||||
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class ColorReader : ContentTypeReader<Color>
|
||||
{
|
||||
protected internal override Color Read(ContentReader input, Color existingInstance)
|
||||
|
@ -7,8 +7,10 @@
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
// For details see: http://anxframework.codeplex.com/license
|
||||
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class MatrixReader : ContentTypeReader<Matrix>
|
||||
{
|
||||
protected internal override Matrix Read(ContentReader input, Matrix existingInstance)
|
||||
|
@ -7,8 +7,10 @@
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
// For details see: http://anxframework.codeplex.com/license
|
||||
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class PlaneReader : ContentTypeReader<Plane>
|
||||
{
|
||||
protected internal override Plane Read(ContentReader input, Plane existingInstance)
|
||||
|
@ -7,8 +7,10 @@
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
// For details see: http://anxframework.codeplex.com/license
|
||||
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class PointReader : ContentTypeReader<Point>
|
||||
{
|
||||
protected internal override Point Read(ContentReader input, Point existingInstance)
|
||||
|
@ -7,8 +7,10 @@
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
// For details see: http://anxframework.codeplex.com/license
|
||||
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class QuaternionReader : ContentTypeReader<Quaternion>
|
||||
{
|
||||
protected internal override Quaternion Read(ContentReader input, Quaternion existingInstance)
|
||||
|
@ -7,8 +7,10 @@
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
// For details see: http://anxframework.codeplex.com/license
|
||||
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
public class RayReader : ContentTypeReader<Ray>
|
||||
{
|
||||
protected internal override Ray Read(ContentReader input, Ray existingInstance)
|
||||
|
@ -7,8 +7,10 @@
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
// For details see: http://anxframework.codeplex.com/license
|
||||
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class RectangleReader : ContentTypeReader<Rectangle>
|
||||
{
|
||||
protected internal override Rectangle Read(ContentReader input, Rectangle existingInstance)
|
||||
|
@ -7,8 +7,10 @@
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
// For details see: http://anxframework.codeplex.com/license
|
||||
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class Vector2Reader : ContentTypeReader<Vector2>
|
||||
{
|
||||
protected internal override Vector2 Read(ContentReader input, Vector2 existingInstance)
|
||||
|
@ -7,8 +7,10 @@
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
// For details see: http://anxframework.codeplex.com/license
|
||||
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class Vector3Reader : ContentTypeReader<Vector3>
|
||||
{
|
||||
protected internal override Vector3 Read(ContentReader input, Vector3 existingInstance)
|
||||
|
@ -7,8 +7,10 @@
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
// For details see: http://anxframework.codeplex.com/license
|
||||
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class Vector4Reader : ContentTypeReader<Vector4>
|
||||
{
|
||||
protected internal override Vector4 Read(ContentReader input, Vector4 existingInstance)
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class BooleanReader : ContentTypeReader<Boolean>
|
||||
{
|
||||
protected internal override Boolean Read(ContentReader input, Boolean existingInstance)
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class ByteReader : ContentTypeReader<Byte>
|
||||
{
|
||||
protected internal override byte Read(ContentReader input, Byte existingInstance)
|
||||
@ -17,6 +19,7 @@ namespace ANX.Framework.Content
|
||||
}
|
||||
}
|
||||
|
||||
[Developer("GinieDP")]
|
||||
internal class SByteReader : ContentTypeReader<SByte>
|
||||
{
|
||||
protected internal override sbyte Read(ContentReader input, SByte existingInstance)
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class CharReader : ContentTypeReader<Char>
|
||||
{
|
||||
protected internal override Char Read(ContentReader input, Char existingInstance)
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class DoubleReader : ContentTypeReader<Double>
|
||||
{
|
||||
protected internal override Double Read(ContentReader input, Double existingInstance)
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class Int16Reader : ContentTypeReader<Int16>
|
||||
{
|
||||
protected internal override Int16 Read(ContentReader input, Int16 existingInstance)
|
||||
@ -17,6 +19,7 @@ namespace ANX.Framework.Content
|
||||
}
|
||||
}
|
||||
|
||||
[Developer("GinieDP")]
|
||||
internal class UInt16Reader : ContentTypeReader<UInt16>
|
||||
{
|
||||
protected internal override UInt16 Read(ContentReader input, UInt16 existingInstance)
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class Int32Reader : ContentTypeReader<Int32>
|
||||
{
|
||||
protected internal override Int32 Read(ContentReader input, Int32 existingInstance)
|
||||
@ -17,6 +19,7 @@ namespace ANX.Framework.Content
|
||||
}
|
||||
}
|
||||
|
||||
[Developer("GinieDP")]
|
||||
internal class UInt32Reader : ContentTypeReader<UInt32>
|
||||
{
|
||||
protected internal override UInt32 Read(ContentReader input, UInt32 existingInstance)
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class Int64Reader : ContentTypeReader<Int64>
|
||||
{
|
||||
protected internal override Int64 Read(ContentReader input, Int64 existingInstance)
|
||||
@ -17,6 +19,7 @@ namespace ANX.Framework.Content
|
||||
}
|
||||
}
|
||||
|
||||
[Developer("GinieDP")]
|
||||
internal class UInt64Reader : ContentTypeReader<UInt64>
|
||||
{
|
||||
protected internal override UInt64 Read(ContentReader input, UInt64 existingInstance)
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class ObjectReader : ContentTypeReader
|
||||
{
|
||||
public ObjectReader()
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class SingleReader : ContentTypeReader<Single>
|
||||
{
|
||||
protected internal override Single Read(ContentReader input, Single existingInstance)
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class StringReader : ContentTypeReader<String>
|
||||
{
|
||||
protected internal override String Read(ContentReader input, String existingInstance)
|
||||
|
@ -1,6 +1,7 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using System.Reflection;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
#endregion // Using Statements
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
@ -11,6 +12,7 @@ namespace ANX.Framework.Content
|
||||
{
|
||||
#if !WINDOWSMETRO
|
||||
|
||||
[Developer("GinieDP")]
|
||||
public class ReflectiveReader<T> : ContentTypeReader
|
||||
{
|
||||
private int typeVersion;
|
||||
|
@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Resources;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -8,6 +9,7 @@ using System.Resources;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
public class ResourceContentManager : ContentManager
|
||||
{
|
||||
private ResourceManager resource;
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class ArrayReader<T> : ContentTypeReader<T[]>
|
||||
{
|
||||
private ContentTypeReader baseTypeReader;
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class DateTimeReader : ContentTypeReader<DateTime>
|
||||
{
|
||||
protected internal override DateTime Read(ContentReader input, DateTime existingInstance)
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class DecimalReader : ContentTypeReader<Decimal>
|
||||
{
|
||||
protected internal override Decimal Read(ContentReader input, Decimal existingInstance)
|
||||
|
@ -1,6 +1,7 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -10,6 +11,7 @@ using System.Collections.Generic;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class DictionaryReader<TKey, TValue> : ContentTypeReader<Dictionary<TKey, TValue>>
|
||||
{
|
||||
private ContentTypeReader keyTypeReader;
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class EnumReader<T> : ContentTypeReader<T>
|
||||
{
|
||||
private ContentTypeReader baseTypeReader;
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class ExternalReferenceReader : ContentTypeReader
|
||||
{
|
||||
public ExternalReferenceReader()
|
||||
|
@ -1,6 +1,7 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -10,6 +11,7 @@ using System.Collections.Generic;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class ListReader<T> : ContentTypeReader<List<T>>
|
||||
{
|
||||
private ContentTypeReader baseTypeReader;
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class NullableReader<T> : ContentTypeReader<T?> where T : struct
|
||||
{
|
||||
private ContentTypeReader baseTypeReader;
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework.Content
|
||||
{
|
||||
[Developer("GinieDP")]
|
||||
internal class TimeSpanReader : ContentTypeReader<TimeSpan>
|
||||
{
|
||||
protected internal override TimeSpan Read(ContentReader input, TimeSpan existingInstance)
|
||||
|
@ -7,6 +7,7 @@ using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework
|
||||
{
|
||||
[PercentageComplete(100)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Tested)]
|
||||
public enum CurveContinuity
|
||||
{
|
||||
|
@ -7,6 +7,7 @@ using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework
|
||||
{
|
||||
[PercentageComplete(100)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Tested)]
|
||||
public enum CurveLoopType
|
||||
{
|
||||
|
@ -7,6 +7,7 @@ using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework
|
||||
{
|
||||
[PercentageComplete(100)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Tested)]
|
||||
public enum CurveTangent
|
||||
{
|
||||
|
@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Reflection;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -9,6 +10,7 @@ using System.Reflection;
|
||||
namespace ANX.Framework.Design
|
||||
{
|
||||
#if !WINDOWSMETRO
|
||||
[Developer("AstrorEnales")]
|
||||
public class ANXFieldDescriptor : PropertyDescriptor
|
||||
{
|
||||
private FieldInfo field;
|
||||
|
@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Reflection;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -9,6 +10,7 @@ using System.Reflection;
|
||||
namespace ANX.Framework.Design
|
||||
{
|
||||
#if !WINDOWSMETRO
|
||||
[Developer("AstrorEnales")]
|
||||
public class ANXPropertyDescriptor : PropertyDescriptor
|
||||
{
|
||||
private PropertyInfo property;
|
||||
|
@ -2,6 +2,7 @@ using System;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -10,7 +11,7 @@ using System.Globalization;
|
||||
namespace ANX.Framework.Design
|
||||
{
|
||||
#if !WINDOWSMETRO //TODO: search replacement for Win8
|
||||
|
||||
[Developer("GinieDP")]
|
||||
public class BoundingBoxConverter : MathTypeConverter
|
||||
{
|
||||
public BoundingBoxConverter()
|
||||
|
@ -2,6 +2,7 @@ using System;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -10,7 +11,7 @@ using System.Globalization;
|
||||
namespace ANX.Framework.Design
|
||||
{
|
||||
#if !WINDOWSMETRO //TODO: search replacement for Win8
|
||||
|
||||
[Developer("GinieDP")]
|
||||
public class BoundingSphereConverter : MathTypeConverter
|
||||
{
|
||||
public BoundingSphereConverter()
|
||||
|
@ -2,6 +2,7 @@ using System;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -10,7 +11,7 @@ using System.Globalization;
|
||||
namespace ANX.Framework.Design
|
||||
{
|
||||
#if !WINDOWSMETRO //TODO: search replacement for Win8
|
||||
|
||||
[Developer("GinieDP")]
|
||||
public class ColorConverter : MathTypeConverter
|
||||
{
|
||||
public ColorConverter()
|
||||
|
@ -7,6 +7,7 @@ using System.ComponentModel.Design.Serialization;
|
||||
using System.Globalization;
|
||||
using System.Text;
|
||||
using ANX.Framework.NonXNA.Reflection;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -17,7 +18,7 @@ using ANX.Framework.NonXNA.Reflection;
|
||||
namespace ANX.Framework.Design
|
||||
{
|
||||
#if !WINDOWSMETRO //TODO: search replacement for Win8
|
||||
|
||||
[Developer("GinieDP")]
|
||||
public class MathTypeConverter : ExpandableObjectConverter
|
||||
{
|
||||
protected PropertyDescriptorCollection propertyDescriptions;
|
||||
|
@ -2,6 +2,7 @@ using System;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -10,7 +11,7 @@ using System.Globalization;
|
||||
namespace ANX.Framework.Design
|
||||
{
|
||||
#if !WINDOWSMETRO //TODO: search replacement for Win8
|
||||
|
||||
[Developer("GinieDP")]
|
||||
public class MatrixConverter : MathTypeConverter
|
||||
{
|
||||
public MatrixConverter()
|
||||
|
@ -2,6 +2,7 @@ using System;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -10,7 +11,7 @@ using System.Globalization;
|
||||
namespace ANX.Framework.Design
|
||||
{
|
||||
#if !WINDOWSMETRO //TODO: search replacement for Win8
|
||||
|
||||
[Developer("GinieDP")]
|
||||
public class PlaneConverter : MathTypeConverter
|
||||
{
|
||||
public PlaneConverter()
|
||||
|
@ -2,6 +2,7 @@ using System;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -10,7 +11,7 @@ using System.Globalization;
|
||||
namespace ANX.Framework.Design
|
||||
{
|
||||
#if !WINDOWSMETRO //TODO: search replacement for Win8
|
||||
|
||||
[Developer("GinieDP")]
|
||||
public class PointConverter : MathTypeConverter
|
||||
{
|
||||
public PointConverter()
|
||||
|
@ -2,6 +2,7 @@ using System;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -10,7 +11,7 @@ using System.Globalization;
|
||||
namespace ANX.Framework.Design
|
||||
{
|
||||
#if !WINDOWSMETRO //TODO: search replacement for Win8
|
||||
|
||||
[Developer("GinieDP")]
|
||||
public class QuaternionConverter : MathTypeConverter
|
||||
{
|
||||
public QuaternionConverter()
|
||||
|
@ -2,6 +2,7 @@ using System;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -10,7 +11,7 @@ using System.Globalization;
|
||||
namespace ANX.Framework.Design
|
||||
{
|
||||
#if !WINDOWSMETRO //TODO: search replacement for Win8
|
||||
|
||||
[Developer("GinieDP")]
|
||||
public class RayConverter : MathTypeConverter
|
||||
{
|
||||
public RayConverter()
|
||||
|
@ -2,6 +2,7 @@ using System;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -10,7 +11,7 @@ using System.Globalization;
|
||||
namespace ANX.Framework.Design
|
||||
{
|
||||
#if !WINDOWSMETRO //TODO: search replacement for Win8
|
||||
|
||||
[Developer("GinieDP")]
|
||||
public class RectangleConverter : MathTypeConverter
|
||||
{
|
||||
public RectangleConverter()
|
||||
|
@ -2,6 +2,7 @@ using System;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -10,7 +11,7 @@ using System.Globalization;
|
||||
namespace ANX.Framework.Design
|
||||
{
|
||||
#if !WINDOWSMETRO //TODO: search replacement for Win8
|
||||
|
||||
[Developer("GinieDP")]
|
||||
public class Vector2Converter : MathTypeConverter
|
||||
{
|
||||
public Vector2Converter()
|
||||
|
@ -2,6 +2,7 @@ using System;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -10,7 +11,7 @@ using System.Globalization;
|
||||
namespace ANX.Framework.Design
|
||||
{
|
||||
#if !WINDOWSMETRO //TODO: search replacement for Win8
|
||||
|
||||
[Developer("GinieDP")]
|
||||
public class Vector3Converter : MathTypeConverter
|
||||
{
|
||||
public Vector3Converter()
|
||||
|
@ -2,6 +2,7 @@ using System;
|
||||
using System.Collections;
|
||||
using System.ComponentModel;
|
||||
using System.Globalization;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -10,7 +11,7 @@ using System.Globalization;
|
||||
namespace ANX.Framework.Design
|
||||
{
|
||||
#if !WINDOWSMETRO //TODO: search replacement for Win8
|
||||
|
||||
[Developer("GinieDP")]
|
||||
public class Vector4Converter : MathTypeConverter
|
||||
{
|
||||
public Vector4Converter()
|
||||
|
@ -12,6 +12,7 @@ namespace ANX.Framework
|
||||
{
|
||||
[Flags]
|
||||
[PercentageComplete(100)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Tested)]
|
||||
public enum DisplayOrientation
|
||||
{
|
||||
|
@ -1,4 +1,8 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -6,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework
|
||||
{
|
||||
[Developer("Glatzemann")]
|
||||
public abstract class GameHost
|
||||
{
|
||||
internal event EventHandler<EventArgs> Activated;
|
||||
|
@ -2,6 +2,7 @@
|
||||
using ANX.Framework.NonXNA;
|
||||
using ANX.Framework.NonXNA.PlatformSystem;
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion
|
||||
|
||||
@ -13,6 +14,7 @@ namespace ANX.Framework
|
||||
{
|
||||
//TODO: this class is public on Windows Phone
|
||||
|
||||
[Developer("Glatzemann")]
|
||||
internal class GameTimer
|
||||
{
|
||||
private INativeGameTimer nativeImplementation;
|
||||
|
@ -1,4 +1,8 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion
|
||||
|
||||
// This file is part of the ANX.Framework created by the
|
||||
// "ANX.Framework developer group" and released under the Ms-PL license.
|
||||
@ -6,6 +10,7 @@ using System;
|
||||
|
||||
namespace ANX.Framework
|
||||
{
|
||||
[Developer("Glatzemann")]
|
||||
public abstract class GameWindow
|
||||
{
|
||||
#region Private
|
||||
|
@ -1,6 +1,7 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using System.IO;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -10,6 +11,9 @@ using System.IO;
|
||||
|
||||
namespace ANX.Framework.GamerServices
|
||||
{
|
||||
[PercentageComplete(10)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Untested)]
|
||||
public sealed class Achievement
|
||||
{
|
||||
public bool DisplayBeforeEarned
|
||||
|
@ -2,6 +2,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -11,6 +12,9 @@ using System.Collections;
|
||||
|
||||
namespace ANX.Framework.GamerServices
|
||||
{
|
||||
[PercentageComplete(10)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Untested)]
|
||||
public sealed class AchievementCollection : IList<Achievement>, ICollection<Achievement>,
|
||||
IEnumerable<Achievement>, IEnumerable, IDisposable
|
||||
{
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,7 +10,10 @@ using System;
|
||||
|
||||
namespace ANX.Framework.GamerServices
|
||||
{
|
||||
public class AvatarAnimation : IAvatarAnimation, IDisposable
|
||||
[PercentageComplete(10)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Untested)]
|
||||
public class AvatarAnimation : IAvatarAnimation, IDisposable
|
||||
{
|
||||
public AvatarAnimation(AvatarAnimationPreset preset)
|
||||
{
|
||||
|
@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.GamerServices
|
||||
{
|
||||
[PercentageComplete(100)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Tested)]
|
||||
public enum AvatarAnimationPreset
|
||||
{
|
||||
|
@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.GamerServices
|
||||
{
|
||||
[PercentageComplete(100)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Tested)]
|
||||
public enum AvatarBodyType
|
||||
{
|
||||
|
@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.GamerServices
|
||||
{
|
||||
[PercentageComplete(100)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Tested)]
|
||||
public enum AvatarBone
|
||||
{
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,7 +10,10 @@ using System;
|
||||
|
||||
namespace ANX.Framework.GamerServices
|
||||
{
|
||||
public class AvatarDescription
|
||||
[PercentageComplete(10)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Untested)]
|
||||
public class AvatarDescription
|
||||
{
|
||||
public bool IsValid
|
||||
{
|
||||
|
@ -1,6 +1,7 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -10,6 +11,9 @@ using ANX.Framework;
|
||||
|
||||
namespace ANX.Framework.GamerServices
|
||||
{
|
||||
[PercentageComplete(100)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Tested)]
|
||||
public struct AvatarExpression
|
||||
{
|
||||
public AvatarEye LeftEye { get; set; }
|
||||
|
@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.GamerServices
|
||||
{
|
||||
[PercentageComplete(100)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Tested)]
|
||||
public enum AvatarEye
|
||||
{
|
||||
|
@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.GamerServices
|
||||
{
|
||||
[PercentageComplete(100)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Tested)]
|
||||
public enum AvatarEyebrow
|
||||
{
|
||||
|
@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.GamerServices
|
||||
{
|
||||
[PercentageComplete(100)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Tested)]
|
||||
public enum AvatarMouth
|
||||
{
|
||||
|
@ -2,6 +2,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -11,7 +12,10 @@ using System.Collections.ObjectModel;
|
||||
|
||||
namespace ANX.Framework.GamerServices
|
||||
{
|
||||
public class AvatarRenderer : IDisposable
|
||||
[PercentageComplete(10)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Untested)]
|
||||
public class AvatarRenderer : IDisposable
|
||||
{
|
||||
public const int BoneCount = 71;
|
||||
|
||||
|
@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.GamerServices
|
||||
{
|
||||
[PercentageComplete(100)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Tested)]
|
||||
public enum AvatarRendererState
|
||||
{
|
||||
|
@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development;
|
||||
namespace ANX.Framework.GamerServices
|
||||
{
|
||||
[PercentageComplete(100)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Tested)]
|
||||
public enum ControllerSensitivity
|
||||
{
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,7 +10,10 @@ using System;
|
||||
|
||||
namespace ANX.Framework.GamerServices
|
||||
{
|
||||
public sealed class FriendCollection : GamerCollection<FriendGamer>, IDisposable
|
||||
[PercentageComplete(10)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Untested)]
|
||||
public sealed class FriendCollection : GamerCollection<FriendGamer>, IDisposable
|
||||
{
|
||||
public bool IsDisposed
|
||||
{
|
||||
|
@ -1,5 +1,6 @@
|
||||
#region Using Statements
|
||||
using System;
|
||||
using ANX.Framework.NonXNA.Development;
|
||||
|
||||
#endregion // Using Statements
|
||||
|
||||
@ -9,6 +10,9 @@ using System;
|
||||
|
||||
namespace ANX.Framework.GamerServices
|
||||
{
|
||||
[PercentageComplete(10)]
|
||||
[Developer("Glatzemann")]
|
||||
[TestState(TestStateAttribute.TestState.Untested)]
|
||||
public sealed class FriendGamer : Gamer
|
||||
{
|
||||
public bool FriendRequestReceivedFrom
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user