2008-05-30 08:41:13 +00:00
|
|
|
|
|
|
|
#region ================== Copyright (c) 2007 Pascal vd Heiden
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Pascal vd Heiden, www.codeimp.com
|
|
|
|
* This program is released under GNU General Public License
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Namespaces
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Globalization;
|
|
|
|
using System.Text;
|
|
|
|
using CodeImp.DoomBuilder.Geometry;
|
|
|
|
using CodeImp.DoomBuilder.Rendering;
|
|
|
|
using SlimDX.Direct3D9;
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
namespace CodeImp.DoomBuilder.Map
|
|
|
|
{
|
|
|
|
public abstract class MapElement : IDisposable
|
|
|
|
{
|
|
|
|
#region ================== Constants
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Variables
|
|
|
|
|
|
|
|
// Univeral fields
|
|
|
|
private UniFields fields;
|
2008-10-16 08:45:23 +00:00
|
|
|
|
|
|
|
// Marking
|
|
|
|
protected bool marked;
|
|
|
|
|
2008-05-30 08:41:13 +00:00
|
|
|
// Disposing
|
|
|
|
protected bool isdisposed = false;
|
|
|
|
|
|
|
|
#endregion
|
2008-10-16 08:45:23 +00:00
|
|
|
|
2008-05-30 08:41:13 +00:00
|
|
|
#region ================== Properties
|
2008-10-16 08:45:23 +00:00
|
|
|
|
2008-05-30 08:41:13 +00:00
|
|
|
public UniFields Fields { get { return fields; } }
|
2008-10-16 08:45:23 +00:00
|
|
|
public bool Marked { get { return marked; } set { marked = value; } }
|
2008-05-30 08:41:13 +00:00
|
|
|
public bool IsDisposed { get { return isdisposed; } }
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Constructor / Disposer
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
internal MapElement()
|
|
|
|
{
|
|
|
|
// Initialize
|
|
|
|
fields = new UniFields();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Disposer
|
|
|
|
public virtual void Dispose()
|
|
|
|
{
|
|
|
|
if(!isdisposed)
|
|
|
|
{
|
|
|
|
// Clean up
|
|
|
|
fields = null;
|
|
|
|
|
|
|
|
// Done
|
|
|
|
isdisposed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2008-10-16 08:45:23 +00:00
|
|
|
#region ================== Methods
|
|
|
|
|
|
|
|
// This copies properties to any other element
|
|
|
|
public void CopyPropertiesTo(MapElement element)
|
2008-05-30 08:41:13 +00:00
|
|
|
{
|
|
|
|
element.fields = new UniFields(this.fields);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|