2024-04-21 00:21:57 +00:00
|
|
|
// <auto-generated>
|
|
|
|
// automatically generated by the FlatBuffers compiler, do not modify
|
|
|
|
// </auto-generated>
|
|
|
|
|
|
|
|
namespace SCHALE.Common.FlatData
|
|
|
|
{
|
|
|
|
|
|
|
|
using global::System;
|
|
|
|
using global::System.Collections.Generic;
|
2024-04-29 15:52:45 +00:00
|
|
|
using global::SCHALE.Common.Crypto;
|
2024-04-21 00:21:57 +00:00
|
|
|
using global::Google.FlatBuffers;
|
|
|
|
|
|
|
|
public struct MinigameTBGEncounterRewardExcel : IFlatbufferObject
|
|
|
|
{
|
|
|
|
private Table __p;
|
|
|
|
public ByteBuffer ByteBuffer { get { return __p.bb; } }
|
|
|
|
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_24_3_25(); }
|
|
|
|
public static MinigameTBGEncounterRewardExcel GetRootAsMinigameTBGEncounterRewardExcel(ByteBuffer _bb) { return GetRootAsMinigameTBGEncounterRewardExcel(_bb, new MinigameTBGEncounterRewardExcel()); }
|
|
|
|
public static MinigameTBGEncounterRewardExcel GetRootAsMinigameTBGEncounterRewardExcel(ByteBuffer _bb, MinigameTBGEncounterRewardExcel obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
|
|
|
|
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
|
|
|
public MinigameTBGEncounterRewardExcel __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 long UniqueId { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
2024-11-08 10:52:05 +00:00
|
|
|
public SCHALE.Common.FlatData.TBGOptionSuccessType TBGOptionSuccessType_ { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.TBGOptionSuccessType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.TBGOptionSuccessType.None; } }
|
2024-04-21 00:21:57 +00:00
|
|
|
public long Paremeter { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
2024-11-08 10:52:05 +00:00
|
|
|
public SCHALE.Common.FlatData.ParcelType ParcelType_ { get { int o = __p.__offset(12); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
2024-04-21 00:21:57 +00:00
|
|
|
public long ParcelId { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
|
|
|
public long Amount { get { int o = __p.__offset(16); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
|
|
|
public int Prob { get { int o = __p.__offset(18); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
|
|
|
|
|
|
|
public static Offset<SCHALE.Common.FlatData.MinigameTBGEncounterRewardExcel> CreateMinigameTBGEncounterRewardExcel(FlatBufferBuilder builder,
|
|
|
|
long GroupId = 0,
|
|
|
|
long UniqueId = 0,
|
2024-11-08 10:52:05 +00:00
|
|
|
SCHALE.Common.FlatData.TBGOptionSuccessType TBGOptionSuccessType_ = SCHALE.Common.FlatData.TBGOptionSuccessType.None,
|
2024-04-21 00:21:57 +00:00
|
|
|
long Paremeter = 0,
|
2024-11-08 10:52:05 +00:00
|
|
|
SCHALE.Common.FlatData.ParcelType ParcelType_ = SCHALE.Common.FlatData.ParcelType.None,
|
2024-04-21 00:21:57 +00:00
|
|
|
long ParcelId = 0,
|
|
|
|
long Amount = 0,
|
|
|
|
int Prob = 0) {
|
|
|
|
builder.StartTable(8);
|
|
|
|
MinigameTBGEncounterRewardExcel.AddAmount(builder, Amount);
|
|
|
|
MinigameTBGEncounterRewardExcel.AddParcelId(builder, ParcelId);
|
|
|
|
MinigameTBGEncounterRewardExcel.AddParemeter(builder, Paremeter);
|
|
|
|
MinigameTBGEncounterRewardExcel.AddUniqueId(builder, UniqueId);
|
|
|
|
MinigameTBGEncounterRewardExcel.AddGroupId(builder, GroupId);
|
|
|
|
MinigameTBGEncounterRewardExcel.AddProb(builder, Prob);
|
2024-11-08 10:52:05 +00:00
|
|
|
MinigameTBGEncounterRewardExcel.AddParcelType_(builder, ParcelType_);
|
|
|
|
MinigameTBGEncounterRewardExcel.AddTBGOptionSuccessType_(builder, TBGOptionSuccessType_);
|
2024-04-21 00:21:57 +00:00
|
|
|
return MinigameTBGEncounterRewardExcel.EndMinigameTBGEncounterRewardExcel(builder);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void StartMinigameTBGEncounterRewardExcel(FlatBufferBuilder builder) { builder.StartTable(8); }
|
|
|
|
public static void AddGroupId(FlatBufferBuilder builder, long groupId) { builder.AddLong(0, groupId, 0); }
|
|
|
|
public static void AddUniqueId(FlatBufferBuilder builder, long uniqueId) { builder.AddLong(1, uniqueId, 0); }
|
2024-11-08 10:52:05 +00:00
|
|
|
public static void AddTBGOptionSuccessType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.TBGOptionSuccessType tBGOptionSuccessType_) { builder.AddInt(2, (int)tBGOptionSuccessType_, 0); }
|
2024-04-21 00:21:57 +00:00
|
|
|
public static void AddParemeter(FlatBufferBuilder builder, long paremeter) { builder.AddLong(3, paremeter, 0); }
|
2024-11-08 10:52:05 +00:00
|
|
|
public static void AddParcelType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ParcelType parcelType_) { builder.AddInt(4, (int)parcelType_, 0); }
|
2024-04-21 00:21:57 +00:00
|
|
|
public static void AddParcelId(FlatBufferBuilder builder, long parcelId) { builder.AddLong(5, parcelId, 0); }
|
|
|
|
public static void AddAmount(FlatBufferBuilder builder, long amount) { builder.AddLong(6, amount, 0); }
|
|
|
|
public static void AddProb(FlatBufferBuilder builder, int prob) { builder.AddInt(7, prob, 0); }
|
|
|
|
public static Offset<SCHALE.Common.FlatData.MinigameTBGEncounterRewardExcel> EndMinigameTBGEncounterRewardExcel(FlatBufferBuilder builder) {
|
|
|
|
int o = builder.EndTable();
|
|
|
|
return new Offset<SCHALE.Common.FlatData.MinigameTBGEncounterRewardExcel>(o);
|
|
|
|
}
|
2024-04-29 15:52:45 +00:00
|
|
|
public MinigameTBGEncounterRewardExcelT UnPack() {
|
|
|
|
var _o = new MinigameTBGEncounterRewardExcelT();
|
|
|
|
this.UnPackTo(_o);
|
|
|
|
return _o;
|
|
|
|
}
|
|
|
|
public void UnPackTo(MinigameTBGEncounterRewardExcelT _o) {
|
|
|
|
byte[] key = TableEncryptionService.CreateKey("MinigameTBGEncounterReward");
|
|
|
|
_o.GroupId = TableEncryptionService.Convert(this.GroupId, key);
|
|
|
|
_o.UniqueId = TableEncryptionService.Convert(this.UniqueId, key);
|
2024-11-08 10:52:05 +00:00
|
|
|
_o.TBGOptionSuccessType_ = TableEncryptionService.Convert(this.TBGOptionSuccessType_, key);
|
2024-04-29 15:52:45 +00:00
|
|
|
_o.Paremeter = TableEncryptionService.Convert(this.Paremeter, key);
|
2024-11-08 10:52:05 +00:00
|
|
|
_o.ParcelType_ = TableEncryptionService.Convert(this.ParcelType_, key);
|
2024-04-29 15:52:45 +00:00
|
|
|
_o.ParcelId = TableEncryptionService.Convert(this.ParcelId, key);
|
|
|
|
_o.Amount = TableEncryptionService.Convert(this.Amount, key);
|
|
|
|
_o.Prob = TableEncryptionService.Convert(this.Prob, key);
|
|
|
|
}
|
|
|
|
public static Offset<SCHALE.Common.FlatData.MinigameTBGEncounterRewardExcel> Pack(FlatBufferBuilder builder, MinigameTBGEncounterRewardExcelT _o) {
|
|
|
|
if (_o == null) return default(Offset<SCHALE.Common.FlatData.MinigameTBGEncounterRewardExcel>);
|
|
|
|
return CreateMinigameTBGEncounterRewardExcel(
|
|
|
|
builder,
|
|
|
|
_o.GroupId,
|
|
|
|
_o.UniqueId,
|
2024-11-08 10:52:05 +00:00
|
|
|
_o.TBGOptionSuccessType_,
|
2024-04-29 15:52:45 +00:00
|
|
|
_o.Paremeter,
|
2024-11-08 10:52:05 +00:00
|
|
|
_o.ParcelType_,
|
2024-04-29 15:52:45 +00:00
|
|
|
_o.ParcelId,
|
|
|
|
_o.Amount,
|
|
|
|
_o.Prob);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public class MinigameTBGEncounterRewardExcelT
|
|
|
|
{
|
|
|
|
public long GroupId { get; set; }
|
|
|
|
public long UniqueId { get; set; }
|
2024-11-08 10:52:05 +00:00
|
|
|
public SCHALE.Common.FlatData.TBGOptionSuccessType TBGOptionSuccessType_ { get; set; }
|
2024-04-29 15:52:45 +00:00
|
|
|
public long Paremeter { get; set; }
|
2024-11-08 10:52:05 +00:00
|
|
|
public SCHALE.Common.FlatData.ParcelType ParcelType_ { get; set; }
|
2024-04-29 15:52:45 +00:00
|
|
|
public long ParcelId { get; set; }
|
|
|
|
public long Amount { get; set; }
|
|
|
|
public int Prob { get; set; }
|
|
|
|
|
|
|
|
public MinigameTBGEncounterRewardExcelT() {
|
|
|
|
this.GroupId = 0;
|
|
|
|
this.UniqueId = 0;
|
2024-11-08 10:52:05 +00:00
|
|
|
this.TBGOptionSuccessType_ = SCHALE.Common.FlatData.TBGOptionSuccessType.None;
|
2024-04-29 15:52:45 +00:00
|
|
|
this.Paremeter = 0;
|
2024-11-08 10:52:05 +00:00
|
|
|
this.ParcelType_ = SCHALE.Common.FlatData.ParcelType.None;
|
2024-04-29 15:52:45 +00:00
|
|
|
this.ParcelId = 0;
|
|
|
|
this.Amount = 0;
|
|
|
|
this.Prob = 0;
|
|
|
|
}
|
2024-04-21 00:21:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static public class MinigameTBGEncounterRewardExcelVerify
|
|
|
|
{
|
|
|
|
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 /*UniqueId*/, 8 /*long*/, 8, false)
|
2024-11-08 10:52:05 +00:00
|
|
|
&& verifier.VerifyField(tablePos, 8 /*TBGOptionSuccessType_*/, 4 /*SCHALE.Common.FlatData.TBGOptionSuccessType*/, 4, false)
|
2024-04-21 00:21:57 +00:00
|
|
|
&& verifier.VerifyField(tablePos, 10 /*Paremeter*/, 8 /*long*/, 8, false)
|
2024-11-08 10:52:05 +00:00
|
|
|
&& verifier.VerifyField(tablePos, 12 /*ParcelType_*/, 4 /*SCHALE.Common.FlatData.ParcelType*/, 4, false)
|
2024-04-21 00:21:57 +00:00
|
|
|
&& verifier.VerifyField(tablePos, 14 /*ParcelId*/, 8 /*long*/, 8, false)
|
|
|
|
&& verifier.VerifyField(tablePos, 16 /*Amount*/, 8 /*long*/, 8, false)
|
|
|
|
&& verifier.VerifyField(tablePos, 18 /*Prob*/, 4 /*int*/, 4, false)
|
|
|
|
&& verifier.VerifyTableEnd(tablePos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|