mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
63 lines
1.8 KiB
C#
63 lines
1.8 KiB
C#
|
#region ================== Namespaces
|
|||
|
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Windows.Forms;
|
|||
|
using CodeImp.DoomBuilder.Map;
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
namespace CodeImp.DoomBuilder.BuilderModes.FindReplace
|
|||
|
{
|
|||
|
[FindReplace("Sector Floor Height", BrowseButton = false)]
|
|||
|
internal class FindSectorFloorHeight : BaseFindSector
|
|||
|
{
|
|||
|
#region ================== Methods
|
|||
|
|
|||
|
// This is called to perform a search (and replace)
|
|||
|
// Returns a list of items to show in the results list
|
|||
|
// replacewith is null when not replacing
|
|||
|
public override FindReplaceObject[] Find(string value, bool withinselection, string replacewith, bool keepselection) {
|
|||
|
List<FindReplaceObject> objs = new List<FindReplaceObject>();
|
|||
|
|
|||
|
// Interpret the replacement
|
|||
|
int replaceheight = 0;
|
|||
|
if(replacewith != null) {
|
|||
|
// If it cannot be interpreted, set replacewith to null (not replacing at all)
|
|||
|
if(!int.TryParse(replacewith, out replaceheight)) replacewith = null;
|
|||
|
if(replacewith == null) {
|
|||
|
MessageBox.Show("Invalid replace value for this search type!", "Find and Replace", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
|||
|
return objs.ToArray();
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
// Interpret the number given
|
|||
|
int height;
|
|||
|
if(int.TryParse(value, out height)) {
|
|||
|
// Where to search?
|
|||
|
ICollection<Sector> list = withinselection ? General.Map.Map.GetSelectedSectors(true) : General.Map.Map.Sectors;
|
|||
|
|
|||
|
// Go for all sectors
|
|||
|
foreach(Sector s in list) {
|
|||
|
// Height matches?
|
|||
|
if(s.FloorHeight == height) {
|
|||
|
// Replace
|
|||
|
if(replacewith != null) s.FloorHeight = replaceheight;
|
|||
|
|
|||
|
objs.Add(new FindReplaceObject(s, "Sector " + s.Index));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
//refresh map
|
|||
|
if(replacewith != null) {
|
|||
|
General.Map.Map.Update();
|
|||
|
General.Map.IsChanged = true;
|
|||
|
}
|
|||
|
|
|||
|
return objs.ToArray();
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|