view ChunkyDataDATA.cs @ 0:82db9430c2e4 default tip

Initial commit under GPLv3
author IBBoard <dev@ibboard.co.uk>
date Sat, 06 Oct 2018 19:49:25 +0100
parents
children
line wrap: on
line source

// This file is a part of the Relic Tools and is copyright 2006-2018 IBBoard.
//
// The file and the library/program it is in are licensed under the GNU 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 System.IO;
using IBBoard.Relic.RelicTools.Exceptions;

namespace IBBoard.Relic.RelicTools
{
	/// <summary>
	/// Summary description for ChunkyDataDATA.
	/// </summary>
	public class ChunkyDataDATA : ChunkyData
	{
		private ChunkyDataATTR attr;
		private byte[] data;

		public ChunkyDataDATA(int version_in, string name_in, byte[] innerData_in):base("DATA", version_in, name_in)
		{
			data = innerData_in;
		}

		public ChunkyDataATTR Attributes{
			get{ return attr; }
			set{ attr = value; }
		}

		public override int DataLength
		{
			get
			{
				return data.Length;
			}
		}

		public override byte[] GetDataBytes()
		{
			return data;
		}

		public override string GetDisplayDetails()
		{		
			return base.GetBaseDisplayDetails()+Environment.NewLine+
				"------------"+Environment.NewLine+
				ByteArrayToString(GetDataBytes());
		}
	}
}