2009-05-24 22:26:25 +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
{
2013-09-11 09:47:53 +00:00
public class ResultMissingTexture : ErrorResult
{
#region = = = = = = = = = = = = = = = = = = Variables
2009-05-24 22:26:25 +00:00
2013-09-11 09:47:53 +00:00
private Sidedef side ;
private SidedefPart part ;
2009-05-24 22:26:25 +00:00
2013-09-11 09:47:53 +00:00
#endregion
2009-05-24 22:26:25 +00:00
2013-09-11 09:47:53 +00:00
#region = = = = = = = = = = = = = = = = = = Properties
2009-05-24 22:26:25 +00:00
2013-09-11 09:47:53 +00:00
public override int Buttons { get { return 1 ; } }
public override string Button1Text { get { return "Add Default Texture" ; } }
2009-05-24 22:26:25 +00:00
2013-09-11 09:47:53 +00:00
#endregion
2009-05-24 22:26:25 +00:00
2013-09-11 09:47:53 +00:00
#region = = = = = = = = = = = = = = = = = = Constructor / Destructor
2009-05-24 22:26:25 +00:00
2013-09-11 09:47:53 +00:00
// Constructor
public ResultMissingTexture ( Sidedef sd , SidedefPart part )
{
// Initialize
this . side = sd ;
this . part = part ;
this . viewobjects . Add ( sd ) ;
2014-03-05 09:21:28 +00:00
this . description = "This sidedef is missing a texture where it is required and could cause a 'Hall Of Mirrors' visual problem in the map. Click the 'Add Default Texture' button to add a texture to the line." ;
2013-09-11 09:47:53 +00:00
}
2009-05-24 22:26:25 +00:00
2013-09-11 09:47:53 +00:00
#endregion
2009-05-24 22:26:25 +00:00
2013-09-11 09:47:53 +00:00
#region = = = = = = = = = = = = = = = = = = Methods
2009-05-24 22:26:25 +00:00
2013-09-11 09:47:53 +00:00
// This must return the string that is displayed in the listbox
public override string ToString ( )
{
2009-05-24 22:26:25 +00:00
string sidestr = side . IsFront ? "front" : "back" ;
2013-09-11 09:47:53 +00:00
switch ( part )
{
case SidedefPart . Upper :
2012-10-08 13:07:56 +00:00
return "Sidedef " + side . Index + " has missing upper texture (" + sidestr + " side)" ;
2009-05-24 22:26:25 +00:00
2013-09-11 09:47:53 +00:00
case SidedefPart . Middle :
return "Sidedef " + side . Index + " has missing middle texture (" + sidestr + " side)" ;
2009-05-24 22:26:25 +00:00
2013-09-11 09:47:53 +00:00
case SidedefPart . Lower :
return "Sidedef " + side . Index + " has missing lower texture (" + sidestr + " side)" ;
2009-05-24 22:26:25 +00:00
2013-09-11 09:47:53 +00:00
default :
return "ERROR" ;
}
}
2009-05-24 22:26:25 +00:00
2013-09-11 09:47:53 +00:00
// Rendering
public override void PlotSelection ( IRenderer2D renderer )
{
renderer . PlotLinedef ( side . Line , General . Colors . Selection ) ;
renderer . PlotVertex ( side . Line . Start , ColorCollection . VERTICES ) ;
renderer . PlotVertex ( side . Line . End , ColorCollection . VERTICES ) ;
}
2009-05-24 22:26:25 +00:00
2013-09-11 09:47:53 +00:00
// Fix by setting default texture
2013-06-04 14:43:26 +00:00
public override bool Button1Click ( bool batchMode )
2013-09-11 09:47:53 +00:00
{
2013-06-04 14:43:26 +00:00
if ( ! batchMode ) General . Map . UndoRedo . CreateUndo ( "Missing texture correction" ) ;
2009-06-20 06:05:41 +00:00
General . Settings . FindDefaultDrawSettings ( ) ;
2013-09-11 09:47:53 +00:00
switch ( part )
{
2014-01-08 09:46:57 +00:00
case SidedefPart . Upper : side . SetTextureHigh ( General . Map . Options . DefaultTopTexture ) ; break ;
2013-11-21 10:53:11 +00:00
case SidedefPart . Middle : side . SetTextureMid ( General . Map . Options . DefaultWallTexture ) ; break ;
2014-01-08 09:46:57 +00:00
case SidedefPart . Lower : side . SetTextureLow ( General . Map . Options . DefaultBottomTexture ) ; break ;
2013-09-11 09:47:53 +00:00
}
General . Map . Map . Update ( ) ;
return true ;
}
#endregion
}
2009-05-24 22:26:25 +00:00
}