Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ExposureItem.cs « Objects « UVtools.Core - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c94b17fc4b1cc2704729be21e834df11de83f24 (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
using System;
using UVtools.Core.Layers;

namespace UVtools.Core.Objects;

[Serializable]
public sealed class ExposureItem : BindableBase, IComparable<ExposureItem>
{
    private decimal _layerHeight;
    private decimal _bottomExposure;
    private decimal _exposure;
    private byte _brightness = byte.MaxValue;

    /// <summary>
    /// Gets or sets the layer height in millimeters
    /// </summary>
    public decimal LayerHeight
    {
        get => _layerHeight;
        set => RaiseAndSetIfChanged(ref _layerHeight, Layer.RoundHeight(value));
    }


    /// <summary>
    /// Gets or sets the bottom exposure in seconds
    /// </summary>
    public decimal BottomExposure
    {
        get => _bottomExposure;
        set => RaiseAndSetIfChanged(ref _bottomExposure, Math.Round(value, 2));
    }

    /// <summary>
    /// Gets or sets the bottom exposure in seconds
    /// </summary>
    public decimal Exposure
    {
        get => _exposure;
        set => RaiseAndSetIfChanged(ref _exposure, Math.Round(value, 2));
    }

    /// <summary>
    /// Gets or sets the brightness level
    /// </summary>
    public byte Brightness
    {
        get => _brightness;
        set
        {
            if(!RaiseAndSetIfChanged(ref _brightness, value)) return;
            RaisePropertyChanged(nameof(BrightnessPercent));
        }
    }

    public decimal BrightnessPercent => Math.Round(_brightness * 100m / byte.MaxValue, 2);

    public bool IsValid => _layerHeight > 0 && _bottomExposure > 0 && _exposure > 0 && _brightness > 0;

    public ExposureItem() { }

    public ExposureItem(decimal layerHeight, decimal bottomExposure = 0, decimal exposure = 0, byte brightness = 255)
    {
        _layerHeight = Layer.RoundHeight(layerHeight);
        _bottomExposure = Math.Round(bottomExposure, 2);
        _exposure = Math.Round(exposure, 2);
        _brightness = brightness;
    }

    public override string ToString()
    {
        return $"{nameof(LayerHeight)}: {_layerHeight}mm, {nameof(BottomExposure)}: {_bottomExposure}s, {nameof(Exposure)}: {_exposure}s, {nameof(Brightness)}: {_brightness} ({BrightnessPercent} %)";
    }

    private bool Equals(ExposureItem other)
    {
        return _layerHeight == other._layerHeight && _bottomExposure == other._bottomExposure && _exposure == other._exposure && _brightness == other._brightness;
    }

    public override bool Equals(object? obj)
    {
        return ReferenceEquals(this, obj) || obj is ExposureItem other && Equals(other);
    }

    public override int GetHashCode()
    {
        return HashCode.Combine(_layerHeight, _bottomExposure, _exposure, _brightness);
    }

    public int CompareTo(ExposureItem? other)
    {
        if (ReferenceEquals(this, other)) return 0;
        if (ReferenceEquals(null, other)) return 1;
        var layerHeightComparison = _layerHeight.CompareTo(other._layerHeight);
        if (layerHeightComparison != 0) return layerHeightComparison;
        var bottomExposureComparison = _bottomExposure.CompareTo(other._bottomExposure);
        if (bottomExposureComparison != 0) return bottomExposureComparison;
        var exposureComparison = _exposure.CompareTo(other._exposure);
        if (exposureComparison != 0) return exposureComparison;
        return _brightness.CompareTo(other._brightness);
    }

    public ExposureItem Clone()
    {
        return (MemberwiseClone() as ExposureItem)!;
    }
}