12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #region License
- // Copyright 2016 Kastellanos Nikolaos
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #endregion
- using System;
- using Microsoft.Xna.Framework;
- using Microsoft.Xna.Framework.Content;
- using Microsoft.Xna.Framework.Graphics;
- using tainicom.Aether.Atlas;
- namespace tainicom.Aether.Graphics.Content
- {
- public class TextureAtlasReader : ContentTypeReader<TextureAtlas>
- {
- protected override TextureAtlas Read(ContentReader input, TextureAtlas existingInstance)
- {
- System.Diagnostics.Debugger.Launch();
- IGraphicsDeviceService graphicsDeviceService = (IGraphicsDeviceService)input.ContentManager.ServiceProvider.GetService(typeof(IGraphicsDeviceService));
- var device = graphicsDeviceService.GraphicsDevice;
- TextureAtlas output = existingInstance ?? new TextureAtlas();
- // read standard Texture2D
- output.Texture = ReadTexture2D(input, output.Texture);
- // read Sprites
- var count = input.ReadInt32();
- for (int i = 0; i < count; i++)
- {
- var name = input.ReadString();
- var destinationRect = new Rectangle(input.ReadInt32(), input.ReadInt32(), input.ReadInt32(), input.ReadInt32());
- output.Sprites[name] = new Sprite(output.Texture, destinationRect);
- }
- return output;
- }
- private Texture2D ReadTexture2D(ContentReader input, Texture2D existingInstance)
- {
- Texture2D output = null;
- try
- {
- output = input.ReadRawObject<Texture2D>(existingInstance);
- }
- catch(NotSupportedException)
- {
- var assembly = typeof(Microsoft.Xna.Framework.Content.ContentTypeReader).Assembly;
- var texture2DReaderType = assembly.GetType("Microsoft.Xna.Framework.Content.Texture2DReader");
- var texture2DReader = (ContentTypeReader)Activator.CreateInstance(texture2DReaderType, true);
- output = input.ReadRawObject<Texture2D>(texture2DReader, existingInstance);
- }
-
- return output;
- }
- }
- }
|