aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Maintenance/Models/OverallTemperatureModel.cs
blob: 694071d0d6ae5b1e24b510dd4872dc917c4908d1 (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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core;
using Tango.Integration.Operation;

namespace Tango.PPC.Maintenance.Models
{
    public class OverallTemperatureModel : ExtendedObject
    {
        private double _temperature;
        public double Temperature
        {
            get { return _temperature; }
            set { _temperature = value; RaisePropertyChangedAuto(); RaisePropertyChanged(nameof(IsWarning)); RaisePropertyChanged(nameof(IsError)); }
        }

        public bool IsWarning
        {
            get { return Temperature > MachineOperator.OVERALL_TEMPERATURE_WARNING; }
        }

        public bool IsError
        {
            get { return Temperature >= MachineOperator.OVERALL_TEMPERATURE_ERROR; }
        }
    }
}
private bool _antialiazed; private bool updated; public DXGraphSurfaceMultiScroll() { lastPoints = new List<Vector2[]>(); lastPointsFill = new List<Vector2[]>(); } public void SetProperties(List<Vector2[]> polygonPoints, List<Vector2[]> polygonPointsFill, List<System.Windows.Media.Brush> stroke, double strokeWidth, bool fillGraph, List<System.Windows.Media.Brush> fill, bool antialized) { _stroke = stroke; _fill = fill; _fillGraph = fillGraph; _strokeWidth = strokeWidth; _antialiazed = antialized; lock (lastPoints) { lastPoints = polygonPoints; lastPointsFill = polygonPointsFill; updated = true; } } /// <summary> /// Does the actual rendering. /// BeginDraw and EndDraw are already called by the caller. /// </summary> public override void Render(RenderTarget target) { if (lastPoints.Count > 0 && updated) { lock (lastPoints) { target.AntialiasMode = _antialiazed ? AntialiasMode.PerPrimitive : AntialiasMode.Aliased; if (lastPoints.Count > 0 && lastPoints[0].Length > 0) { target.Clear(Color.Transparent); } for (int i = 0; i < lastPoints.Count; i++) { var stroke = _stroke[i].ToDxBrush(target); var fill = _fill[i].ToDxBrush(target); target.DrawPolygon(m_d2dFactory, stroke, _strokeWidth, lastPoints[i]); if (_fillGraph && fill != null && _fill[i] != null) { target.FillPolygon(m_d2dFactory, fill, lastPointsFill[i]); } } updated = false; GC.Collect(GC.MaxGeneration, GCCollectionMode.Optimized, blocking: false); } } DisableRendering(); } } }