2007-06-13 19:39:38 +00:00
|
|
|
|
2007-06-14 23:31:57 +00:00
|
|
|
#region ================== Copyright (c) 2007 Pascal vd Heiden
|
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2007-06-14 23:31:57 +00:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Namespaces
|
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Globalization;
|
|
|
|
using System.Text;
|
2007-06-14 12:37:46 +00:00
|
|
|
using CodeImp.DoomBuilder.Geometry;
|
2007-07-07 09:40:34 +00:00
|
|
|
using SlimDX.Direct3D;
|
|
|
|
using CodeImp.DoomBuilder.Rendering;
|
|
|
|
using SlimDX;
|
2007-10-20 19:50:03 +00:00
|
|
|
using System.Drawing;
|
2007-12-26 00:31:32 +00:00
|
|
|
using CodeImp.DoomBuilder.Editing;
|
2007-06-13 19:39:38 +00:00
|
|
|
|
2007-06-14 23:31:57 +00:00
|
|
|
#endregion
|
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
namespace CodeImp.DoomBuilder.Map
|
|
|
|
{
|
2007-11-12 22:43:01 +00:00
|
|
|
public sealed class MapSet : IDisposable
|
2007-06-13 19:39:38 +00:00
|
|
|
{
|
|
|
|
#region ================== Variables
|
|
|
|
|
2007-06-14 12:37:46 +00:00
|
|
|
// Map structures
|
|
|
|
private LinkedList<Vertex> vertices;
|
|
|
|
private LinkedList<Linedef> linedefs;
|
|
|
|
private LinkedList<Sidedef> sidedefs;
|
|
|
|
private LinkedList<Sector> sectors;
|
|
|
|
private LinkedList<Thing> things;
|
2007-07-07 09:40:34 +00:00
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
// Disposing
|
|
|
|
private bool isdisposed = false;
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Properties
|
|
|
|
|
2007-06-14 12:37:46 +00:00
|
|
|
public ICollection<Vertex> Vertices { get { return vertices; } }
|
|
|
|
public ICollection<Linedef> Linedefs { get { return linedefs; } }
|
|
|
|
public ICollection<Sidedef> Sidedefs { get { return sidedefs; } }
|
|
|
|
public ICollection<Sector> Sectors { get { return sectors; } }
|
|
|
|
public ICollection<Thing> Things { get { return things; } }
|
2007-06-13 19:39:38 +00:00
|
|
|
public bool IsDisposed { get { return isdisposed; } }
|
2007-07-07 09:40:34 +00:00
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Constructor / Disposer
|
|
|
|
|
2007-06-14 12:37:46 +00:00
|
|
|
// Constructor for new empty map
|
2007-06-14 13:09:55 +00:00
|
|
|
public MapSet()
|
2007-06-13 19:39:38 +00:00
|
|
|
{
|
|
|
|
// Initialize
|
2007-06-14 12:37:46 +00:00
|
|
|
vertices = new LinkedList<Vertex>();
|
|
|
|
linedefs = new LinkedList<Linedef>();
|
|
|
|
sidedefs = new LinkedList<Sidedef>();
|
|
|
|
sectors = new LinkedList<Sector>();
|
|
|
|
things = new LinkedList<Thing>();
|
2007-06-13 19:39:38 +00:00
|
|
|
|
|
|
|
// We have no destructor
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Diposer
|
|
|
|
public void Dispose()
|
|
|
|
{
|
2007-06-14 12:37:46 +00:00
|
|
|
ArrayList list;
|
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
// Not already disposed?
|
|
|
|
if(!isdisposed)
|
|
|
|
{
|
2007-06-14 12:37:46 +00:00
|
|
|
// Already set isdisposed so that changes can be prohibited
|
|
|
|
isdisposed = true;
|
|
|
|
|
|
|
|
// Dispose all things
|
|
|
|
list = new ArrayList(things);
|
|
|
|
foreach(Thing t in list) t.Dispose();
|
|
|
|
|
|
|
|
// Dispose all sectors
|
|
|
|
list = new ArrayList(sectors);
|
|
|
|
foreach(Sector s in list) s.Dispose();
|
|
|
|
|
|
|
|
// Dispose all sidedefs
|
|
|
|
list = new ArrayList(sidedefs);
|
|
|
|
foreach(Sidedef sd in list) sd.Dispose();
|
|
|
|
|
|
|
|
// Dispose all linedefs
|
|
|
|
list = new ArrayList(linedefs);
|
|
|
|
foreach(Linedef l in list) l.Dispose();
|
2007-06-13 19:39:38 +00:00
|
|
|
|
2007-06-14 12:37:46 +00:00
|
|
|
// Dispose all vertices
|
|
|
|
list = new ArrayList(vertices);
|
|
|
|
foreach(Vertex v in list) v.Dispose();
|
|
|
|
|
|
|
|
// Clean up
|
|
|
|
vertices = null;
|
|
|
|
linedefs = null;
|
|
|
|
sidedefs = null;
|
|
|
|
sectors = null;
|
|
|
|
things = null;
|
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
// Done
|
|
|
|
isdisposed = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2007-06-14 12:37:46 +00:00
|
|
|
#region ================== Management
|
|
|
|
|
2007-06-14 13:09:55 +00:00
|
|
|
// This makes a deep copy and returns a new MapSet
|
|
|
|
public MapSet Clone()
|
|
|
|
{
|
2007-11-23 09:53:50 +00:00
|
|
|
Linedef nl;
|
|
|
|
Sidedef nd;
|
|
|
|
|
2007-06-14 13:09:55 +00:00
|
|
|
// Create the map set
|
|
|
|
MapSet newset = new MapSet();
|
|
|
|
|
|
|
|
// Go for all vertices
|
|
|
|
foreach(Vertex v in vertices)
|
|
|
|
{
|
|
|
|
// Make new vertex
|
2007-11-23 09:33:56 +00:00
|
|
|
v.Clone = newset.CreateVertex(v.X, v.Y);
|
2007-06-14 13:09:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Go for all sectors
|
|
|
|
foreach(Sector s in sectors)
|
|
|
|
{
|
|
|
|
// Make new sector
|
|
|
|
Sector ns = newset.CreateSector();
|
2007-11-23 09:33:56 +00:00
|
|
|
s.Clone = ns;
|
2007-06-14 13:09:55 +00:00
|
|
|
|
|
|
|
// Copy properties
|
|
|
|
s.CopyPropertiesTo(ns);
|
|
|
|
}
|
|
|
|
|
2007-11-23 09:53:50 +00:00
|
|
|
// Go for all linedefs
|
|
|
|
foreach(Linedef l in linedefs)
|
2007-06-14 13:09:55 +00:00
|
|
|
{
|
2007-11-23 09:53:50 +00:00
|
|
|
// Make new linedef
|
|
|
|
nl = newset.CreateLinedef(l.Start.Clone, l.End.Clone);
|
2007-06-14 13:09:55 +00:00
|
|
|
|
|
|
|
// Copy properties
|
2007-11-23 09:53:50 +00:00
|
|
|
l.CopyPropertiesTo(nl);
|
|
|
|
|
|
|
|
// Linedef has a front side?
|
|
|
|
if(l.Front != null)
|
|
|
|
{
|
|
|
|
// Make new sidedef
|
|
|
|
nd = newset.CreateSidedef(nl, true, l.Front.Sector.Clone);
|
|
|
|
|
|
|
|
// Copy properties
|
|
|
|
l.Front.CopyPropertiesTo(nd);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Linedef has a back side?
|
|
|
|
if(l.Back != null)
|
|
|
|
{
|
|
|
|
// Make new sidedef
|
|
|
|
nd = newset.CreateSidedef(nl, false, l.Back.Sector.Clone);
|
|
|
|
|
|
|
|
// Copy properties
|
|
|
|
l.Back.CopyPropertiesTo(nd);
|
|
|
|
}
|
2007-06-14 13:09:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Go for all things
|
|
|
|
foreach(Thing t in things)
|
|
|
|
{
|
|
|
|
// Make new thing
|
2007-06-24 18:56:43 +00:00
|
|
|
Thing nt = newset.CreateThing();
|
2007-06-14 13:09:55 +00:00
|
|
|
|
|
|
|
// Copy properties
|
|
|
|
t.CopyPropertiesTo(nt);
|
|
|
|
}
|
|
|
|
|
2007-11-23 09:33:56 +00:00
|
|
|
// Remove clone references
|
|
|
|
foreach(Vertex v in vertices) v.Clone = null;
|
|
|
|
foreach(Sector s in sectors) s.Clone = null;
|
|
|
|
|
2007-06-14 13:09:55 +00:00
|
|
|
// Return the new set
|
|
|
|
return newset;
|
|
|
|
}
|
|
|
|
|
2007-06-14 12:37:46 +00:00
|
|
|
// This creates a new vertex
|
2007-09-17 21:22:46 +00:00
|
|
|
public Vertex CreateVertex(int x, int y)
|
2007-06-14 12:37:46 +00:00
|
|
|
{
|
|
|
|
LinkedListNode<Vertex> listitem;
|
|
|
|
Vertex v;
|
|
|
|
|
|
|
|
// Make a list item
|
|
|
|
listitem = new LinkedListNode<Vertex>(null);
|
|
|
|
|
|
|
|
// Make the vertex
|
2007-09-17 21:22:46 +00:00
|
|
|
v = new Vertex(this, listitem, x, y);
|
2007-06-14 12:37:46 +00:00
|
|
|
listitem.Value = v;
|
|
|
|
|
|
|
|
// Add vertex to the list
|
|
|
|
vertices.AddLast(listitem);
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This creates a new linedef
|
|
|
|
public Linedef CreateLinedef(Vertex start, Vertex end)
|
|
|
|
{
|
|
|
|
LinkedListNode<Linedef> listitem;
|
|
|
|
Linedef l;
|
|
|
|
|
|
|
|
// Make a list item
|
|
|
|
listitem = new LinkedListNode<Linedef>(null);
|
|
|
|
|
|
|
|
// Make the linedef
|
|
|
|
l = new Linedef(this, listitem, start, end);
|
|
|
|
listitem.Value = l;
|
|
|
|
|
|
|
|
// Add linedef to the list
|
|
|
|
linedefs.AddLast(listitem);
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return l;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This creates a new sidedef
|
|
|
|
public Sidedef CreateSidedef(Linedef l, bool front, Sector s)
|
|
|
|
{
|
|
|
|
LinkedListNode<Sidedef> listitem;
|
|
|
|
Sidedef sd;
|
|
|
|
|
|
|
|
// Make a list item
|
|
|
|
listitem = new LinkedListNode<Sidedef>(null);
|
|
|
|
|
|
|
|
// Make the sidedef
|
|
|
|
sd = new Sidedef(this, listitem, l, front, s);
|
|
|
|
listitem.Value = sd;
|
|
|
|
|
|
|
|
// Add sidedef to the list
|
|
|
|
sidedefs.AddLast(listitem);
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return sd;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This creates a new sector
|
|
|
|
public Sector CreateSector()
|
|
|
|
{
|
|
|
|
LinkedListNode<Sector> listitem;
|
|
|
|
Sector s;
|
|
|
|
|
|
|
|
// Make a list item
|
|
|
|
listitem = new LinkedListNode<Sector>(null);
|
|
|
|
|
|
|
|
// Make the sector
|
|
|
|
s = new Sector(this, listitem);
|
|
|
|
listitem.Value = s;
|
|
|
|
|
|
|
|
// Add sector to the list
|
|
|
|
sectors.AddLast(listitem);
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This creates a new thing
|
2007-06-24 18:56:43 +00:00
|
|
|
public Thing CreateThing()
|
2007-06-14 12:37:46 +00:00
|
|
|
{
|
|
|
|
LinkedListNode<Thing> listitem;
|
|
|
|
Thing t;
|
|
|
|
|
|
|
|
// Make a list item
|
|
|
|
listitem = new LinkedListNode<Thing>(null);
|
|
|
|
|
|
|
|
// Make the thing
|
2007-06-24 18:56:43 +00:00
|
|
|
t = new Thing(this, listitem);
|
2007-06-14 12:37:46 +00:00
|
|
|
listitem.Value = t;
|
|
|
|
|
|
|
|
// Add thing to the list
|
|
|
|
things.AddLast(listitem);
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return t;
|
|
|
|
}
|
2007-07-07 09:40:34 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2007-09-17 21:22:46 +00:00
|
|
|
#region ================== Updating
|
2007-07-07 09:40:34 +00:00
|
|
|
|
|
|
|
// This updates all structures if needed
|
|
|
|
public void Update()
|
|
|
|
{
|
|
|
|
// Update all linedefs
|
|
|
|
foreach(Linedef l in linedefs) l.Update();
|
|
|
|
}
|
2007-10-21 22:41:46 +00:00
|
|
|
|
|
|
|
// This updates all structures after a
|
|
|
|
// configuration or settings change
|
|
|
|
public void UpdateConfiguration()
|
|
|
|
{
|
|
|
|
// Update all things
|
|
|
|
foreach(Thing t in things) t.UpdateConfiguration();
|
|
|
|
}
|
2007-07-07 09:40:34 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2007-12-01 18:29:58 +00:00
|
|
|
#region ================== Selection
|
|
|
|
|
|
|
|
// This clears all selected items
|
|
|
|
public void ClearAllSelected()
|
|
|
|
{
|
|
|
|
ClearSelectedVertices();
|
|
|
|
ClearSelectedThings();
|
|
|
|
ClearSelectedLinedefs();
|
|
|
|
ClearSelectedSectors();
|
|
|
|
}
|
|
|
|
|
|
|
|
// This clears selected vertices
|
|
|
|
public void ClearSelectedVertices()
|
|
|
|
{
|
|
|
|
foreach(Vertex v in vertices) v.Selected = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This clears selected things
|
|
|
|
public void ClearSelectedThings()
|
|
|
|
{
|
|
|
|
foreach(Thing t in things) t.Selected = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This clears selected linedefs
|
|
|
|
public void ClearSelectedLinedefs()
|
|
|
|
{
|
|
|
|
foreach(Linedef l in linedefs) l.Selected = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This clears selected sectors
|
|
|
|
public void ClearSelectedSectors()
|
|
|
|
{
|
|
|
|
foreach(Sector s in sectors) s.Selected = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns a collection of vertices that match a selected state
|
|
|
|
public ICollection<Vertex> GetVerticesSelection(bool selected)
|
|
|
|
{
|
|
|
|
List<Vertex> list = new List<Vertex>();
|
|
|
|
foreach(Vertex v in vertices) if(v.Selected == selected) list.Add(v);
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2007-12-26 00:31:32 +00:00
|
|
|
// Returns a collection of vertices that match a selected state on the linedefs
|
|
|
|
public ICollection<Vertex> GetVerticesFromLinesSelection(bool selected)
|
|
|
|
{
|
|
|
|
List<Vertex> list = new List<Vertex>();
|
|
|
|
foreach(Vertex v in vertices)
|
|
|
|
{
|
|
|
|
foreach(Linedef l in v.Linedefs)
|
|
|
|
{
|
|
|
|
if(l.Selected == selected)
|
|
|
|
{
|
|
|
|
list.Add(v);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns a collection of vertices that match a selected state on the linedefs
|
|
|
|
public ICollection<Vertex> GetVerticesFromSectorsSelection(bool selected)
|
|
|
|
{
|
|
|
|
List<Vertex> list = new List<Vertex>();
|
|
|
|
foreach(Vertex v in vertices)
|
|
|
|
{
|
|
|
|
foreach(Linedef l in v.Linedefs)
|
|
|
|
{
|
|
|
|
if( ((l.Front != null) && (l.Front.Sector.Selected == selected)) ||
|
|
|
|
((l.Back != null) && (l.Back.Sector.Selected == selected)) )
|
|
|
|
{
|
|
|
|
list.Add(v);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2007-12-01 18:29:58 +00:00
|
|
|
// Returns a collection of things that match a selected state
|
|
|
|
public ICollection<Thing> GetThingsSelection(bool selected)
|
|
|
|
{
|
|
|
|
List<Thing> list = new List<Thing>();
|
|
|
|
foreach(Thing t in things) if(t.Selected == selected) list.Add(t);
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns a collection of linedefs that match a selected state
|
|
|
|
public ICollection<Linedef> GetLinedefsSelection(bool selected)
|
|
|
|
{
|
|
|
|
List<Linedef> list = new List<Linedef>();
|
|
|
|
foreach(Linedef l in linedefs) if(l.Selected == selected) list.Add(l);
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Returns a collection of sectors that match a selected state
|
|
|
|
public ICollection<Sector> GetSectorsSelection(bool selected)
|
|
|
|
{
|
|
|
|
List<Sector> list = new List<Sector>();
|
|
|
|
foreach(Sector s in sectors) if(s.Selected == selected) list.Add(s);
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2007-12-05 19:39:09 +00:00
|
|
|
#region ================== Areas
|
|
|
|
|
|
|
|
// This creates an area from vertices
|
2007-12-26 00:31:32 +00:00
|
|
|
public static Rectangle CreateArea(ICollection<Vertex> verts)
|
2007-12-05 19:39:09 +00:00
|
|
|
{
|
|
|
|
int l = int.MaxValue;
|
|
|
|
int t = int.MaxValue;
|
|
|
|
int r = int.MinValue;
|
|
|
|
int b = int.MinValue;
|
|
|
|
|
|
|
|
// Go for all vertices
|
|
|
|
foreach(Vertex v in verts)
|
|
|
|
{
|
|
|
|
// Adjust boundaries by vertices
|
|
|
|
if(v.X < l) l = v.X;
|
|
|
|
if(v.X > r) r = v.X;
|
|
|
|
if(v.Y < t) t = v.Y;
|
|
|
|
if(v.Y > b) b = v.Y;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return a rect
|
|
|
|
return new Rectangle(l, t, r - l, b - t);
|
|
|
|
}
|
2007-12-07 15:48:32 +00:00
|
|
|
|
2007-12-26 00:31:32 +00:00
|
|
|
// This creates an area from linedefs
|
|
|
|
public static Rectangle CreateArea(ICollection<Linedef> lines)
|
2007-12-07 15:48:32 +00:00
|
|
|
{
|
|
|
|
int l = int.MaxValue;
|
|
|
|
int t = int.MaxValue;
|
|
|
|
int r = int.MinValue;
|
|
|
|
int b = int.MinValue;
|
|
|
|
|
2007-12-26 00:31:32 +00:00
|
|
|
// Go for all linedefs
|
2007-12-07 15:48:32 +00:00
|
|
|
foreach(Linedef ld in lines)
|
|
|
|
{
|
|
|
|
// Adjust boundaries by vertices
|
|
|
|
if(ld.Start.X < l) l = ld.Start.X;
|
|
|
|
if(ld.Start.X > r) r = ld.Start.X;
|
|
|
|
if(ld.Start.Y < t) t = ld.Start.Y;
|
|
|
|
if(ld.Start.Y > b) b = ld.Start.Y;
|
|
|
|
if(ld.End.X < l) l = ld.End.X;
|
|
|
|
if(ld.End.X > r) r = ld.End.X;
|
|
|
|
if(ld.End.Y < t) t = ld.End.Y;
|
|
|
|
if(ld.End.Y > b) b = ld.End.Y;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return a rect
|
|
|
|
return new Rectangle(l, t, r - l, b - t);
|
|
|
|
}
|
2007-12-05 19:39:09 +00:00
|
|
|
|
|
|
|
// This filters lines by a square area
|
2007-12-26 00:31:32 +00:00
|
|
|
public static ICollection<Linedef> FilterByArea(ICollection<Linedef> lines, ref Rectangle area)
|
2007-12-05 19:39:09 +00:00
|
|
|
{
|
|
|
|
ICollection<Linedef> newlines = new List<Linedef>(lines.Count);
|
|
|
|
|
|
|
|
// Go for all lines
|
|
|
|
foreach(Linedef l in lines)
|
|
|
|
{
|
|
|
|
// Check the cs field bits
|
2007-12-07 15:48:32 +00:00
|
|
|
if((GetCSFieldBits(l.Start, ref area) & GetCSFieldBits(l.End, ref area)) == 0)
|
2007-12-05 19:39:09 +00:00
|
|
|
{
|
|
|
|
// The line could be in the area
|
|
|
|
newlines.Add(l);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return newlines;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This returns the cohen-sutherland field bits for a vertex in a rectangle area
|
|
|
|
private static byte GetCSFieldBits(Vertex v, ref Rectangle area)
|
|
|
|
{
|
|
|
|
byte bits = 0;
|
|
|
|
if(v.Y < area.Top) bits |= 0x01;
|
|
|
|
if(v.Y > area.Bottom) bits |= 0x02;
|
|
|
|
if(v.X < area.Left) bits |= 0x04;
|
|
|
|
if(v.X > area.Right) bits |= 0x08;
|
|
|
|
return bits;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This filters vertices by a square area
|
2007-12-26 00:31:32 +00:00
|
|
|
public static ICollection<Vertex> FilterByArea(ICollection<Vertex> verts, ref Rectangle area)
|
2007-12-05 19:39:09 +00:00
|
|
|
{
|
|
|
|
ICollection<Vertex> newverts = new List<Vertex>(verts.Count);
|
|
|
|
|
|
|
|
// Go for all verts
|
|
|
|
foreach(Vertex v in verts)
|
|
|
|
{
|
|
|
|
// Within rect?
|
|
|
|
if((v.X >= area.Left) &&
|
|
|
|
(v.X <= area.Right) &&
|
|
|
|
(v.Y >= area.Top) &&
|
|
|
|
(v.Y <= area.Bottom))
|
|
|
|
{
|
|
|
|
// The vertex is in the area
|
|
|
|
newverts.Add(v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return newverts;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2007-12-26 00:31:32 +00:00
|
|
|
#region ================== Stitching
|
|
|
|
|
|
|
|
// This stitches geometry
|
|
|
|
public int StitchGeometry(ICollection<Vertex> movingverts, ICollection<Vertex> fixedverts)
|
|
|
|
{
|
|
|
|
ICollection<Linedef> movinglines;
|
|
|
|
ICollection<Linedef> fixedlines;
|
|
|
|
ICollection<Vertex> nearbyfixedverts;
|
|
|
|
Rectangle editarea;
|
|
|
|
int stitches = 0;
|
|
|
|
int stitchundo;
|
|
|
|
|
|
|
|
if(General.MainWindow.AutoMerge)
|
|
|
|
{
|
|
|
|
// Make undo for the stitching
|
|
|
|
stitchundo = General.Map.UndoRedo.CreateUndo("stitch geometry", UndoGroup.None, 0, false);
|
|
|
|
|
|
|
|
// Find lines that moved during the drag
|
|
|
|
movinglines = LinedefsFromSelectedVertices(false, true, true);
|
|
|
|
|
|
|
|
// Find all non-moving lines
|
|
|
|
fixedlines = LinedefsFromSelectedVertices(true, false, false);
|
|
|
|
|
|
|
|
// Determine area in which we are editing
|
|
|
|
editarea = MapSet.CreateArea(movinglines);
|
|
|
|
editarea.Inflate((int)Math.Ceiling(General.Settings.StitchDistance),
|
|
|
|
(int)Math.Ceiling(General.Settings.StitchDistance));
|
|
|
|
|
|
|
|
// Join nearby vertices
|
|
|
|
stitches += MapSet.JoinVertices(fixedverts, movingverts, true, General.Settings.StitchDistance);
|
|
|
|
|
|
|
|
// Update cached values
|
|
|
|
Update();
|
|
|
|
|
|
|
|
// Split moving lines with unselected vertices
|
|
|
|
nearbyfixedverts = MapSet.FilterByArea(fixedverts, ref editarea);
|
|
|
|
stitches += MapSet.SplitLinesByVertices(movinglines, nearbyfixedverts, General.Settings.StitchDistance, movinglines);
|
|
|
|
|
|
|
|
// Split non-moving lines with selected vertices
|
|
|
|
fixedlines = MapSet.FilterByArea(fixedlines, ref editarea);
|
|
|
|
stitches += MapSet.SplitLinesByVertices(fixedlines, movingverts, General.Settings.StitchDistance, movinglines);
|
|
|
|
|
|
|
|
// Remove looped linedefs
|
|
|
|
stitches += MapSet.RemoveLoopedLinedefs(movinglines);
|
|
|
|
|
|
|
|
// Join overlapping lines
|
|
|
|
stitches += MapSet.JoinOverlappingLines(movinglines);
|
|
|
|
|
|
|
|
// No stitching done? then withdraw undo
|
|
|
|
if(stitches == 0) General.Map.UndoRedo.WithdrawUndo(stitchundo);
|
|
|
|
}
|
|
|
|
|
|
|
|
return stitches;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2007-12-05 19:39:09 +00:00
|
|
|
#region ================== Geometry Tools
|
2007-06-14 12:37:46 +00:00
|
|
|
|
2007-12-01 18:29:58 +00:00
|
|
|
// This joins overlapping lines together
|
|
|
|
// Returns the number of joins made
|
|
|
|
public static int JoinOverlappingLines(ICollection<Linedef> lines)
|
|
|
|
{
|
|
|
|
int joinsdone = 0;
|
|
|
|
bool joined;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// No joins yet
|
|
|
|
joined = false;
|
|
|
|
|
|
|
|
// Go for all the lines
|
|
|
|
foreach(Linedef l1 in lines)
|
|
|
|
{
|
2007-12-04 19:22:14 +00:00
|
|
|
// Check if these vertices have lines that overlap
|
|
|
|
foreach(Linedef l2 in l1.Start.Linedefs)
|
2007-12-01 18:29:58 +00:00
|
|
|
{
|
|
|
|
// Sharing vertices?
|
2007-12-04 19:22:14 +00:00
|
|
|
if((l1.End == l2.End) ||
|
|
|
|
(l1.End == l2.Start))
|
2007-12-01 18:29:58 +00:00
|
|
|
{
|
|
|
|
// Not the same line?
|
|
|
|
if(l1 != l2)
|
|
|
|
{
|
|
|
|
// Merge these two linedefs
|
2007-12-04 19:22:14 +00:00
|
|
|
while(lines.Remove(l1));
|
|
|
|
l1.Join(l2);
|
|
|
|
joinsdone++;
|
|
|
|
joined = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Will have to restart when joined
|
|
|
|
if(joined) break;
|
|
|
|
|
|
|
|
// Check if these vertices have lines that overlap
|
|
|
|
foreach(Linedef l2 in l1.End.Linedefs)
|
|
|
|
{
|
|
|
|
// Sharing vertices?
|
|
|
|
if((l1.Start == l2.End) ||
|
|
|
|
(l1.Start == l2.Start))
|
|
|
|
{
|
|
|
|
// Not the same line?
|
|
|
|
if(l1 != l2)
|
|
|
|
{
|
|
|
|
// Merge these two linedefs
|
|
|
|
while(lines.Remove(l1));
|
2007-12-01 18:29:58 +00:00
|
|
|
l1.Join(l2);
|
|
|
|
joinsdone++;
|
|
|
|
joined = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Will have to restart when joined
|
|
|
|
if(joined) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while(joined);
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return joinsdone;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This removes looped linedefs (linedefs which reference the same vertex for start and end)
|
|
|
|
// Returns the number of linedefs removed
|
|
|
|
public static int RemoveLoopedLinedefs(ICollection<Linedef> lines)
|
|
|
|
{
|
|
|
|
int linesremoved = 0;
|
|
|
|
bool removedline;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// Nothing removed yet
|
|
|
|
removedline = false;
|
|
|
|
|
|
|
|
// Go for all the lines
|
|
|
|
foreach(Linedef l in lines)
|
|
|
|
{
|
|
|
|
// Check if referencing the same vertex twice
|
|
|
|
if(l.Start == l.End)
|
|
|
|
{
|
|
|
|
// Remove this line
|
2007-12-04 19:22:14 +00:00
|
|
|
while(lines.Remove(l));
|
2007-12-01 18:29:58 +00:00
|
|
|
l.Dispose();
|
|
|
|
linesremoved++;
|
|
|
|
removedline = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while(removedline);
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return linesremoved;
|
|
|
|
}
|
|
|
|
|
2007-12-01 01:32:56 +00:00
|
|
|
// This joins nearby vertices from two collections. This does NOT join vertices
|
|
|
|
// within the same collection, only if they exist in both collections.
|
|
|
|
// The vertex from the second collection is moved to match the first vertex.
|
|
|
|
// When keepsecond is true, the vertex in the second collection is kept,
|
|
|
|
// otherwise the vertex in the first collection is kept.
|
|
|
|
// Returns the number of joins made
|
|
|
|
public static int JoinVertices(ICollection<Vertex> set1, ICollection<Vertex> set2, bool keepsecond, float joindist)
|
|
|
|
{
|
|
|
|
float joindist2 = joindist * joindist;
|
|
|
|
int joinsdone = 0;
|
|
|
|
bool joined;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// No joins yet
|
|
|
|
joined = false;
|
|
|
|
|
|
|
|
// Go for all vertices in the first set
|
|
|
|
foreach(Vertex v1 in set1)
|
|
|
|
{
|
|
|
|
// Go for all vertices in the second set
|
|
|
|
foreach(Vertex v2 in set2)
|
|
|
|
{
|
|
|
|
// Check if vertices are close enough
|
|
|
|
if(v1.DistanceToSq(v2.Position) <= joindist2)
|
|
|
|
{
|
|
|
|
// Check if not the same vertex
|
|
|
|
if(v1 != v2)
|
|
|
|
{
|
|
|
|
// Move the second vertex to match the first
|
|
|
|
v2.Move(v1.Position);
|
|
|
|
|
|
|
|
// Check which one to keep
|
|
|
|
if(keepsecond)
|
|
|
|
{
|
|
|
|
// Join the first into the second
|
|
|
|
// Second is kept, first is removed
|
|
|
|
v1.Join(v2);
|
|
|
|
set1.Remove(v1);
|
|
|
|
set2.Remove(v1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Join the second into the first
|
|
|
|
// First is kept, second is removed
|
|
|
|
v2.Join(v1);
|
|
|
|
set1.Remove(v2);
|
|
|
|
set2.Remove(v2);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Count the join
|
|
|
|
joinsdone++;
|
|
|
|
joined = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Will have to restart when joined
|
|
|
|
if(joined) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while(joined);
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return joinsdone;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This splits the given lines with the given vertices
|
2007-12-04 19:22:14 +00:00
|
|
|
// All affected lines will be added to changedlines
|
2007-12-01 01:32:56 +00:00
|
|
|
// Returns the number of splits made
|
2007-12-04 19:22:14 +00:00
|
|
|
public static int SplitLinesByVertices(ICollection<Linedef> lines, ICollection<Vertex> verts, float splitdist, ICollection<Linedef> changedlines)
|
2007-12-01 01:32:56 +00:00
|
|
|
{
|
|
|
|
float splitdist2 = splitdist * splitdist;
|
|
|
|
int splitsdone = 0;
|
|
|
|
bool splitted;
|
|
|
|
Linedef nl;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// No split yet
|
|
|
|
splitted = false;
|
|
|
|
|
|
|
|
// Go for all the lines
|
|
|
|
foreach(Linedef l in lines)
|
|
|
|
{
|
|
|
|
// Go for all the vertices
|
|
|
|
foreach(Vertex v in verts)
|
|
|
|
{
|
|
|
|
// Check if v is close enough to l for splitting
|
|
|
|
if(l.DistanceToSq(v.Position, true) <= splitdist2)
|
|
|
|
{
|
|
|
|
// Line is not already referencing v?
|
2007-12-26 00:31:32 +00:00
|
|
|
if(((l.Start.X != v.X) || (l.Start.Y != v.Y)) &&
|
|
|
|
((l.End.X != v.X) || (l.End.Y != v.Y)))
|
2007-12-01 01:32:56 +00:00
|
|
|
{
|
|
|
|
// Split line l with vertex v
|
|
|
|
nl = l.Split(v);
|
|
|
|
|
|
|
|
// Add the new line to the list
|
|
|
|
lines.Add(nl);
|
|
|
|
|
|
|
|
// Both lines must be updated because their new length
|
|
|
|
// is relevant for next iterations!
|
|
|
|
l.Update();
|
|
|
|
nl.Update();
|
2007-12-04 19:22:14 +00:00
|
|
|
|
|
|
|
// Add both lines to changedlines
|
2007-12-05 19:39:09 +00:00
|
|
|
if(changedlines != null) changedlines.Add(l);
|
|
|
|
if(changedlines != null) changedlines.Add(nl);
|
|
|
|
|
2007-12-01 01:32:56 +00:00
|
|
|
// Count the split
|
|
|
|
splitsdone++;
|
|
|
|
splitted = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Will have to restart when splitted
|
|
|
|
if(splitted) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while(splitted);
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return splitsdone;
|
|
|
|
}
|
|
|
|
|
2007-06-14 12:37:46 +00:00
|
|
|
// This finds the line closest to the specified position
|
|
|
|
public static Linedef NearestLinedef(ICollection<Linedef> selection, Vector2D pos)
|
|
|
|
{
|
|
|
|
Linedef closest = null;
|
|
|
|
float distance = float.MaxValue;
|
|
|
|
float d;
|
|
|
|
|
|
|
|
// Go for all linedefs in selection
|
|
|
|
foreach(Linedef l in selection)
|
|
|
|
{
|
|
|
|
// Calculate distance and check if closer than previous find
|
2007-10-21 22:41:46 +00:00
|
|
|
d = l.SafeDistanceToSq(pos, true);
|
2007-06-14 12:37:46 +00:00
|
|
|
if(d < distance)
|
|
|
|
{
|
|
|
|
// This one is closer
|
|
|
|
closest = l;
|
|
|
|
distance = d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return closest;
|
|
|
|
}
|
|
|
|
|
2007-10-20 19:50:03 +00:00
|
|
|
// This finds the line closest to the specified position
|
|
|
|
public static Linedef NearestLinedefRange(ICollection<Linedef> selection, Vector2D pos, float maxrange)
|
|
|
|
{
|
|
|
|
Linedef closest = null;
|
|
|
|
float distance = float.MaxValue;
|
|
|
|
float maxrangesq = maxrange * maxrange;
|
|
|
|
float d;
|
|
|
|
|
|
|
|
// Go for all linedefs in selection
|
|
|
|
foreach(Linedef l in selection)
|
|
|
|
{
|
|
|
|
// Calculate distance and check if closer than previous find
|
2007-10-21 22:41:46 +00:00
|
|
|
d = l.SafeDistanceToSq(pos, true);
|
2007-10-20 19:50:03 +00:00
|
|
|
if((d <= maxrangesq) && (d < distance))
|
|
|
|
{
|
|
|
|
// This one is closer
|
|
|
|
closest = l;
|
|
|
|
distance = d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return closest;
|
|
|
|
}
|
|
|
|
|
2007-06-14 12:37:46 +00:00
|
|
|
// This finds the vertex closest to the specified position
|
|
|
|
public static Vertex NearestVertex(ICollection<Vertex> selection, Vector2D pos)
|
|
|
|
{
|
|
|
|
Vertex closest = null;
|
|
|
|
float distance = float.MaxValue;
|
|
|
|
float d;
|
2007-10-20 19:50:03 +00:00
|
|
|
|
2007-06-14 12:37:46 +00:00
|
|
|
// Go for all vertices in selection
|
|
|
|
foreach(Vertex v in selection)
|
|
|
|
{
|
|
|
|
// Calculate distance and check if closer than previous find
|
|
|
|
d = v.DistanceToSq(pos);
|
|
|
|
if(d < distance)
|
|
|
|
{
|
|
|
|
// This one is closer
|
|
|
|
closest = v;
|
|
|
|
distance = d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return closest;
|
|
|
|
}
|
2007-10-20 19:50:03 +00:00
|
|
|
|
|
|
|
// This finds the vertex closest to the specified position
|
|
|
|
public static Vertex NearestVertexSquareRange(ICollection<Vertex> selection, Vector2D pos, float maxrange)
|
|
|
|
{
|
|
|
|
RectangleF range = RectangleF.FromLTRB(pos.x - maxrange, pos.y - maxrange, pos.x + maxrange, pos.y + maxrange);
|
|
|
|
Vertex closest = null;
|
|
|
|
float distance = float.MaxValue;
|
|
|
|
float d;
|
|
|
|
|
|
|
|
// Go for all vertices in selection
|
|
|
|
foreach(Vertex v in selection)
|
|
|
|
{
|
|
|
|
// Within range?
|
|
|
|
if((v.Position.x >= range.Left) && (v.Position.x <= range.Right))
|
|
|
|
{
|
|
|
|
if((v.Position.y >= range.Top) && (v.Position.y <= range.Bottom))
|
|
|
|
{
|
|
|
|
// Close than previous find?
|
|
|
|
d = Math.Abs(v.Position.x - pos.x) + Math.Abs(v.Position.y - pos.y);
|
|
|
|
if(d < distance)
|
|
|
|
{
|
|
|
|
// This one is closer
|
|
|
|
closest = v;
|
|
|
|
distance = d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return closest;
|
|
|
|
}
|
2007-10-23 05:08:02 +00:00
|
|
|
|
|
|
|
// This finds the thing closest to the specified position
|
|
|
|
public static Thing NearestThingSquareRange(ICollection<Thing> selection, Vector2D pos, float maxrange)
|
|
|
|
{
|
|
|
|
RectangleF range = RectangleF.FromLTRB(pos.x - maxrange, pos.y - maxrange, pos.x + maxrange, pos.y + maxrange);
|
|
|
|
Thing closest = null;
|
|
|
|
float distance = float.MaxValue;
|
|
|
|
float d;
|
|
|
|
|
|
|
|
// Go for all vertices in selection
|
|
|
|
foreach(Thing t in selection)
|
|
|
|
{
|
|
|
|
// Within range?
|
|
|
|
if((t.Position.x >= (range.Left - t.Size)) && (t.Position.x <= (range.Right + t.Size)))
|
|
|
|
{
|
|
|
|
if((t.Position.y >= (range.Top - t.Size)) && (t.Position.y <= (range.Bottom + t.Size)))
|
|
|
|
{
|
|
|
|
// Close than previous find?
|
|
|
|
d = Math.Abs(t.Position.x - pos.x) + Math.Abs(t.Position.y - pos.y);
|
|
|
|
if(d < distance)
|
|
|
|
{
|
|
|
|
// This one is closer
|
|
|
|
closest = t;
|
|
|
|
distance = d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return closest;
|
|
|
|
}
|
2007-06-14 12:37:46 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Tools
|
|
|
|
|
2007-12-01 01:32:56 +00:00
|
|
|
// This makes a list of lines related to vertex selection
|
|
|
|
// A line is unstable when one vertex is selected and the other isn't.
|
2007-12-01 18:29:58 +00:00
|
|
|
public ICollection<Linedef> LinedefsFromSelectedVertices(bool includeunselected, bool includestable, bool includeunstable)
|
2007-12-01 01:32:56 +00:00
|
|
|
{
|
2007-12-05 19:39:09 +00:00
|
|
|
List<Linedef> list = new List<Linedef>((linedefs.Count / 2) + 1);
|
2007-12-01 01:32:56 +00:00
|
|
|
|
|
|
|
// Go for all lines
|
|
|
|
foreach(Linedef l in linedefs)
|
|
|
|
{
|
|
|
|
// Check if this is to be included
|
2007-12-01 18:29:58 +00:00
|
|
|
if((includestable && (l.Start.Selected && l.End.Selected)) ||
|
|
|
|
(includeunstable && (l.Start.Selected ^ l.End.Selected)) ||
|
|
|
|
(includeunselected && (!l.Start.Selected && !l.End.Selected)) )
|
2007-12-01 01:32:56 +00:00
|
|
|
{
|
|
|
|
// Add to list
|
|
|
|
list.Add(l);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
2007-06-14 12:37:46 +00:00
|
|
|
// This finds the line closest to the specified position
|
2007-06-14 13:09:55 +00:00
|
|
|
public Linedef NearestLinedef(Vector2D pos) { return MapSet.NearestLinedef(linedefs, pos); }
|
2007-06-13 19:39:38 +00:00
|
|
|
|
2007-10-20 19:50:03 +00:00
|
|
|
// This finds the line closest to the specified position
|
|
|
|
public Linedef NearestLinedefRange(Vector2D pos, float maxrange) { return MapSet.NearestLinedefRange(linedefs, pos, maxrange); }
|
|
|
|
|
2007-06-14 12:37:46 +00:00
|
|
|
// This finds the vertex closest to the specified position
|
2007-06-14 13:09:55 +00:00
|
|
|
public Vertex NearestVertex(Vector2D pos) { return MapSet.NearestVertex(vertices, pos); }
|
|
|
|
|
2007-10-20 19:50:03 +00:00
|
|
|
// This finds the vertex closest to the specified position
|
|
|
|
public Vertex NearestVertexSquareRange(Vector2D pos, float maxrange) { return MapSet.NearestVertexSquareRange(vertices, pos, maxrange); }
|
|
|
|
|
2007-10-23 05:08:02 +00:00
|
|
|
// This finds the thing closest to the specified position
|
|
|
|
public Thing NearestThingSquareRange(Vector2D pos, float maxrange) { return MapSet.NearestThingSquareRange(things, pos, maxrange); }
|
|
|
|
|
2007-12-01 01:32:56 +00:00
|
|
|
// This finds the closest unselected linedef that is not connected to the given vertex
|
|
|
|
public Linedef NearestUnselectedUnreferencedLinedef(Vector2D pos, float maxrange, Vertex v, out float distance)
|
|
|
|
{
|
|
|
|
Linedef closest = null;
|
|
|
|
distance = float.MaxValue;
|
|
|
|
float maxrangesq = maxrange * maxrange;
|
|
|
|
float d;
|
|
|
|
|
|
|
|
// Go for all linedefs in selection
|
|
|
|
foreach(Linedef l in linedefs)
|
|
|
|
{
|
|
|
|
// Calculate distance and check if closer than previous find
|
|
|
|
d = l.SafeDistanceToSq(pos, true);
|
|
|
|
if((d <= maxrangesq) && (d < distance))
|
|
|
|
{
|
|
|
|
// Check if not selected
|
|
|
|
|
|
|
|
// Check if linedef is not connected to v
|
|
|
|
if((l.Start != v) && (l.End != v))
|
|
|
|
{
|
|
|
|
// This one is closer
|
|
|
|
closest = l;
|
|
|
|
distance = d;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return result
|
|
|
|
return closest;
|
|
|
|
}
|
|
|
|
|
2007-10-13 14:05:45 +00:00
|
|
|
// This performs sidedefs compression
|
|
|
|
public void CompressSidedefs()
|
|
|
|
{
|
2007-10-21 22:41:46 +00:00
|
|
|
// TODO: Make this happen
|
2007-10-13 14:05:45 +00:00
|
|
|
}
|
|
|
|
|
2007-10-21 04:07:36 +00:00
|
|
|
// This removes unused vertices
|
|
|
|
public void RemoveUnusedVertices()
|
|
|
|
{
|
|
|
|
LinkedListNode<Vertex> vn, vc;
|
|
|
|
|
|
|
|
// Go for all vertices
|
|
|
|
vn = vertices.First;
|
|
|
|
while(vn != null)
|
|
|
|
{
|
|
|
|
vc = vn;
|
|
|
|
vn = vc.Next;
|
|
|
|
if(vc.Value.Linedefs.Count == 0) vertices.Remove(vc);
|
|
|
|
}
|
|
|
|
}
|
2007-11-04 22:19:30 +00:00
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|