ZoneBuilder/Source/Plugins/BuilderModes/ErrorChecks/ResultMissingFlat.cs
MaxED 2f046137c0 Added, Sound Environments mode: sound environments of the same type are now colored using the same color.
Added, Sound Environments mode: current sound environment is now highlighted (can be toggled using "Toggle Highlight" action).
Added: Tag selectors now have up/down buttons.
Fixed, Sound Environments mode: sound environments were not updated after performing Undo/Redo actions.
Fixed, Sound Propagation mode: sound zones were not updated after performing Undo/Redo actions.
Internal: moved "Toggle Highlight" action to the core, also changed it's category to "View".
Internal: "Toggle Highlight" action state is now saved in the Program configuration.
Updated ZDoom_DECORATE.cfg (GetZAt).
Updated ZDoom_linedefs.cfg (Sector_SetPortal args).
2023-01-04 22:36:23 +01:00

111 lines
3.1 KiB
C#

#region ================== Namespaces
using System;
using CodeImp.DoomBuilder.Config;
using CodeImp.DoomBuilder.Map;
using CodeImp.DoomBuilder.Rendering;
#endregion
namespace CodeImp.DoomBuilder.BuilderModes
{
public class ResultMissingFlat : ErrorResult
{
#region ================== Variables
private readonly Sector sector;
private readonly bool ceiling;
private static string imagename = "-"; //mxd
#endregion
#region ================== Properties
public override int Buttons { get { return 2; } }
public override string Button1Text { get { return "Add Default Flat"; } }
public override string Button2Text { get { return "Browse Flat..."; } } //mxd
#endregion
#region ================== Constructor / Destructor
// Constructor
public ResultMissingFlat(Sector s, bool ceiling)
{
// Initialize
this.sector = s;
this.ceiling = ceiling;
this.viewobjects.Add(s);
this.hidden = s.IgnoredErrorChecks.Contains(this.GetType()); //mxd
imagename = "-"; //mxd
string objname = ceiling ? "ceiling" : "floor";
this.description = "This sector's " + objname + " is missing a flat where it is required and could cause a 'Hall Of Mirrors' visual problem in the map.";
}
#endregion
#region ================== Methods
// 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);
}
// This must return the string that is displayed in the listbox
public override string ToString()
{
return "Sector " + sector.Index + " has no " + (ceiling ? "ceiling" : "floor") + " flat.";
}
// Rendering
public override void PlotSelection(IRenderer2D renderer)
{
renderer.PlotSector(sector, General.Colors.Selection);
}
//mxd. More rendering
public override void RenderOverlaySelection(IRenderer2D renderer)
{
if(!General.Settings.UseHighlight) return;
renderer.RenderHighlight(sector.FlatVertices, General.Colors.Selection.WithAlpha(64).ToInt());
}
// Fix by setting default flat
public override bool Button1Click(bool batchMode)
{
if(!batchMode) General.Map.UndoRedo.CreateUndo("Missing flat correction");
General.Settings.FindDefaultDrawSettings();
if(ceiling)
sector.SetCeilTexture(General.Map.Options.DefaultCeilingTexture);
else
sector.SetFloorTexture(General.Map.Options.DefaultFloorTexture);
General.Map.Map.Update();
General.Map.Data.UpdateUsedTextures();
return true;
}
//mxd. Fix by picking a flat
public override bool Button2Click(bool batchMode)
{
if(!batchMode) General.Map.UndoRedo.CreateUndo("Missing 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();
return true;
}
#endregion
}
}