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
using CodeImp.DoomBuilder.Map ;
using CodeImp.DoomBuilder.Rendering ;
#endregion
namespace CodeImp.DoomBuilder.BuilderModes
{
public class ResultLineNotSingleSided : ErrorResult
{
#region = = = = = = = = = = = = = = = = = = Variables
private Linedef line ;
#endregion
#region = = = = = = = = = = = = = = = = = = Properties
public override int Buttons { get { return 2 ; } }
public override string Button1Text { get { return "Make Double-Sided" ; } }
public override string Button2Text { get { return "Remove Sidedef" ; } }
#endregion
#region = = = = = = = = = = = = = = = = = = Constructor / Destructor
// Constructor
public ResultLineNotSingleSided ( Linedef l )
{
// Initialize
this . line = l ;
this . viewobjects . Add ( l ) ;
this . description = "This linedef is marked as single-sided, but has both a front and a back sidedef. Click Make Double-Sided to flag the line as double-sided." +
" Or click Remove Sidedef to remove the sidedef on the back side (making the line really single-sided)." ;
}
#endregion
#region = = = = = = = = = = = = = = = = = = Methods
// This must return the string that is displayed in the listbox
public override string ToString ( )
{
2013-09-11 09:47:53 +00:00
return "Linedef " + line . Index + " is marked single-sided but has two sides" ;
2009-04-19 18:07:22 +00:00
}
// Rendering
public override void PlotSelection ( IRenderer2D renderer )
{
renderer . PlotLinedef ( line , General . Colors . Selection ) ;
renderer . PlotVertex ( line . Start , ColorCollection . VERTICES ) ;
renderer . PlotVertex ( line . End , ColorCollection . VERTICES ) ;
}
// Fix by flipping linedefs
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 ( "Linedef flags change" ) ;
2009-04-19 18:07:22 +00:00
line . ApplySidedFlags ( ) ;
General . Map . Map . Update ( ) ;
return true ;
}
// Fix by creating a sidedef
2013-06-04 14:43:26 +00:00
public override bool Button2Click ( bool batchMode )
2009-04-19 18:07:22 +00:00
{
2013-06-04 14:43:26 +00:00
if ( ! batchMode ) General . Map . UndoRedo . CreateUndo ( "Remove back sidedef" ) ;
2009-04-19 18:07:22 +00:00
line . Back . Dispose ( ) ;
line . ApplySidedFlags ( ) ;
General . Map . Map . Update ( ) ;
return true ;
}
#endregion
}
}