UltimateZoneBuilder/Source/BuilderModes/ErrorChecks/CheckStuckedThings.cs

176 lines
5 KiB
C#
Raw Normal View History

2008-10-23 11:36:00 +00:00
#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;
2009-01-30 16:14:11 +00:00
using System.Drawing;
2008-10-23 11:36:00 +00:00
#endregion
namespace CodeImp.DoomBuilder.BuilderModes
{
2009-02-20 19:29:31 +00:00
[ErrorChecker("Check for stuck things", true, 1000)]
2008-10-23 11:36:00 +00:00
public class CheckStuckedThings : ErrorChecker
{
2008-10-24 05:50:37 +00:00
#region ================== Constants
private const int PROGRESS_STEP = 10;
2008-12-07 17:35:34 +00:00
private const float ALLOWED_STUCK_DISTANCE = 6.0f;
2008-10-24 05:50:37 +00:00
#endregion
2008-10-23 11:36:00 +00:00
#region ================== Constructor / Destructor
2008-10-24 05:50:37 +00:00
2008-10-23 11:36:00 +00:00
// Constructor
public CheckStuckedThings()
{
// Total progress is done when all things are checked
SetTotalProgress(General.Map.Map.Things.Count / PROGRESS_STEP);
2008-10-23 11:36:00 +00:00
}
#endregion
#region ================== Methods
// This runs the check
public override void Run()
{
2009-01-30 16:14:11 +00:00
BlockMap blockmap = BuilderPlug.Me.ErrorCheckForm.BlockMap;
int progress = 0;
int stepprogress = 0;
2009-01-30 16:14:11 +00:00
2008-10-23 11:36:00 +00:00
// Go for all the things
foreach(Thing t in General.Map.Map.Things)
{
2009-01-21 16:18:30 +00:00
ThingTypeInfo info = General.Map.Data.GetThingInfo(t.Type);
2008-10-23 13:33:59 +00:00
bool stucked = false;
2008-10-23 22:01:07 +00:00
// Check this thing for getting stucked?
if( (info.ErrorCheck == ThingTypeInfo.THING_ERROR_INSIDE_STUCKED) &&
(info.Blocking > ThingTypeInfo.THING_BLOCKING_NONE))
2008-10-23 11:36:00 +00:00
{
2008-10-23 22:01:07 +00:00
// Make square coordinates from thing
2008-10-24 05:50:37 +00:00
float blockingsize = t.Size - ALLOWED_STUCK_DISTANCE;
Vector2D lt = new Vector2D(t.Position.x - blockingsize, t.Position.y - blockingsize);
Vector2D rb = new Vector2D(t.Position.x + blockingsize, t.Position.y + blockingsize);
2008-10-23 22:01:07 +00:00
// Go for all the lines to see if this thing is stucked
2009-01-30 16:14:11 +00:00
List<BlockEntry> blocks = blockmap.GetSquareRange(new RectangleF(lt.x, lt.y, (rb.x - lt.x), (rb.y - lt.y)));
Dictionary<Linedef, Linedef> doneblocklines = new Dictionary<Linedef, Linedef>(blocks.Count * 3);
foreach(BlockEntry b in blocks)
2008-10-23 13:33:59 +00:00
{
2009-01-30 16:14:11 +00:00
foreach(Linedef l in b.Lines)
2008-10-23 13:33:59 +00:00
{
2009-01-30 16:14:11 +00:00
// Only test when sinlge-sided and not already checked
if((l.Back == null) && !doneblocklines.ContainsKey(l))
2008-10-23 22:01:07 +00:00
{
2009-01-30 16:14:11 +00:00
// Test if line ends are inside the thing
if(PointInRect(lt, rb, l.Start.Position) ||
PointInRect(lt, rb, l.End.Position))
{
// Thing stucked in line!
stucked = true;
}
// Test if the line intersects the square
else if(Line2D.GetIntersection(l.Start.Position, l.End.Position, lt.x, lt.y, rb.x, lt.y) ||
Line2D.GetIntersection(l.Start.Position, l.End.Position, rb.x, lt.y, rb.x, rb.y) ||
Line2D.GetIntersection(l.Start.Position, l.End.Position, rb.x, rb.y, lt.x, rb.y) ||
Line2D.GetIntersection(l.Start.Position, l.End.Position, lt.x, rb.y, lt.x, lt.y))
{
// Thing stucked in line!
stucked = true;
}
// Checked
doneblocklines.Add(l, l);
2008-10-23 22:01:07 +00:00
}
2008-10-23 13:33:59 +00:00
}
}
}
// Stucked?
if(stucked)
{
// Make result
2008-10-23 19:08:55 +00:00
SubmitResult(new ResultStuckedThing(t));
2008-10-23 13:33:59 +00:00
}
else
{
2008-10-23 22:01:07 +00:00
// Check this thing for being outside the map?
if(info.ErrorCheck >= ThingTypeInfo.THING_ERROR_INSIDE)
2008-10-23 13:33:59 +00:00
{
2008-10-23 22:01:07 +00:00
// Get the nearest line to see if the thing is outside the map
bool outside = false;
Linedef l = General.Map.Map.NearestLinedef(t.Position);
if(l.SideOfLine(t.Position) <= 0)
{
outside = (l.Front == null);
}
else
{
outside = (l.Back == null);
}
// Outside the map?
if(outside)
{
// Make result
SubmitResult(new ResultThingOutside(t));
}
2008-10-23 13:33:59 +00:00
}
2008-10-23 11:36:00 +00:00
}
// Handle thread interruption
try { Thread.Sleep(0); }
catch(ThreadInterruptedException) { return; }
2008-10-23 13:33:59 +00:00
// We are making progress!
if((++progress / PROGRESS_STEP) > stepprogress)
{
stepprogress = (progress / PROGRESS_STEP);
AddProgress(1);
}
2008-10-23 11:36:00 +00:00
}
}
2008-10-23 13:33:59 +00:00
// Point in rect?
private bool PointInRect(Vector2D lt, Vector2D rb, Vector2D p)
{
return (p.x >= lt.x) && (p.x <= rb.x) && (p.y >= lt.y) && (p.y <= rb.y);
}
2008-10-23 11:36:00 +00:00
#endregion
}
}