// // 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 LimitedStageRewardExcel : IFlatbufferObject { private Table __p; public ByteBuffer ByteBuffer { get { return __p.bb; } } public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_24_3_25(); } public static LimitedStageRewardExcel GetRootAsLimitedStageRewardExcel(ByteBuffer _bb) { return GetRootAsLimitedStageRewardExcel(_bb, new LimitedStageRewardExcel()); } public static LimitedStageRewardExcel GetRootAsLimitedStageRewardExcel(ByteBuffer _bb, LimitedStageRewardExcel obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); } public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); } public LimitedStageRewardExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } public long GroupId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } } public SCHALE.Common.FlatData.RewardTag RewardTag_ { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.RewardTag)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.RewardTag.Default; } } public int RewardProb { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } } public SCHALE.Common.FlatData.ParcelType RewardParcelType { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } } public long RewardId { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } } public int RewardAmount { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } } public bool IsDisplayed { get { int o = __p.__offset(16); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } } public static Offset CreateLimitedStageRewardExcel(FlatBufferBuilder builder, long GroupId = 0, SCHALE.Common.FlatData.RewardTag RewardTag_ = SCHALE.Common.FlatData.RewardTag.Default, int RewardProb = 0, SCHALE.Common.FlatData.ParcelType RewardParcelType = SCHALE.Common.FlatData.ParcelType.None_, long RewardId = 0, int RewardAmount = 0, bool IsDisplayed = false) { builder.StartTable(7); LimitedStageRewardExcel.AddRewardId(builder, RewardId); LimitedStageRewardExcel.AddGroupId(builder, GroupId); LimitedStageRewardExcel.AddRewardAmount(builder, RewardAmount); LimitedStageRewardExcel.AddRewardParcelType(builder, RewardParcelType); LimitedStageRewardExcel.AddRewardProb(builder, RewardProb); LimitedStageRewardExcel.AddRewardTag_(builder, RewardTag_); LimitedStageRewardExcel.AddIsDisplayed(builder, IsDisplayed); return LimitedStageRewardExcel.EndLimitedStageRewardExcel(builder); } public static void StartLimitedStageRewardExcel(FlatBufferBuilder builder) { builder.StartTable(7); } public static void AddGroupId(FlatBufferBuilder builder, long groupId) { builder.AddLong(0, groupId, 0); } public static void AddRewardTag_(FlatBufferBuilder builder, SCHALE.Common.FlatData.RewardTag rewardTag_) { builder.AddInt(1, (int)rewardTag_, 0); } public static void AddRewardProb(FlatBufferBuilder builder, int rewardProb) { builder.AddInt(2, rewardProb, 0); } public static void AddRewardParcelType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ParcelType rewardParcelType) { builder.AddInt(3, (int)rewardParcelType, 0); } public static void AddRewardId(FlatBufferBuilder builder, long rewardId) { builder.AddLong(4, rewardId, 0); } public static void AddRewardAmount(FlatBufferBuilder builder, int rewardAmount) { builder.AddInt(5, rewardAmount, 0); } public static void AddIsDisplayed(FlatBufferBuilder builder, bool isDisplayed) { builder.AddBool(6, isDisplayed, false); } public static Offset EndLimitedStageRewardExcel(FlatBufferBuilder builder) { int o = builder.EndTable(); return new Offset(o); } public LimitedStageRewardExcelT UnPack() { var _o = new LimitedStageRewardExcelT(); this.UnPackTo(_o); return _o; } public void UnPackTo(LimitedStageRewardExcelT _o) { byte[] key = TableEncryptionService.CreateKey("LimitedStageReward"); _o.GroupId = TableEncryptionService.Convert(this.GroupId, key); _o.RewardTag_ = TableEncryptionService.Convert(this.RewardTag_, key); _o.RewardProb = TableEncryptionService.Convert(this.RewardProb, key); _o.RewardParcelType = TableEncryptionService.Convert(this.RewardParcelType, key); _o.RewardId = TableEncryptionService.Convert(this.RewardId, key); _o.RewardAmount = TableEncryptionService.Convert(this.RewardAmount, key); _o.IsDisplayed = TableEncryptionService.Convert(this.IsDisplayed, key); } public static Offset Pack(FlatBufferBuilder builder, LimitedStageRewardExcelT _o) { if (_o == null) return default(Offset); return CreateLimitedStageRewardExcel( builder, _o.GroupId, _o.RewardTag_, _o.RewardProb, _o.RewardParcelType, _o.RewardId, _o.RewardAmount, _o.IsDisplayed); } } public class LimitedStageRewardExcelT { public long GroupId { get; set; } public SCHALE.Common.FlatData.RewardTag RewardTag_ { get; set; } public int RewardProb { get; set; } public SCHALE.Common.FlatData.ParcelType RewardParcelType { get; set; } public long RewardId { get; set; } public int RewardAmount { get; set; } public bool IsDisplayed { get; set; } public LimitedStageRewardExcelT() { this.GroupId = 0; this.RewardTag_ = SCHALE.Common.FlatData.RewardTag.Default; this.RewardProb = 0; this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None_; this.RewardId = 0; this.RewardAmount = 0; this.IsDisplayed = false; } } static public class LimitedStageRewardExcelVerify { static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos) { return verifier.VerifyTableStart(tablePos) && verifier.VerifyField(tablePos, 4 /*GroupId*/, 8 /*long*/, 8, false) && verifier.VerifyField(tablePos, 6 /*RewardTag_*/, 4 /*SCHALE.Common.FlatData.RewardTag*/, 4, false) && verifier.VerifyField(tablePos, 8 /*RewardProb*/, 4 /*int*/, 4, false) && verifier.VerifyField(tablePos, 10 /*RewardParcelType*/, 4 /*SCHALE.Common.FlatData.ParcelType*/, 4, false) && verifier.VerifyField(tablePos, 12 /*RewardId*/, 8 /*long*/, 8, false) && verifier.VerifyField(tablePos, 14 /*RewardAmount*/, 4 /*int*/, 4, false) && verifier.VerifyField(tablePos, 16 /*IsDisplayed*/, 1 /*bool*/, 1, false) && verifier.VerifyTableEnd(tablePos); } } }