summaryrefslogtreecommitdiff
path: root/WADEntry.cs
blob: 8215ca4c4f758a5f697b347fb23038c0fefbe5cc (plain)
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
// Noddybox.DOOM - DOOM WAD Wrapper
// Copyright (C) 2004  Ian Cowburn
// 
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
// 
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
// 
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
//
// $Id$
//
using System;
using System.IO;

namespace Noddybox.DOOM
{
	/// <summary>
	/// Describes a directory entry in a WAD file
	/// </summary>
	public class WADEntry
	{
		// ====================================
		// PUBLIC
		// ====================================

		/// <summary>
		/// Create an empty lump
		/// </summary>
		public WADEntry()
		{
			Name="LUMP";
			Data=null;
		}

		/// <summary>
		/// Create a lump
		/// </summary>
		/// <param name="name">The name</param>
		/// <param name="data">The data</param>
		public WADEntry(string name, byte[] data)
		{
			Name=name;
			Data=data;
		}
		
		/// <summary>
		/// Create a lump
		/// </summary>
		/// <param name="we">The lump to copy</param>
		public WADEntry(WADEntry we)
		{
			Name=we.Name;
			Data=(byte[])we.Data.Clone();
		}
		
		/// <summary>
		/// Get/set the lump's name
		/// </summary>
		public string Name
		{
			get {return m_name;}
			set
			{
				m_name=value;
				
				if (m_name.Length>8)
				{
					m_name=m_name.Substring(0,8);
				}
				
				m_name=m_name.Trim(new char[] {'\0'});
			}
		}
		
		/// <summary>
		/// Get the length of the lump's data
		/// </summary>
		public int Length
		{
			get {return m_length;}
		}
		
		/// <summary>
		/// Get/set the lump data
		/// </summary>
		public byte[] Data
		{
			get {return m_data;}
			set
			{
				m_data=value;
				
				if (m_data!=null)
				{
					m_length=m_data.Length;
				}
				else
				{
					m_length=0;
				}
			}
		}
		
		/// <summary>
		/// Index into the lump data as bytes
		/// </summary>
		public byte this[int index]
		{
			get {return m_data[index];}
			set {m_data[index]=value;}
		}
		
		/// <summary>
		/// Index into the lump data as bytes
		/// </summary>
		public byte this[uint index]
		{
			get {return m_data[index];}
			set {m_data[index]=value;}
		}
		
		/// <summary>
		/// Get the lump data as a MemoryStream
		/// </summary>
		public MemoryStream Stream
		{
			get {return new MemoryStream(m_data);}
		}
		
		// ====================================
		// PRIVATE
		// ====================================
		private string		m_name;
		private int			m_length;
		private byte[]		m_data;
	}
}