-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathallegiance_enum.go
255 lines (230 loc) · 6.1 KB
/
allegiance_enum.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
/*
* Copyright (c) 2021 OmegaRogue.
* This file is part of eliteJournal.
*
* eliteJournal is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or any later version.
*
* eliteJournal 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with eliteJournal. If not, see <https://www.gnu.org/licenses/>.
*/
// Code generated by go-enum
// DO NOT EDIT!
package elite
import (
"database/sql/driver"
"encoding/json"
"errors"
"fmt"
"strconv"
"github.com/rs/zerolog"
)
const (
// Independent is a Allegiance of type Independent.
Independent Allegiance = iota
// Alliance is a Allegiance of type Alliance.
Alliance
// Empire is a Allegiance of type Empire.
Empire
// Federation is a Allegiance of type Federation.
Federation
// Pirate is a Allegiance of type Pirate.
Pirate
// PilotsFederation is a Allegiance of type PilotsFederation.
PilotsFederation
// Thargoids is a Allegiance of type Thargoids.
Thargoids
// Guardians is a Allegiance of type Guardians.
Guardians
)
const _AllegianceName = "IndependentAllianceEmpireFederationPiratePilotsFederationThargoidsGuardians"
var _AllegianceMap = map[Allegiance]string{
0: _AllegianceName[0:11],
1: _AllegianceName[11:19],
2: _AllegianceName[19:25],
3: _AllegianceName[25:35],
4: _AllegianceName[35:41],
5: _AllegianceName[41:57],
6: _AllegianceName[57:66],
7: _AllegianceName[66:75],
}
// String implements the Stringer interface.
func (x Allegiance) String() string {
if str, ok := _AllegianceMap[x]; ok {
return str
}
return fmt.Sprintf("Allegiance(%d)", x)
}
var _AllegianceValue = map[string]Allegiance{
_AllegianceName[0:11]: 0,
_AllegianceName[11:19]: 1,
_AllegianceName[19:25]: 2,
_AllegianceName[25:35]: 3,
_AllegianceName[35:41]: 4,
_AllegianceName[41:57]: 5,
_AllegianceName[57:66]: 6,
_AllegianceName[66:75]: 7,
}
// ParseAllegiance attempts to convert a string to a Allegiance
func ParseAllegiance(name string) (Allegiance, error) {
if x, ok := _AllegianceValue[name]; ok {
return x, nil
}
return Allegiance(0), fmt.Errorf("%s is not a valid Allegiance", name)
}
// MarshalText implements the text marshaller method
func (x Allegiance) MarshalText() ([]byte, error) {
return []byte(x.String()), nil
}
// UnmarshalText implements the text unmarshaller method
func (x *Allegiance) UnmarshalText(text []byte) error {
name := string(text)
tmp, err := ParseAllegiance(name)
if err != nil {
return err
}
*x = tmp
return nil
}
var _AllegianceErrNilPtr = errors.New("value pointer is nil") // one per type for package clashes
// Scan implements the Scanner interface.
func (x *Allegiance) Scan(value interface{}) (err error) {
if value == nil {
*x = Allegiance(0)
return
}
// A wider range of scannable types.
// driver.Value values at the top of the list for expediency
switch v := value.(type) {
case int64:
*x = Allegiance(v)
case string:
*x, err = ParseAllegiance(v)
if err != nil {
// try parsing the integer value as a string
if val, verr := strconv.Atoi(v); verr == nil {
*x, err = Allegiance(val), nil
}
}
case []byte:
*x, err = ParseAllegiance(string(v))
if err != nil {
// try parsing the integer value as a string
if val, verr := strconv.Atoi(string(v)); verr == nil {
*x, err = Allegiance(val), nil
}
}
case Allegiance:
*x = v
case int:
*x = Allegiance(v)
case *Allegiance:
if v == nil {
return _AllegianceErrNilPtr
}
*x = *v
case uint:
*x = Allegiance(v)
case uint64:
*x = Allegiance(v)
case *int:
if v == nil {
return _AllegianceErrNilPtr
}
*x = Allegiance(*v)
case *int64:
if v == nil {
return _AllegianceErrNilPtr
}
*x = Allegiance(*v)
case float64: // json marshals everything as a float64 if it's a number
*x = Allegiance(v)
case *float64: // json marshals everything as a float64 if it's a number
if v == nil {
return _AllegianceErrNilPtr
}
*x = Allegiance(*v)
case *uint:
if v == nil {
return _AllegianceErrNilPtr
}
*x = Allegiance(*v)
case *uint64:
if v == nil {
return _AllegianceErrNilPtr
}
*x = Allegiance(*v)
case *string:
if v == nil {
return _AllegianceErrNilPtr
}
*x, err = ParseAllegiance(*v)
if err != nil {
// try parsing the integer value as a string
if val, verr := strconv.Atoi(*v); verr == nil {
*x, err = Allegiance(val), nil
}
}
}
return
}
// Value implements the driver Valuer interface.
func (x Allegiance) Value() (driver.Value, error) {
return int64(x), nil
}
type NullAllegiance struct {
Allegiance Allegiance
Valid bool
Set bool
}
func NewNullAllegiance(val interface{}) (x NullAllegiance) {
x.Scan(val) // yes, we ignore this error, it will just be an invalid value.
return
}
// Scan implements the Scanner interface.
func (x *NullAllegiance) Scan(value interface{}) (err error) {
x.Set = true
if value == nil {
x.Allegiance, x.Valid = Allegiance(0), false
return
}
err = x.Allegiance.Scan(value)
x.Valid = err == nil
return
}
// Value implements the driver Valuer interface.
func (x NullAllegiance) Value() (driver.Value, error) {
if !x.Valid {
return nil, nil
}
// driver.Value accepts int64 for int values.
return int64(x.Allegiance), nil
}
// MarshalJSON correctly serializes a NullAllegiance to JSON.
func (n NullAllegiance) MarshalJSON() ([]byte, error) {
const nullStr = "null"
if n.Valid {
return json.Marshal(n.Allegiance)
}
return []byte(nullStr), nil
}
// UnmarshalJSON correctly deserializes a NullAllegiance from JSON.
func (n *NullAllegiance) UnmarshalJSON(b []byte) error {
n.Set = true
var x interface{}
err := json.Unmarshal(b, &x)
if err != nil {
return err
}
err = n.Scan(x)
return err
}
func (x Allegiance) MarshalZerologObject(e *zerolog.Event) {
e.Str("Allegiance", fmt.Sprint(x))
}