view API/Factories/Mock/MockNativeWarFoundryFactory.cs @ 230:d6883a522c70

Re #419: Remove assumptions of a file-based install * Make sure Race files aren't identified as GameSystem files
author IBBoard <dev@ibboard.co.uk>
date Wed, 11 Jul 2012 20:54:12 +0100
parents 453640610ef9
children
line wrap: on
line source

// This file (MockNativeWarFoundryFactory.cs) is a part of the IBBoard.WarFoundry.API.Tests project and is copyright 2011 IBBoard
// 
// The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license.
using System;
using ICSharpCode.SharpZipLib.Zip;
using System.Collections.Generic;
using IBBoard.WarFoundry.API.Objects;
using System.IO;

namespace IBBoard.WarFoundry.API.Factories.Mock
{
	public class MockNativeWarFoundryFactory : AbstractNativeWarFoundryFactory
	{
		public MockNativeWarFoundryFactory()
		{
			//Do nothing special
		}

		protected override bool CheckCanFindSystemFileContent(ZipFile file)
		{
			return false;
		}

		protected override bool CheckCanFindRaceFileContent(ZipFile file)
		{
			return false;
		}

		protected override bool CheckCanFindArmyFileContent(ZipFile file)
		{
			return false;
		}

		protected override ICollection<ZipEntry> GetArmyZipEntries(ZipFile file)
		{
			return new List<ZipEntry>().AsReadOnly();
		}

		protected override Army CreateArmyFromStream(ZipFile file, Stream dataStream)
		{
			return null;
		}

		protected override ICollection<ZipEntry> GetRaceZipEntries(ZipFile file)
		{
			return new List<ZipEntry>().AsReadOnly();
		}

		protected override Race CreateRaceFromStream(ZipFile file, Stream dataStream)
		{
			return null;
		}

		protected override ICollection<ZipEntry> GetGameSystemZipEntries(ZipFile file)
		{
			return new List<ZipEntry>().AsReadOnly();
		}

		protected override GameSystem CreateGameSystemFromStream(ZipFile file, Stream dataStream)
		{
			return null;
		}
	}
}