added lots of developer attributes

This commit is contained in:
Glatzemann 2012-10-10 19:26:53 +00:00 committed by Konstantin Koch
parent c0e2f85eae
commit 5ac399a71d
176 changed files with 488 additions and 37 deletions

View File

@ -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>

View File

@ -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

View File

@ -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;

View File

@ -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; }

View File

@ -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
{
}

View File

@ -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;

View File

@ -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

View File

@ -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

View File

@ -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>

View File

@ -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;

View File

@ -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)

View File

@ -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)
{

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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;

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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)

View File

@ -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()

View File

@ -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)

View File

@ -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)

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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)

View File

@ -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)

View File

@ -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;

View File

@ -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;

View File

@ -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()

View File

@ -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;

View File

@ -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;

View File

@ -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)

View File

@ -7,6 +7,7 @@ using ANX.Framework.NonXNA.Development;
namespace ANX.Framework
{
[PercentageComplete(100)]
[Developer("Glatzemann")]
[TestState(TestStateAttribute.TestState.Tested)]
public enum CurveContinuity
{

View File

@ -7,6 +7,7 @@ using ANX.Framework.NonXNA.Development;
namespace ANX.Framework
{
[PercentageComplete(100)]
[Developer("Glatzemann")]
[TestState(TestStateAttribute.TestState.Tested)]
public enum CurveLoopType
{

View File

@ -7,6 +7,7 @@ using ANX.Framework.NonXNA.Development;
namespace ANX.Framework
{
[PercentageComplete(100)]
[Developer("Glatzemann")]
[TestState(TestStateAttribute.TestState.Tested)]
public enum CurveTangent
{

View File

@ -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;

View File

@ -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;

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -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;

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -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()

View File

@ -12,6 +12,7 @@ namespace ANX.Framework
{
[Flags]
[PercentageComplete(100)]
[Developer("Glatzemann")]
[TestState(TestStateAttribute.TestState.Tested)]
public enum DisplayOrientation
{

View File

@ -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;

View File

@ -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;

View File

@ -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

View File

@ -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

View File

@ -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
{

View File

@ -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)
{

View File

@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development;
namespace ANX.Framework.GamerServices
{
[PercentageComplete(100)]
[Developer("Glatzemann")]
[TestState(TestStateAttribute.TestState.Tested)]
public enum AvatarAnimationPreset
{

View File

@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development;
namespace ANX.Framework.GamerServices
{
[PercentageComplete(100)]
[Developer("Glatzemann")]
[TestState(TestStateAttribute.TestState.Tested)]
public enum AvatarBodyType
{

View File

@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development;
namespace ANX.Framework.GamerServices
{
[PercentageComplete(100)]
[Developer("Glatzemann")]
[TestState(TestStateAttribute.TestState.Tested)]
public enum AvatarBone
{

View File

@ -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
{

View File

@ -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; }

View File

@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development;
namespace ANX.Framework.GamerServices
{
[PercentageComplete(100)]
[Developer("Glatzemann")]
[TestState(TestStateAttribute.TestState.Tested)]
public enum AvatarEye
{

View File

@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development;
namespace ANX.Framework.GamerServices
{
[PercentageComplete(100)]
[Developer("Glatzemann")]
[TestState(TestStateAttribute.TestState.Tested)]
public enum AvatarEyebrow
{

View File

@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development;
namespace ANX.Framework.GamerServices
{
[PercentageComplete(100)]
[Developer("Glatzemann")]
[TestState(TestStateAttribute.TestState.Tested)]
public enum AvatarMouth
{

View File

@ -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;

View File

@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development;
namespace ANX.Framework.GamerServices
{
[PercentageComplete(100)]
[Developer("Glatzemann")]
[TestState(TestStateAttribute.TestState.Tested)]
public enum AvatarRendererState
{

View File

@ -11,6 +11,7 @@ using ANX.Framework.NonXNA.Development;
namespace ANX.Framework.GamerServices
{
[PercentageComplete(100)]
[Developer("Glatzemann")]
[TestState(TestStateAttribute.TestState.Tested)]
public enum ControllerSensitivity
{

View File

@ -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
{

View File

@ -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