2009-04-19 18:07:22 +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.Generic;
|
2016-10-26 22:33:36 +00:00
|
|
|
|
using System.Drawing;
|
2009-04-19 18:07:22 +00:00
|
|
|
|
using System.Windows.Forms;
|
2016-10-26 22:33:36 +00:00
|
|
|
|
using CodeImp.DoomBuilder.Actions;
|
|
|
|
|
using CodeImp.DoomBuilder.BuilderModes.Interface;
|
2009-04-19 18:07:22 +00:00
|
|
|
|
using CodeImp.DoomBuilder.Map;
|
|
|
|
|
using CodeImp.DoomBuilder.Rendering;
|
|
|
|
|
using CodeImp.DoomBuilder.Geometry;
|
|
|
|
|
using CodeImp.DoomBuilder.Editing;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
namespace CodeImp.DoomBuilder.BuilderModes
|
|
|
|
|
{
|
|
|
|
|
[EditMode(DisplayName = "Curve Linedefs",
|
2011-12-03 14:49:53 +00:00
|
|
|
|
AllowCopyPaste = false,
|
2009-04-19 18:07:22 +00:00
|
|
|
|
Volatile = true)]
|
|
|
|
|
public sealed class CurveLinedefsMode : BaseClassicMode
|
|
|
|
|
{
|
|
|
|
|
#region ================== Constants
|
|
|
|
|
|
2016-10-26 22:33:36 +00:00
|
|
|
|
internal const int DEFAULT_VERTICES_COUNT = 8; //mxd
|
|
|
|
|
internal const int DEFAULT_DISTANCE = 128; //mxd
|
|
|
|
|
internal const int DEFAULT_ANGLE = 180; //mxd
|
2009-04-19 18:07:22 +00:00
|
|
|
|
private const float LINE_THICKNESS = 0.6f;
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region ================== Variables
|
|
|
|
|
|
|
|
|
|
// Collections
|
|
|
|
|
private ICollection<Linedef> selectedlines;
|
|
|
|
|
private ICollection<Linedef> unselectedlines;
|
2016-10-26 22:33:36 +00:00
|
|
|
|
private Dictionary<Linedef, List<Vector2D>> curves; //mxd
|
|
|
|
|
|
|
|
|
|
//mxd. UI and controls
|
2016-11-01 20:44:40 +00:00
|
|
|
|
private HintLabel hintlabel;
|
2016-10-26 22:33:36 +00:00
|
|
|
|
private CurveLinedefsOptionsPanel panel;
|
|
|
|
|
private Linedef closestline;
|
|
|
|
|
private Vector2D mousedownoffset;
|
|
|
|
|
private int prevoffset;
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region ================== Properties
|
|
|
|
|
|
|
|
|
|
// Just keep the base mode button checked
|
|
|
|
|
public override string EditModeButtonName { get { return General.Editing.PreviousStableMode.Name; } }
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region ================== Constructor / Disposer
|
|
|
|
|
|
|
|
|
|
// Constructor
|
2016-10-26 22:33:36 +00:00
|
|
|
|
public CurveLinedefsMode()
|
2009-04-19 18:07:22 +00:00
|
|
|
|
{
|
|
|
|
|
// Make collections by selection
|
|
|
|
|
selectedlines = General.Map.Map.GetSelectedLinedefs(true);
|
|
|
|
|
unselectedlines = General.Map.Map.GetSelectedLinedefs(false);
|
2016-10-26 22:33:36 +00:00
|
|
|
|
curves = new Dictionary<Linedef, List<Vector2D>>(selectedlines.Count); //mxd
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
2016-10-26 22:33:36 +00:00
|
|
|
|
//mxd. UI
|
|
|
|
|
panel = new CurveLinedefsOptionsPanel();
|
2016-11-01 20:44:40 +00:00
|
|
|
|
hintlabel = new HintLabel(General.Colors.InfoLine);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Dispose() //mxd
|
|
|
|
|
{
|
|
|
|
|
// Not already disposed?
|
|
|
|
|
if(!isdisposed)
|
|
|
|
|
{
|
|
|
|
|
// Clean up
|
|
|
|
|
if(hintlabel != null) hintlabel.Dispose();
|
|
|
|
|
|
|
|
|
|
// Done
|
|
|
|
|
base.Dispose();
|
|
|
|
|
}
|
2009-04-19 18:07:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region ================== Methods
|
|
|
|
|
|
2016-10-26 22:33:36 +00:00
|
|
|
|
//mxd
|
|
|
|
|
private void GenerateCurves()
|
|
|
|
|
{
|
|
|
|
|
foreach(Linedef ld in selectedlines) curves[ld] = GenerateCurve(ld);
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
|
// This generates the vertices to split the line with, from start to end
|
2016-10-26 22:33:36 +00:00
|
|
|
|
private List<Vector2D> GenerateCurve(Linedef line)
|
2009-04-19 18:07:22 +00:00
|
|
|
|
{
|
2016-10-26 22:33:36 +00:00
|
|
|
|
// Fetch settings from the panel
|
|
|
|
|
bool fixedcurve = panel.FixedCurve;
|
|
|
|
|
int vertices = Math.Min(panel.Vertices, (int)Math.Ceiling(line.Length / 4));
|
|
|
|
|
int distance = panel.Distance;
|
|
|
|
|
int angle = (!fixedcurve && distance == 0 ? Math.Max(5, panel.Angle) : panel.Angle);
|
2020-05-21 12:20:02 +00:00
|
|
|
|
double theta = Angle2D.DegToRad(angle);
|
2016-10-26 22:33:36 +00:00
|
|
|
|
if(distance < 0) theta = -theta; //mxd
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
|
|
// Make list
|
|
|
|
|
List<Vector2D> points = new List<Vector2D>(vertices);
|
|
|
|
|
|
2016-10-26 22:33:36 +00:00
|
|
|
|
float segDelta = 1.0f / (vertices + 1); //mxd
|
|
|
|
|
Vector2D linecenter = line.GetCenterPoint(); //mxd
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
2016-10-26 22:33:36 +00:00
|
|
|
|
//mxd. Special cases...
|
2016-11-01 20:44:40 +00:00
|
|
|
|
if(angle == 0)
|
2009-04-19 18:07:22 +00:00
|
|
|
|
{
|
2016-10-26 22:33:36 +00:00
|
|
|
|
for(int v = 1; v <= vertices; v++)
|
|
|
|
|
{
|
2020-05-21 12:20:02 +00:00
|
|
|
|
double x = (line.Length * segDelta) * (vertices - v + 1) - line.Length * 0.5f; // Line segment coord
|
2016-10-26 22:33:36 +00:00
|
|
|
|
|
|
|
|
|
// Rotate and transform to fit original line
|
|
|
|
|
Vector2D vertex = new Vector2D(x, 0).GetRotated(line.Angle + Angle2D.PIHALF) + linecenter;
|
|
|
|
|
points.Add(vertex);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
//Added by Anders <20>strand 2008-05-18
|
|
|
|
|
//The formulas used are taken from http://mathworld.wolfram.com/CircularSegment.html
|
|
|
|
|
//c and theta are known (length of line and angle parameter). d, R and h are
|
|
|
|
|
//calculated from those two
|
|
|
|
|
//If the curve is not supposed to be a circular segment it's simply deformed to fit
|
|
|
|
|
//the value set for distance.
|
|
|
|
|
|
|
|
|
|
//The vertices are generated to be evenly distributed (by angle) along the curve
|
|
|
|
|
//and lastly they are rotated and moved to fit with the original line
|
|
|
|
|
|
|
|
|
|
//calculate some identities of a circle segment (refer to the graph in the url above)
|
2020-05-21 12:20:02 +00:00
|
|
|
|
double c = line.Length;
|
2016-10-26 22:33:36 +00:00
|
|
|
|
|
2020-05-21 12:20:02 +00:00
|
|
|
|
double d = (c / (float)Math.Tan(theta / 2)) / 2;
|
|
|
|
|
double R = d / (float)Math.Cos(theta / 2);
|
|
|
|
|
double h = R - d;
|
2016-10-26 22:33:36 +00:00
|
|
|
|
|
2020-05-21 12:20:02 +00:00
|
|
|
|
double yDeform = (fixedcurve ? 1 : distance / h);
|
|
|
|
|
double xDelta = Math.Min(1, yDeform); //mxd
|
2016-10-26 22:33:36 +00:00
|
|
|
|
|
|
|
|
|
for(int v = 1; v <= vertices; v++)
|
|
|
|
|
{
|
|
|
|
|
//calculate the angle for this vertex
|
|
|
|
|
//the curve starts at PI/2 - theta/2 and is segmented into vertices+1 segments
|
|
|
|
|
//this assumes the line is horisontal and on y = 0, the point is rotated and moved later
|
|
|
|
|
|
2020-05-21 12:20:02 +00:00
|
|
|
|
double a = (Angle2D.PI - theta) / 2 + v * (theta / (vertices + 1));
|
2016-10-26 22:33:36 +00:00
|
|
|
|
|
|
|
|
|
//calculate the coordinates of the point, and distort the y coordinate
|
|
|
|
|
//using the deform factor calculated above
|
2020-05-21 12:20:02 +00:00
|
|
|
|
double xr = Math.Cos(a) * R; //mxd. Circle segment coord
|
|
|
|
|
double xl = (line.Length * segDelta) * (vertices - v + 1) - line.Length * 0.5f; // mxd. Line segment coord
|
|
|
|
|
double x = InterpolationTools.Linear(xl, xr, xDelta); //mxd
|
|
|
|
|
double y = (Math.Sin(a) * R - d) * yDeform;
|
2016-10-26 22:33:36 +00:00
|
|
|
|
|
|
|
|
|
//rotate and transform to fit original line
|
|
|
|
|
Vector2D vertex = new Vector2D(x, y).GetRotated(line.Angle + Angle2D.PIHALF) + linecenter;
|
|
|
|
|
points.Add(vertex);
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
2016-10-26 22:33:36 +00:00
|
|
|
|
// Done
|
|
|
|
|
return points;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
2016-10-26 22:33:36 +00:00
|
|
|
|
#region ================== Settings panel (mxd)
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
2016-10-26 22:33:36 +00:00
|
|
|
|
private void AddInterface()
|
|
|
|
|
{
|
|
|
|
|
panel = new CurveLinedefsOptionsPanel();
|
|
|
|
|
int vertices = General.Settings.ReadPluginSetting("curvelinedefsmode.vertices", DEFAULT_VERTICES_COUNT);
|
|
|
|
|
int distance = General.Settings.ReadPluginSetting("curvelinedefsmode.distance", DEFAULT_DISTANCE);
|
|
|
|
|
int angle = General.Settings.ReadPluginSetting("curvelinedefsmode.angle", DEFAULT_ANGLE);
|
|
|
|
|
bool fixedcurve = General.Settings.ReadPluginSetting("curvelinedefsmode.fixedcurve", false);
|
|
|
|
|
|
|
|
|
|
panel.SetValues(vertices, distance, angle, fixedcurve);
|
|
|
|
|
panel.Register();
|
|
|
|
|
panel.OnValueChanged += OnValuesChanged;
|
|
|
|
|
}
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
2016-10-26 22:33:36 +00:00
|
|
|
|
private void RemoveInterface()
|
|
|
|
|
{
|
|
|
|
|
panel.OnValueChanged -= OnValuesChanged;
|
|
|
|
|
General.Settings.WritePluginSetting("curvelinedefsmode.vertices", panel.Vertices);
|
|
|
|
|
General.Settings.WritePluginSetting("curvelinedefsmode.distance", panel.Distance);
|
|
|
|
|
General.Settings.WritePluginSetting("curvelinedefsmode.angle", panel.Angle);
|
|
|
|
|
General.Settings.WritePluginSetting("curvelinedefsmode.fixedcurve", panel.FixedCurve);
|
|
|
|
|
panel.Unregister();
|
|
|
|
|
}
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
2016-10-26 22:33:36 +00:00
|
|
|
|
private void OnValuesChanged(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
// Update curves
|
|
|
|
|
GenerateCurves();
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
2016-10-26 22:33:36 +00:00
|
|
|
|
// Redraw display
|
|
|
|
|
General.Interface.RedrawDisplay();
|
2009-04-19 18:07:22 +00:00
|
|
|
|
}
|
2016-10-26 22:33:36 +00:00
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
|
#endregion
|
2016-10-26 22:33:36 +00:00
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
|
#region ================== Events
|
|
|
|
|
|
|
|
|
|
public override void OnHelp()
|
|
|
|
|
{
|
|
|
|
|
General.ShowHelp("e_curvelinedefs.html");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Cancelled
|
|
|
|
|
public override void OnCancel()
|
|
|
|
|
{
|
|
|
|
|
// Cancel base class
|
|
|
|
|
base.OnCancel();
|
|
|
|
|
|
|
|
|
|
// Return to base mode
|
|
|
|
|
General.Editing.ChangeMode(General.Editing.PreviousStableMode.Name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Mode engages
|
|
|
|
|
public override void OnEngage()
|
|
|
|
|
{
|
|
|
|
|
base.OnEngage();
|
|
|
|
|
renderer.SetPresentation(Presentation.Standard);
|
|
|
|
|
|
2016-10-26 22:33:36 +00:00
|
|
|
|
//mxd
|
|
|
|
|
AddInterface();
|
|
|
|
|
GenerateCurves();
|
2009-04-19 18:07:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Disenagaging
|
|
|
|
|
public override void OnDisengage()
|
|
|
|
|
{
|
|
|
|
|
base.OnDisengage();
|
|
|
|
|
|
2016-11-01 20:44:40 +00:00
|
|
|
|
// Hide toolbox panel
|
2016-10-26 22:33:36 +00:00
|
|
|
|
RemoveInterface();
|
2009-04-19 18:07:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This applies the curves and returns to the base mode
|
|
|
|
|
public override void OnAccept()
|
|
|
|
|
{
|
|
|
|
|
// Create undo
|
2016-10-26 22:33:36 +00:00
|
|
|
|
string rest = (selectedlines.Count == 1 ? "a linedef" : selectedlines.Count + " linedefs"); //mxd
|
|
|
|
|
General.Map.UndoRedo.CreateUndo("Curve " + rest);
|
2016-11-01 20:44:40 +00:00
|
|
|
|
|
|
|
|
|
//mxd
|
|
|
|
|
General.Map.Map.ClearAllMarks(false);
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
|
|
// Go for all selected lines
|
|
|
|
|
foreach(Linedef ld in selectedlines)
|
|
|
|
|
{
|
2016-11-01 20:44:40 +00:00
|
|
|
|
if(curves[ld].Count < 1) continue;
|
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
|
// Make curve for line
|
2016-11-01 20:44:40 +00:00
|
|
|
|
Linedef splitline = ld;
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
2016-11-01 20:44:40 +00:00
|
|
|
|
//mxd. Mark all changed geometry...
|
|
|
|
|
splitline.Marked = true;
|
|
|
|
|
splitline.Start.Marked = true;
|
|
|
|
|
splitline.End.Marked = true;
|
|
|
|
|
|
|
|
|
|
// Go for all points to split the line
|
|
|
|
|
foreach(Vector2D p in curves[ld])
|
|
|
|
|
{
|
|
|
|
|
// Make vertex
|
|
|
|
|
Vertex v = General.Map.Map.CreateVertex(p);
|
|
|
|
|
if(v == null)
|
2009-04-19 18:07:22 +00:00
|
|
|
|
{
|
2016-11-01 20:44:40 +00:00
|
|
|
|
General.Map.UndoRedo.WithdrawUndo();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2010-08-15 19:43:00 +00:00
|
|
|
|
|
2016-11-01 20:44:40 +00:00
|
|
|
|
// Split the line and move on with this line
|
|
|
|
|
splitline = splitline.Split(v);
|
|
|
|
|
if(splitline == null)
|
|
|
|
|
{
|
|
|
|
|
General.Map.UndoRedo.WithdrawUndo();
|
|
|
|
|
return;
|
2009-04-19 18:07:22 +00:00
|
|
|
|
}
|
2016-11-01 20:44:40 +00:00
|
|
|
|
|
|
|
|
|
//mxd. Mark all changed geometry...
|
|
|
|
|
splitline.Marked = true;
|
|
|
|
|
splitline.Start.Marked = true;
|
|
|
|
|
splitline.End.Marked = true;
|
2009-04-19 18:07:22 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-01 20:44:40 +00:00
|
|
|
|
//mxd
|
|
|
|
|
General.Map.Map.Update();
|
|
|
|
|
|
|
|
|
|
//mxd. Stitch geometry
|
|
|
|
|
General.Map.Map.StitchGeometry(General.Settings.MergeGeometryMode);
|
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
|
// Snap to map format accuracy
|
|
|
|
|
General.Map.Map.SnapAllToAccuracy();
|
|
|
|
|
|
|
|
|
|
// Update caches
|
|
|
|
|
General.Map.Map.Update();
|
|
|
|
|
General.Map.IsChanged = true;
|
|
|
|
|
|
|
|
|
|
// Return to base mode
|
|
|
|
|
General.Editing.ChangeMode(General.Editing.PreviousStableMode.Name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Redrawing display
|
|
|
|
|
public override void OnRedrawDisplay()
|
|
|
|
|
{
|
|
|
|
|
renderer.RedrawSurface();
|
|
|
|
|
|
|
|
|
|
// Render lines
|
|
|
|
|
if(renderer.StartPlotter(true))
|
|
|
|
|
{
|
|
|
|
|
renderer.PlotLinedefSet(unselectedlines);
|
|
|
|
|
renderer.PlotVerticesSet(General.Map.Map.Vertices);
|
|
|
|
|
renderer.Finish();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Render things
|
|
|
|
|
if(renderer.StartThings(true))
|
|
|
|
|
{
|
2016-04-01 10:49:19 +00:00
|
|
|
|
renderer.RenderThingSet(General.Map.Map.Things, General.Settings.ActiveThingsAlpha);
|
2009-04-19 18:07:22 +00:00
|
|
|
|
renderer.Finish();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Render overlay
|
|
|
|
|
if(renderer.StartOverlay(true))
|
|
|
|
|
{
|
|
|
|
|
// Go for all selected lines
|
2016-10-26 22:33:36 +00:00
|
|
|
|
float vsize = (renderer.VertexSize + 1.0f) / renderer.Scale; //mxd
|
2009-04-19 18:07:22 +00:00
|
|
|
|
foreach(Linedef ld in selectedlines)
|
|
|
|
|
{
|
|
|
|
|
// Make curve for line
|
2016-10-26 22:33:36 +00:00
|
|
|
|
List<Vector2D> points = curves[ld];
|
2009-04-19 18:07:22 +00:00
|
|
|
|
if(points.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
Vector2D p1 = ld.Start.Position;
|
|
|
|
|
Vector2D p2 = points[0];
|
|
|
|
|
for(int i = 1; i <= points.Count; i++)
|
|
|
|
|
{
|
|
|
|
|
// Draw the line
|
|
|
|
|
renderer.RenderLine(p1, p2, LINE_THICKNESS, General.Colors.Highlight, true);
|
|
|
|
|
|
|
|
|
|
// Next points
|
|
|
|
|
p1 = p2;
|
|
|
|
|
if(i < points.Count) p2 = points[i];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Draw last line
|
|
|
|
|
renderer.RenderLine(p2, ld.End.Position, LINE_THICKNESS, General.Colors.Highlight, true);
|
2016-10-26 22:33:36 +00:00
|
|
|
|
|
|
|
|
|
//mxd. Draw verts
|
|
|
|
|
foreach(Vector2D p in points)
|
2020-05-21 12:20:02 +00:00
|
|
|
|
renderer.RenderRectangleFilled(new RectangleF((float)(p.x - vsize), (float)(p.y - vsize), vsize * 2.0f, vsize * 2.0f), General.Colors.Selection, true);
|
2009-04-19 18:07:22 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-01 20:44:40 +00:00
|
|
|
|
|
|
|
|
|
//mxd. Render hint
|
|
|
|
|
renderer.RenderText(hintlabel);
|
|
|
|
|
|
2009-04-19 18:07:22 +00:00
|
|
|
|
renderer.Finish();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
renderer.Present();
|
|
|
|
|
}
|
2016-10-26 22:33:36 +00:00
|
|
|
|
|
|
|
|
|
//mxd
|
|
|
|
|
public override void OnMouseDown(MouseEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnMouseDown(e);
|
|
|
|
|
closestline = MapSet.NearestLinedef(selectedlines, mousedownmappos);
|
|
|
|
|
|
2016-11-01 20:44:40 +00:00
|
|
|
|
// Special cases...
|
|
|
|
|
int distance;
|
|
|
|
|
if(panel.FixedCurve)
|
|
|
|
|
{
|
|
|
|
|
if(panel.Angle > 0)
|
|
|
|
|
{
|
|
|
|
|
// Calculate diameter for current angle...
|
2020-05-21 12:20:02 +00:00
|
|
|
|
double ma = Angle2D.DegToRad(panel.Angle);
|
|
|
|
|
double d = (closestline.Length / Math.Tan(ma / 2f)) / 2;
|
|
|
|
|
double D = d / Math.Cos(ma / 2f);
|
2016-11-01 20:44:40 +00:00
|
|
|
|
distance = (int)Math.Round(D - d) * Math.Sign(panel.Distance);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
distance = 0; // Special cases...
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
distance = panel.Distance;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-26 22:33:36 +00:00
|
|
|
|
// Store offset between intial mouse position and curve top
|
|
|
|
|
Vector2D perpendicular = closestline.Line.GetPerpendicular().GetNormal();
|
2016-11-01 20:44:40 +00:00
|
|
|
|
if(distance != 0) perpendicular *= distance; // Special cases...
|
2016-10-26 22:33:36 +00:00
|
|
|
|
Vector2D curvetop = closestline.GetCenterPoint() - perpendicular;
|
|
|
|
|
mousedownoffset = mousedownmappos - curvetop;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//mxd
|
|
|
|
|
public override void OnMouseUp(MouseEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnMouseUp(e);
|
|
|
|
|
closestline = null;
|
|
|
|
|
prevoffset = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//mxd
|
|
|
|
|
public override void OnMouseMove(MouseEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
base.OnMouseMove(e);
|
|
|
|
|
|
|
|
|
|
// Anything to do?
|
2016-11-01 20:44:40 +00:00
|
|
|
|
if((!selectpressed && !editpressed) || closestline == null)
|
|
|
|
|
{
|
|
|
|
|
hintlabel.Text = string.Empty;
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-10-26 22:33:36 +00:00
|
|
|
|
|
|
|
|
|
// Do something...
|
|
|
|
|
Vector2D perpendicular = closestline.Line.GetPerpendicular().GetNormal();
|
|
|
|
|
if(panel.Distance != 0) perpendicular *= panel.Distance; // Special cases...
|
|
|
|
|
Vector2D center = closestline.GetCenterPoint();
|
|
|
|
|
Line2D radius = new Line2D(center, center - perpendicular);
|
2020-05-21 12:20:02 +00:00
|
|
|
|
double u = radius.GetNearestOnLine(mousemappos - mousedownoffset);
|
2016-10-26 22:33:36 +00:00
|
|
|
|
int dist = (panel.Distance == 0 ? 1 : panel.Distance); // Special cases...
|
|
|
|
|
int offset = (int)Math.Round(dist * u - dist);
|
2016-11-01 20:44:40 +00:00
|
|
|
|
bool updaterequired = false;
|
|
|
|
|
|
|
|
|
|
// Clamp values?
|
|
|
|
|
bool clampvalue = !General.Interface.ShiftState;
|
2016-10-26 22:33:36 +00:00
|
|
|
|
|
2016-11-01 20:44:40 +00:00
|
|
|
|
// Change verts amount
|
|
|
|
|
if(selectpressed && editpressed)
|
|
|
|
|
{
|
|
|
|
|
if(prevoffset != 0)
|
|
|
|
|
{
|
|
|
|
|
// Set new verts count without triggering the update...
|
|
|
|
|
panel.SetValues(panel.Vertices + Math.Sign(prevoffset - offset), panel.Distance, panel.Angle, panel.FixedCurve);
|
|
|
|
|
|
|
|
|
|
// Update hint text
|
|
|
|
|
hintlabel.Text = "Vertices: " + panel.Vertices;
|
|
|
|
|
updaterequired = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-10-26 22:33:36 +00:00
|
|
|
|
// Change distance
|
2016-11-01 20:44:40 +00:00
|
|
|
|
else if(selectpressed && !panel.FixedCurve)
|
2016-10-26 22:33:36 +00:00
|
|
|
|
{
|
2020-05-21 12:20:02 +00:00
|
|
|
|
if(double.IsNaN(u))
|
2016-11-01 20:44:40 +00:00
|
|
|
|
{
|
|
|
|
|
// Set new distance without triggering the update...
|
|
|
|
|
panel.SetValues(panel.Vertices, 0, panel.Angle, panel.FixedCurve); // Special cases...
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int newoffset;
|
|
|
|
|
if(clampvalue)
|
|
|
|
|
newoffset = (panel.Distance + offset) / panel.DistanceIncrement * panel.DistanceIncrement; // Clamp to 8 mu increments
|
|
|
|
|
else
|
|
|
|
|
newoffset = panel.Distance + offset;
|
|
|
|
|
|
|
|
|
|
// Set new distance without triggering the update...
|
|
|
|
|
panel.SetValues(panel.Vertices, newoffset, panel.Angle, panel.FixedCurve);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Update hint text
|
|
|
|
|
hintlabel.Text = "Distance: " + panel.Distance;
|
|
|
|
|
updaterequired = true;
|
2016-10-26 22:33:36 +00:00
|
|
|
|
}
|
|
|
|
|
// Change angle
|
|
|
|
|
else if(editpressed && prevoffset != 0)
|
|
|
|
|
{
|
2016-11-01 20:44:40 +00:00
|
|
|
|
int newangle = 0;
|
|
|
|
|
if(panel.FixedCurve)
|
|
|
|
|
{
|
|
|
|
|
// Flip required?
|
|
|
|
|
if(panel.Angle == 0 && (Math.Sign(offset - prevoffset) != Math.Sign(panel.Distance)))
|
|
|
|
|
{
|
|
|
|
|
// Set new distance without triggering the update...
|
|
|
|
|
panel.SetValues(panel.Vertices, -panel.Distance, panel.Angle, panel.FixedCurve);
|
|
|
|
|
|
|
|
|
|
// Recalculate affected values...
|
|
|
|
|
perpendicular *= -1;
|
|
|
|
|
radius.v2 = center - perpendicular;
|
|
|
|
|
u = radius.GetNearestOnLine(mousemappos - mousedownoffset);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//TODO: there surely is a way to get new angle without iteration...
|
2020-05-21 12:20:02 +00:00
|
|
|
|
double targetoffset = radius.GetLength() * u;
|
|
|
|
|
double prevdiff = double.MaxValue;
|
2016-11-01 20:44:40 +00:00
|
|
|
|
int increment = (clampvalue ? panel.AngleIncrement : 1);
|
|
|
|
|
for(int i = 1; i < panel.MaximumAngle; i += increment)
|
|
|
|
|
{
|
|
|
|
|
// Calculate diameter for current angle...
|
2020-05-21 12:20:02 +00:00
|
|
|
|
double ma = Angle2D.DegToRad(i);
|
|
|
|
|
double d = (closestline.Length / Math.Tan(ma / 2f)) / 2;
|
|
|
|
|
double D = d / Math.Cos(ma / 2f);
|
|
|
|
|
double h = D - d;
|
2016-11-01 20:44:40 +00:00
|
|
|
|
|
2020-05-21 12:20:02 +00:00
|
|
|
|
double curdiff = Math.Abs(h - targetoffset);
|
2016-11-01 20:44:40 +00:00
|
|
|
|
|
|
|
|
|
// This one matches better...
|
|
|
|
|
if(curdiff < prevdiff) newangle = i;
|
|
|
|
|
prevdiff = curdiff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Clamp to 5 deg increments
|
|
|
|
|
if(clampvalue) newangle = (newangle / panel.AngleIncrement) * panel.AngleIncrement;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int diff = (int)Math.Round((offset - prevoffset) * renderer.Scale);
|
|
|
|
|
if(panel.Angle + diff > 0)
|
|
|
|
|
{
|
|
|
|
|
if(clampvalue) newangle = (panel.Angle / panel.AngleIncrement + Math.Sign(diff)) * panel.AngleIncrement; // Clamp to 5 deg increments
|
|
|
|
|
else newangle = panel.Angle + diff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Set new angle without triggering the update...
|
|
|
|
|
panel.SetValues(panel.Vertices, panel.Distance, newangle, panel.FixedCurve);
|
|
|
|
|
|
|
|
|
|
// Update hint text
|
|
|
|
|
hintlabel.Text = "Angle: " + panel.Angle;
|
|
|
|
|
updaterequired = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Update UI
|
|
|
|
|
if(updaterequired)
|
|
|
|
|
{
|
|
|
|
|
// Update label position
|
2020-05-21 12:20:02 +00:00
|
|
|
|
double labeldistance;
|
2016-11-01 20:44:40 +00:00
|
|
|
|
|
|
|
|
|
if(panel.Angle == 0)
|
|
|
|
|
{
|
|
|
|
|
labeldistance = 0; // Special cases!
|
|
|
|
|
}
|
|
|
|
|
else if(panel.FixedCurve)
|
|
|
|
|
{
|
2020-05-21 12:20:02 +00:00
|
|
|
|
double ma = Angle2D.DegToRad(panel.Angle);
|
|
|
|
|
double d = (closestline.Length / Math.Tan(ma / 2f)) / 2;
|
|
|
|
|
double D = d / Math.Cos(ma / 2f);
|
2016-11-01 20:44:40 +00:00
|
|
|
|
labeldistance = D - d;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
labeldistance = Math.Abs(panel.Distance);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
labeldistance += 16 / renderer.Scale;
|
|
|
|
|
Vector2D labelpos = radius.GetCoordinatesAt(labeldistance / radius.GetLength());
|
|
|
|
|
hintlabel.Move(labelpos, labelpos);
|
|
|
|
|
|
|
|
|
|
// Trigger update
|
|
|
|
|
OnValuesChanged(null, EventArgs.Empty);
|
2016-10-26 22:33:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-01 20:44:40 +00:00
|
|
|
|
// Store current offset
|
2016-10-26 22:33:36 +00:00
|
|
|
|
prevoffset = offset;
|
|
|
|
|
}
|
2009-04-19 18:07:22 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
2016-10-26 22:33:36 +00:00
|
|
|
|
|
|
|
|
|
#region ================== Actions (mxd)
|
|
|
|
|
|
|
|
|
|
[BeginAction("increasesubdivlevel")]
|
|
|
|
|
private void IncreaseSubdivLevel() { panel.Vertices += 1; }
|
|
|
|
|
|
|
|
|
|
[BeginAction("decreasesubdivlevel")]
|
|
|
|
|
private void DecreaseSubdivLevel() { panel.Vertices -= 1; }
|
|
|
|
|
|
|
|
|
|
[BeginAction("increasebevel")]
|
|
|
|
|
private void IncreaseBevel() { panel.Distance += panel.DistanceIncrement; }
|
|
|
|
|
|
|
|
|
|
[BeginAction("decreasebevel")]
|
|
|
|
|
private void DecreaseBevel() { panel.Distance -= panel.DistanceIncrement; }
|
|
|
|
|
|
|
|
|
|
[BeginAction("rotateclockwise")]
|
|
|
|
|
private void IncreaseAngle() { panel.Angle += panel.AngleIncrement; }
|
|
|
|
|
|
|
|
|
|
[BeginAction("rotatecounterclockwise")]
|
|
|
|
|
private void DecreaseAngle() { panel.Angle -= panel.AngleIncrement; }
|
|
|
|
|
|
|
|
|
|
#endregion
|
2009-04-19 18:07:22 +00:00
|
|
|
|
}
|
|
|
|
|
}
|