#region ================== Copyright (c) 2007 Pascal vd Heiden /* * Copyright (c) 2007 Pascal vd Heiden, www.codeimp.com * 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; using System.Collections; using System.Collections.Generic; using System.Globalization; using System.Text; using System.Windows.Forms; using System.IO; using System.Reflection; using CodeImp.DoomBuilder.Windows; using CodeImp.DoomBuilder.IO; using CodeImp.DoomBuilder.Map; using CodeImp.DoomBuilder.Rendering; using CodeImp.DoomBuilder.Geometry; using CodeImp.DoomBuilder.Editing; using CodeImp.DoomBuilder.Actions; using CodeImp.DoomBuilder.Types; using CodeImp.DoomBuilder.Config; using System.Threading; #endregion namespace CodeImp.DoomBuilder.BuilderModes { [ErrorChecker("Check line references", true, 50)] public class CheckLineReferences : ErrorChecker { #region ================== Constants #endregion #region ================== Constructor / Destructor // Constructor public CheckLineReferences() { // Total progress is done when all lines are checked SetTotalProgress(General.Map.Map.Linedefs.Count); } #endregion #region ================== Methods // This runs the check public override void Run() { // Go for all the liendefs foreach(Linedef l in General.Map.Map.Linedefs) { // Line has a back side but no front side? if((l.Back != null) && (l.Front == null)) { SubmitResult(new ResultLineMissingFront(l)); } // Line has no sides at all? else if((l.Back == null) && (l.Front == null)) { SubmitResult(new ResultLineMissingSides(l)); } // Line is marked double-sided, but has only one side? else if(l.IsFlagSet(General.Map.Config.DoubleSidedFlag) && (l.Back == null)) { SubmitResult(new ResultLineNotDoubleSided(l)); } // Line is marked single-sided, and has two sides? else if(!l.IsFlagSet(General.Map.Config.DoubleSidedFlag) && (l.Back != null)) { SubmitResult(new ResultLineNotSingleSided(l)); } // Handle thread interruption try { Thread.Sleep(0); } catch(ThreadInterruptedException) { return; } // We are making progress! AddProgress(1); } } #endregion } }