Files
BA-AD/baad/FlatData/EventContentChangeScenarioExcel.py
Deathemonic 2ee2061ae9 feat: bump dump
- bump dump file to support latest client 1.46.287264
- updated flatbuf generator to support lastest dump file
- refactored table extracter
2024-07-15 23:21:43 +08:00

78 lines
3.3 KiB
Python

# automatically generated by the FlatBuffers compiler, do not modify
# namespace: FlatData
import flatbuffers
from flatbuffers.compat import import_numpy
np = import_numpy()
class EventContentChangeScenarioExcel(object):
__slots__ = ['_tab']
@classmethod
def GetRootAs(cls, buf, offset=0):
n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
x = EventContentChangeScenarioExcel()
x.Init(buf, n + offset)
return x
@classmethod
def GetRootAsEventContentChangeScenarioExcel(cls, buf, offset=0):
"""This method is deprecated. Please switch to GetRootAs."""
return cls.GetRootAs(buf, offset)
# EventContentChangeScenarioExcel
def Init(self, buf, pos):
self._tab = flatbuffers.table.Table(buf, pos)
# EventContentChangeScenarioExcel
def EventContentId(self):
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
if o != 0:
return self._tab.Get(flatbuffers.number_types.Int64Flags, o + self._tab.Pos)
return 0
# EventContentChangeScenarioExcel
def ChangeType(self):
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
if o != 0:
return self._tab.Get(flatbuffers.number_types.Int32Flags, o + self._tab.Pos)
return 0
# EventContentChangeScenarioExcel
def ChangeCount(self):
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(8))
if o != 0:
return self._tab.Get(flatbuffers.number_types.Int64Flags, o + self._tab.Pos)
return 0
# EventContentChangeScenarioExcel
def ScenarioGroupId(self):
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(10))
if o != 0:
return self._tab.Get(flatbuffers.number_types.Int64Flags, o + self._tab.Pos)
return 0
def Start(builder): builder.StartObject(4)
def EventContentChangeScenarioExcelStart(builder):
"""This method is deprecated. Please switch to Start."""
return Start(builder)
def AddEventContentId(builder, EventContentId): builder.PrependInt64Slot(0, EventContentId, 0)
def EventContentChangeScenarioExcelAddEventContentId(builder, EventContentId):
"""This method is deprecated. Please switch to AddEventContentId."""
return AddEventContentId(builder, EventContentId)
def AddChangeType(builder, ChangeType): builder.PrependInt32Slot(1, ChangeType, 0)
def EventContentChangeScenarioExcelAddChangeType(builder, ChangeType):
"""This method is deprecated. Please switch to AddChangeType."""
return AddChangeType(builder, ChangeType)
def AddChangeCount(builder, ChangeCount): builder.PrependInt64Slot(2, ChangeCount, 0)
def EventContentChangeScenarioExcelAddChangeCount(builder, ChangeCount):
"""This method is deprecated. Please switch to AddChangeCount."""
return AddChangeCount(builder, ChangeCount)
def AddScenarioGroupId(builder, ScenarioGroupId): builder.PrependInt64Slot(3, ScenarioGroupId, 0)
def EventContentChangeScenarioExcelAddScenarioGroupId(builder, ScenarioGroupId):
"""This method is deprecated. Please switch to AddScenarioGroupId."""
return AddScenarioGroupId(builder, ScenarioGroupId)
def End(builder): return builder.EndObject()
def EventContentChangeScenarioExcelEnd(builder):
"""This method is deprecated. Please switch to End."""
return End(builder)