summaryrefslogtreecommitdiff
path: root/goldens/lua
diff options
context:
space:
mode:
Diffstat (limited to 'goldens/lua')
-rw-r--r--goldens/lua/Galaxy.lua48
-rw-r--r--goldens/lua/Universe.lua88
2 files changed, 136 insertions, 0 deletions
diff --git a/goldens/lua/Galaxy.lua b/goldens/lua/Galaxy.lua
new file mode 100644
index 00000000..071a1c80
--- /dev/null
+++ b/goldens/lua/Galaxy.lua
@@ -0,0 +1,48 @@
+--[[ Galaxy
+
+ Automatically generated by the FlatBuffers compiler, do not modify.
+ Or modify. I'm a message, not a cop.
+
+ flatc version: 23.5.9
+
+ Declared by : //basic.fbs
+ Rooting type : Universe (//basic.fbs)
+
+--]]
+
+local flatbuffers = require('flatbuffers')
+
+local Galaxy = {}
+local mt = {}
+
+function Galaxy.New()
+ local o = {}
+ setmetatable(o, {__index = mt})
+ return o
+end
+
+function mt:Init(buf, pos)
+ self.view = flatbuffers.view.New(buf, pos)
+end
+
+function mt:NumStars()
+ local o = self.view:Offset(4)
+ if o ~= 0 then
+ return self.view:Get(flatbuffers.N.Int64, self.view.pos + o)
+ end
+ return 0
+end
+
+function Galaxy.Start(builder)
+ builder:StartObject(1)
+end
+
+function Galaxy.AddNumStars(builder, numStars)
+ builder:PrependInt64Slot(0, numStars, 0)
+end
+
+function Galaxy.End(builder)
+ return builder:EndObject()
+end
+
+return Galaxy \ No newline at end of file
diff --git a/goldens/lua/Universe.lua b/goldens/lua/Universe.lua
new file mode 100644
index 00000000..d7ef085e
--- /dev/null
+++ b/goldens/lua/Universe.lua
@@ -0,0 +1,88 @@
+--[[ Universe
+
+ Automatically generated by the FlatBuffers compiler, do not modify.
+ Or modify. I'm a message, not a cop.
+
+ flatc version: 23.5.9
+
+ Declared by : //basic.fbs
+ Rooting type : Universe (//basic.fbs)
+
+--]]
+
+local __Galaxy = require('Galaxy')
+local flatbuffers = require('flatbuffers')
+
+local Universe = {}
+local mt = {}
+
+function Universe.New()
+ local o = {}
+ setmetatable(o, {__index = mt})
+ return o
+end
+
+function Universe.GetRootAsUniverse(buf, offset)
+ if type(buf) == "string" then
+ buf = flatbuffers.binaryArray.New(buf)
+ end
+
+ local n = flatbuffers.N.UOffsetT:Unpack(buf, offset)
+ local o = Universe.New()
+ o:Init(buf, n + offset)
+ return o
+end
+
+function mt:Init(buf, pos)
+ self.view = flatbuffers.view.New(buf, pos)
+end
+
+function mt:Age()
+ local o = self.view:Offset(4)
+ if o ~= 0 then
+ return self.view:Get(flatbuffers.N.Float64, self.view.pos + o)
+ end
+ return 0.0
+end
+
+function mt:Galaxies(j)
+ local o = self.view:Offset(6)
+ if o ~= 0 then
+ local x = self.view:Vector(o)
+ x = x + ((j-1) * 4)
+ x = self.view:Indirect(x)
+ local obj = __Galaxy.New()
+ obj:Init(self.view.bytes, x)
+ return obj
+ end
+end
+
+function mt:GalaxiesLength()
+ local o = self.view:Offset(6)
+ if o ~= 0 then
+ return self.view:VectorLen(o)
+ end
+ return 0
+end
+
+function Universe.Start(builder)
+ builder:StartObject(2)
+end
+
+function Universe.AddAge(builder, age)
+ builder:PrependFloat64Slot(0, age, 0.0)
+end
+
+function Universe.AddGalaxies(builder, galaxies)
+ builder:PrependUOffsetTRelativeSlot(1, galaxies, 0)
+end
+
+function Universe.StartGalaxiesVector(builder, numElems)
+ return builder:StartVector(4, numElems, 4)
+end
+
+function Universe.End(builder)
+ return builder:EndObject()
+end
+
+return Universe \ No newline at end of file