2015-12-31 12:21:44 +00:00
|
|
|
|
#region ================== Namespaces
|
|
|
|
|
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using CodeImp.DoomBuilder.Config;
|
|
|
|
|
using CodeImp.DoomBuilder.Map;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes
|
|
|
|
|
{
|
|
|
|
|
[ErrorChecker("Check obsolete things", true, 50)]
|
|
|
|
|
public class CheckObsoleteThings : ErrorChecker
|
|
|
|
|
{
|
|
|
|
|
#region ================== Constants
|
|
|
|
|
|
|
|
|
|
private const int PROGRESS_STEP = 10;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region ================== Constructor / Destructor
|
|
|
|
|
|
|
|
|
|
public CheckObsoleteThings()
|
|
|
|
|
{
|
|
|
|
|
// Total progress is done when all things are checked
|
|
|
|
|
SetTotalProgress(General.Map.Map.Things.Count / PROGRESS_STEP);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region ================== Methods
|
|
|
|
|
|
|
|
|
|
// This runs the check
|
|
|
|
|
public override void Run()
|
|
|
|
|
{
|
|
|
|
|
int progress = 0;
|
|
|
|
|
int stepprogress = 0;
|
|
|
|
|
|
|
|
|
|
// Go for all things
|
|
|
|
|
foreach(Thing t in General.Map.Map.Things)
|
|
|
|
|
{
|
2016-02-29 10:41:17 +00:00
|
|
|
|
ThingTypeInfo info = General.Map.Data.GetThingInfoEx(t.SRB2Type);
|
2015-12-31 12:21:44 +00:00
|
|
|
|
if(info != null && info.IsObsolete)
|
|
|
|
|
{
|
|
|
|
|
SubmitResult(new ResultObsoleteThing(t, info.ObsoleteMessage));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Handle thread interruption
|
|
|
|
|
try { Thread.Sleep(0); } catch(ThreadInterruptedException) { return; }
|
|
|
|
|
|
|
|
|
|
// We are making progress!
|
|
|
|
|
if((++progress / PROGRESS_STEP) > stepprogress)
|
|
|
|
|
{
|
|
|
|
|
stepprogress = (progress / PROGRESS_STEP);
|
|
|
|
|
AddProgress(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|