2018-10-03 18:19:40 +00:00
|
|
|
// Code generated by the FlatBuffers compiler. DO NOT EDIT.
|
2014-07-11 23:12:35 +00:00
|
|
|
|
|
|
|
package Example
|
|
|
|
|
2019-10-31 18:13:45 +00:00
|
|
|
import (
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
flatbuffers "github.com/google/flatbuffers/go"
|
|
|
|
|
|
|
|
MyGame__Example2 "MyGame/Example2"
|
|
|
|
)
|
|
|
|
|
2019-11-26 20:25:36 +00:00
|
|
|
type Any byte
|
|
|
|
|
|
|
|
const (
|
|
|
|
AnyNONE Any = 0
|
|
|
|
AnyMonster Any = 1
|
|
|
|
AnyTestSimpleTableWithEnum Any = 2
|
|
|
|
AnyMyGame_Example2_Monster Any = 3
|
|
|
|
)
|
|
|
|
|
|
|
|
var EnumNamesAny = map[Any]string{
|
|
|
|
AnyNONE: "NONE",
|
|
|
|
AnyMonster: "Monster",
|
|
|
|
AnyTestSimpleTableWithEnum: "TestSimpleTableWithEnum",
|
|
|
|
AnyMyGame_Example2_Monster: "MyGame_Example2_Monster",
|
|
|
|
}
|
|
|
|
|
|
|
|
var EnumValuesAny = map[string]Any{
|
|
|
|
"NONE": AnyNONE,
|
|
|
|
"Monster": AnyMonster,
|
|
|
|
"TestSimpleTableWithEnum": AnyTestSimpleTableWithEnum,
|
|
|
|
"MyGame_Example2_Monster": AnyMyGame_Example2_Monster,
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v Any) String() string {
|
|
|
|
if s, ok := EnumNamesAny[v]; ok {
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
return "Any(" + strconv.FormatInt(int64(v), 10) + ")"
|
|
|
|
}
|
|
|
|
|
2019-10-31 18:13:45 +00:00
|
|
|
type AnyT struct {
|
|
|
|
Type Any
|
|
|
|
Value interface{}
|
|
|
|
}
|
|
|
|
|
2020-01-17 00:19:00 +00:00
|
|
|
func (t *AnyT) Pack(builder *flatbuffers.Builder) flatbuffers.UOffsetT {
|
2019-10-31 18:13:45 +00:00
|
|
|
if t == nil {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
switch t.Type {
|
|
|
|
case AnyMonster:
|
2020-01-17 00:19:00 +00:00
|
|
|
return t.Value.(*MonsterT).Pack(builder)
|
2019-10-31 18:13:45 +00:00
|
|
|
case AnyTestSimpleTableWithEnum:
|
2020-01-17 00:19:00 +00:00
|
|
|
return t.Value.(*TestSimpleTableWithEnumT).Pack(builder)
|
2019-10-31 18:13:45 +00:00
|
|
|
case AnyMyGame_Example2_Monster:
|
2020-01-17 00:19:00 +00:00
|
|
|
return t.Value.(*MyGame__Example2.MonsterT).Pack(builder)
|
2019-10-31 18:13:45 +00:00
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2020-01-17 00:19:00 +00:00
|
|
|
func (rcv Any) UnPack(table flatbuffers.Table) *AnyT {
|
|
|
|
switch rcv {
|
2019-10-31 18:13:45 +00:00
|
|
|
case AnyMonster:
|
|
|
|
x := Monster{_tab: table}
|
|
|
|
return &AnyT{ Type: AnyMonster, Value: x.UnPack() }
|
|
|
|
case AnyTestSimpleTableWithEnum:
|
|
|
|
x := TestSimpleTableWithEnum{_tab: table}
|
|
|
|
return &AnyT{ Type: AnyTestSimpleTableWithEnum, Value: x.UnPack() }
|
|
|
|
case AnyMyGame_Example2_Monster:
|
|
|
|
x := Monster{_tab: table}
|
|
|
|
return &AnyT{ Type: AnyMyGame_Example2_Monster, Value: x.UnPack() }
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|