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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
using System;
 
namespace SHARP_CLAS_UI
{
    public enum En_AOI_CW
    {
        CW_0,
        CW_90,
        CW_180,
    }
 
    public class Tray_Info_Recipe
    {
        #region Property
        public string Name { get; set; }
        public DateTime Create_Time { get; set; }
        public bool Ld_Reverse { get; set; }
        public bool Uld_Reverse { get; set; }
        public En_AOI_CW Pre_Align_CW { get; set; }
        public En_AOI_CW AOI_Before_CW { get; set; }
        public En_AOI_CW AOI_After_CW { get; set; }
 
 
        public int LD_Tray_Empty_Tray_Count { get; set; }
        public double LD_Tray_Empty_Tray_Pitch { get; set; }
 
        public int LD_Tray_In_Tray_Count { get; set; }
        public double LD_Tray_In_Tray_Pitch { get; set; }
        public int LD_Tray_In_Row { get; set; }
        
        public Tray_Row_Info[] LD_Tray_In_Row_Data { get; set; }
        public double LD_Tray_In_Cell_Pitch_X { get; set; }
        public double LD_Tray_In_Cell_Pitch_Y { get; set; }
        public double LD_Tray_In_BCR_X { get; set; }
        public double LD_Tray_In_BCR_Y { get; set; }
 
        public int ULD_Tray_Empty_Tray_Count { get; set; }
        public double ULD_Tray_Empty_Tray_Pitch { get; set; }
 
        public int ULD_Tray_Ok_Tray_Count { get; set; }
        public double ULD_Tray_Ok_Tray_Pitch { get; set; }
        public int ULD_Tray_Ok_Row { get; set; }
 
        public Tray_Row_Info[] ULD_Tray_Ok_Row_Data { get; set; }
        public double ULD_Tray_Ok_Cell_Pitch_X { get; set; }
        public double ULD_Tray_Ok_Cell_Pitch_Y { get; set; }
        public double ULD_Tray_Ok_BCR_X { get; set; }
        public double ULD_Tray_Ok_BCR_Y { get; set; }
 
        public int ULD_Tray_Ng_Tray_Count { get; set; }
        public double ULD_Tray_Ng_Tray_Pitch { get; set; }
        public int ULD_Tray_Ng_Row { get; set; }
 
        public Tray_Row_Info[] ULD_Tray_Ng_Row_Data { get; set; }
        public double ULD_Tray_Ng_Cell_Pitch_X { get; set; }
        public double ULD_Tray_Ng_Cell_Pitch_Y { get; set; }
        public double ULD_Tray_Ng_BCR_X { get; set; }
        public double ULD_Tray_Ng_BCR_Y { get; set; }
 
        public string Tray_Compare_ID { get; set; }
        #endregion
 
        #region Construct
        public Tray_Info_Recipe()
        {
            Name = string.Empty;
            Create_Time = DateTime.Now;
            Ld_Reverse = false;
            Uld_Reverse = false;
            Pre_Align_CW = En_AOI_CW.CW_0;
            AOI_Before_CW = En_AOI_CW.CW_0;
            AOI_After_CW = En_AOI_CW.CW_0;
 
            LD_Tray_Empty_Tray_Count = 0;
            LD_Tray_Empty_Tray_Pitch = 0;
 
            LD_Tray_In_Tray_Count = 0;
            LD_Tray_In_Tray_Pitch = 0;
            LD_Tray_In_Row = 0;
            LD_Tray_In_Row_Data = new Tray_Row_Info[0];
            LD_Tray_In_Cell_Pitch_X = 0;
            LD_Tray_In_Cell_Pitch_Y = 0;
            LD_Tray_In_BCR_X = 0;
            LD_Tray_In_BCR_Y = 0;
 
            ULD_Tray_Empty_Tray_Count = 0;
            ULD_Tray_Empty_Tray_Pitch = 0;
 
            ULD_Tray_Ok_Tray_Count = 0;
            ULD_Tray_Ok_Tray_Pitch = 0;
            ULD_Tray_Ok_Row = 0;
            ULD_Tray_Ok_Row_Data = new Tray_Row_Info[0];
            ULD_Tray_Ok_Cell_Pitch_X = 0;
            ULD_Tray_Ok_Cell_Pitch_Y = 0;
            ULD_Tray_Ok_BCR_X = 0;
            ULD_Tray_Ok_BCR_Y = 0;
 
            ULD_Tray_Ng_Tray_Count = 0;
            ULD_Tray_Ng_Tray_Pitch = 0;
            ULD_Tray_Ng_Row = 0;
            ULD_Tray_Ng_Row_Data = new Tray_Row_Info[0];
            ULD_Tray_Ng_Cell_Pitch_X = 0;
            ULD_Tray_Ng_Cell_Pitch_Y = 0;
            ULD_Tray_Ng_BCR_X = 0;
            ULD_Tray_Ng_BCR_Y = 0;
 
            Tray_Compare_ID = string.Empty;
        }
        #endregion
 
