UltimateZoneBuilder/Source/Plugins/BuilderModes/FindReplace/BaseFindSector.cs
MaxED 2e88f8f4a5 Nodes Viewer now supports ZNODES in "XNOD", "XGLN", "XGL2" and "XGL3" formats.
Sector highlight is now shown in many more places.
Edit area auto-focusing is now disabled when any form is open.
2014-01-10 15:08:39 +00:00

57 lines
1.7 KiB
C#

#region ================== Namespaces
using System.Collections.Generic;
using CodeImp.DoomBuilder.Map;
using CodeImp.DoomBuilder.Rendering;
#endregion
namespace CodeImp.DoomBuilder.BuilderModes
{
//mxd. Encapsulates boring stuff
internal class BaseFindSector : FindReplaceType
{
#region ================== Methods
// This is called when a specific object is selected from the list
public override void ObjectSelected(FindReplaceObject[] selection) {
if(selection.Length == 1) {
ZoomToSelection(selection);
General.Interface.ShowSectorInfo(selection[0].Sector);
} else {
General.Interface.HideInfo();
}
General.Map.Map.ClearAllSelected();
foreach(FindReplaceObject obj in selection) obj.Sector.Selected = true;
}
// Render selection
public override void PlotSelection(IRenderer2D renderer, FindReplaceObject[] selection) {
foreach(FindReplaceObject o in selection) {
foreach(Sidedef sd in o.Sector.Sidedefs) {
renderer.PlotLinedef(sd.Line, General.Colors.Selection);
}
}
}
//mxd. Render selection highlight
public override void RenderOverlaySelection(IRenderer2D renderer, FindReplaceObject[] selection) {
if(!BuilderPlug.Me.UseHighlight) return;
int color = General.Colors.Selection.WithAlpha(64).ToInt();
foreach(FindReplaceObject o in selection) {
renderer.RenderHighlight(o.Sector.FlatVertices, color);
}
}
// Edit objects
public override void EditObjects(FindReplaceObject[] selection) {
List<Sector> sectors = new List<Sector>(selection.Length);
foreach(FindReplaceObject o in selection) sectors.Add(o.Sector);
General.Interface.ShowEditSectors(sectors);
}
#endregion
}
}