2008-11-30 02:17:19 +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 System.Windows.Forms;
|
|
|
|
using System.IO;
|
|
|
|
using System.Reflection;
|
2008-12-04 23:01:52 +00:00
|
|
|
using CodeImp.DoomBuilder.Windows;
|
|
|
|
using CodeImp.DoomBuilder.IO;
|
2008-11-30 02:17:19 +00:00
|
|
|
using CodeImp.DoomBuilder.Map;
|
2008-12-04 23:01:52 +00:00
|
|
|
using CodeImp.DoomBuilder.Rendering;
|
2008-11-30 02:17:19 +00:00
|
|
|
using CodeImp.DoomBuilder.Geometry;
|
|
|
|
using CodeImp.DoomBuilder.Editing;
|
2008-12-04 23:01:52 +00:00
|
|
|
using CodeImp.DoomBuilder.VisualModes;
|
2008-11-30 02:17:19 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2008-12-04 23:01:52 +00:00
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes
|
2008-11-30 02:17:19 +00:00
|
|
|
{
|
2008-12-05 15:38:50 +00:00
|
|
|
internal abstract class BaseVisualGeometry : VisualGeometry
|
2008-11-30 02:17:19 +00:00
|
|
|
{
|
|
|
|
#region ================== Constants
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Variables
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Properties
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2008-12-05 15:38:50 +00:00
|
|
|
#region ================== Constructor / Setup
|
2008-11-30 02:17:19 +00:00
|
|
|
|
|
|
|
// Constructor
|
2008-12-05 15:38:50 +00:00
|
|
|
public BaseVisualGeometry(VisualSector vs) : base(vs)
|
2008-11-30 02:17:19 +00:00
|
|
|
{
|
|
|
|
}
|
2008-12-05 15:38:50 +00:00
|
|
|
|
2008-12-04 23:01:52 +00:00
|
|
|
// Constructor for sidedefs
|
2008-12-05 15:38:50 +00:00
|
|
|
public BaseVisualGeometry(VisualSector vs, Sidedef sd) : base(vs, sd)
|
2008-12-02 15:47:06 +00:00
|
|
|
{
|
|
|
|
}
|
2008-12-05 15:38:50 +00:00
|
|
|
|
|
|
|
// This is for setting up new geometry
|
|
|
|
public abstract bool Setup();
|
2008-12-04 23:01:52 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Methods
|
2008-12-05 15:38:50 +00:00
|
|
|
|
2008-12-04 23:01:52 +00:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Events
|
|
|
|
|
2008-12-05 06:52:20 +00:00
|
|
|
public virtual void OnSelectBegin() { }
|
|
|
|
public virtual void OnSelectEnd() { }
|
|
|
|
public virtual void OnEditBegin() { }
|
|
|
|
public virtual void OnEditEnd() { }
|
|
|
|
|
2008-11-30 02:17:19 +00:00
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|