        #region Function
        public Tray_Info_Recipe Clone()
        {
            Tray_Info_Recipe info = new Tray_Info_Recipe();
 
            info.Name = this.Name;
            info.Create_Time = this.Create_Time;
            info.Ld_Reverse = this.Ld_Reverse;
            info.Uld_Reverse = this.Uld_Reverse;
            info.Pre_Align_CW = this.Pre_Align_CW;
            info.AOI_Before_CW = this.AOI_Before_CW;
            info.AOI_After_CW = this.AOI_After_CW;
 
            info.LD_Tray_Empty_Tray_Count = this.LD_Tray_Empty_Tray_Count;
            info.LD_Tray_Empty_Tray_Pitch = this.LD_Tray_Empty_Tray_Pitch;
            info.LD_Tray_In_Tray_Count = this.LD_Tray_In_Tray_Count;
            info.LD_Tray_In_Tray_Pitch = this.LD_Tray_In_Tray_Pitch;
            info.Set_LD_Tray_In_Row(LD_Tray_In_Row);
 
            for(int i = 0; i < LD_Tray_In_Row; i++)
            {
                info.LD_Tray_In_Row_Data[i] = this.LD_Tray_In_Row_Data[i].Clone();
            }
 
            info.LD_Tray_In_Cell_Pitch_X = this.LD_Tray_In_Cell_Pitch_X;
            info.LD_Tray_In_Cell_Pitch_Y = this.LD_Tray_In_Cell_Pitch_Y;
            info.LD_Tray_In_BCR_X = this.LD_Tray_In_BCR_X;
            info.LD_Tray_In_BCR_Y = this.LD_Tray_In_BCR_Y;
            info.ULD_Tray_Empty_Tray_Count = this.ULD_Tray_Empty_Tray_Count;
            info.ULD_Tray_Empty_Tray_Pitch = this.ULD_Tray_Empty_Tray_Pitch;
            info.ULD_Tray_Ok_Tray_Count = this.ULD_Tray_Ok_Tray_Count;
            info.ULD_Tray_Ok_Tray_Pitch = this.ULD_Tray_Ok_Tray_Pitch;
            info.Set_ULD_Tray_Ok_Row(this.ULD_Tray_Ok_Row);
 
            for (int i = 0; i < ULD_Tray_Ok_Row; i++)
            {
                info.ULD_Tray_Ok_Row_Data[i] = this.ULD_Tray_Ok_Row_Data[i].Clone();
            }
 
            info.ULD_Tray_Ok_Cell_Pitch_X = this.ULD_Tray_Ok_Cell_Pitch_X;
            info.ULD_Tray_Ok_Cell_Pitch_Y = this.ULD_Tray_Ok_Cell_Pitch_Y;
            info.ULD_Tray_Ok_BCR_X = this.ULD_Tray_Ok_BCR_X;
            info.ULD_Tray_Ok_BCR_Y = this.ULD_Tray_Ok_BCR_Y;
            info.ULD_Tray_Ng_Tray_Count = this.ULD_Tray_Ng_Tray_Count;
            info.ULD_Tray_Ng_Tray_Pitch = this.ULD_Tray_Ng_Tray_Pitch;
            info.Set_ULD_Tray_Ng_Row(this.ULD_Tray_Ng_Row);
 
            for (int i = 0; i < ULD_Tray_Ng_Row; i++)
            {
                info.ULD_Tray_Ng_Row_Data[i] = this.ULD_Tray_Ng_Row_Data[i].Clone();
            }
 
            info.ULD_Tray_Ng_Cell_Pitch_X = this.ULD_Tray_Ng_Cell_Pitch_X;
            info.ULD_Tray_Ng_Cell_Pitch_Y = this.ULD_Tray_Ng_Cell_Pitch_Y;
            info.ULD_Tray_Ng_BCR_X = this.ULD_Tray_Ng_BCR_X;
            info.ULD_Tray_Ng_BCR_Y = this.ULD_Tray_Ng_BCR_Y;
 
            info.Tray_Compare_ID = this.Tray_Compare_ID;
            return info;
        }
 
