using PaintDotNet.Annotation.Enum;
using PaintDotNet.Annotation.Label;
using PaintDotNet.Base.SettingModel;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Globalization;
using System.Runtime.Serialization;
using System.Windows.Forms;
using static PaintDotNet.Base.SettingModel.LabelStyleModel;
namespace PaintDotNet.Annotation.ImageCollect
{
///
/// 图像拼接->圆
///
public class DrawStitchingCircle : DrawStithchingBase
{
private const string entryRectangle = "Rect";
///
/// 标注样式信息model
///
public CircleModel labelCircleStyleModel;
public DrawStitchingCircle(ISurfaceBox surfaceBox, int x, int y, int width, int height) : base()
{
this.objectType = DrawClass.Stitch;
this.drawToolType = DrawToolType.DrawStitchingCircle;
labelCircleStyleModel = surfaceBox.GetLabelStyleModel().circleModel;
rectangle.X = x;
rectangle.Y = y;
rectangle.Width = width;
rectangle.Height = height;
Initialize();
}
public DrawStitchingCircle(ISurfaceBox surfaceBox, List points, ParentStyleModel parentStyleModel, Object content) : base()
{
this.objectType = DrawClass.Stitch;
this.drawToolType = DrawToolType.DrawStitchingCircle;
this.ISurfaceBox = surfaceBox;
labelCircleStyleModel = (CircleModel)parentStyleModel;
rectangle.X = points[0].X;
rectangle.Y = points[0].Y;
rectangle.Width = points[1].X - points[0].X;
rectangle.Height = points[1].Y - points[0].Y;
}
///
/// Clone this instance
///
public override DrawObject Clone()
{
DrawStitchingCircle drawRectangle = new DrawStitchingCircle(ISurfaceBox, 0, 0, 1, 0);
drawRectangle.objectType = DrawClass.Stitch;
drawRectangle.drawToolType = DrawToolType.DrawStitchingCircle;
drawRectangle.ISurfaceBox = this.ISurfaceBox;
drawRectangle.rectangle = this.rectangle;
FillDrawObjectFields(drawRectangle);
return drawRectangle;
}
public override DrawObject Clone(ISurfaceBox surfaceBox)
{
DrawStitchingCircle drawRectangle = new DrawStitchingCircle(surfaceBox, 0, 0, 1, 0);
drawRectangle.objectType = DrawClass.Stitch;
drawRectangle.drawToolType = DrawToolType.DrawStitchingCircle;
drawRectangle.ISurfaceBox = surfaceBox;
drawRectangle.rectangle = this.rectangle;
drawRectangle.labelCircleStyleModel = this.labelCircleStyleModel;
FillDrawObjectFields(drawRectangle);
return drawRectangle;
}
///
/// Draw rectangle
///
///
public override void Draw(Graphics g)
{
//Color color = Color.FromArgb(this.labelCircleStyleModel.lineColor);
Color color = Color.Gray;
Pen pen = new Pen(color, PenWidth);
int penWidth = 1; //this.labelRectStyleModel.lineWidth;
pen.DashStyle = DashStyle.Solid; // (DashStyle)this.labelRectStyleModel.lineStyle;
pen.Width = penWidth;
float x1 = Rectangle.X;
float y1 = Rectangle.Y;
float x2 = Rectangle.Right;
float y2 = Rectangle.Bottom;
if (x2 < x1)
{
float tmp = x2;
x2 = x1;
x1 = tmp;
}
if (y2 < y1)
{
float tmp = y2;
y2 = y1;
y1 = tmp;
}
float radius = (x2 - x1) < (y2 - y1) ? (x2 - x1) : (y2 - y1);
g.DrawEllipse(pen, new RectangleF(x1, y1, radius, radius));
pen.Color = Color.FromArgb(this.labelCircleStyleModel.lineColor);
float halfW = rectangle.Width / 2;
float halfH = rectangle.Height / 2;
int xNum = CalGridNum(rectangle.Width, ViewWidth);
int yNum = CalGridNum(rectangle.Height, ViewHeight);
if (xNum != tiles[0] || yNum != tiles[1])
{
tiles[0] = xNum;
tiles[1] = yNum;
this.deletedPointId.Clear();
this.zscan.Clear();
for (int j = 0; j < tiles[1]; j++)
{
for (int i = 0; i < tiles[0]; i++)
{
zscan.Add(new ZScanParameter());
}
}
}
PointF centerPoint = new PointF();
centerPoint.X = rectangle.X + halfW;
centerPoint.Y = rectangle.Y + halfH;
PointF startPoint = new PointF();
if (tiles[0] % 2 == 0)
{
startPoint.X = (float)centerPoint.X - ViewWidth * (tiles[0] / 2 - Interval / 2 - (tiles[0] / 2 - 1) * Interval);
}
else
{
int n = (tiles[0] - 1) / 2;
startPoint.X = (float)centerPoint.X - ViewWidth / 2 - n * ViewWidth * (1 - Interval);
}
if (tiles[1] % 2 == 0)
{
startPoint.Y = (float)centerPoint.Y - ViewHeight * (tiles[1] / 2 - Interval / 2 - (tiles[1] / 2 - 1) * Interval);
}
else
{
int n = (tiles[1] - 1) / 2;
startPoint.Y = (float)centerPoint.Y - ViewHeight / 2 - n * ViewHeight * (1 - Interval);
}
rectangleMax = new RectangleF(startPoint, new SizeF(ViewWidth * (tiles[0] - (tiles[0] - 1) * Interval), ViewHeight * (tiles[1] - (tiles[1] - 1) * Interval)));
List tmpList;
_points.Clear();
int index = 0;
for (int j = 0; j < tiles[1]; j++)
{
tmpList = new List();
for (int i = 0; i < tiles[0]; i++)
{
float x = startPoint.X + i * (ViewWidth * (1 - Interval));
float y = startPoint.Y + j * (ViewHeight * (1 - Interval));
tmpList.Add(new PointF(x, y));
}
if (j % 2 == 1)
{
for (int m = tmpList.Count - 1; m >= 0; m--)
{
Dictionary myDictionary = new Dictionary();
myDictionary.Add(0, this.ISurfaceBox.ScalePointToRulerPoint(new PointF(tmpList[m].X, tmpList[m].Y)));
if (!deletedPointId.Contains(index))
{
g.DrawRectangle(pen, tmpList[m].X, tmpList[m].Y, ViewWidth, ViewHeight);
myDictionary.Add(1, 0);
}
else
{
myDictionary.Add(1, 1);
}
_points.Add(myDictionary);
index++;
}
}
else
{
for (int m = 0; m < tmpList.Count; m++)
{
Dictionary myDictionary = new Dictionary();
myDictionary.Add(0, this.ISurfaceBox.ScalePointToRulerPoint(new PointF(tmpList[m].X, tmpList[m].Y)));
if (!deletedPointId.Contains(index))
{
g.DrawRectangle(pen, tmpList[m].X, tmpList[m].Y, ViewWidth, ViewHeight);
myDictionary.Add(1, 0);
}
else
{
myDictionary.Add(1, 1);
}
_points.Add(myDictionary);
index++;
}
}
}
pen.Dispose();
}
private int CalGridNum(float width, int side)
{
for (int i = 0; i <= 10000; i++)
{
if ((i - (i + 1) * Interval) * side > width)
{
return i;
}
}
return 0;
}
protected void SetRectangle(float x, float y, float width, float height, int handleNumber)
{
this.rectangle.X = x;
this.rectangle.Y = y;
if (handleNumber == 2 || handleNumber == 6)
{
this.rectangle.Width = height;
this.rectangle.Height = height;
}
else
{
this.rectangle.Width = width;
this.rectangle.Height = width;
}
}
public override Rectangle GetHandleRectangle(int handleNumber)
{
if (lockType != LockType.NULL)
{
return new Rectangle();
}
PointF point = GetHandle(handleNumber);
return new Rectangle((int)(point.X - 100), (int)(point.Y - 100), 201, 201);
}
///
/// Get number of handles
///
public override int HandleCount
{
get
{
return 8;
}
}
///
/// Get handle pointscroll by 1-based number
///
///
///
public override PointF GetHandle(int handleNumber)
{
float x, y, xCenter, yCenter;
xCenter = rectangle.X + rectangle.Width / 2;
yCenter = rectangle.Y + rectangle.Height / 2;
x = rectangle.X;
y = rectangle.Y;
switch (handleNumber)
{
case 1:
x = rectangle.X;
y = rectangle.Y;
break;
case 2:
x = xCenter;
y = rectangle.Y;
break;
case 3:
x = rectangle.Right;
y = rectangle.Y;
break;
case 4:
x = rectangle.Right;
y = yCenter;
break;
case 5:
x = rectangle.Right;
y = rectangle.Bottom;
break;
case 6:
x = xCenter;
y = rectangle.Bottom;
break;
case 7:
x = rectangle.X;
y = rectangle.Bottom;
break;
case 8:
x = rectangle.X;
y = yCenter;
break;
}
return new PointF(x, y);
}
///
/// Hit test.
/// Return value: -1 - no hit
/// 0 - hit anywhere
/// > 1 - handle number
///
///
///
public override int HitTest(Point point)
{
if (Selected)
{
for (int i = 1; i <= HandleCount; i++)
{
if (GetHandleRectangle(i).Contains(point))
return i;
}
}
if (PointInObject(point))
return 0;
return -1;
}
protected override bool PointInObject(Point point)
{
return rectangle.Contains(point);
}
///
/// Get cursor for the handle
///
///
///
public override Cursor GetHandleCursor(int handleNumber)
{
switch (handleNumber)
{
case 1:
return Cursors.SizeNWSE;
case 2:
return Cursors.SizeNS;
case 3:
return Cursors.SizeNESW;
case 4:
return Cursors.SizeWE;
case 5:
return Cursors.SizeNWSE;
case 6:
return Cursors.SizeNS;
case 7:
return Cursors.SizeNESW;
case 8:
return Cursors.SizeWE;
default:
return Cursors.Default;
}
}
///
/// Move handle to new pointscroll (resizing)
///
///
///
public override void MoveHandleTo(Point point, int handleNumber)
{
float left = Rectangle.Left;
float top = Rectangle.Top;
float right = Rectangle.Right;
float bottom = Rectangle.Bottom;
switch (handleNumber)
{
case 1:
left = point.X;
top = point.Y;
break;
case 2:
top = point.Y;
break;
case 3:
right = point.X;
top = point.Y;
break;
case 4:
right = point.X;
break;
case 5:
right = point.X;
bottom = point.Y;
break;
case 6:
bottom = point.Y;
break;
case 7:
left = point.X;
bottom = point.Y;
break;
case 8:
left = point.X;
break;
}
SetRectangle(left, top, right - left, bottom - top, handleNumber);
}
public override bool IntersectsWith(Rectangle rectangle)
{
return Rectangle.IntersectsWith(rectangle);
}
///
/// Move object
///
///
///
public override void Move(int deltaX, int deltaY)
{
int x = ISurfaceBox.UnscaleScalar(deltaX);
int y = ISurfaceBox.UnscaleScalar(deltaY);
rectangle.X += x;
rectangle.Y += y;
}
public override void Dump()
{
base.Dump();
Trace.WriteLine("rectangle.X = " + rectangle.X.ToString(CultureInfo.InvariantCulture));
Trace.WriteLine("rectangle.Y = " + rectangle.Y.ToString(CultureInfo.InvariantCulture));
Trace.WriteLine("rectangle.Width = " + rectangle.Width.ToString(CultureInfo.InvariantCulture));
Trace.WriteLine("rectangle.Height = " + rectangle.Height.ToString(CultureInfo.InvariantCulture));
}
///
/// Save objevt to serialization stream
///
///
///
public override void SaveToStream(System.Runtime.Serialization.SerializationInfo info, int orderNumber)
{
info.AddValue(
String.Format(CultureInfo.InvariantCulture,
"{0}{1}",
entryRectangle, orderNumber),
rectangle);
base.SaveToStream(info, orderNumber);
}
///
/// LOad object from serialization stream
///
///
///
public override void LoadFromStream(SerializationInfo info, int orderNumber)
{
rectangle = (Rectangle)info.GetValue(
String.Format(CultureInfo.InvariantCulture,
"{0}{1}",
entryRectangle, orderNumber),
typeof(Rectangle));
base.LoadFromStream(info, orderNumber);
}
#region Helper Functions
public static Rectangle GetNormalizedRectangle(int x1, int y1, int x2, int y2)
{
if (x2 < x1)
{
int tmp = x2;
x2 = x1;
x1 = tmp;
}
if (y2 < y1)
{
int tmp = y2;
y2 = y1;
y1 = tmp;
}
return new Rectangle(x1, y1, x2 - x1, y2 - y1);
}
public static Rectangle GetNormalizedRectangle(Point p1, Point p2)
{
return GetNormalizedRectangle(p1.X, p1.Y, p2.X, p2.Y);
}
public static Rectangle GetNormalizedRectangle(Rectangle r)
{
return GetNormalizedRectangle(r.X, r.Y, r.X + r.Width, r.Y + r.Height);
}
#endregion
public override RectangleF GetBoundingBox()
{
return rectangle;
}
public override List GetPoints()
{
List points = new List();
points.Add(new PointF(rectangle.X, rectangle.Y));
points.Add(new PointF(rectangle.Right, rectangle.Bottom));
return points;
}
public override ParentStyleModel GetStyle()
{
return labelCircleStyleModel;
}
}
}