-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjectData.cs
121 lines (108 loc) · 3.63 KB
/
ProjectData.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
using System.Drawing.Imaging;
public class ProjectData
{
private int _canwasWidth = 512;
private int _canwasHeight = 512;
public Figure figure;
public double canvasFloatWidth { get; private set; } = 1.0;
public double canvasFloatHeight { get; private set; } = 1.0;
public Image? image;
public bool haveImage = false;
public int imageWidth;
public int imageHeight;
public double imageFloatWidth;
public double imageFloatHeight;
public double imageScale;
public double imageOffsetX;
public double imageOffsetY;
//public double
private ColorMatrix colorMatrix;
public ImageAttributes imageAttributes;
public int canvasWidth
{
get { return _canwasWidth; }
set { _canwasWidth = value; (canvasFloatWidth, canvasFloatHeight) = updateAR(_canwasWidth, _canwasHeight); }
}
public int canvasHeight
{
get { return _canwasHeight; }
set { _canwasHeight = value; (canvasFloatWidth, canvasFloatHeight) = updateAR(_canwasWidth, _canwasHeight); }
}
public ProjectData()
{
figure = new Figure();
figure.ResetPose();
colorMatrix = new ColorMatrix();
colorMatrix.Matrix33 = 0.5f;
imageAttributes = new ImageAttributes();
imageAttributes.SetColorMatrix(
colorMatrix,
ColorMatrixFlag.Default,
ColorAdjustType.Bitmap
);
}
private (double, double) updateAR(int width, int height)
{
if (width > height)
{
return ((double)width / (double)height, 1.0);
}
if (width < height)
{
return (1.0, (double)height / (double)width);
}
return (1.0, 1.0);
}
public void LoadImage(string filename)
{
image = Image.FromFile(filename);
imageWidth = image.Width;
imageHeight = image.Height;
(imageFloatWidth, imageFloatHeight) = updateAR(imageWidth, imageHeight);
imageOffsetX = 0.0;
imageOffsetY = 0.0;
imageScale = 1.0;
//MessageBox.Show($"w: {imageWidth}, h:{imageHeight}, fw:{imageFloatWidth}, fh:{imageFloatHeight}");
haveImage = true;
}
public void SaveProject(string filename)
{
using (BinaryWriter file = new BinaryWriter(new FileStream(filename, FileMode.Create)))
{
file.Write((byte)1); // version
file.Write(canvasWidth); // canvas size
file.Write(canvasHeight);
file.Write((byte)1); // figure count
file.Write(false); // have image
foreach (FigurePoint point in figure.points) // figure data
{
file.Write(point.enabled);
file.Write(point.x);
file.Write(point.y);
}
//TODO: image data
}
}
public void LoadProject(string filename)
{
using (BinaryReader file = new BinaryReader(new FileStream(filename, FileMode.Open)))
{
int version = file.ReadByte();
if (version != 1)
{
MessageBox.Show("Wrong file format.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
canvasWidth = file.ReadInt32();
canvasHeight = file.ReadInt32();
int figureCount = file.ReadByte();
bool hasImage = file.ReadBoolean();
for (int i = 0; i < figure.points.Length; i++)
{
figure.points[i].enabled = file.ReadBoolean();
figure.points[i].x = file.ReadDouble();
figure.points[i].y = file.ReadDouble();
}
}
}
}