        public void Set_LD_Tray_In_Row(int row)
        {
            if (row < 0) return;
 
            LD_Tray_In_Row = row;
 
            if (LD_Tray_In_Row >= 0)
            {
                if (LD_Tray_In_Row_Data != null && LD_Tray_In_Row_Data.Length > 0)
                {
                    Tray_Row_Info[] data = new Tray_Row_Info[LD_Tray_In_Row];
 
                    int length = data.Length > LD_Tray_In_Row_Data.Length ? LD_Tray_In_Row_Data.Length : data.Length;
                    Array.Copy(LD_Tray_In_Row_Data, data, length);
 
                    LD_Tray_In_Row_Data = new Tray_Row_Info[LD_Tray_In_Row];
 
                    for (int i = 0; i < LD_Tray_In_Row_Data.Length; i++)
                    {
                        LD_Tray_In_Row_Data[i] = new Tray_Row_Info();
                        LD_Tray_In_Row_Data[i].Row = i + 1;
 
                        if (i < data.Length && data[i] != null)
                        {
                            LD_Tray_In_Row_Data[i] = data[i].Clone();
                        }
                    }
                }
                else
                {
                    LD_Tray_In_Row_Data = new Tray_Row_Info[LD_Tray_In_Row];
 
                    for (int i = 0; i < LD_Tray_In_Row_Data.Length; i++)
                    {
                        LD_Tray_In_Row_Data[i] = new Tray_Row_Info();
                        LD_Tray_In_Row_Data[i].Row = i + 1;
                    }
                }
            }
        }
        
        public void Set_ULD_Tray_Ok_Row(int row)
        {
            if (row < 0) return;
 
            ULD_Tray_Ok_Row = row;
 
            if (ULD_Tray_Ok_Row >= 0)
            {
                if (ULD_Tray_Ok_Row_Data != null && ULD_Tray_Ok_Row_Data.Length > 0)
                {
                    Tray_Row_Info[] data = new Tray_Row_Info[ULD_Tray_Ok_Row];
 
                    int length = data.Length > ULD_Tray_Ok_Row_Data.Length ? ULD_Tray_Ok_Row_Data.Length : data.Length;
                    Array.Copy(ULD_Tray_Ok_Row_Data, data, length);
 
                    ULD_Tray_Ok_Row_Data = new Tray_Row_Info[ULD_Tray_Ok_Row];
 
                    for (int i = 0; i < ULD_Tray_Ok_Row_Data.Length; i++)
                    {
                        ULD_Tray_Ok_Row_Data[i] = new Tray_Row_Info();
                        ULD_Tray_Ok_Row_Data[i].Row = i + 1;
 
                        if (i < data.Length)
                        {
                            ULD_Tray_Ok_Row_Data[i] = data[i].Clone();
                        }
                    }
                }
                else
                {
                    ULD_Tray_Ok_Row_Data = new Tray_Row_Info[ULD_Tray_Ok_Row];
 
                    for (int i = 0; i < ULD_Tray_Ok_Row_Data.Length; i++)
                    {
                        ULD_Tray_Ok_Row_Data[i] = new Tray_Row_Info();
                        ULD_Tray_Ok_Row_Data[i].Row = i + 1;
                    }
                }
            }
        }
 
        public void Set_ULD_Tray_Ng_Row(int row)
        {
            if (row < 0) return;
 
            ULD_Tray_Ng_Row = row;
 
            if (ULD_Tray_Ng_Row >= 0)
            {
                if (ULD_Tray_Ng_Row_Data != null && ULD_Tray_Ng_Row_Data.Length > 0)
                {
                    Tray_Row_Info[] data = new Tray_Row_Info[ULD_Tray_Ng_Row];
 
                    int length = data.Length > ULD_Tray_Ng_Row_Data.Length ? ULD_Tray_Ng_Row_Data.Length : data.Length;
                    Array.Copy(ULD_Tray_Ng_Row_Data, data, length);
 
                    ULD_Tray_Ng_Row_Data = new Tray_Row_Info[ULD_Tray_Ng_Row];
 
                    for (int i = 0; i < ULD_Tray_Ng_Row_Data.Length; i++)
                    {
                        ULD_Tray_Ng_Row_Data[i] = new Tray_Row_Info();
                        ULD_Tray_Ng_Row_Data[i].Row = i + 1;
 
                        if (i < data.Length)
                        {
                            ULD_Tray_Ng_Row_Data[i] = data[i].Clone();
                        }
                    }
                }
                else
                {
                    ULD_Tray_Ng_Row_Data = new Tray_Row_Info[ULD_Tray_Ng_Row];
 
                    for (int i = 0; i < ULD_Tray_Ng_Row_Data.Length; i++)
                    {
                        ULD_Tray_Ng_Row_Data[i] = new Tray_Row_Info();
                        ULD_Tray_Ng_Row_Data[i].Row = i + 1;
                    }
                }
            }
        }
        #endregion
    }
}