-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidator.go
86 lines (73 loc) · 3.06 KB
/
validator.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
package consolizer
import (
"fmt"
"github.com/supercom32/consolizer/constants"
"github.com/supercom32/consolizer/internal/memory"
"github.com/supercom32/consolizer/types"
)
func validateTextFieldWidth(width int) {
if width <= 0 {
safeSttyPanic(fmt.Sprintf("The specified text field width '%d' is invalid.", width))
}
}
func validateLayerLocationByLayerAlias(layerAlias string, xLocation int, yLocation int) {
validateLayer(layerAlias)
layerEntry := memory.GetLayer(layerAlias)
validateLayerLocationByLayerEntry(layerEntry, xLocation, yLocation)
}
func validateSelectionEntry(selectionEntry types.SelectionEntryType) {
if len(selectionEntry.SelectionValue) == 0 {
safeSttyPanic(fmt.Sprintf("The selection entry passed was empty."))
}
}
func validateLayerLocationByLayerEntry(layerEntry *types.LayerEntryType, xLocation int, yLocation int) {
if xLocation < 0 || yLocation < 0 ||
xLocation >= layerEntry.Width || yLocation >= layerEntry.Height {
safeSttyPanic(fmt.Sprintf("The specified location (%d, %d) is out of bounds for layer with a size of (%d, %d).", xLocation, yLocation, layerEntry.Width, layerEntry.Height))
}
}
func validateRGBColorIndex(redColorIndex int32, greenColorIndex int32, blueColorIndex int32) {
if redColorIndex < 0 || redColorIndex > 255 || greenColorIndex < 0 || greenColorIndex > 255 ||
blueColorIndex < 0 || blueColorIndex > 255 {
safeSttyPanic(fmt.Sprintf("The specified RGB color index '%d, %d, %d' is invalid!", redColorIndex, greenColorIndex, blueColorIndex))
}
}
func validateColorIndex(colorIndex int) {
if colorIndex < 0 || colorIndex > len(constants.AnsiColorByIndex) {
safeSttyPanic(fmt.Sprintf("The specified color index '%d' is invalid!", colorIndex))
}
}
func validateTextStyleExists(textStyleAlias string) {
if !memory.IsTextStyleExists(textStyleAlias) {
safeSttyPanic(fmt.Sprintf("The specified text style '%s' does not exist.", textStyleAlias))
}
}
func validateDefaultLayerIsNotEmpty() {
if commonResource.layerInstance.layerAlias == "" {
safeSttyPanic(fmt.Sprintf("The action could not be completed since no default text layer exists!"))
}
}
func validateTerminalWidthAndHeight(width int, height int) {
if width <= 0 || height <= 0 {
safeSttyPanic(fmt.Sprintf("The specified terminal width and height of '%d, %d' is invalid!", width, height))
}
}
func validateLayer(layerAlias string) {
if !memory.IsLayerExists(layerAlias) {
safeSttyPanic(fmt.Sprintf("The specified layer '%s' does not exist.", layerAlias))
}
}
func validatorTextField(layerAlias string, textFieldAlias string) {
if !(memory.IsTextFieldExists(layerAlias, textFieldAlias)) {
safeSttyPanic(fmt.Sprintf("The text field '%s' under layer '%s' could not be obtained since it does not exist!", textFieldAlias, layerAlias))
}
}
func validatorMenu(layerAlias string, menuAlias string) {
if !(memory.IsSelectorExists(layerAlias, menuAlias)) {
safeSttyPanic(fmt.Sprintf("The menu '%s' under layer '%s' could not be obtained since it does not exist!", menuAlias, layerAlias))
}
}
func safeSttyPanic(panicMessage string) {
RestoreTerminalSettings()
panic(panicMessage)
}