2010-08-12 09:01: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;
|
2010-08-12 09:01:22 +00:00
|
|
|
using CodeImp.DoomBuilder.Map;
|
|
|
|
using CodeImp.DoomBuilder.Rendering;
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes
|
|
|
|
{
|
|
|
|
public class ResultUnknownFlat : ErrorResult
|
|
|
|
{
|
|
|
|
#region ================== Variables
|
|
|
|
|
2014-09-12 21:08:11 +00:00
|
|
|
private readonly Sector sector;
|
|
|
|
private readonly bool ceiling;
|
2015-01-07 18:32:48 +00:00
|
|
|
private static string imagename = "-"; //mxd
|
2010-08-12 09:01:22 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Properties
|
|
|
|
|
2015-01-07 18:32:48 +00:00
|
|
|
public override int Buttons { get { return 2; } }
|
2010-08-12 09:01:22 +00:00
|
|
|
public override string Button1Text { get { return "Add Default Flat"; } }
|
2015-01-11 19:42:57 +00:00
|
|
|
public override string Button2Text { get { return "Browse Flat..."; } } //mxd
|
2010-08-12 09:01:22 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Constructor / Destructor
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
public ResultUnknownFlat(Sector s, bool ceiling)
|
|
|
|
{
|
|
|
|
// Initialize
|
|
|
|
this.sector = s;
|
|
|
|
this.ceiling = ceiling;
|
|
|
|
this.viewobjects.Add(s);
|
2014-09-12 21:08:11 +00:00
|
|
|
this.hidden = s.IgnoredErrorChecks.Contains(this.GetType()); //mxd
|
2015-01-07 18:32:48 +00:00
|
|
|
imagename = "-"; //mxd
|
|
|
|
|
2010-08-12 09:01:22 +00:00
|
|
|
string objname = ceiling ? "ceiling" : "floor";
|
2015-01-07 18:32:48 +00:00
|
|
|
this.description = "This sector's " + objname + " uses an unknown flat. This could be the result of missing resources, or a mistyped flat name.";
|
2010-08-12 09:01: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) sector.IgnoredErrorChecks.Add(t);
|
|
|
|
else if(sector.IgnoredErrorChecks.Contains(t)) sector.IgnoredErrorChecks.Remove(t);
|
|
|
|
}
|
2010-08-12 09:01:22 +00:00
|
|
|
|
|
|
|
// This must return the string that is displayed in the listbox
|
|
|
|
public override string ToString()
|
|
|
|
{
|
|
|
|
if(ceiling)
|
2013-03-18 13:52:27 +00:00
|
|
|
return "Sector " + sector.Index + " has unknown ceiling flat \"" + sector.CeilTexture + "\"";
|
2010-08-12 09:01:22 +00:00
|
|
|
else
|
2013-09-11 09:47:53 +00:00
|
|
|
return "Sector " + sector.Index + " has unknown floor flat \"" + sector.FloorTexture + "\"";
|
2010-08-12 09:01:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Rendering
|
|
|
|
public override void PlotSelection(IRenderer2D renderer)
|
|
|
|
{
|
|
|
|
renderer.PlotSector(sector, General.Colors.Selection);
|
|
|
|
}
|
2014-01-10 15:08:39 +00:00
|
|
|
|
|
|
|
//mxd. More rendering
|
2014-12-03 23:15:26 +00:00
|
|
|
public override void RenderOverlaySelection(IRenderer2D renderer)
|
|
|
|
{
|
2016-05-12 22:35:11 +00:00
|
|
|
if(!General.Settings.UseHighlight) return;
|
2014-01-10 15:08:39 +00:00
|
|
|
renderer.RenderHighlight(sector.FlatVertices, General.Colors.Selection.WithAlpha(64).ToInt());
|
|
|
|
}
|
2010-08-12 09:01:22 +00:00
|
|
|
|
|
|
|
// Fix by setting default flat
|
2013-06-04 14:43:26 +00:00
|
|
|
public override bool Button1Click(bool batchMode)
|
2010-08-12 09:01:22 +00:00
|
|
|
{
|
2013-06-04 14:43:26 +00:00
|
|
|
if(!batchMode) General.Map.UndoRedo.CreateUndo("Unknown flat correction");
|
2010-08-12 09:01:22 +00:00
|
|
|
General.Settings.FindDefaultDrawSettings();
|
|
|
|
|
|
|
|
if(ceiling)
|
2013-11-21 10:53:11 +00:00
|
|
|
sector.SetCeilTexture(General.Map.Options.DefaultCeilingTexture);
|
2010-08-12 09:01:22 +00:00
|
|
|
else
|
2013-11-21 10:53:11 +00:00
|
|
|
sector.SetFloorTexture(General.Map.Options.DefaultFloorTexture);
|
2010-08-12 09:01:22 +00:00
|
|
|
|
|
|
|
General.Map.Map.Update();
|
2015-01-07 18:32:48 +00:00
|
|
|
General.Map.Data.UpdateUsedTextures();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//mxd. Fix by picking a flat
|
|
|
|
public override bool Button2Click(bool batchMode)
|
|
|
|
{
|
|
|
|
if(!batchMode) General.Map.UndoRedo.CreateUndo("Unknown flat correction");
|
|
|
|
if(imagename == "-") imagename = General.Interface.BrowseFlat(General.Interface, imagename);
|
|
|
|
if(imagename == "-") return false;
|
|
|
|
|
|
|
|
if(ceiling) sector.SetCeilTexture(imagename);
|
|
|
|
else sector.SetFloorTexture(imagename);
|
|
|
|
|
|
|
|
General.Map.Map.Update();
|
|
|
|
General.Map.Data.UpdateUsedTextures();
|
2010-08-12 09:01:22 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|