aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Modules/Tango.FSE.Statistics/Models/StopModel.cs
blob: 3b3fad3f0302c942285e533ebc7cdb54c3a38d45 (plain)
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media;
using Tango.BL.DTO;
using Tango.BL.Entities;
using Tango.BL.Enumerations;
using Tango.BL.FineTuning;
using Tango.ColorConversion;
using Tango.Core.Commands;
using Tango.PPC.Shared.Statistics;

namespace Tango.FSE.Statistics.Models
{
    public class StopModel : PresentationBrushStop
    {
        public int Index { get; set; }
        public JobRunDTO JobRun { get; set; }
        public PresentationJob Job { get; set; }
        public PresentationSegment Segment { get; set; }
        public int JobIndex { get; set; }
        public int SegmentIndex { get; set; }
        public String ThreadName { get; set; }
        public RelayCommand<StopModel> ShowFailedMessageCommand { get; set; }
        public RelayCommand<StopModel> ShowExtendedInfoCommand { get; set; }
        public RelayCommand<StopModel> CopyCommand { get; set; }
        public JobRunExtendedInfo ExtendedInfo { get; set; }
        public bool IsAdvancedMode { get; set; }
        public VectorFineTuningRunModel FineTuningModel { get; set; }
        public MachineTypes MachineType { get; set; }

        public bool IsFineTuning
        {
            get { return FineTuningModel != null; }
        }

        public bool IsManualFineTuning
        {
            get { return IsFineTuning && FineTuningModel.Type == FineTuningTypes.ManualFineTuning; }
        }

        public bool IsFineTuningApproved { get; set; }

        public bool IsFineTuningSelected { get; set; }

        public String Input
        {
            get
            {
                switch (ColorSpace)
                {
                    case ColorSpaces.RGB:
                        return $"{Red}, {Green}, {Blue}";
                    case ColorSpaces.LAB:
                        return $"{Math.Round(L, 2)}, {Math.Round(A, 2)}, {Math.Round(B, 2)}";
                    case ColorSpaces.Catalog:
                        return $"{Catalog} => {CatalogItem}";
                    case ColorSpaces.Volume:
                        return String.Join("\n", GetVolumeInputs().Where(x => x.Volume > 0).Select(x => x.LiquidType.Name + ": " + Math.Round(x.Volume, 2)));
                }

                return "Unspecified";
            }
        }

        public String OutputString
        {
            get
            {
                return String.Join("\n", Output.Where(x => x != null && x.Volume > 0).Select(x => x.LiquidType.Name + ": " + Math.Round(x.Volume, 2)));
            }
        }

        public List<PresentationLiquidVolume> InputVolumes
        {
            get
            {
                return GetVolumeInputs().Where(x => x.Volume > 0).ToList();
            }
        }

        public List<PresentationLiquidVolume> Output
        {
            get
            {
                var output = new List<PresentationLiquidVolume>();
                output.AddRange(LiquidVolumes.Where(x => x.Volume > 0).OrderBy(x => x.LiquidType.PreferredIndex));
                //output.Add(LiquidVolumes.FirstOrDefault(x => x.LiquidType.Type == LiquidTypes.Transparent));
                return output;
            }
        }

        public TimeSpan Duration
        {
            get
            {
                return JobRun.EndDate - JobRun.StartDate;
            }
        }

        public List<LiquidQuantityModel> LiquidQuantities
        {
            get
            {
                var quantities = new List<LiquidQuantityModel>();

                foreach (var liquidVolume in LiquidVolumes)
                {
                    LiquidQuantityModel model = new LiquidQuantityModel();
                    model.LiquidType = liquidVolume.LiquidType;
                    model.Quantity = (double)typeof(JobRun).GetProperty(model.LiquidType.Name.Replace(" ", "") + "Quantity").GetValue(JobRun);
                    quantities.Add(model);
                }

                return quantities;
            }
        }

        public Color BestMatchColor
        {
            get
            {
                return BestMatchR == 0 && BestMatchG == 0 && BestMatchB == 0 ? Colors.Transparent : Color.FromRgb((byte)BestMatchR, (byte)BestMatchG, (byte)BestMatchB);
            }
        }

