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;
|
|
|
|
using CodeImp.DoomBuilder.Geometry;
|
2007-07-07 09:40:34 +00:00
|
|
|
using CodeImp.DoomBuilder.Rendering;
|
|
|
|
using SlimDX.Direct3D;
|
|
|
|
using System.Drawing;
|
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
|
|
|
|
{
|
2008-01-02 21:49:43 +00:00
|
|
|
public sealed class Vertex
|
2007-06-13 19:39:38 +00:00
|
|
|
{
|
|
|
|
#region ================== Constants
|
2007-07-07 09:40:34 +00:00
|
|
|
|
|
|
|
public const int BUFFERVERTICES = 1;
|
|
|
|
public const int RENDERPRIMITIVES = 1;
|
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Variables
|
|
|
|
|
2007-06-14 12:37:46 +00:00
|
|
|
// Map
|
2007-06-14 13:09:55 +00:00
|
|
|
private MapSet map;
|
2007-06-14 12:37:46 +00:00
|
|
|
|
|
|
|
// List items
|
|
|
|
private LinkedListNode<Vertex> mainlistitem;
|
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
// Position
|
|
|
|
private Vector2D pos;
|
|
|
|
|
|
|
|
// References
|
2007-06-14 12:37:46 +00:00
|
|
|
private LinkedList<Linedef> linedefs;
|
2007-10-20 01:04:47 +00:00
|
|
|
|
|
|
|
// Selections
|
2007-12-01 18:29:58 +00:00
|
|
|
private bool selected;
|
2008-05-01 14:10:38 +00:00
|
|
|
private bool marked;
|
2007-07-07 09:40:34 +00:00
|
|
|
|
2007-11-23 09:33:56 +00:00
|
|
|
// Cloning
|
|
|
|
private Vertex clone;
|
2008-01-25 19:12:34 +00:00
|
|
|
|
|
|
|
// Additional fields
|
|
|
|
private SortedList<string, object> fields;
|
2007-11-23 09:33:56 +00:00
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
// Disposing
|
|
|
|
private bool isdisposed = false;
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Properties
|
|
|
|
|
2007-07-07 09:40:34 +00:00
|
|
|
public MapSet Map { get { return map; } }
|
2007-06-14 12:37:46 +00:00
|
|
|
public ICollection<Linedef> Linedefs { get { return linedefs; } }
|
2007-06-13 19:39:38 +00:00
|
|
|
public Vector2D Position { get { return pos; } }
|
|
|
|
public bool IsDisposed { get { return isdisposed; } }
|
2007-12-01 18:29:58 +00:00
|
|
|
public bool Selected { get { return selected; } set { selected = value; } }
|
2008-05-01 14:10:38 +00:00
|
|
|
public bool Marked { get { return marked; } set { marked = value; } }
|
2007-11-23 09:33:56 +00:00
|
|
|
public Vertex Clone { get { return clone; } set { clone = value; } }
|
2008-01-25 19:12:34 +00:00
|
|
|
public SortedList<string, object> Fields { get { return fields; } }
|
2007-06-13 19:39:38 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Constructor / Disposer
|
|
|
|
|
|
|
|
// Constructor
|
2008-05-10 16:09:45 +00:00
|
|
|
internal Vertex(MapSet map, LinkedListNode<Vertex> listitem, Vector2D pos)
|
2007-06-13 19:39:38 +00:00
|
|
|
{
|
|
|
|
// Initialize
|
2007-06-14 12:37:46 +00:00
|
|
|
this.map = map;
|
|
|
|
this.linedefs = new LinkedList<Linedef>();
|
|
|
|
this.mainlistitem = listitem;
|
2008-05-05 22:01:27 +00:00
|
|
|
this.pos = pos;
|
2007-06-13 19:39:38 +00:00
|
|
|
|
|
|
|
// We have no destructor
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
}
|
|
|
|
|
2008-01-02 21:49:43 +00:00
|
|
|
// Disposer
|
2007-06-13 19:39:38 +00:00
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
// Not already disposed?
|
|
|
|
if(!isdisposed)
|
|
|
|
{
|
2007-06-14 12:37:46 +00:00
|
|
|
// Already set isdisposed so that changes can be prohibited
|
|
|
|
isdisposed = true;
|
|
|
|
|
|
|
|
// Remove from main list
|
|
|
|
mainlistitem.List.Remove(mainlistitem);
|
2007-07-07 09:40:34 +00:00
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
// Dispose the lines that are attached to this vertex
|
|
|
|
// because a linedef cannot exist without 2 vertices.
|
2008-05-06 05:41:36 +00:00
|
|
|
while(linedefs.First != null) linedefs.First.Value.Dispose();
|
2007-06-13 19:39:38 +00:00
|
|
|
|
|
|
|
// Clean up
|
|
|
|
linedefs = null;
|
2007-06-14 12:37:46 +00:00
|
|
|
mainlistitem = null;
|
|
|
|
map = null;
|
2007-06-13 19:39:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2007-06-14 12:37:46 +00:00
|
|
|
#region ================== Management
|
2007-06-13 19:39:38 +00:00
|
|
|
|
2007-06-14 12:37:46 +00:00
|
|
|
// This attaches a linedef and returns the listitem
|
|
|
|
public LinkedListNode<Linedef> AttachLinedef(Linedef l) { return linedefs.AddLast(l); }
|
2007-06-13 19:39:38 +00:00
|
|
|
|
|
|
|
// This detaches a linedef
|
2007-06-14 12:37:46 +00:00
|
|
|
public void DetachLinedef(LinkedListNode<Linedef> l)
|
|
|
|
{
|
|
|
|
// Not disposing?
|
|
|
|
if(!isdisposed)
|
|
|
|
{
|
|
|
|
// Remove linedef
|
|
|
|
linedefs.Remove(l);
|
|
|
|
|
|
|
|
// No more linedefs left?
|
|
|
|
if(linedefs.Count == 0)
|
|
|
|
{
|
|
|
|
// This vertex is now useless, dispose it
|
|
|
|
this.Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-07-07 09:40:34 +00:00
|
|
|
|
2007-06-13 19:39:38 +00:00
|
|
|
#endregion
|
2007-06-14 12:37:46 +00:00
|
|
|
|
2008-01-25 19:12:34 +00:00
|
|
|
#region ================== Fields
|
|
|
|
|
|
|
|
// This makes new fields
|
|
|
|
public void MakeFields()
|
|
|
|
{
|
|
|
|
if(fields != null) fields = new SortedList<string, object>();
|
|
|
|
}
|
|
|
|
|
|
|
|
// This makes fields from another list of fields
|
|
|
|
public void MakeFields(SortedList<string, object> copyfrom)
|
|
|
|
{
|
|
|
|
if(fields != null) fields = new SortedList<string, object>();
|
|
|
|
foreach(KeyValuePair<string, object> f in copyfrom) fields[f.Key] = f.Value;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2007-06-24 18:56:43 +00:00
|
|
|
#region ================== Methods
|
2007-12-26 00:31:32 +00:00
|
|
|
|
2008-01-25 19:12:34 +00:00
|
|
|
// This copies all properties to another thing
|
|
|
|
public void CopyPropertiesTo(Vertex v)
|
|
|
|
{
|
|
|
|
// Copy properties
|
|
|
|
v.pos = pos;
|
|
|
|
if(fields != null) v.MakeFields(fields);
|
2008-05-01 14:18:04 +00:00
|
|
|
v.selected = selected;
|
2008-01-25 19:12:34 +00:00
|
|
|
}
|
|
|
|
|
2007-06-14 12:37:46 +00:00
|
|
|
// This returns the distance from given coordinates
|
|
|
|
public float DistanceToSq(Vector2D p)
|
|
|
|
{
|
2008-04-19 15:44:05 +00:00
|
|
|
return (p.x - pos.x) * (p.x - pos.x) + (p.y - pos.y) * (p.y - pos.y);
|
2007-06-14 12:37:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// This returns the distance from given coordinates
|
|
|
|
public float DistanceTo(Vector2D p)
|
|
|
|
{
|
|
|
|
Vector2D delta = p - pos;
|
|
|
|
return delta.GetLength();
|
|
|
|
}
|
|
|
|
|
2007-06-24 18:56:43 +00:00
|
|
|
// This finds the line closest to the specified position
|
|
|
|
public Linedef NearestLinedef(Vector2D pos) { return MapSet.NearestLinedef(linedefs, pos); }
|
|
|
|
|
2007-11-10 19:24:52 +00:00
|
|
|
// This moves the vertex
|
|
|
|
public void Move(Vector2D newpos)
|
|
|
|
{
|
|
|
|
// Change position
|
2008-05-05 22:22:53 +00:00
|
|
|
pos = newpos;
|
2007-07-07 09:40:34 +00:00
|
|
|
|
|
|
|
// Let all lines know they need an update
|
|
|
|
foreach(Linedef l in linedefs) l.NeedUpdate();
|
2007-06-24 18:56:43 +00:00
|
|
|
}
|
2007-06-14 12:37:46 +00:00
|
|
|
|
2008-05-05 22:22:53 +00:00
|
|
|
// This snaps the vertex to the map format accuracy
|
|
|
|
public void SnapToAccuracy()
|
|
|
|
{
|
|
|
|
// Round the coordinates
|
|
|
|
Vector2D newpos = new Vector2D((float)Math.Round(pos.x, General.Map.FormatInterface.VertexDecimals),
|
|
|
|
(float)Math.Round(pos.y, General.Map.FormatInterface.VertexDecimals));
|
|
|
|
this.Move(newpos);
|
|
|
|
}
|
|
|
|
|
2007-11-13 09:06:15 +00:00
|
|
|
// This snaps the vertex to the grid
|
|
|
|
public void SnapToGrid()
|
|
|
|
{
|
|
|
|
// Calculate nearest grid coordinates
|
|
|
|
this.Move(General.Map.Grid.SnappedToGrid(pos));
|
|
|
|
}
|
|
|
|
|
2007-12-01 01:32:56 +00:00
|
|
|
// This joins another vertex
|
|
|
|
// Which means this vertex is removed and the other is kept!
|
|
|
|
public void Join(Vertex other)
|
|
|
|
{
|
2008-05-01 10:59:19 +00:00
|
|
|
// If either of the two vertices was selected, keep the other selected
|
|
|
|
if(this.selected) other.selected = true;
|
2008-05-01 14:10:38 +00:00
|
|
|
if(this.marked) other.marked = true;
|
2008-05-01 10:59:19 +00:00
|
|
|
|
2008-05-05 21:38:52 +00:00
|
|
|
// Detach all linedefs and attach them to the other
|
2008-05-05 19:37:00 +00:00
|
|
|
// This will automatically dispose this vertex
|
|
|
|
while(linedefs != null)
|
|
|
|
{
|
|
|
|
// Move the line to the other vertex
|
|
|
|
if(linedefs.First.Value.Start == this)
|
|
|
|
linedefs.First.Value.SetStartVertex(other);
|
|
|
|
else
|
|
|
|
linedefs.First.Value.SetEndVertex(other);
|
|
|
|
}
|
2007-12-01 01:32:56 +00:00
|
|
|
}
|
|
|
|
|
2007-06-14 12:37:46 +00:00
|
|
|
#endregion
|
2007-06-13 19:39:38 +00:00
|
|
|
}
|
|
|
|
}
|