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
{
2012-06-01 19:53:14 +00:00
public class ResultStuckThingInLine : ErrorResult
2009-04-19 18:07:22 +00:00
{
#region = = = = = = = = = = = = = = = = = = Variables
2014-09-12 21:08:11 +00:00
private readonly Thing thing ;
2014-09-29 20:49:41 +00:00
private readonly Linedef line ; //mxd
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
2014-09-29 20:49:41 +00:00
public ResultStuckThingInLine ( Thing t , Linedef l )
2009-04-19 18:07:22 +00:00
{
// Initialize
2014-09-12 21:08:11 +00:00
thing = t ;
2014-09-29 20:49:41 +00:00
line = l ; //mxd
2014-09-12 21:08:11 +00:00
viewobjects . Add ( t ) ;
hidden = t . IgnoredErrorChecks . Contains ( this . GetType ( ) ) ; //mxd
description = "This thing is stuck in a wall (single-sided line) and will likely not be able to move around." ;
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-09-29 20:49:41 +00:00
return "Thing " + thing . Index + " (" + General . Map . Data . GetThingInfo ( thing . Type ) . Title + ") is stuck in linedef " + line . Index + " at " + thing . Position . x + ", " + thing . Position . y ;
2009-04-19 18:07:22 +00:00
}
// Rendering
public override void RenderOverlaySelection ( IRenderer2D renderer )
{
2015-08-03 22:02:39 +00:00
renderer . RenderThing ( thing , General . Colors . Selection , Presentation . THINGS_ALPHA ) ;
2014-09-29 20:49:41 +00:00
}
// mxd. More rencering
public override void PlotSelection ( IRenderer2D renderer )
{
renderer . PlotLinedef ( line , General . Colors . Selection ) ;
renderer . PlotVertex ( line . Start , ColorCollection . VERTICES ) ;
renderer . PlotVertex ( line . End , ColorCollection . VERTICES ) ;
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
}
}