2007-06-15 18:30:55 +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.Interface;
|
|
|
|
using CodeImp.DoomBuilder.IO;
|
|
|
|
using CodeImp.DoomBuilder.Map;
|
2007-06-15 22:38:42 +00:00
|
|
|
using CodeImp.DoomBuilder.Rendering;
|
2007-10-20 19:50:03 +00:00
|
|
|
using CodeImp.DoomBuilder.Geometry;
|
2008-01-02 21:49:43 +00:00
|
|
|
using CodeImp.DoomBuilder.Editing;
|
2007-06-15 18:30:55 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2008-01-02 21:49:43 +00:00
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes.Editing
|
2007-06-15 18:30:55 +00:00
|
|
|
{
|
2008-01-04 00:16:58 +00:00
|
|
|
[EditMode(SwitchAction = "verticesmode", // Action name used to switch to this mode
|
|
|
|
ButtonDesc = "Vertices Mode", // Description on the button in toolbar/menu
|
|
|
|
ButtonImage = "VerticesMode.png", // Image resource name for the button
|
|
|
|
ButtonOrder = int.MinValue + 0)] // Position of the button (lower is more to the left)
|
|
|
|
|
2007-10-24 17:25:03 +00:00
|
|
|
public class VerticesMode : ClassicMode
|
2007-06-15 18:30:55 +00:00
|
|
|
{
|
|
|
|
#region ================== Constants
|
|
|
|
|
2007-11-15 23:38:09 +00:00
|
|
|
public const float VERTEX_HIGHLIGHT_RANGE = 20f;
|
2007-10-20 19:50:03 +00:00
|
|
|
|
2007-06-15 18:30:55 +00:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Variables
|
|
|
|
|
2007-10-20 19:50:03 +00:00
|
|
|
// Highlighted item
|
2007-11-10 01:58:08 +00:00
|
|
|
protected Vertex highlighted;
|
2007-10-20 19:50:03 +00:00
|
|
|
|
2007-06-15 18:30:55 +00:00
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Properties
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Constructor / Disposer
|
|
|
|
|
2007-10-20 19:50:03 +00:00
|
|
|
// Constructor
|
2007-10-20 01:04:47 +00:00
|
|
|
public VerticesMode()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-01-02 21:49:43 +00:00
|
|
|
// Disposer
|
2007-06-15 18:30:55 +00:00
|
|
|
public override void Dispose()
|
|
|
|
{
|
|
|
|
// Not already disposed?
|
|
|
|
if(!isdisposed)
|
|
|
|
{
|
|
|
|
// Clean up
|
|
|
|
|
|
|
|
// Dispose base
|
|
|
|
base.Dispose();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region ================== Methods
|
2007-10-20 19:50:03 +00:00
|
|
|
|
2007-11-07 21:14:27 +00:00
|
|
|
// Cancel mode
|
|
|
|
public override void Cancel()
|
|
|
|
{
|
|
|
|
base.Cancel();
|
|
|
|
|
|
|
|
// Return to this mode
|
|
|
|
General.Map.ChangeMode(new VerticesMode());
|
|
|
|
}
|
|
|
|
|
2007-10-20 19:50:03 +00:00
|
|
|
// Mode engages
|
|
|
|
public override void Engage()
|
|
|
|
{
|
|
|
|
base.Engage();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mode disengages
|
|
|
|
public override void Disengage()
|
|
|
|
{
|
|
|
|
base.Disengage();
|
2007-10-24 17:25:03 +00:00
|
|
|
|
2007-12-26 00:31:32 +00:00
|
|
|
// Check which mode we are switching to
|
|
|
|
if(General.Map.NewMode is LinedefsMode)
|
|
|
|
{
|
|
|
|
// Convert selection to linedefs
|
|
|
|
|
|
|
|
// Clear selected vertices
|
|
|
|
General.Map.Map.ClearSelectedVertices();
|
|
|
|
}
|
|
|
|
else if(General.Map.NewMode is SectorsMode)
|
|
|
|
{
|
|
|
|
// Convert selection to sectors
|
|
|
|
|
|
|
|
// Clear selected vertices
|
|
|
|
General.Map.Map.ClearSelectedVertices();
|
|
|
|
}
|
|
|
|
|
2007-10-24 17:25:03 +00:00
|
|
|
// Hide highlight info
|
2008-01-02 21:49:43 +00:00
|
|
|
General.Interface.HideInfo();
|
2007-10-20 19:50:03 +00:00
|
|
|
}
|
|
|
|
|
2007-06-15 22:38:42 +00:00
|
|
|
// This redraws the display
|
2007-10-19 14:27:46 +00:00
|
|
|
public unsafe override void RedrawDisplay()
|
2007-06-15 22:38:42 +00:00
|
|
|
{
|
2008-04-12 12:45:57 +00:00
|
|
|
// Render lines and vertices
|
|
|
|
if(renderer.StartPlotter(true))
|
2007-06-15 22:38:42 +00:00
|
|
|
{
|
2008-04-12 16:07:10 +00:00
|
|
|
renderer.PlotLinedefSet(General.Map.Map.Linedefs);
|
|
|
|
renderer.PlotVerticesSet(General.Map.Map.Vertices);
|
2007-12-26 00:31:32 +00:00
|
|
|
if((highlighted != null) && !highlighted.IsDisposed)
|
2008-04-12 16:07:10 +00:00
|
|
|
renderer.PlotVertex(highlighted, ColorCollection.HIGHLIGHT);
|
2007-11-21 12:50:56 +00:00
|
|
|
renderer.Finish();
|
2007-06-15 22:38:42 +00:00
|
|
|
}
|
2008-04-12 12:45:57 +00:00
|
|
|
|
|
|
|
// Render things
|
|
|
|
if(renderer.StartThings(true))
|
|
|
|
{
|
|
|
|
renderer.SetThingsRenderOrder(false);
|
|
|
|
renderer.RenderThingSet(General.Map.Map.Things);
|
|
|
|
renderer.Finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
renderer.Present();
|
2007-06-15 22:38:42 +00:00
|
|
|
}
|
|
|
|
|
2007-10-20 19:50:03 +00:00
|
|
|
// This highlights a new item
|
|
|
|
protected void Highlight(Vertex v)
|
|
|
|
{
|
|
|
|
// Update display
|
2008-04-12 12:45:57 +00:00
|
|
|
if(renderer.StartPlotter(false))
|
2007-10-20 19:50:03 +00:00
|
|
|
{
|
|
|
|
// Undraw previous highlight
|
2007-12-26 00:31:32 +00:00
|
|
|
if((highlighted != null) && !highlighted.IsDisposed)
|
2008-04-12 16:07:10 +00:00
|
|
|
renderer.PlotVertex(highlighted, renderer.DetermineVertexColor(highlighted));
|
2007-10-20 19:50:03 +00:00
|
|
|
|
|
|
|
// Set new highlight
|
|
|
|
highlighted = v;
|
|
|
|
|
|
|
|
// Render highlighted item
|
2007-12-26 00:31:32 +00:00
|
|
|
if((highlighted != null) && !highlighted.IsDisposed)
|
2008-04-12 16:07:10 +00:00
|
|
|
renderer.PlotVertex(highlighted, ColorCollection.HIGHLIGHT);
|
2007-10-20 19:50:03 +00:00
|
|
|
|
|
|
|
// Done
|
2007-11-21 12:50:56 +00:00
|
|
|
renderer.Finish();
|
2008-04-12 12:45:57 +00:00
|
|
|
renderer.Present();
|
2007-10-20 19:50:03 +00:00
|
|
|
}
|
2007-10-24 17:25:03 +00:00
|
|
|
|
|
|
|
// Show highlight info
|
2007-12-26 00:31:32 +00:00
|
|
|
if((highlighted != null) && !highlighted.IsDisposed)
|
2008-01-02 21:49:43 +00:00
|
|
|
General.Interface.ShowVertexInfo(highlighted);
|
2007-12-26 00:31:32 +00:00
|
|
|
else
|
2008-01-02 21:49:43 +00:00
|
|
|
General.Interface.HideInfo();
|
2007-10-20 19:50:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mouse moves
|
|
|
|
public override void MouseMove(MouseEventArgs e)
|
|
|
|
{
|
|
|
|
base.MouseMove(e);
|
|
|
|
|
2007-11-07 21:14:27 +00:00
|
|
|
// Not holding any buttons?
|
|
|
|
if(e.Button == MouseButtons.None)
|
|
|
|
{
|
|
|
|
// Find the nearest vertex within highlight range
|
|
|
|
Vertex v = General.Map.Map.NearestVertexSquareRange(mousemappos, VERTEX_HIGHLIGHT_RANGE / renderer.Scale);
|
2007-10-20 19:50:03 +00:00
|
|
|
|
2007-11-07 21:14:27 +00:00
|
|
|
// Highlight if not the same
|
|
|
|
if(v != highlighted) Highlight(v);
|
|
|
|
}
|
2007-10-20 19:50:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mouse leaves
|
|
|
|
public override void MouseLeave(EventArgs e)
|
|
|
|
{
|
|
|
|
base.MouseLeave(e);
|
|
|
|
|
|
|
|
// Highlight nothing
|
|
|
|
Highlight(null);
|
|
|
|
}
|
|
|
|
|
2007-11-07 21:14:27 +00:00
|
|
|
// Mouse button pressed
|
|
|
|
public override void MouseDown(MouseEventArgs e)
|
|
|
|
{
|
|
|
|
base.MouseDown(e);
|
|
|
|
|
|
|
|
// Which button is used?
|
|
|
|
if(e.Button == EditMode.SELECT_BUTTON)
|
|
|
|
{
|
|
|
|
// Item highlighted?
|
2007-12-26 00:31:32 +00:00
|
|
|
if((highlighted != null) && !highlighted.IsDisposed)
|
2007-11-07 21:14:27 +00:00
|
|
|
{
|
2007-12-01 18:29:58 +00:00
|
|
|
// Flip selection
|
|
|
|
highlighted.Selected = !highlighted.Selected;
|
2008-04-12 12:45:57 +00:00
|
|
|
|
|
|
|
// Redraw highlight to show selection
|
|
|
|
if(renderer.StartPlotter(false))
|
2007-11-07 21:14:27 +00:00
|
|
|
{
|
2008-04-12 16:07:10 +00:00
|
|
|
renderer.PlotVertex(highlighted, renderer.DetermineVertexColor(highlighted));
|
2007-11-21 12:50:56 +00:00
|
|
|
renderer.Finish();
|
2008-04-12 12:45:57 +00:00
|
|
|
renderer.Present();
|
2007-11-07 21:14:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mouse released
|
|
|
|
public override void MouseUp(MouseEventArgs e)
|
|
|
|
{
|
|
|
|
base.MouseUp(e);
|
|
|
|
|
|
|
|
// Item highlighted?
|
2007-12-26 00:31:32 +00:00
|
|
|
if((highlighted != null) && !highlighted.IsDisposed)
|
2007-11-07 21:14:27 +00:00
|
|
|
{
|
2008-04-12 12:45:57 +00:00
|
|
|
// Render highlighted item
|
|
|
|
if(renderer.StartPlotter(false))
|
2007-11-07 21:14:27 +00:00
|
|
|
{
|
2008-04-12 16:07:10 +00:00
|
|
|
renderer.PlotVertex(highlighted, ColorCollection.HIGHLIGHT);
|
2007-11-21 12:50:56 +00:00
|
|
|
renderer.Finish();
|
2008-04-12 12:45:57 +00:00
|
|
|
renderer.Present();
|
2007-11-07 21:14:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mouse wants to drag
|
|
|
|
protected override void DragStart(MouseEventArgs e)
|
|
|
|
{
|
|
|
|
base.DragStart(e);
|
|
|
|
|
|
|
|
// Which button is used?
|
|
|
|
if(e.Button == EditMode.SELECT_BUTTON)
|
|
|
|
{
|
|
|
|
// Make selection
|
|
|
|
|
|
|
|
}
|
|
|
|
else if(e.Button == EditMode.EDIT_BUTTON)
|
|
|
|
{
|
|
|
|
// Anything highlighted?
|
2007-12-26 00:31:32 +00:00
|
|
|
if((highlighted != null) && !highlighted.IsDisposed)
|
2007-11-07 21:14:27 +00:00
|
|
|
{
|
|
|
|
// Highlighted item not selected?
|
2007-12-01 18:29:58 +00:00
|
|
|
if(!highlighted.Selected)
|
2007-11-07 21:14:27 +00:00
|
|
|
{
|
|
|
|
// Select only this vertex for dragging
|
2007-12-01 18:29:58 +00:00
|
|
|
General.Map.Map.ClearSelectedVertices();
|
|
|
|
highlighted.Selected = true;
|
2007-11-07 21:14:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Start dragging the selection
|
2007-12-26 00:31:32 +00:00
|
|
|
General.Map.ChangeMode(new DragVerticesMode(new VerticesMode(), highlighted, mousedownmappos));
|
2007-11-07 21:14:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-12-26 00:31:32 +00:00
|
|
|
|
2007-06-15 18:30:55 +00:00
|
|
|
#endregion
|
|
|
|
}
|
|
|
|
}
|