blob: 39d63a48cb1ea0e8c163082de6edc2915c8ad58c (
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
|
//
// Color.swift
// Sage
//
// Copyright 2016-2017 Nikolai Vazquez
// Modified by SuperGeroy
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
/// A chess color.
public enum Color: String, CustomStringConvertible {
/// White chess color.
case white
/// Black chess color.
case black
/// White color regardless of Swift version.
internal static let _white = Color.white
/// Black color regardless of Swift version.
internal static let _black = Color.black
/// An array of all colors.
public static let all: [Color] = [.white, .black]
/// Whether the color is white or not.
public var isWhite: Bool {
return self == ._white
}
/// Whether the color is black or not.
public var isBlack: Bool {
return self == ._black
}
/// A textual representation of `self`.
public var description: String {
return rawValue
}
/// The numeric representation of `self`. `White` is "0", `Black` is "1".
public var numericValue: Int {
return self.isWhite ? 0 : 1
}
/// The lowercase character for the color. `White` is "w", `Black` is "b".
public var character: Character {
return self.isWhite ? "w" : "b"
}
/// Create a color from a character of any case.
public init?(character: Character) {
switch character {
case "W", "w": self = ._white
case "B", "b": self = ._black
default: return nil
}
}
/// Returns the inverse of `self`.
public func inverse() -> Color {
return self.isWhite ? ._black : ._white
}
/// Inverts the color of `self`.
public mutating func invert() {
self = inverse()
}
}
|