// // automatically generated by the FlatBuffers compiler, do not modify // namespace SCHALE.Common.FlatData { using global::System; using global::System.Collections.Generic; using global::SCHALE.Common.Crypto; using global::Google.FlatBuffers; public struct MinigameDreamVoiceExcel : IFlatbufferObject { private Table __p; public ByteBuffer ByteBuffer { get { return __p.bb; } } public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_24_3_25(); } public static MinigameDreamVoiceExcel GetRootAsMinigameDreamVoiceExcel(ByteBuffer _bb) { return GetRootAsMinigameDreamVoiceExcel(_bb, new MinigameDreamVoiceExcel()); } public static MinigameDreamVoiceExcel GetRootAsMinigameDreamVoiceExcel(ByteBuffer _bb, MinigameDreamVoiceExcel obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); } public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } public MinigameDreamVoiceExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } public long EventContentId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } } public long UniqueId { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } } public SCHALE.Common.FlatData.DreamMakerVoiceCondition VoiceCondition { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.DreamMakerVoiceCondition)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DreamMakerVoiceCondition.None; } } public uint VoiceClip { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetUint(o + __p.bb_pos) : (uint)0; } } public static Offset CreateMinigameDreamVoiceExcel(FlatBufferBuilder builder, long EventContentId = 0, long UniqueId = 0, SCHALE.Common.FlatData.DreamMakerVoiceCondition VoiceCondition = SCHALE.Common.FlatData.DreamMakerVoiceCondition.None, uint VoiceClip = 0) { builder.StartTable(4); MinigameDreamVoiceExcel.AddUniqueId(builder, UniqueId); MinigameDreamVoiceExcel.AddEventContentId(builder, EventContentId); MinigameDreamVoiceExcel.AddVoiceClip(builder, VoiceClip); MinigameDreamVoiceExcel.AddVoiceCondition(builder, VoiceCondition); return MinigameDreamVoiceExcel.EndMinigameDreamVoiceExcel(builder); } public static void StartMinigameDreamVoiceExcel(FlatBufferBuilder builder) { builder.StartTable(4); } public static void AddEventContentId(FlatBufferBuilder builder, long eventContentId) { builder.AddLong(0, eventContentId, 0); } public static void AddUniqueId(FlatBufferBuilder builder, long uniqueId) { builder.AddLong(1, uniqueId, 0); } public static void AddVoiceCondition(FlatBufferBuilder builder, SCHALE.Common.FlatData.DreamMakerVoiceCondition voiceCondition) { builder.AddInt(2, (int)voiceCondition, 0); } public static void AddVoiceClip(FlatBufferBuilder builder, uint voiceClip) { builder.AddUint(3, voiceClip, 0); } public static Offset EndMinigameDreamVoiceExcel(FlatBufferBuilder builder) { int o = builder.EndTable(); return new Offset(o); } public MinigameDreamVoiceExcelT UnPack() { var _o = new MinigameDreamVoiceExcelT(); this.UnPackTo(_o); return _o; } public void UnPackTo(MinigameDreamVoiceExcelT _o) { byte[] key = TableEncryptionService.CreateKey("MinigameDreamVoice"); _o.EventContentId = TableEncryptionService.Convert(this.EventContentId, key); _o.UniqueId = TableEncryptionService.Convert(this.UniqueId, key); _o.VoiceCondition = TableEncryptionService.Convert(this.VoiceCondition, key); _o.VoiceClip = TableEncryptionService.Convert(this.VoiceClip, key); } public static Offset Pack(FlatBufferBuilder builder, MinigameDreamVoiceExcelT _o) { if (_o == null) return default(Offset); return CreateMinigameDreamVoiceExcel( builder, _o.EventContentId, _o.UniqueId, _o.VoiceCondition, _o.VoiceClip); } } public class MinigameDreamVoiceExcelT { public long EventContentId { get; set; } public long UniqueId { get; set; } public SCHALE.Common.FlatData.DreamMakerVoiceCondition VoiceCondition { get; set; } public uint VoiceClip { get; set; } public MinigameDreamVoiceExcelT() { this.EventContentId = 0; this.UniqueId = 0; this.VoiceCondition = SCHALE.Common.FlatData.DreamMakerVoiceCondition.None; this.VoiceClip = 0; } } static public class MinigameDreamVoiceExcelVerify { static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos) { return verifier.VerifyTableStart(tablePos) && verifier.VerifyField(tablePos, 4 /*EventContentId*/, 8 /*long*/, 8, false) && verifier.VerifyField(tablePos, 6 /*UniqueId*/, 8 /*long*/, 8, false) && verifier.VerifyField(tablePos, 8 /*VoiceCondition*/, 4 /*SCHALE.Common.FlatData.DreamMakerVoiceCondition*/, 4, false) && verifier.VerifyField(tablePos, 10 /*VoiceClip*/, 4 /*uint*/, 4, false) && verifier.VerifyTableEnd(tablePos); } } }