1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
|
#region License
/*
MIT License
Copyright © 2006 The Mono.Xna Team
All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#endregion License
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
namespace Microsoft.Xna.Framework.Content
{
public sealed class ContentReader : BinaryReader
{
private ContentManager contentManager;
private ContentTypeReaderManager typeReaderManager;
private GraphicsDevice graphicsDevice;
private string assetName;
private List<KeyValuePair<int, Action<object>>> sharedResourceFixups;
private ContentTypeReader[] typeReaders;
internal ContentTypeReader[] TypeReaders
{
get
{
return typeReaders;
}
}
internal GraphicsDevice GraphicsDevice
{
get
{
return this.graphicsDevice;
}
}
internal ContentReader(ContentManager manager, Stream stream, GraphicsDevice graphicsDevice, string assetName)
: base(stream)
{
this.graphicsDevice = graphicsDevice;
this.contentManager = manager;
this.assetName = assetName;
}
public ContentManager ContentManager
{
get
{
return contentManager;
}
}
public string AssetName
{
get
{
return assetName;
}
}
internal object ReadAsset<T>()
{
object result = null;
typeReaderManager = new ContentTypeReaderManager(this);
typeReaders = typeReaderManager.LoadAssetReaders();
foreach (ContentTypeReader r in typeReaders)
{
r.Initialize(typeReaderManager);
}
int sharedResourceCount = Read7BitEncodedInt();
sharedResourceFixups = new List<KeyValuePair<int, Action<object>>>();
// Read primary object
int index = Read7BitEncodedInt();
if (index > 0)
{
ContentTypeReader contentReader = typeReaders[index - 1];
result = ReadObject<T>(contentReader);
}
// Read shared resources
if (sharedResourceCount > 0)
{
ReadSharedResources(sharedResourceCount);
}
return result;
}
void ReadSharedResources(int sharedResourceCount)
{
object[] sharedResources = new object[sharedResourceCount];
for (int i = 0; i < sharedResourceCount; ++i)
{
int index = Read7BitEncodedInt();
if (index > 0)
{
ContentTypeReader contentReader = typeReaders[index - 1];
sharedResources[i] = ReadObject<object>(contentReader);
}
else
{
sharedResources[i] = null;
}
}
// Fixup shared resources by calling each registered action
foreach (KeyValuePair<int, Action<object>> fixup in sharedResourceFixups)
{
fixup.Value(sharedResources[fixup.Key]);
}
}
public T ReadExternalReference<T>()
{
string externalAssetName = ReadString();
if (!String.IsNullOrEmpty(externalAssetName))
{
// Use Path.GetFullPath to help resolve relative directories
string fullRootPath = Path.GetFullPath(contentManager.RootDirectory);
string fullAssetPath = Path.GetFullPath(Path.Combine(Path.GetDirectoryName(Path.Combine(fullRootPath, assetName)), externalAssetName));
#if ANDROID
externalAssetName = fullAssetPath.Substring(fullRootPath.Length + 3);
#else
externalAssetName = fullAssetPath.Substring(fullRootPath.Length + 1);
#endif
return contentManager.Load<T>(externalAssetName);
}
return default(T);
}
public Matrix ReadMatrix()
{
Matrix result = new Matrix();
result.M11 = ReadSingle();
result.M12 = ReadSingle();
result.M13 = ReadSingle();
result.M14 = ReadSingle();
result.M21 = ReadSingle();
result.M22 = ReadSingle();
result.M23 = ReadSingle();
result.M24 = ReadSingle();
result.M31 = ReadSingle();
result.M32 = ReadSingle();
result.M33 = ReadSingle();
result.M34 = ReadSingle();
result.M41 = ReadSingle();
result.M42 = ReadSingle();
result.M43 = ReadSingle();
result.M44 = ReadSingle();
return result;
}
public T ReadObject<T>()
{
int typeReaderIndex = Read7BitEncodedInt();
if (typeReaderIndex == 0)
return default(T);
return (T)typeReaders[typeReaderIndex - 1].Read(this, default(T));
}
public T ReadObject<T>(ContentTypeReader typeReader)
{
return (T)typeReader.Read(this, default(T));
}
public T ReadObject<T>(T existingInstance)
{
ContentTypeReader typeReader = typeReaderManager.GetTypeReader(typeof(T));
if (typeReader != null)
{
return (T)typeReader.Read(this, existingInstance);
}
throw new ContentLoadException(String.Format("Could not read object type " + typeof(T).Name));
}
public T ReadObject<T>(ContentTypeReader typeReader, T existingInstance)
{
if (!typeReader.TargetType.IsValueType)
return (T)ReadObject<object>();
return (T)typeReader.Read(this, existingInstance);
}
public Quaternion ReadQuaternion()
{
Quaternion result = new Quaternion();
result.X = ReadSingle();
result.Y = ReadSingle();
result.Z = ReadSingle();
result.W = ReadSingle();
return result;
}
public T ReadRawObject<T>()
{
throw new NotImplementedException();
}
public T ReadRawObject<T>(ContentTypeReader typeReader)
{
throw new NotImplementedException();
}
public T ReadRawObject<T>(T existingInstance)
{
Type objectType = typeof(T);
foreach(ContentTypeReader typeReader in typeReaders)
{
if(typeReader.TargetType == objectType)
return (T)ReadRawObject<T>(typeReader,existingInstance);
}
throw new NotSupportedException();
}
public T ReadRawObject<T>(ContentTypeReader typeReader, T existingInstance)
{
return (T)typeReader.Read(this, existingInstance);
}
public void ReadSharedResource<T>(Action<T> fixup)
{
int index = Read7BitEncodedInt();
if (index > 0)
{
sharedResourceFixups.Add(new KeyValuePair<int, Action<object>>(index - 1, delegate(object v)
{
if (!(v is T))
{
throw new ContentLoadException(String.Format("Error loading shared resource. Expected type {0}, received type {1}", typeof(T).Name, v.GetType().Name));
}
fixup((T)v);
}));
}
}
public Vector2 ReadVector2()
{
Vector2 result = new Vector2();
result.X = ReadSingle();
result.Y = ReadSingle();
return result;
}
public Vector3 ReadVector3()
{
Vector3 result = new Vector3();
result.X = ReadSingle();
result.Y = ReadSingle();
result.Z = ReadSingle();
return result;
}
public Vector4 ReadVector4()
{
Vector4 result = new Vector4();
result.X = ReadSingle();
result.Y = ReadSingle();
result.Z = ReadSingle();
result.W = ReadSingle();
return result;
}
public Color ReadColor()
{
Color result = new Color();
result.R = ReadByte();
result.G = ReadByte();
result.B = ReadByte();
result.A = ReadByte();
return result;
}
internal new int Read7BitEncodedInt()
{
return base.Read7BitEncodedInt();
}
}
}
|