2008-12-05 15:38:50 +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;
|
|
|
|
using CodeImp.DoomBuilder.Windows;
|
|
|
|
using CodeImp.DoomBuilder.IO;
|
|
|
|
using CodeImp.DoomBuilder.Map;
|
|
|
|
using CodeImp.DoomBuilder.Rendering;
|
|
|
|
using CodeImp.DoomBuilder.Geometry;
|
|
|
|
using CodeImp.DoomBuilder.Editing;
|
|
|
|
using CodeImp.DoomBuilder.VisualModes;
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes
|
|
|
|
{
|
2008-12-15 18:32:36 +00:00
|
|
|
internal abstract class BaseVisualGeometrySector : VisualGeometry, IVisualEventReceiver
|
2008-12-05 15:38:50 +00:00
|
|
|
{
|
|
|
|
#region ================== Constants
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Variables
|
|
|
|
|
2008-12-17 10:58:57 +00:00
|
|
|
protected BaseVisualMode mode;
|
|
|
|
|
2008-12-05 15:38:50 +00:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Properties
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Constructor / Destructor
|
|
|
|
|
|
|
|
// Constructor
|
2008-12-17 10:58:57 +00:00
|
|
|
public BaseVisualGeometrySector(BaseVisualMode mode, VisualSector vs) : base(vs)
|
2008-12-05 15:38:50 +00:00
|
|
|
{
|
2008-12-17 10:58:57 +00:00
|
|
|
this.mode = mode;
|
2008-12-05 15:38:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Methods
|
|
|
|
|
2008-12-06 00:28:49 +00:00
|
|
|
// This changes the height
|
|
|
|
public abstract void ChangeHeight(int amount);
|
|
|
|
|
2008-12-05 15:38:50 +00:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Events
|
2008-12-15 18:32:36 +00:00
|
|
|
|
|
|
|
// Unused
|
|
|
|
public virtual void OnSelectBegin() { }
|
|
|
|
public virtual void OnSelectEnd() { }
|
|
|
|
public virtual void OnEditBegin() { }
|
2008-12-17 15:30:50 +00:00
|
|
|
public virtual void OnMouseMove(MouseEventArgs e) { }
|
2008-12-05 15:38:50 +00:00
|
|
|
|
|
|
|
// Edit button released
|
2008-12-15 18:32:36 +00:00
|
|
|
public virtual void OnEditEnd()
|
2008-12-05 15:38:50 +00:00
|
|
|
{
|
|
|
|
List<Sector> sectors = new List<Sector>();
|
|
|
|
sectors.Add(this.Sector.Sector);
|
|
|
|
DialogResult result = General.Interface.ShowEditSectors(sectors);
|
|
|
|
if(result == DialogResult.OK) (this.Sector as BaseVisualSector).Rebuild();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|