UltimateZoneBuilder/Source/Plugins/BuilderModes/FindReplace/FindSectorBrightness.cs

73 lines
2 KiB
C#
Raw Normal View History

#region ================== Namespaces
using System.Collections.Generic;
2013-03-18 13:52:27 +00:00
using CodeImp.DoomBuilder.Map;
using System.Windows.Forms;
#endregion
namespace CodeImp.DoomBuilder.BuilderModes
2013-03-18 13:52:27 +00:00
{
[FindReplace("Sector Brightness", BrowseButton = false)]
internal class FindSectorBrightness : BaseFindSector
2013-03-18 13:52:27 +00:00
{
#region ================== Methods
2013-03-18 13:52:27 +00:00
// 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, bool replace, string replacewith, bool keepselection)
{
2013-03-18 13:52:27 +00:00
List<FindReplaceObject> objs = new List<FindReplaceObject>();
// Interpret the replacement
int replacebrightness = 0;
if(replace)
{
2013-03-18 13:52:27 +00:00
// If it cannot be interpreted, set replacewith to null (not replacing at all)
if(!int.TryParse(replacewith, out replacebrightness)) replacewith = null;
if(replacebrightness < 0) replacewith = null;
if(replacebrightness > 255) replacewith = null;
if(replacewith == null)
{
2013-03-18 13:52:27 +00:00
MessageBox.Show("Invalid replace value for this search type!", "Find and Replace", MessageBoxButtons.OK, MessageBoxIcon.Error);
return objs.ToArray();
}
}
// Interpret the number given
int brightness;
if(int.TryParse(value, out brightness))
{
2013-03-18 13:52:27 +00:00
// 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)
{
2013-03-18 13:52:27 +00:00
// Brightness matches?
if(s.Brightness == brightness)
{
2013-03-18 13:52:27 +00:00
// Replace
if(replace) s.Brightness = replacebrightness;
2013-03-18 13:52:27 +00:00
objs.Add(new FindReplaceObject(s, "Sector " + s.Index));
}
}
}
//refresh map
if(replace)
{
2013-03-18 13:52:27 +00:00
General.Map.Map.Update();
General.Map.IsChanged = true;
}
return objs.ToArray();
}
#endregion
2013-03-18 13:52:27 +00:00
}
}