blob: b28ddc85a542b14c3ff112482d147261cce8633f [file] [log] [blame]
Austin Schuhe89fa2d2019-08-14 20:24:23 -07001// test schema file
2
3include "include_test1.fbs";
4
5namespace MyGame;
6
7table InParentNamespace {}
8
9namespace MyGame.Example2;
10
11table Monster {} // Test having same name as below, but in different namespace.
12
13namespace MyGame.Example;
14
15attribute "priority";
16
17/// Composite components of Monster color.
Austin Schuh272c6132020-11-14 16:37:52 -080018enum Color:ubyte (bit_flags) {
Austin Schuhe89fa2d2019-08-14 20:24:23 -070019 Red = 0, // color Red = (1u << 0)
20 /// \brief color Green
21 /// Green is bit_flag with value (1u << 1)
Austin Schuh272c6132020-11-14 16:37:52 -080022 Green,
Austin Schuhe89fa2d2019-08-14 20:24:23 -070023 /// \brief color Blue (1u << 3)
Austin Schuh272c6132020-11-14 16:37:52 -080024 Blue = 3,
25}
26
27enum Race:byte {
28 None = -1,
29 Human = 0,
30 Dwarf,
31 Elf,
Austin Schuhe89fa2d2019-08-14 20:24:23 -070032}
33
James Kuszmaul8e62b022022-03-22 09:33:25 -070034enum LongEnum:ulong (bit_flags) {
35 LongOne = 1,
36 LongTwo = 2,
37 // Because this is a bitflag, 40 will be out of range of a 32-bit integer,
38 // allowing us to exercise any logic special to big numbers.
39 LongBig = 40,
40}
41
Austin Schuhe89fa2d2019-08-14 20:24:23 -070042union Any { Monster, TestSimpleTableWithEnum, MyGame.Example2.Monster }
43
44union AnyUniqueAliases { M: Monster, TS: TestSimpleTableWithEnum, M2: MyGame.Example2.Monster }
45union AnyAmbiguousAliases { M1: Monster, M2: Monster, M3: Monster }
46
47struct Test { a:short; b:byte; }
48
49table TestSimpleTableWithEnum (csharp_partial, private) {
50 color: Color = Green;
51}
52
53struct Vec3 (force_align: 8) {
54 x:float;
55 y:float;
56 z:float;
57 test1:double;
58 test2:Color;
59 test3:Test;
60}
61
62struct Ability {
63 id:uint(key);
64 distance:uint;
65}
66
James Kuszmaul8e62b022022-03-22 09:33:25 -070067struct StructOfStructs {
68 a: Ability;
69 b: Test;
70 c: Ability;
71}
72
Austin Schuhe89fa2d2019-08-14 20:24:23 -070073table Stat {
74 id:string;
75 val:long;
James Kuszmaul8e62b022022-03-22 09:33:25 -070076 count:ushort (key);
Austin Schuhe89fa2d2019-08-14 20:24:23 -070077}
78
79table Referrable {
80 id:ulong(key, hash:"fnv1a_64");
81}
82
Austin Schuh272c6132020-11-14 16:37:52 -080083/// an example documentation comment: "monster object"
Austin Schuhe89fa2d2019-08-14 20:24:23 -070084table Monster {
85 pos:Vec3 (id: 0);
86 hp:short = 100 (id: 2);
87 mana:short = 150 (id: 1);
James Kuszmaul8e62b022022-03-22 09:33:25 -070088 name:string (id: 3, key);
Austin Schuhe89fa2d2019-08-14 20:24:23 -070089 color:Color = Blue (id: 6);
90 inventory:[ubyte] (id: 5);
91 friendly:bool = false (deprecated, priority: 1, id: 4);
92 /// an example documentation comment: this will end up in the generated code
93 /// multiline too
94 testarrayoftables:[Monster] (id: 11);
95 testarrayofstring:[string] (id: 10);
96 testarrayofstring2:[string] (id: 28);
97 testarrayofbools:[bool] (id: 24);
98 testarrayofsortedstruct:[Ability] (id: 29);
99 enemy:MyGame.Example.Monster (id:12); // Test referring by full namespace.
100 test:Any (id: 8);
101 test4:[Test] (id: 9);
102 test5:[Test] (id: 31);
103 testnestedflatbuffer:[ubyte] (id:13, nested_flatbuffer: "Monster");
104 testempty:Stat (id:14);
105 testbool:bool (id:15);
106 testhashs32_fnv1:int (id:16, hash:"fnv1_32");
107 testhashu32_fnv1:uint (id:17, hash:"fnv1_32");
108 testhashs64_fnv1:long (id:18, hash:"fnv1_64");
109 testhashu64_fnv1:ulong (id:19, hash:"fnv1_64");
110 testhashs32_fnv1a:int (id:20, hash:"fnv1a_32");
111 testhashu32_fnv1a:uint (id:21, hash:"fnv1a_32", cpp_type:"Stat");
112 testhashs64_fnv1a:long (id:22, hash:"fnv1a_64");
113 testhashu64_fnv1a:ulong (id:23, hash:"fnv1a_64");
114 testf:float = 3.14159 (id:25);
115 testf2:float = 3 (id:26);
116 testf3:float (id:27);
117 flex:[ubyte] (id:30, flexbuffer);
118 vector_of_longs:[long] (id:32);
119 vector_of_doubles:[double] (id:33);
120 parent_namespace_test:InParentNamespace (id:34);
121 vector_of_referrables:[Referrable](id:35);
122 single_weak_reference:ulong(id:36, hash:"fnv1a_64", cpp_type:"ReferrableT");
123 vector_of_weak_references:[ulong](id:37, hash:"fnv1a_64", cpp_type:"ReferrableT");
124 vector_of_strong_referrables:[Referrable](id:38, cpp_ptr_type:"default_ptr_type"); //was shared_ptr
125 co_owning_reference:ulong(id:39, hash:"fnv1a_64", cpp_type:"ReferrableT", cpp_ptr_type:"naked"); //was shared_ptr as well
126 vector_of_co_owning_references:[ulong](id:40, hash:"fnv1a_64", cpp_type:"ReferrableT", cpp_ptr_type:"default_ptr_type", cpp_ptr_type_get:".get()"); //was shared_ptr
127 non_owning_reference:ulong(id:41, hash:"fnv1a_64", cpp_type:"ReferrableT", cpp_ptr_type:"naked", cpp_ptr_type_get:""); //was weak_ptr
128 vector_of_non_owning_references:[ulong](id:42, hash:"fnv1a_64", cpp_type:"ReferrableT", cpp_ptr_type:"naked", cpp_ptr_type_get:""); //was weak_ptr
129 any_unique:AnyUniqueAliases(id:44);
130 any_ambiguous:AnyAmbiguousAliases (id:46);
131 vector_of_enums:[Color] (id:47);
Austin Schuh272c6132020-11-14 16:37:52 -0800132 signed_enum:Race = None (id:48);
133 testrequirednestedflatbuffer:[ubyte] (id:49, nested_flatbuffer: "Monster");
James Kuszmaul8e62b022022-03-22 09:33:25 -0700134 scalar_key_sorted_tables:[Stat] (id: 50);
135 native_inline:Test (id: 51, native_inline);
136 // The default value of this enum will be a numeric zero, which isn't a valid
137 // enum value.
138 long_enum_non_enum_default:LongEnum (id: 52);
139 long_enum_normal_default:LongEnum = LongOne (id: 53);
Austin Schuhe89fa2d2019-08-14 20:24:23 -0700140}
141
142table TypeAliases {
143 i8:int8;
144 u8:uint8;
145 i16:int16;
146 u16:uint16;
147 i32:int32;
148 u32:uint32;
149 i64:int64;
150 u64:uint64;
151 f32:float32;
152 f64:float64;
153 v8:[int8];
154 vf64:[float64];
155}
156
157rpc_service MonsterStorage {
158 Store(Monster):Stat (streaming: "none");
159 Retrieve(Stat):Monster (streaming: "server", idempotent);
160 GetMaxHitPoint(Monster):Stat (streaming: "client");
161 GetMinMaxHitPoints(Monster):Stat (streaming: "bidi");
162}
163
164root_type Monster;
165
166file_identifier "MONS";
167file_extension "mon";