-
Notifications
You must be signed in to change notification settings - Fork 20
/
colour.go
98 lines (83 loc) · 2.1 KB
/
colour.go
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
// This file is part of Gopher2600.
//
// Gopher2600 is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Gopher2600 is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Gopher2600. If not, see <https://www.gnu.org/licenses/>.
package display
import (
"github.com/jetsetilly/gopher2600/prefs"
"github.com/jetsetilly/gopher2600/resources"
)
type Colour struct {
dsk *prefs.Disk
Brightness prefs.Float
Contrast prefs.Float
Saturation prefs.Float
Hue prefs.Float
}
func (p *Colour) String() string {
return p.dsk.String()
}
const (
brightness = 1.0
contrast = 1.0
saturation = 1.0
hue = 0.0
)
func newColour() (*Colour, error) {
p := &Colour{}
p.SetDefaults()
pth, err := resources.JoinPath(prefs.DefaultPrefsFile)
if err != nil {
return nil, err
}
p.dsk, err = prefs.NewDisk(pth)
if err != nil {
return nil, err
}
err = p.dsk.Add("display.color.brightness", &p.Brightness)
if err != nil {
return nil, err
}
err = p.dsk.Add("display.color.contrast", &p.Contrast)
if err != nil {
return nil, err
}
err = p.dsk.Add("display.color.saturation", &p.Saturation)
if err != nil {
return nil, err
}
err = p.dsk.Add("display.color.hue", &p.Hue)
if err != nil {
return nil, err
}
err = p.dsk.Load(true)
if err != nil {
return nil, err
}
return p, nil
}
// SetDefaults reverts all colour values to default
func (p *Colour) SetDefaults() {
p.Brightness.Set(brightness)
p.Contrast.Set(contrast)
p.Saturation.Set(saturation)
p.Hue.Set(hue)
}
// Load colour values from disk
func (p *Colour) Load() error {
return p.dsk.Load(false)
}
// Save current colour values to disk
func (p *Colour) Save() error {
return p.dsk.Save()
}