2009-04-19 18:07:22 +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
|
|
|
|
|
2014-09-12 21:08:11 +00:00
|
|
|
using System;
|
2009-04-19 18:07:22 +00:00
|
|
|
using CodeImp.DoomBuilder.Map;
|
|
|
|
using CodeImp.DoomBuilder.Rendering;
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes
|
|
|
|
{
|
|
|
|
public class ResultThingOutside : ErrorResult
|
|
|
|
{
|
|
|
|
#region ================== Variables
|
|
|
|
|
2014-09-12 21:08:11 +00:00
|
|
|
private readonly Thing thing;
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Properties
|
|
|
|
|
|
|
|
public override int Buttons { get { return 1; } }
|
|
|
|
public override string Button1Text { get { return "Delete Thing"; } }
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Constructor / Destructor
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
public ResultThingOutside(Thing t)
|
|
|
|
{
|
|
|
|
// Initialize
|
2014-09-12 21:08:11 +00:00
|
|
|
thing = t;
|
|
|
|
viewobjects.Add(t);
|
|
|
|
hidden = t.IgnoredErrorChecks.Contains(this.GetType()); //mxd
|
|
|
|
description = "This thing is completely outside the map.";
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Methods
|
|
|
|
|
2014-09-12 21:08:11 +00:00
|
|
|
// This sets if this result is displayed in ErrorCheckForm (mxd)
|
|
|
|
internal override void Hide(bool hide)
|
|
|
|
{
|
|
|
|
hidden = hide;
|
|
|
|
Type t = this.GetType();
|
|
|
|
if(hide) thing.IgnoredErrorChecks.Add(t);
|
|
|
|
else if(thing.IgnoredErrorChecks.Contains(t)) thing.IgnoredErrorChecks.Remove(t);
|
|
|
|
}
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
// This must return the string that is displayed in the listbox
|
|
|
|
public override string ToString()
|
|
|
|
{
|
2014-08-11 10:30:52 +00:00
|
|
|
return "Thing " + thing.Index + " (" + General.Map.Data.GetThingInfo(thing.Type).Title + ") is outside the map at " + thing.Position.x + ", " + thing.Position.y;
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Rendering
|
|
|
|
public override void RenderOverlaySelection(IRenderer2D renderer)
|
|
|
|
{
|
2016-04-01 10:49:19 +00:00
|
|
|
renderer.RenderThing(thing, General.Colors.Selection, General.Settings.ActiveThingsAlpha);
|
2009-04-19 18:07:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// This removes the thing
|
2013-06-04 14:43:26 +00:00
|
|
|
public override bool Button1Click(bool batchMode)
|
2009-04-19 18:07:22 +00:00
|
|
|
{
|
2013-06-04 14:43:26 +00:00
|
|
|
if(!batchMode) General.Map.UndoRedo.CreateUndo("Delete thing");
|
2009-04-19 18:07:22 +00:00
|
|
|
thing.Dispose();
|
|
|
|
General.Map.IsChanged = true;
|
|
|
|
General.Map.ThingsFilter.Update();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|