        public Brush BestMatchBrush
        {
            get { return new SolidColorBrush(BestMatchColor); }
        }

        public String LogicalLength
        {
            get
            {
                var length = MachineType == MachineTypes.Eureka ? JobRun.JobLogicalLength * 4 : JobRun.JobLogicalLength;
                return JobRun.NumberOfUnits > 1 ? $"{length} x{JobRun.NumberOfUnits}" : length.ToString();
            }
        }

        public double LogicalLengthMeters
        {
            get
            {
                return (MachineType == MachineTypes.Eureka ? JobRun.JobLogicalLength * 4 : JobRun.JobLogicalLength);
            }
        }

        public double JobLength
        {
            get { return MachineType == MachineTypes.Eureka ? JobRun.JobLength * 4 : JobRun.JobLength; }
        }

        public double EndPosition
        {
            get { return MachineType == MachineTypes.Eureka ? JobRun.EndPosition * 4 : JobRun.EndPosition; }
        }

        public double ActualStartPosition
        {
            get { return MachineType == MachineTypes.Eureka ? JobRun.ActualStartPosition * 4 : JobRun.ActualStartPosition; }
        }

        public double ActualEndPosition
        {
            get
            {
                if (JobRun.ActualEndPosition > 0)
                {
                    return MachineType == MachineTypes.Eureka ? JobRun.ActualEndPosition * 4 : JobRun.ActualEndPosition;
                }
                else
                {
                    return MachineType == MachineTypes.Eureka ? JobRun.EndPosition * 4 : JobRun.EndPosition;
                }
            }
        }

        public double ActualLength
        {
            get { return LogicalLengthMeters * JobRun.NumberOfUnits; }
        }

        public String FineTuningMeasured
        {
            get
            {
                if (FineTuningModel == null) return "";

                return $"{FineTuningModel.FineTuningMeasuredL}, {FineTuningModel.FineTuningMeasuredA}, {FineTuningModel.FineTuningMeasuredB}";
            }
        }

        public String FineTuningSuggested
        {
            get
            {
                if (FineTuningModel == null) return "";

                return $"{FineTuningModel.FineTuningSuggestionL.ToString("0.00")}, {FineTuningModel.FineTuningSuggestionA.ToString("0.00")}, {FineTuningModel.FineTuningSuggestionB.ToString("0.00")}";
            }
        }

        public String FineTuningLCH
        {
            get
            {
                if (FineTuningModel == null) return "";

                return $"{FineTuningModel.Lightness.ToString("0.0")}, {FineTuningModel.Chroma.ToString("0.0")}, {FineTuningModel.Hue.ToString("0.0")}";
            }
        }

        public String FineTuningTarget
        {
            get
            {
                if (FineTuningModel == null) return "";

                return $"{FineTuningModel.FineTuningTargetL.ToString("0.00")}, {FineTuningModel.FineTuningTargetA.ToString("0.00")}, {FineTuningModel.FineTuningTargetB.ToString("0.00")}";
            }
        }

        private double? _fineTuningDeltaE;
        public double? FineTuningDeltaE
        {
            get
            {
                if (_fineTuningDeltaE != null) return _fineTuningDeltaE;
                if (FineTuningModel == null) return null;
                if (FineTuningModel.FineTuningMeasuredL == null) return null;

                var converter = new DefaultColorConverter();

                var deltaE =
                    converter.CalculateDeltaE_CMC(
                    FineTuningModel.FineTuningTargetL,
                    FineTuningModel.FineTuningTargetA,
                    FineTuningModel.FineTuningTargetB,
                    FineTuningModel.FineTuningMeasuredL.Value,
                    FineTuningModel.FineTuningMeasuredA.Value,
                    FineTuningModel.FineTuningMeasuredB.Value);

                _fineTuningDeltaE = Math.Round(deltaE, 2);

                return _fineTuningDeltaE;
            }
            private set { _fineTuningDeltaE = value; }
        }

        public double Distance
        {
            get
            {
                return ActualEndPosition - ActualStartPosition;
            }
        }

    }
}