mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 04:12:12 +00:00
52 lines
1.3 KiB
C#
52 lines
1.3 KiB
C#
#region ================== Copyright (c) 2021 Boris Iwanski
|
|
|
|
/*
|
|
* Copyright (c) 2021 Boris Iwanski
|
|
* 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 System.Collections.Generic;
|
|
using CodeImp.DoomBuilder.Map;
|
|
|
|
#endregion
|
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes
|
|
{
|
|
[FindReplace("Linedef UDMF Field", BrowseButton = false)]
|
|
internal class FindLinedefUDMFField : BaseFindUDMFField
|
|
{
|
|
#region ================== Methods
|
|
|
|
public override bool CanReplace()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public override bool DetermineVisiblity()
|
|
{
|
|
return General.Map.UDMF;
|
|
}
|
|
|
|
public override FindReplaceObject[] Find(string value, bool withinselection, bool replace, string replacewith, bool keepselection)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(value))
|
|
return new FindReplaceObject[] { };
|
|
|
|
ICollection<MapElement> list = withinselection ? new List<MapElement>(General.Map.Map.GetSelectedLinedefs(true)) : (ICollection<MapElement>)General.Map.Map.Linedefs;
|
|
|
|
return GetObjects(value, list);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|