dev merge - r75_49ajrpwcziy395uuk0jq_2 update #1
|
@ -52,7 +52,7 @@ public struct AcademyLocationExcel : IFlatbufferObject
|
|||
public ArraySegment<byte>? GetOpenConditionCountBytes() { return __p.__vector_as_arraysegment(14); }
|
||||
#endif
|
||||
public long[] GetOpenConditionCountArray() { return __p.__vector_as_array<long>(14); }
|
||||
public SCHALE.Common.FlatData.ParcelType RewardParcelType { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType RewardParcelType { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long RewardParcelId { get { int o = __p.__offset(18); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long OpenTeacherRank { get { int o = __p.__offset(20); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
||||
|
@ -63,7 +63,7 @@ public struct AcademyLocationExcel : IFlatbufferObject
|
|||
StringOffset IconImagePathOffset = default(StringOffset),
|
||||
VectorOffset OpenConditionOffset = default(VectorOffset),
|
||||
VectorOffset OpenConditionCountOffset = default(VectorOffset),
|
||||
SCHALE.Common.FlatData.ParcelType RewardParcelType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType RewardParcelType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long RewardParcelId = 0,
|
||||
long OpenTeacherRank = 0) {
|
||||
builder.StartTable(9);
|
||||
|
@ -169,7 +169,7 @@ public class AcademyLocationExcelT
|
|||
this.IconImagePath = null;
|
||||
this.OpenCondition = null;
|
||||
this.OpenConditionCount = null;
|
||||
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.RewardParcelId = 0;
|
||||
this.OpenTeacherRank = 0;
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum AcademyMessageConditions : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
FavorRankUp = 1,
|
||||
AcademySchedule = 2,
|
||||
Answer = 3,
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum AcademyMessageTypes : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Text = 1,
|
||||
Image = 2,
|
||||
};
|
||||
|
|
|
@ -23,14 +23,14 @@ public struct AcademyMessanger1Excel : IFlatbufferObject
|
|||
public long MessageGroupId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long Id { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long CharacterId { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.AcademyMessageConditions MessageCondition { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.AcademyMessageConditions)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AcademyMessageConditions.None_; } }
|
||||
public SCHALE.Common.FlatData.AcademyMessageConditions MessageCondition { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.AcademyMessageConditions)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AcademyMessageConditions.None; } }
|
||||
public long ConditionValue { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long PreConditionGroupId { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long PreConditionFavorScheduleId { get { int o = __p.__offset(16); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long FavorScheduleId { get { int o = __p.__offset(18); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long NextGroupId { get { int o = __p.__offset(20); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long FeedbackTimeMillisec { get { int o = __p.__offset(22); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.AcademyMessageTypes MessageType { get { int o = __p.__offset(24); return o != 0 ? (SCHALE.Common.FlatData.AcademyMessageTypes)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AcademyMessageTypes.None_; } }
|
||||
public SCHALE.Common.FlatData.AcademyMessageTypes MessageType { get { int o = __p.__offset(24); return o != 0 ? (SCHALE.Common.FlatData.AcademyMessageTypes)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AcademyMessageTypes.None; } }
|
||||
public string ImagePath { get { int o = __p.__offset(26); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
public Span<byte> GetImagePathBytes() { return __p.__vector_as_span<byte>(26, 1); }
|
||||
|
@ -57,14 +57,14 @@ public struct AcademyMessanger1Excel : IFlatbufferObject
|
|||
long MessageGroupId = 0,
|
||||
long Id = 0,
|
||||
long CharacterId = 0,
|
||||
SCHALE.Common.FlatData.AcademyMessageConditions MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None_,
|
||||
SCHALE.Common.FlatData.AcademyMessageConditions MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None,
|
||||
long ConditionValue = 0,
|
||||
long PreConditionGroupId = 0,
|
||||
long PreConditionFavorScheduleId = 0,
|
||||
long FavorScheduleId = 0,
|
||||
long NextGroupId = 0,
|
||||
long FeedbackTimeMillisec = 0,
|
||||
SCHALE.Common.FlatData.AcademyMessageTypes MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None_,
|
||||
SCHALE.Common.FlatData.AcademyMessageTypes MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None,
|
||||
StringOffset ImagePathOffset = default(StringOffset),
|
||||
StringOffset MessageKROffset = default(StringOffset),
|
||||
StringOffset MessageJPOffset = default(StringOffset)) {
|
||||
|
@ -172,14 +172,14 @@ public class AcademyMessanger1ExcelT
|
|||
this.MessageGroupId = 0;
|
||||
this.Id = 0;
|
||||
this.CharacterId = 0;
|
||||
this.MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None_;
|
||||
this.MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None;
|
||||
this.ConditionValue = 0;
|
||||
this.PreConditionGroupId = 0;
|
||||
this.PreConditionFavorScheduleId = 0;
|
||||
this.FavorScheduleId = 0;
|
||||
this.NextGroupId = 0;
|
||||
this.FeedbackTimeMillisec = 0;
|
||||
this.MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None_;
|
||||
this.MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None;
|
||||
this.ImagePath = null;
|
||||
this.MessageKR = null;
|
||||
this.MessageJP = null;
|
||||
|
|
|
@ -23,14 +23,14 @@ public struct AcademyMessanger2Excel : IFlatbufferObject
|
|||
public long MessageGroupId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long Id { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long CharacterId { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.AcademyMessageConditions MessageCondition { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.AcademyMessageConditions)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AcademyMessageConditions.None_; } }
|
||||
public SCHALE.Common.FlatData.AcademyMessageConditions MessageCondition { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.AcademyMessageConditions)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AcademyMessageConditions.None; } }
|
||||
public long ConditionValue { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long PreConditionGroupId { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long PreConditionFavorScheduleId { get { int o = __p.__offset(16); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long FavorScheduleId { get { int o = __p.__offset(18); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long NextGroupId { get { int o = __p.__offset(20); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long FeedbackTimeMillisec { get { int o = __p.__offset(22); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.AcademyMessageTypes MessageType { get { int o = __p.__offset(24); return o != 0 ? (SCHALE.Common.FlatData.AcademyMessageTypes)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AcademyMessageTypes.None_; } }
|
||||
public SCHALE.Common.FlatData.AcademyMessageTypes MessageType { get { int o = __p.__offset(24); return o != 0 ? (SCHALE.Common.FlatData.AcademyMessageTypes)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AcademyMessageTypes.None; } }
|
||||
public string ImagePath { get { int o = __p.__offset(26); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
public Span<byte> GetImagePathBytes() { return __p.__vector_as_span<byte>(26, 1); }
|
||||
|
@ -57,14 +57,14 @@ public struct AcademyMessanger2Excel : IFlatbufferObject
|
|||
long MessageGroupId = 0,
|
||||
long Id = 0,
|
||||
long CharacterId = 0,
|
||||
SCHALE.Common.FlatData.AcademyMessageConditions MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None_,
|
||||
SCHALE.Common.FlatData.AcademyMessageConditions MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None,
|
||||
long ConditionValue = 0,
|
||||
long PreConditionGroupId = 0,
|
||||
long PreConditionFavorScheduleId = 0,
|
||||
long FavorScheduleId = 0,
|
||||
long NextGroupId = 0,
|
||||
long FeedbackTimeMillisec = 0,
|
||||
SCHALE.Common.FlatData.AcademyMessageTypes MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None_,
|
||||
SCHALE.Common.FlatData.AcademyMessageTypes MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None,
|
||||
StringOffset ImagePathOffset = default(StringOffset),
|
||||
StringOffset MessageKROffset = default(StringOffset),
|
||||
StringOffset MessageJPOffset = default(StringOffset)) {
|
||||
|
@ -172,14 +172,14 @@ public class AcademyMessanger2ExcelT
|
|||
this.MessageGroupId = 0;
|
||||
this.Id = 0;
|
||||
this.CharacterId = 0;
|
||||
this.MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None_;
|
||||
this.MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None;
|
||||
this.ConditionValue = 0;
|
||||
this.PreConditionGroupId = 0;
|
||||
this.PreConditionFavorScheduleId = 0;
|
||||
this.FavorScheduleId = 0;
|
||||
this.NextGroupId = 0;
|
||||
this.FeedbackTimeMillisec = 0;
|
||||
this.MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None_;
|
||||
this.MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None;
|
||||
this.ImagePath = null;
|
||||
this.MessageKR = null;
|
||||
this.MessageJP = null;
|
||||
|
|
|
@ -23,14 +23,14 @@ public struct AcademyMessanger3Excel : IFlatbufferObject
|
|||
public long MessageGroupId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long Id { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long CharacterId { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.AcademyMessageConditions MessageCondition { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.AcademyMessageConditions)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AcademyMessageConditions.None_; } }
|
||||
public SCHALE.Common.FlatData.AcademyMessageConditions MessageCondition { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.AcademyMessageConditions)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AcademyMessageConditions.None; } }
|
||||
public long ConditionValue { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long PreConditionGroupId { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long PreConditionFavorScheduleId { get { int o = __p.__offset(16); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long FavorScheduleId { get { int o = __p.__offset(18); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long NextGroupId { get { int o = __p.__offset(20); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long FeedbackTimeMillisec { get { int o = __p.__offset(22); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.AcademyMessageTypes MessageType { get { int o = __p.__offset(24); return o != 0 ? (SCHALE.Common.FlatData.AcademyMessageTypes)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AcademyMessageTypes.None_; } }
|
||||
public SCHALE.Common.FlatData.AcademyMessageTypes MessageType { get { int o = __p.__offset(24); return o != 0 ? (SCHALE.Common.FlatData.AcademyMessageTypes)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AcademyMessageTypes.None; } }
|
||||
public string ImagePath { get { int o = __p.__offset(26); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
public Span<byte> GetImagePathBytes() { return __p.__vector_as_span<byte>(26, 1); }
|
||||
|
@ -57,14 +57,14 @@ public struct AcademyMessanger3Excel : IFlatbufferObject
|
|||
long MessageGroupId = 0,
|
||||
long Id = 0,
|
||||
long CharacterId = 0,
|
||||
SCHALE.Common.FlatData.AcademyMessageConditions MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None_,
|
||||
SCHALE.Common.FlatData.AcademyMessageConditions MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None,
|
||||
long ConditionValue = 0,
|
||||
long PreConditionGroupId = 0,
|
||||
long PreConditionFavorScheduleId = 0,
|
||||
long FavorScheduleId = 0,
|
||||
long NextGroupId = 0,
|
||||
long FeedbackTimeMillisec = 0,
|
||||
SCHALE.Common.FlatData.AcademyMessageTypes MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None_,
|
||||
SCHALE.Common.FlatData.AcademyMessageTypes MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None,
|
||||
StringOffset ImagePathOffset = default(StringOffset),
|
||||
StringOffset MessageKROffset = default(StringOffset),
|
||||
StringOffset MessageJPOffset = default(StringOffset)) {
|
||||
|
@ -172,14 +172,14 @@ public class AcademyMessanger3ExcelT
|
|||
this.MessageGroupId = 0;
|
||||
this.Id = 0;
|
||||
this.CharacterId = 0;
|
||||
this.MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None_;
|
||||
this.MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None;
|
||||
this.ConditionValue = 0;
|
||||
this.PreConditionGroupId = 0;
|
||||
this.PreConditionFavorScheduleId = 0;
|
||||
this.FavorScheduleId = 0;
|
||||
this.NextGroupId = 0;
|
||||
this.FeedbackTimeMillisec = 0;
|
||||
this.MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None_;
|
||||
this.MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None;
|
||||
this.ImagePath = null;
|
||||
this.MessageKR = null;
|
||||
this.MessageJP = null;
|
||||
|
|
|
@ -23,14 +23,14 @@ public struct AcademyMessangerExcel : IFlatbufferObject
|
|||
public long MessageGroupId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long Id { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long CharacterId { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.AcademyMessageConditions MessageCondition { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.AcademyMessageConditions)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AcademyMessageConditions.None_; } }
|
||||
public SCHALE.Common.FlatData.AcademyMessageConditions MessageCondition { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.AcademyMessageConditions)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AcademyMessageConditions.None; } }
|
||||
public long ConditionValue { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long PreConditionGroupId { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long PreConditionFavorScheduleId { get { int o = __p.__offset(16); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long FavorScheduleId { get { int o = __p.__offset(18); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long NextGroupId { get { int o = __p.__offset(20); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long FeedbackTimeMillisec { get { int o = __p.__offset(22); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.AcademyMessageTypes MessageType { get { int o = __p.__offset(24); return o != 0 ? (SCHALE.Common.FlatData.AcademyMessageTypes)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AcademyMessageTypes.None_; } }
|
||||
public SCHALE.Common.FlatData.AcademyMessageTypes MessageType { get { int o = __p.__offset(24); return o != 0 ? (SCHALE.Common.FlatData.AcademyMessageTypes)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AcademyMessageTypes.None; } }
|
||||
public string ImagePath { get { int o = __p.__offset(26); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
public Span<byte> GetImagePathBytes() { return __p.__vector_as_span<byte>(26, 1); }
|
||||
|
@ -57,14 +57,14 @@ public struct AcademyMessangerExcel : IFlatbufferObject
|
|||
long MessageGroupId = 0,
|
||||
long Id = 0,
|
||||
long CharacterId = 0,
|
||||
SCHALE.Common.FlatData.AcademyMessageConditions MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None_,
|
||||
SCHALE.Common.FlatData.AcademyMessageConditions MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None,
|
||||
long ConditionValue = 0,
|
||||
long PreConditionGroupId = 0,
|
||||
long PreConditionFavorScheduleId = 0,
|
||||
long FavorScheduleId = 0,
|
||||
long NextGroupId = 0,
|
||||
long FeedbackTimeMillisec = 0,
|
||||
SCHALE.Common.FlatData.AcademyMessageTypes MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None_,
|
||||
SCHALE.Common.FlatData.AcademyMessageTypes MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None,
|
||||
StringOffset ImagePathOffset = default(StringOffset),
|
||||
StringOffset MessageKROffset = default(StringOffset),
|
||||
StringOffset MessageJPOffset = default(StringOffset)) {
|
||||
|
@ -172,14 +172,14 @@ public class AcademyMessangerExcelT
|
|||
this.MessageGroupId = 0;
|
||||
this.Id = 0;
|
||||
this.CharacterId = 0;
|
||||
this.MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None_;
|
||||
this.MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None;
|
||||
this.ConditionValue = 0;
|
||||
this.PreConditionGroupId = 0;
|
||||
this.PreConditionFavorScheduleId = 0;
|
||||
this.FavorScheduleId = 0;
|
||||
this.NextGroupId = 0;
|
||||
this.FeedbackTimeMillisec = 0;
|
||||
this.MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None_;
|
||||
this.MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None;
|
||||
this.ImagePath = null;
|
||||
this.MessageKR = null;
|
||||
this.MessageJP = null;
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum AimIKType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
OneHandRight = 1,
|
||||
OneHandLeft = 2,
|
||||
TwoHandRight = 3,
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum AmplifyDoTRemoveCondition : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
ApplyCount = 1,
|
||||
};
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum Anniversary : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
UserBDay = 1,
|
||||
StudentBDay = 2,
|
||||
};
|
||||
|
|
|
@ -21,7 +21,7 @@ public struct ArenaRewardExcel : IFlatbufferObject
|
|||
public ArenaRewardExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public long UniqueId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ArenaRewardType ArenaRewardType_ { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.ArenaRewardType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ArenaRewardType.None_; } }
|
||||
public SCHALE.Common.FlatData.ArenaRewardType ArenaRewardType { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.ArenaRewardType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ArenaRewardType.None; } }
|
||||
public long RankStart { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long RankEnd { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public string RankIconPath { get { int o = __p.__offset(12); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
|
@ -60,7 +60,7 @@ public struct ArenaRewardExcel : IFlatbufferObject
|
|||
|
||||
public static Offset<SCHALE.Common.FlatData.ArenaRewardExcel> CreateArenaRewardExcel(FlatBufferBuilder builder,
|
||||
long UniqueId = 0,
|
||||
SCHALE.Common.FlatData.ArenaRewardType ArenaRewardType_ = SCHALE.Common.FlatData.ArenaRewardType.None_,
|
||||
SCHALE.Common.FlatData.ArenaRewardType ArenaRewardType = SCHALE.Common.FlatData.ArenaRewardType.None,
|
||||
long RankStart = 0,
|
||||
long RankEnd = 0,
|
||||
StringOffset RankIconPathOffset = default(StringOffset),
|
||||
|
@ -77,13 +77,13 @@ public struct ArenaRewardExcel : IFlatbufferObject
|
|||
ArenaRewardExcel.AddRewardParcelUniqueId(builder, RewardParcelUniqueIdOffset);
|
||||
ArenaRewardExcel.AddRewardParcelType(builder, RewardParcelTypeOffset);
|
||||
ArenaRewardExcel.AddRankIconPath(builder, RankIconPathOffset);
|
||||
ArenaRewardExcel.AddArenaRewardType_(builder, ArenaRewardType_);
|
||||
ArenaRewardExcel.AddArenaRewardType(builder, ArenaRewardType);
|
||||
return ArenaRewardExcel.EndArenaRewardExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartArenaRewardExcel(FlatBufferBuilder builder) { builder.StartTable(9); }
|
||||
public static void AddUniqueId(FlatBufferBuilder builder, long uniqueId) { builder.AddLong(0, uniqueId, 0); }
|
||||
public static void AddArenaRewardType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ArenaRewardType arenaRewardType_) { builder.AddInt(1, (int)arenaRewardType_, 0); }
|
||||
public static void AddArenaRewardType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ArenaRewardType arenaRewardType) { builder.AddInt(1, (int)arenaRewardType, 0); }
|
||||
public static void AddRankStart(FlatBufferBuilder builder, long rankStart) { builder.AddLong(2, rankStart, 0); }
|
||||
public static void AddRankEnd(FlatBufferBuilder builder, long rankEnd) { builder.AddLong(3, rankEnd, 0); }
|
||||
public static void AddRankIconPath(FlatBufferBuilder builder, StringOffset rankIconPathOffset) { builder.AddOffset(4, rankIconPathOffset.Value, 0); }
|
||||
|
@ -123,7 +123,7 @@ public struct ArenaRewardExcel : IFlatbufferObject
|
|||
public void UnPackTo(ArenaRewardExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("ArenaReward");
|
||||
_o.UniqueId = TableEncryptionService.Convert(this.UniqueId, key);
|
||||
_o.ArenaRewardType_ = TableEncryptionService.Convert(this.ArenaRewardType_, key);
|
||||
_o.ArenaRewardType = TableEncryptionService.Convert(this.ArenaRewardType, key);
|
||||
_o.RankStart = TableEncryptionService.Convert(this.RankStart, key);
|
||||
_o.RankEnd = TableEncryptionService.Convert(this.RankEnd, key);
|
||||
_o.RankIconPath = TableEncryptionService.Convert(this.RankIconPath, key);
|
||||
|
@ -163,7 +163,7 @@ public struct ArenaRewardExcel : IFlatbufferObject
|
|||
return CreateArenaRewardExcel(
|
||||
builder,
|
||||
_o.UniqueId,
|
||||
_o.ArenaRewardType_,
|
||||
_o.ArenaRewardType,
|
||||
_o.RankStart,
|
||||
_o.RankEnd,
|
||||
_RankIconPath,
|
||||
|
@ -177,7 +177,7 @@ public struct ArenaRewardExcel : IFlatbufferObject
|
|||
public class ArenaRewardExcelT
|
||||
{
|
||||
public long UniqueId { get; set; }
|
||||
public SCHALE.Common.FlatData.ArenaRewardType ArenaRewardType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ArenaRewardType ArenaRewardType { get; set; }
|
||||
public long RankStart { get; set; }
|
||||
public long RankEnd { get; set; }
|
||||
public string RankIconPath { get; set; }
|
||||
|
@ -188,7 +188,7 @@ public class ArenaRewardExcelT
|
|||
|
||||
public ArenaRewardExcelT() {
|
||||
this.UniqueId = 0;
|
||||
this.ArenaRewardType_ = SCHALE.Common.FlatData.ArenaRewardType.None_;
|
||||
this.ArenaRewardType = SCHALE.Common.FlatData.ArenaRewardType.None;
|
||||
this.RankStart = 0;
|
||||
this.RankEnd = 0;
|
||||
this.RankIconPath = null;
|
||||
|
@ -206,7 +206,7 @@ static public class ArenaRewardExcelVerify
|
|||
{
|
||||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*UniqueId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*ArenaRewardType_*/, 4 /*SCHALE.Common.FlatData.ArenaRewardType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*ArenaRewardType*/, 4 /*SCHALE.Common.FlatData.ArenaRewardType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*RankStart*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*RankEnd*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyString(tablePos, 12 /*RankIconPath*/, false)
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum ArenaRewardType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Time = 1,
|
||||
Daily = 2,
|
||||
SeasonRecord = 3,
|
||||
|
|
|
@ -20,12 +20,12 @@ public struct AssistEchelonTypeConvertExcel : IFlatbufferObject
|
|||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
||||
public AssistEchelonTypeConvertExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public SCHALE.Common.FlatData.EchelonType Contents { get { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.EchelonType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EchelonType.None_; } }
|
||||
public SCHALE.Common.FlatData.EchelonType ConvertTo { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.EchelonType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EchelonType.None_; } }
|
||||
public SCHALE.Common.FlatData.EchelonType Contents { get { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.EchelonType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EchelonType.None; } }
|
||||
public SCHALE.Common.FlatData.EchelonType ConvertTo { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.EchelonType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EchelonType.None; } }
|
||||
|
||||
public static Offset<SCHALE.Common.FlatData.AssistEchelonTypeConvertExcel> CreateAssistEchelonTypeConvertExcel(FlatBufferBuilder builder,
|
||||
SCHALE.Common.FlatData.EchelonType Contents = SCHALE.Common.FlatData.EchelonType.None_,
|
||||
SCHALE.Common.FlatData.EchelonType ConvertTo = SCHALE.Common.FlatData.EchelonType.None_) {
|
||||
SCHALE.Common.FlatData.EchelonType Contents = SCHALE.Common.FlatData.EchelonType.None,
|
||||
SCHALE.Common.FlatData.EchelonType ConvertTo = SCHALE.Common.FlatData.EchelonType.None) {
|
||||
builder.StartTable(2);
|
||||
AssistEchelonTypeConvertExcel.AddConvertTo(builder, ConvertTo);
|
||||
AssistEchelonTypeConvertExcel.AddContents(builder, Contents);
|
||||
|
@ -64,8 +64,8 @@ public class AssistEchelonTypeConvertExcelT
|
|||
public SCHALE.Common.FlatData.EchelonType ConvertTo { get; set; }
|
||||
|
||||
public AssistEchelonTypeConvertExcelT() {
|
||||
this.Contents = SCHALE.Common.FlatData.EchelonType.None_;
|
||||
this.ConvertTo = SCHALE.Common.FlatData.EchelonType.None_;
|
||||
this.Contents = SCHALE.Common.FlatData.EchelonType.None;
|
||||
this.ConvertTo = SCHALE.Common.FlatData.EchelonType.None;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -71,8 +71,8 @@ public struct AttendanceExcel : IFlatbufferObject
|
|||
#endif
|
||||
public byte[] GetEndDateArray() { return __p.__vector_as_array<byte>(30); }
|
||||
public long ExpiryDate { get { int o = __p.__offset(32); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.MailType MailType_ { get { int o = __p.__offset(34); return o != 0 ? (SCHALE.Common.FlatData.MailType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.MailType.System; } }
|
||||
public SCHALE.Common.FlatData.DialogCategory DialogCategory_ { get { int o = __p.__offset(36); return o != 0 ? (SCHALE.Common.FlatData.DialogCategory)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DialogCategory.Cafe; } }
|
||||
public SCHALE.Common.FlatData.MailType MailType { get { int o = __p.__offset(34); return o != 0 ? (SCHALE.Common.FlatData.MailType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.MailType.System; } }
|
||||
public SCHALE.Common.FlatData.DialogCategory DialogCategory { get { int o = __p.__offset(36); return o != 0 ? (SCHALE.Common.FlatData.DialogCategory)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DialogCategory.Cafe; } }
|
||||
public string TitleImagePath { get { int o = __p.__offset(38); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
public Span<byte> GetTitleImagePathBytes() { return __p.__vector_as_span<byte>(38, 1); }
|
||||
|
@ -104,8 +104,8 @@ public struct AttendanceExcel : IFlatbufferObject
|
|||
StringOffset StartableEndDateOffset = default(StringOffset),
|
||||
StringOffset EndDateOffset = default(StringOffset),
|
||||
long ExpiryDate = 0,
|
||||
SCHALE.Common.FlatData.MailType MailType_ = SCHALE.Common.FlatData.MailType.System,
|
||||
SCHALE.Common.FlatData.DialogCategory DialogCategory_ = SCHALE.Common.FlatData.DialogCategory.Cafe,
|
||||
SCHALE.Common.FlatData.MailType MailType = SCHALE.Common.FlatData.MailType.System,
|
||||
SCHALE.Common.FlatData.DialogCategory DialogCategory = SCHALE.Common.FlatData.DialogCategory.Cafe,
|
||||
StringOffset TitleImagePathOffset = default(StringOffset),
|
||||
StringOffset DecorationImagePathOffset = default(StringOffset)) {
|
||||
builder.StartTable(19);
|
||||
|
@ -116,8 +116,8 @@ public struct AttendanceExcel : IFlatbufferObject
|
|||
AttendanceExcel.AddId(builder, Id);
|
||||
AttendanceExcel.AddDecorationImagePath(builder, DecorationImagePathOffset);
|
||||
AttendanceExcel.AddTitleImagePath(builder, TitleImagePathOffset);
|
||||
AttendanceExcel.AddDialogCategory_(builder, DialogCategory_);
|
||||
AttendanceExcel.AddMailType_(builder, MailType_);
|
||||
AttendanceExcel.AddDialogCategory(builder, DialogCategory);
|
||||
AttendanceExcel.AddMailType(builder, MailType);
|
||||
AttendanceExcel.AddEndDate(builder, EndDateOffset);
|
||||
AttendanceExcel.AddStartableEndDate(builder, StartableEndDateOffset);
|
||||
AttendanceExcel.AddStartDate(builder, StartDateOffset);
|
||||
|
@ -147,8 +147,8 @@ public struct AttendanceExcel : IFlatbufferObject
|
|||
public static void AddStartableEndDate(FlatBufferBuilder builder, StringOffset startableEndDateOffset) { builder.AddOffset(12, startableEndDateOffset.Value, 0); }
|
||||
public static void AddEndDate(FlatBufferBuilder builder, StringOffset endDateOffset) { builder.AddOffset(13, endDateOffset.Value, 0); }
|
||||
public static void AddExpiryDate(FlatBufferBuilder builder, long expiryDate) { builder.AddLong(14, expiryDate, 0); }
|
||||
public static void AddMailType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.MailType mailType_) { builder.AddInt(15, (int)mailType_, 0); }
|
||||
public static void AddDialogCategory_(FlatBufferBuilder builder, SCHALE.Common.FlatData.DialogCategory dialogCategory_) { builder.AddInt(16, (int)dialogCategory_, 0); }
|
||||
public static void AddMailType(FlatBufferBuilder builder, SCHALE.Common.FlatData.MailType mailType) { builder.AddInt(15, (int)mailType, 0); }
|
||||
public static void AddDialogCategory(FlatBufferBuilder builder, SCHALE.Common.FlatData.DialogCategory dialogCategory) { builder.AddInt(16, (int)dialogCategory, 0); }
|
||||
public static void AddTitleImagePath(FlatBufferBuilder builder, StringOffset titleImagePathOffset) { builder.AddOffset(17, titleImagePathOffset.Value, 0); }
|
||||
public static void AddDecorationImagePath(FlatBufferBuilder builder, StringOffset decorationImagePathOffset) { builder.AddOffset(18, decorationImagePathOffset.Value, 0); }
|
||||
public static Offset<SCHALE.Common.FlatData.AttendanceExcel> EndAttendanceExcel(FlatBufferBuilder builder) {
|
||||
|
@ -177,8 +177,8 @@ public struct AttendanceExcel : IFlatbufferObject
|
|||
_o.StartableEndDate = TableEncryptionService.Convert(this.StartableEndDate, key);
|
||||
_o.EndDate = TableEncryptionService.Convert(this.EndDate, key);
|
||||
_o.ExpiryDate = TableEncryptionService.Convert(this.ExpiryDate, key);
|
||||
_o.MailType_ = TableEncryptionService.Convert(this.MailType_, key);
|
||||
_o.DialogCategory_ = TableEncryptionService.Convert(this.DialogCategory_, key);
|
||||
_o.MailType = TableEncryptionService.Convert(this.MailType, key);
|
||||
_o.DialogCategory = TableEncryptionService.Convert(this.DialogCategory, key);
|
||||
_o.TitleImagePath = TableEncryptionService.Convert(this.TitleImagePath, key);
|
||||
_o.DecorationImagePath = TableEncryptionService.Convert(this.DecorationImagePath, key);
|
||||
}
|
||||
|
@ -209,8 +209,8 @@ public struct AttendanceExcel : IFlatbufferObject
|
|||
_StartableEndDate,
|
||||
_EndDate,
|
||||
_o.ExpiryDate,
|
||||
_o.MailType_,
|
||||
_o.DialogCategory_,
|
||||
_o.MailType,
|
||||
_o.DialogCategory,
|
||||
_TitleImagePath,
|
||||
_DecorationImagePath);
|
||||
}
|
||||
|
@ -233,8 +233,8 @@ public class AttendanceExcelT
|
|||
public string StartableEndDate { get; set; }
|
||||
public string EndDate { get; set; }
|
||||
public long ExpiryDate { get; set; }
|
||||
public SCHALE.Common.FlatData.MailType MailType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.DialogCategory DialogCategory_ { get; set; }
|
||||
public SCHALE.Common.FlatData.MailType MailType { get; set; }
|
||||
public SCHALE.Common.FlatData.DialogCategory DialogCategory { get; set; }
|
||||
public string TitleImagePath { get; set; }
|
||||
public string DecorationImagePath { get; set; }
|
||||
|
||||
|
@ -254,8 +254,8 @@ public class AttendanceExcelT
|
|||
this.StartableEndDate = null;
|
||||
this.EndDate = null;
|
||||
this.ExpiryDate = 0;
|
||||
this.MailType_ = SCHALE.Common.FlatData.MailType.System;
|
||||
this.DialogCategory_ = SCHALE.Common.FlatData.DialogCategory.Cafe;
|
||||
this.MailType = SCHALE.Common.FlatData.MailType.System;
|
||||
this.DialogCategory = SCHALE.Common.FlatData.DialogCategory.Cafe;
|
||||
this.TitleImagePath = null;
|
||||
this.DecorationImagePath = null;
|
||||
}
|
||||
|
@ -282,8 +282,8 @@ static public class AttendanceExcelVerify
|
|||
&& verifier.VerifyString(tablePos, 28 /*StartableEndDate*/, false)
|
||||
&& verifier.VerifyString(tablePos, 30 /*EndDate*/, false)
|
||||
&& verifier.VerifyField(tablePos, 32 /*ExpiryDate*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 34 /*MailType_*/, 4 /*SCHALE.Common.FlatData.MailType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 36 /*DialogCategory_*/, 4 /*SCHALE.Common.FlatData.DialogCategory*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 34 /*MailType*/, 4 /*SCHALE.Common.FlatData.MailType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 36 /*DialogCategory*/, 4 /*SCHALE.Common.FlatData.DialogCategory*/, 4, false)
|
||||
&& verifier.VerifyString(tablePos, 38 /*TitleImagePath*/, false)
|
||||
&& verifier.VerifyString(tablePos, 40 /*DecorationImagePath*/, false)
|
||||
&& verifier.VerifyTableEnd(tablePos);
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum BillingTransactionEndType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Success = 1,
|
||||
Cancel = 2,
|
||||
};
|
||||
|
|
|
@ -22,8 +22,8 @@ public struct BossExternalBTExcel : IFlatbufferObject
|
|||
|
||||
public long ExternalBTId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long AIPhase { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ExternalBTNodeType ExternalBTNodeType_ { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.ExternalBTNodeType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ExternalBTNodeType.Sequence; } }
|
||||
public SCHALE.Common.FlatData.ExternalBTTrigger ExternalBTTrigger_ { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.ExternalBTTrigger)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ExternalBTTrigger.None_; } }
|
||||
public SCHALE.Common.FlatData.ExternalBTNodeType ExternalBTNodeType { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.ExternalBTNodeType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ExternalBTNodeType.Sequence; } }
|
||||
public SCHALE.Common.FlatData.ExternalBTTrigger ExternalBTTrigger { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.ExternalBTTrigger)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ExternalBTTrigger.None; } }
|
||||
public string TriggerArgument { get { int o = __p.__offset(12); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
public Span<byte> GetTriggerArgumentBytes() { return __p.__vector_as_span<byte>(12, 1); }
|
||||
|
@ -32,7 +32,7 @@ public struct BossExternalBTExcel : IFlatbufferObject
|
|||
#endif
|
||||
public byte[] GetTriggerArgumentArray() { return __p.__vector_as_array<byte>(12); }
|
||||
public long BehaviorRate { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ExternalBehavior ExternalBehavior_ { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.ExternalBehavior)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ExternalBehavior.UseNextExSkill; } }
|
||||
public SCHALE.Common.FlatData.ExternalBehavior ExternalBehavior { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.ExternalBehavior)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ExternalBehavior.UseNextExSkill; } }
|
||||
public string BehaviorArgument { get { int o = __p.__offset(18); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
public Span<byte> GetBehaviorArgumentBytes() { return __p.__vector_as_span<byte>(18, 1); }
|
||||
|
@ -44,32 +44,32 @@ public struct BossExternalBTExcel : IFlatbufferObject
|
|||
public static Offset<SCHALE.Common.FlatData.BossExternalBTExcel> CreateBossExternalBTExcel(FlatBufferBuilder builder,
|
||||
long ExternalBTId = 0,
|
||||
long AIPhase = 0,
|
||||
SCHALE.Common.FlatData.ExternalBTNodeType ExternalBTNodeType_ = SCHALE.Common.FlatData.ExternalBTNodeType.Sequence,
|
||||
SCHALE.Common.FlatData.ExternalBTTrigger ExternalBTTrigger_ = SCHALE.Common.FlatData.ExternalBTTrigger.None_,
|
||||
SCHALE.Common.FlatData.ExternalBTNodeType ExternalBTNodeType = SCHALE.Common.FlatData.ExternalBTNodeType.Sequence,
|
||||
SCHALE.Common.FlatData.ExternalBTTrigger ExternalBTTrigger = SCHALE.Common.FlatData.ExternalBTTrigger.None,
|
||||
StringOffset TriggerArgumentOffset = default(StringOffset),
|
||||
long BehaviorRate = 0,
|
||||
SCHALE.Common.FlatData.ExternalBehavior ExternalBehavior_ = SCHALE.Common.FlatData.ExternalBehavior.UseNextExSkill,
|
||||
SCHALE.Common.FlatData.ExternalBehavior ExternalBehavior = SCHALE.Common.FlatData.ExternalBehavior.UseNextExSkill,
|
||||
StringOffset BehaviorArgumentOffset = default(StringOffset)) {
|
||||
builder.StartTable(8);
|
||||
BossExternalBTExcel.AddBehaviorRate(builder, BehaviorRate);
|
||||
BossExternalBTExcel.AddAIPhase(builder, AIPhase);
|
||||
BossExternalBTExcel.AddExternalBTId(builder, ExternalBTId);
|
||||
BossExternalBTExcel.AddBehaviorArgument(builder, BehaviorArgumentOffset);
|
||||
BossExternalBTExcel.AddExternalBehavior_(builder, ExternalBehavior_);
|
||||
BossExternalBTExcel.AddExternalBehavior(builder, ExternalBehavior);
|
||||
BossExternalBTExcel.AddTriggerArgument(builder, TriggerArgumentOffset);
|
||||
BossExternalBTExcel.AddExternalBTTrigger_(builder, ExternalBTTrigger_);
|
||||
BossExternalBTExcel.AddExternalBTNodeType_(builder, ExternalBTNodeType_);
|
||||
BossExternalBTExcel.AddExternalBTTrigger(builder, ExternalBTTrigger);
|
||||
BossExternalBTExcel.AddExternalBTNodeType(builder, ExternalBTNodeType);
|
||||
return BossExternalBTExcel.EndBossExternalBTExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartBossExternalBTExcel(FlatBufferBuilder builder) { builder.StartTable(8); }
|
||||
public static void AddExternalBTId(FlatBufferBuilder builder, long externalBTId) { builder.AddLong(0, externalBTId, 0); }
|
||||
public static void AddAIPhase(FlatBufferBuilder builder, long aIPhase) { builder.AddLong(1, aIPhase, 0); }
|
||||
public static void AddExternalBTNodeType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ExternalBTNodeType externalBTNodeType_) { builder.AddInt(2, (int)externalBTNodeType_, 0); }
|
||||
public static void AddExternalBTTrigger_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ExternalBTTrigger externalBTTrigger_) { builder.AddInt(3, (int)externalBTTrigger_, 0); }
|
||||
public static void AddExternalBTNodeType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ExternalBTNodeType externalBTNodeType) { builder.AddInt(2, (int)externalBTNodeType, 0); }
|
||||
public static void AddExternalBTTrigger(FlatBufferBuilder builder, SCHALE.Common.FlatData.ExternalBTTrigger externalBTTrigger) { builder.AddInt(3, (int)externalBTTrigger, 0); }
|
||||
public static void AddTriggerArgument(FlatBufferBuilder builder, StringOffset triggerArgumentOffset) { builder.AddOffset(4, triggerArgumentOffset.Value, 0); }
|
||||
public static void AddBehaviorRate(FlatBufferBuilder builder, long behaviorRate) { builder.AddLong(5, behaviorRate, 0); }
|
||||
public static void AddExternalBehavior_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ExternalBehavior externalBehavior_) { builder.AddInt(6, (int)externalBehavior_, 0); }
|
||||
public static void AddExternalBehavior(FlatBufferBuilder builder, SCHALE.Common.FlatData.ExternalBehavior externalBehavior) { builder.AddInt(6, (int)externalBehavior, 0); }
|
||||
public static void AddBehaviorArgument(FlatBufferBuilder builder, StringOffset behaviorArgumentOffset) { builder.AddOffset(7, behaviorArgumentOffset.Value, 0); }
|
||||
public static Offset<SCHALE.Common.FlatData.BossExternalBTExcel> EndBossExternalBTExcel(FlatBufferBuilder builder) {
|
||||
int o = builder.EndTable();
|
||||
|
@ -84,11 +84,11 @@ public struct BossExternalBTExcel : IFlatbufferObject
|
|||
byte[] key = TableEncryptionService.CreateKey("BossExternalBT");
|
||||
_o.ExternalBTId = TableEncryptionService.Convert(this.ExternalBTId, key);
|
||||
_o.AIPhase = TableEncryptionService.Convert(this.AIPhase, key);
|
||||
_o.ExternalBTNodeType_ = TableEncryptionService.Convert(this.ExternalBTNodeType_, key);
|
||||
_o.ExternalBTTrigger_ = TableEncryptionService.Convert(this.ExternalBTTrigger_, key);
|
||||
_o.ExternalBTNodeType = TableEncryptionService.Convert(this.ExternalBTNodeType, key);
|
||||
_o.ExternalBTTrigger = TableEncryptionService.Convert(this.ExternalBTTrigger, key);
|
||||
_o.TriggerArgument = TableEncryptionService.Convert(this.TriggerArgument, key);
|
||||
_o.BehaviorRate = TableEncryptionService.Convert(this.BehaviorRate, key);
|
||||
_o.ExternalBehavior_ = TableEncryptionService.Convert(this.ExternalBehavior_, key);
|
||||
_o.ExternalBehavior = TableEncryptionService.Convert(this.ExternalBehavior, key);
|
||||
_o.BehaviorArgument = TableEncryptionService.Convert(this.BehaviorArgument, key);
|
||||
}
|
||||
public static Offset<SCHALE.Common.FlatData.BossExternalBTExcel> Pack(FlatBufferBuilder builder, BossExternalBTExcelT _o) {
|
||||
|
@ -99,11 +99,11 @@ public struct BossExternalBTExcel : IFlatbufferObject
|
|||
builder,
|
||||
_o.ExternalBTId,
|
||||
_o.AIPhase,
|
||||
_o.ExternalBTNodeType_,
|
||||
_o.ExternalBTTrigger_,
|
||||
_o.ExternalBTNodeType,
|
||||
_o.ExternalBTTrigger,
|
||||
_TriggerArgument,
|
||||
_o.BehaviorRate,
|
||||
_o.ExternalBehavior_,
|
||||
_o.ExternalBehavior,
|
||||
_BehaviorArgument);
|
||||
}
|
||||
}
|
||||
|
@ -112,21 +112,21 @@ public class BossExternalBTExcelT
|
|||
{
|
||||
public long ExternalBTId { get; set; }
|
||||
public long AIPhase { get; set; }
|
||||
public SCHALE.Common.FlatData.ExternalBTNodeType ExternalBTNodeType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ExternalBTTrigger ExternalBTTrigger_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ExternalBTNodeType ExternalBTNodeType { get; set; }
|
||||
public SCHALE.Common.FlatData.ExternalBTTrigger ExternalBTTrigger { get; set; }
|
||||
public string TriggerArgument { get; set; }
|
||||
public long BehaviorRate { get; set; }
|
||||
public SCHALE.Common.FlatData.ExternalBehavior ExternalBehavior_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ExternalBehavior ExternalBehavior { get; set; }
|
||||
public string BehaviorArgument { get; set; }
|
||||
|
||||
public BossExternalBTExcelT() {
|
||||
this.ExternalBTId = 0;
|
||||
this.AIPhase = 0;
|
||||
this.ExternalBTNodeType_ = SCHALE.Common.FlatData.ExternalBTNodeType.Sequence;
|
||||
this.ExternalBTTrigger_ = SCHALE.Common.FlatData.ExternalBTTrigger.None_;
|
||||
this.ExternalBTNodeType = SCHALE.Common.FlatData.ExternalBTNodeType.Sequence;
|
||||
this.ExternalBTTrigger = SCHALE.Common.FlatData.ExternalBTTrigger.None;
|
||||
this.TriggerArgument = null;
|
||||
this.BehaviorRate = 0;
|
||||
this.ExternalBehavior_ = SCHALE.Common.FlatData.ExternalBehavior.UseNextExSkill;
|
||||
this.ExternalBehavior = SCHALE.Common.FlatData.ExternalBehavior.UseNextExSkill;
|
||||
this.BehaviorArgument = null;
|
||||
}
|
||||
}
|
||||
|
@ -139,11 +139,11 @@ static public class BossExternalBTExcelVerify
|
|||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*ExternalBTId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*AIPhase*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*ExternalBTNodeType_*/, 4 /*SCHALE.Common.FlatData.ExternalBTNodeType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*ExternalBTTrigger_*/, 4 /*SCHALE.Common.FlatData.ExternalBTTrigger*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*ExternalBTNodeType*/, 4 /*SCHALE.Common.FlatData.ExternalBTNodeType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*ExternalBTTrigger*/, 4 /*SCHALE.Common.FlatData.ExternalBTTrigger*/, 4, false)
|
||||
&& verifier.VerifyString(tablePos, 12 /*TriggerArgument*/, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*BehaviorRate*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 16 /*ExternalBehavior_*/, 4 /*SCHALE.Common.FlatData.ExternalBehavior*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 16 /*ExternalBehavior*/, 4 /*SCHALE.Common.FlatData.ExternalBehavior*/, 4, false)
|
||||
&& verifier.VerifyString(tablePos, 18 /*BehaviorArgument*/, false)
|
||||
&& verifier.VerifyTableEnd(tablePos);
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum BuffIconType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Debuff_DyingPenalty = 1,
|
||||
CC_MindControl = 2,
|
||||
CC_Inoperative = 3,
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum BuffType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Buff_AttackPower = 1,
|
||||
Buff_CriticalChance = 2,
|
||||
Buff_CriticalDamage = 3,
|
||||
|
|
|
@ -27,20 +27,20 @@ public struct BulletArmorDamageFactorExcel : IFlatbufferObject
|
|||
public ArraySegment<byte>? GetDamageFactorGroupIdBytes() { return __p.__vector_as_arraysegment(4); }
|
||||
#endif
|
||||
public byte[] GetDamageFactorGroupIdArray() { return __p.__vector_as_array<byte>(4); }
|
||||
public SCHALE.Common.FlatData.BulletType BulletType_ { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.BulletType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.BulletType.Normal; } }
|
||||
public SCHALE.Common.FlatData.ArmorType ArmorType_ { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.ArmorType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ArmorType.LightArmor; } }
|
||||
public SCHALE.Common.FlatData.BulletType BulletType { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.BulletType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.BulletType.Normal; } }
|
||||
public SCHALE.Common.FlatData.ArmorType ArmorType { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.ArmorType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ArmorType.LightArmor; } }
|
||||
public long DamageRate { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.DamageAttribute DamageAttribute_ { get { int o = __p.__offset(12); return o != 0 ? (SCHALE.Common.FlatData.DamageAttribute)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DamageAttribute.Resist; } }
|
||||
public SCHALE.Common.FlatData.DamageAttribute DamageAttribute { get { int o = __p.__offset(12); return o != 0 ? (SCHALE.Common.FlatData.DamageAttribute)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DamageAttribute.Resist; } }
|
||||
public long MinDamageRate { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long MaxDamageRate { get { int o = __p.__offset(16); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public bool ShowHighlightFloater { get { int o = __p.__offset(18); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
|
||||
public static Offset<SCHALE.Common.FlatData.BulletArmorDamageFactorExcel> CreateBulletArmorDamageFactorExcel(FlatBufferBuilder builder,
|
||||
StringOffset DamageFactorGroupIdOffset = default(StringOffset),
|
||||
SCHALE.Common.FlatData.BulletType BulletType_ = SCHALE.Common.FlatData.BulletType.Normal,
|
||||
SCHALE.Common.FlatData.ArmorType ArmorType_ = SCHALE.Common.FlatData.ArmorType.LightArmor,
|
||||
SCHALE.Common.FlatData.BulletType BulletType = SCHALE.Common.FlatData.BulletType.Normal,
|
||||
SCHALE.Common.FlatData.ArmorType ArmorType = SCHALE.Common.FlatData.ArmorType.LightArmor,
|
||||
long DamageRate = 0,
|
||||
SCHALE.Common.FlatData.DamageAttribute DamageAttribute_ = SCHALE.Common.FlatData.DamageAttribute.Resist,
|
||||
SCHALE.Common.FlatData.DamageAttribute DamageAttribute = SCHALE.Common.FlatData.DamageAttribute.Resist,
|
||||
long MinDamageRate = 0,
|
||||
long MaxDamageRate = 0,
|
||||
bool ShowHighlightFloater = false) {
|
||||
|
@ -48,9 +48,9 @@ public struct BulletArmorDamageFactorExcel : IFlatbufferObject
|
|||
BulletArmorDamageFactorExcel.AddMaxDamageRate(builder, MaxDamageRate);
|
||||
BulletArmorDamageFactorExcel.AddMinDamageRate(builder, MinDamageRate);
|
||||
BulletArmorDamageFactorExcel.AddDamageRate(builder, DamageRate);
|
||||
BulletArmorDamageFactorExcel.AddDamageAttribute_(builder, DamageAttribute_);
|
||||
BulletArmorDamageFactorExcel.AddArmorType_(builder, ArmorType_);
|
||||
BulletArmorDamageFactorExcel.AddBulletType_(builder, BulletType_);
|
||||
BulletArmorDamageFactorExcel.AddDamageAttribute(builder, DamageAttribute);
|
||||
BulletArmorDamageFactorExcel.AddArmorType(builder, ArmorType);
|
||||
BulletArmorDamageFactorExcel.AddBulletType(builder, BulletType);
|
||||
BulletArmorDamageFactorExcel.AddDamageFactorGroupId(builder, DamageFactorGroupIdOffset);
|
||||
BulletArmorDamageFactorExcel.AddShowHighlightFloater(builder, ShowHighlightFloater);
|
||||
return BulletArmorDamageFactorExcel.EndBulletArmorDamageFactorExcel(builder);
|
||||
|
@ -58,10 +58,10 @@ public struct BulletArmorDamageFactorExcel : IFlatbufferObject
|
|||
|
||||
public static void StartBulletArmorDamageFactorExcel(FlatBufferBuilder builder) { builder.StartTable(8); }
|
||||
public static void AddDamageFactorGroupId(FlatBufferBuilder builder, StringOffset damageFactorGroupIdOffset) { builder.AddOffset(0, damageFactorGroupIdOffset.Value, 0); }
|
||||
public static void AddBulletType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.BulletType bulletType_) { builder.AddInt(1, (int)bulletType_, 0); }
|
||||
public static void AddArmorType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ArmorType armorType_) { builder.AddInt(2, (int)armorType_, 0); }
|
||||
public static void AddBulletType(FlatBufferBuilder builder, SCHALE.Common.FlatData.BulletType bulletType) { builder.AddInt(1, (int)bulletType, 0); }
|
||||
public static void AddArmorType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ArmorType armorType) { builder.AddInt(2, (int)armorType, 0); }
|
||||
public static void AddDamageRate(FlatBufferBuilder builder, long damageRate) { builder.AddLong(3, damageRate, 0); }
|
||||
public static void AddDamageAttribute_(FlatBufferBuilder builder, SCHALE.Common.FlatData.DamageAttribute damageAttribute_) { builder.AddInt(4, (int)damageAttribute_, 0); }
|
||||
public static void AddDamageAttribute(FlatBufferBuilder builder, SCHALE.Common.FlatData.DamageAttribute damageAttribute) { builder.AddInt(4, (int)damageAttribute, 0); }
|
||||
public static void AddMinDamageRate(FlatBufferBuilder builder, long minDamageRate) { builder.AddLong(5, minDamageRate, 0); }
|
||||
public static void AddMaxDamageRate(FlatBufferBuilder builder, long maxDamageRate) { builder.AddLong(6, maxDamageRate, 0); }
|
||||
public static void AddShowHighlightFloater(FlatBufferBuilder builder, bool showHighlightFloater) { builder.AddBool(7, showHighlightFloater, false); }
|
||||
|
@ -77,10 +77,10 @@ public struct BulletArmorDamageFactorExcel : IFlatbufferObject
|
|||
public void UnPackTo(BulletArmorDamageFactorExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("BulletArmorDamageFactor");
|
||||
_o.DamageFactorGroupId = TableEncryptionService.Convert(this.DamageFactorGroupId, key);
|
||||
_o.BulletType_ = TableEncryptionService.Convert(this.BulletType_, key);
|
||||
_o.ArmorType_ = TableEncryptionService.Convert(this.ArmorType_, key);
|
||||
_o.BulletType = TableEncryptionService.Convert(this.BulletType, key);
|
||||
_o.ArmorType = TableEncryptionService.Convert(this.ArmorType, key);
|
||||
_o.DamageRate = TableEncryptionService.Convert(this.DamageRate, key);
|
||||
_o.DamageAttribute_ = TableEncryptionService.Convert(this.DamageAttribute_, key);
|
||||
_o.DamageAttribute = TableEncryptionService.Convert(this.DamageAttribute, key);
|
||||
_o.MinDamageRate = TableEncryptionService.Convert(this.MinDamageRate, key);
|
||||
_o.MaxDamageRate = TableEncryptionService.Convert(this.MaxDamageRate, key);
|
||||
_o.ShowHighlightFloater = TableEncryptionService.Convert(this.ShowHighlightFloater, key);
|
||||
|
@ -91,10 +91,10 @@ public struct BulletArmorDamageFactorExcel : IFlatbufferObject
|
|||
return CreateBulletArmorDamageFactorExcel(
|
||||
builder,
|
||||
_DamageFactorGroupId,
|
||||
_o.BulletType_,
|
||||
_o.ArmorType_,
|
||||
_o.BulletType,
|
||||
_o.ArmorType,
|
||||
_o.DamageRate,
|
||||
_o.DamageAttribute_,
|
||||
_o.DamageAttribute,
|
||||
_o.MinDamageRate,
|
||||
_o.MaxDamageRate,
|
||||
_o.ShowHighlightFloater);
|
||||
|
@ -104,20 +104,20 @@ public struct BulletArmorDamageFactorExcel : IFlatbufferObject
|
|||
public class BulletArmorDamageFactorExcelT
|
||||
{
|
||||
public string DamageFactorGroupId { get; set; }
|
||||
public SCHALE.Common.FlatData.BulletType BulletType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ArmorType ArmorType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.BulletType BulletType { get; set; }
|
||||
public SCHALE.Common.FlatData.ArmorType ArmorType { get; set; }
|
||||
public long DamageRate { get; set; }
|
||||
public SCHALE.Common.FlatData.DamageAttribute DamageAttribute_ { get; set; }
|
||||
public SCHALE.Common.FlatData.DamageAttribute DamageAttribute { get; set; }
|
||||
public long MinDamageRate { get; set; }
|
||||
public long MaxDamageRate { get; set; }
|
||||
public bool ShowHighlightFloater { get; set; }
|
||||
|
||||
public BulletArmorDamageFactorExcelT() {
|
||||
this.DamageFactorGroupId = null;
|
||||
this.BulletType_ = SCHALE.Common.FlatData.BulletType.Normal;
|
||||
this.ArmorType_ = SCHALE.Common.FlatData.ArmorType.LightArmor;
|
||||
this.BulletType = SCHALE.Common.FlatData.BulletType.Normal;
|
||||
this.ArmorType = SCHALE.Common.FlatData.ArmorType.LightArmor;
|
||||
this.DamageRate = 0;
|
||||
this.DamageAttribute_ = SCHALE.Common.FlatData.DamageAttribute.Resist;
|
||||
this.DamageAttribute = SCHALE.Common.FlatData.DamageAttribute.Resist;
|
||||
this.MinDamageRate = 0;
|
||||
this.MaxDamageRate = 0;
|
||||
this.ShowHighlightFloater = false;
|
||||
|
@ -131,10 +131,10 @@ static public class BulletArmorDamageFactorExcelVerify
|
|||
{
|
||||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyString(tablePos, 4 /*DamageFactorGroupId*/, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*BulletType_*/, 4 /*SCHALE.Common.FlatData.BulletType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*ArmorType_*/, 4 /*SCHALE.Common.FlatData.ArmorType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*BulletType*/, 4 /*SCHALE.Common.FlatData.BulletType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*ArmorType*/, 4 /*SCHALE.Common.FlatData.ArmorType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*DamageRate*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*DamageAttribute_*/, 4 /*SCHALE.Common.FlatData.DamageAttribute*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*DamageAttribute*/, 4 /*SCHALE.Common.FlatData.DamageAttribute*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*MinDamageRate*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 16 /*MaxDamageRate*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 18 /*ShowHighlightFloater*/, 1 /*bool*/, 1, false)
|
||||
|
|
|
@ -12,7 +12,7 @@ public enum BulletType : int
|
|||
Explosion = 2,
|
||||
Siege = 3,
|
||||
Mystic = 4,
|
||||
None_ = 5,
|
||||
None = 5,
|
||||
Sonic = 6,
|
||||
};
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum CafeCharacterState : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Idle = 1,
|
||||
Walk = 2,
|
||||
Reaction = 3,
|
||||
|
|
|
@ -52,7 +52,7 @@ public struct CafeInteractionExcel : IFlatbufferObject
|
|||
public ArraySegment<byte>? GetBubbleDurationBytes() { return __p.__vector_as_arraysegment(14); }
|
||||
#endif
|
||||
public long[] GetBubbleDurationArray() { return __p.__vector_as_array<long>(14); }
|
||||
public SCHALE.Common.FlatData.ParcelType FavorEmoticonRewardParcelType { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType FavorEmoticonRewardParcelType { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long FavorEmoticonRewardId { get { int o = __p.__offset(18); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long FavorEmoticonRewardAmount { get { int o = __p.__offset(20); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public string CafeCharacterState(int j) { int o = __p.__offset(22); return o != 0 ? __p.__string(__p.__vector(o) + j * 4) : null; }
|
||||
|
@ -65,7 +65,7 @@ public struct CafeInteractionExcel : IFlatbufferObject
|
|||
StringOffset IgnoreIfUnobtainedEndDateOffset = default(StringOffset),
|
||||
VectorOffset BubbleType_Offset = default(VectorOffset),
|
||||
VectorOffset BubbleDurationOffset = default(VectorOffset),
|
||||
SCHALE.Common.FlatData.ParcelType FavorEmoticonRewardParcelType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType FavorEmoticonRewardParcelType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long FavorEmoticonRewardId = 0,
|
||||
long FavorEmoticonRewardAmount = 0,
|
||||
VectorOffset CafeCharacterStateOffset = default(VectorOffset)) {
|
||||
|
@ -189,7 +189,7 @@ public class CafeInteractionExcelT
|
|||
this.IgnoreIfUnobtainedEndDate = null;
|
||||
this.BubbleType_ = null;
|
||||
this.BubbleDuration = null;
|
||||
this.FavorEmoticonRewardParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.FavorEmoticonRewardParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.FavorEmoticonRewardId = 0;
|
||||
this.FavorEmoticonRewardAmount = 0;
|
||||
this.CafeCharacterState = null;
|
||||
|
|
|
@ -22,7 +22,7 @@ public struct CafeProductionExcel : IFlatbufferObject
|
|||
|
||||
public long CafeId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long Rank { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType CafeProductionParcelType { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType CafeProductionParcelType { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long CafeProductionParcelId { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long ParcelProductionCoefficient { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long ParcelProductionCorrectionValue { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
@ -31,7 +31,7 @@ public struct CafeProductionExcel : IFlatbufferObject
|
|||
public static Offset<SCHALE.Common.FlatData.CafeProductionExcel> CreateCafeProductionExcel(FlatBufferBuilder builder,
|
||||
long CafeId = 0,
|
||||
long Rank = 0,
|
||||
SCHALE.Common.FlatData.ParcelType CafeProductionParcelType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType CafeProductionParcelType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long CafeProductionParcelId = 0,
|
||||
long ParcelProductionCoefficient = 0,
|
||||
long ParcelProductionCorrectionValue = 0,
|
||||
|
@ -101,7 +101,7 @@ public class CafeProductionExcelT
|
|||
public CafeProductionExcelT() {
|
||||
this.CafeId = 0;
|
||||
this.Rank = 0;
|
||||
this.CafeProductionParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.CafeProductionParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.CafeProductionParcelId = 0;
|
||||
this.ParcelProductionCoefficient = 0;
|
||||
this.ParcelProductionCorrectionValue = 0;
|
||||
|
|
|
@ -38,7 +38,7 @@ public struct CampaignStageExcel : IFlatbufferObject
|
|||
public byte[] GetStageNumberArray() { return __p.__vector_as_array<byte>(10); }
|
||||
public long CleardScenarioId { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long BattleDuration { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType StageEnterCostType { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType StageEnterCostType { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long StageEnterCostId { get { int o = __p.__offset(18); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int StageEnterCostAmount { get { int o = __p.__offset(20); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public int StageEnterEchelonCount { get { int o = __p.__offset(22); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
|
@ -76,7 +76,7 @@ public struct CampaignStageExcel : IFlatbufferObject
|
|||
public byte[] GetStrategyMapBGArray() { return __p.__vector_as_array<byte>(34); }
|
||||
public long CampaignStageRewardId { get { int o = __p.__offset(36); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int MaxTurn { get { int o = __p.__offset(38); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.StageTopography StageTopography_ { get { int o = __p.__offset(40); return o != 0 ? (SCHALE.Common.FlatData.StageTopography)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StageTopography.Street; } }
|
||||
public SCHALE.Common.FlatData.StageTopography StageTopography { get { int o = __p.__offset(40); return o != 0 ? (SCHALE.Common.FlatData.StageTopography)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StageTopography.Street; } }
|
||||
public int RecommandLevel { get { int o = __p.__offset(42); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public string BgmId { get { int o = __p.__offset(44); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
|
@ -85,10 +85,10 @@ public struct CampaignStageExcel : IFlatbufferObject
|
|||
public ArraySegment<byte>? GetBgmIdBytes() { return __p.__vector_as_arraysegment(44); }
|
||||
#endif
|
||||
public byte[] GetBgmIdArray() { return __p.__vector_as_array<byte>(44); }
|
||||
public SCHALE.Common.FlatData.StrategyEnvironment StrategyEnvironment_ { get { int o = __p.__offset(46); return o != 0 ? (SCHALE.Common.FlatData.StrategyEnvironment)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StrategyEnvironment.None_; } }
|
||||
public SCHALE.Common.FlatData.StrategyEnvironment StrategyEnvironment { get { int o = __p.__offset(46); return o != 0 ? (SCHALE.Common.FlatData.StrategyEnvironment)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StrategyEnvironment.None; } }
|
||||
public long GroundId { get { int o = __p.__offset(48); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int StrategySkipGroundId { get { int o = __p.__offset(50); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.ContentType ContentType_ { get { int o = __p.__offset(52); return o != 0 ? (SCHALE.Common.FlatData.ContentType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ContentType.None_; } }
|
||||
public SCHALE.Common.FlatData.ContentType ContentType { get { int o = __p.__offset(52); return o != 0 ? (SCHALE.Common.FlatData.ContentType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ContentType.None; } }
|
||||
public long BGMId { get { int o = __p.__offset(54); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public string FirstClearReportEventName { get { int o = __p.__offset(56); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
|
@ -99,7 +99,7 @@ public struct CampaignStageExcel : IFlatbufferObject
|
|||
public byte[] GetFirstClearReportEventNameArray() { return __p.__vector_as_array<byte>(56); }
|
||||
public long TacticRewardExp { get { int o = __p.__offset(58); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long FixedEchelonId { get { int o = __p.__offset(60); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType_ { get { int o = __p.__offset(62); return o != 0 ? (SCHALE.Common.FlatData.EchelonExtensionType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EchelonExtensionType.Base; } }
|
||||
public SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType { get { int o = __p.__offset(62); return o != 0 ? (SCHALE.Common.FlatData.EchelonExtensionType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EchelonExtensionType.Base; } }
|
||||
|
||||
public static Offset<SCHALE.Common.FlatData.CampaignStageExcel> CreateCampaignStageExcel(FlatBufferBuilder builder,
|
||||
long Id = 0,
|
||||
|
@ -108,7 +108,7 @@ public struct CampaignStageExcel : IFlatbufferObject
|
|||
StringOffset StageNumberOffset = default(StringOffset),
|
||||
long CleardScenarioId = 0,
|
||||
long BattleDuration = 0,
|
||||
SCHALE.Common.FlatData.ParcelType StageEnterCostType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType StageEnterCostType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long StageEnterCostId = 0,
|
||||
int StageEnterCostAmount = 0,
|
||||
int StageEnterEchelonCount = 0,
|
||||
|
@ -120,18 +120,18 @@ public struct CampaignStageExcel : IFlatbufferObject
|
|||
StringOffset StrategyMapBGOffset = default(StringOffset),
|
||||
long CampaignStageRewardId = 0,
|
||||
int MaxTurn = 0,
|
||||
SCHALE.Common.FlatData.StageTopography StageTopography_ = SCHALE.Common.FlatData.StageTopography.Street,
|
||||
SCHALE.Common.FlatData.StageTopography StageTopography = SCHALE.Common.FlatData.StageTopography.Street,
|
||||
int RecommandLevel = 0,
|
||||
StringOffset BgmIdOffset = default(StringOffset),
|
||||
SCHALE.Common.FlatData.StrategyEnvironment StrategyEnvironment_ = SCHALE.Common.FlatData.StrategyEnvironment.None_,
|
||||
SCHALE.Common.FlatData.StrategyEnvironment StrategyEnvironment = SCHALE.Common.FlatData.StrategyEnvironment.None,
|
||||
long GroundId = 0,
|
||||
int StrategySkipGroundId = 0,
|
||||
SCHALE.Common.FlatData.ContentType ContentType_ = SCHALE.Common.FlatData.ContentType.None_,
|
||||
SCHALE.Common.FlatData.ContentType ContentType = SCHALE.Common.FlatData.ContentType.None,
|
||||
long BGMId = 0,
|
||||
StringOffset FirstClearReportEventNameOffset = default(StringOffset),
|
||||
long TacticRewardExp = 0,
|
||||
long FixedEchelonId = 0,
|
||||
SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType_ = SCHALE.Common.FlatData.EchelonExtensionType.Base) {
|
||||
SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType = SCHALE.Common.FlatData.EchelonExtensionType.Base) {
|
||||
builder.StartTable(30);
|
||||
CampaignStageExcel.AddFixedEchelonId(builder, FixedEchelonId);
|
||||
CampaignStageExcel.AddTacticRewardExp(builder, TacticRewardExp);
|
||||
|
@ -144,14 +144,14 @@ public struct CampaignStageExcel : IFlatbufferObject
|
|||
CampaignStageExcel.AddBattleDuration(builder, BattleDuration);
|
||||
CampaignStageExcel.AddCleardScenarioId(builder, CleardScenarioId);
|
||||
CampaignStageExcel.AddId(builder, Id);
|
||||
CampaignStageExcel.AddEchelonExtensionType_(builder, EchelonExtensionType_);
|
||||
CampaignStageExcel.AddEchelonExtensionType(builder, EchelonExtensionType);
|
||||
CampaignStageExcel.AddFirstClearReportEventName(builder, FirstClearReportEventNameOffset);
|
||||
CampaignStageExcel.AddContentType_(builder, ContentType_);
|
||||
CampaignStageExcel.AddContentType(builder, ContentType);
|
||||
CampaignStageExcel.AddStrategySkipGroundId(builder, StrategySkipGroundId);
|
||||
CampaignStageExcel.AddStrategyEnvironment_(builder, StrategyEnvironment_);
|
||||
CampaignStageExcel.AddStrategyEnvironment(builder, StrategyEnvironment);
|
||||
CampaignStageExcel.AddBgmId(builder, BgmIdOffset);
|
||||
CampaignStageExcel.AddRecommandLevel(builder, RecommandLevel);
|
||||
CampaignStageExcel.AddStageTopography_(builder, StageTopography_);
|
||||
CampaignStageExcel.AddStageTopography(builder, StageTopography);
|
||||
CampaignStageExcel.AddMaxTurn(builder, MaxTurn);
|
||||
CampaignStageExcel.AddStrategyMapBG(builder, StrategyMapBGOffset);
|
||||
CampaignStageExcel.AddStrategyMap(builder, StrategyMapOffset);
|
||||
|
@ -195,18 +195,18 @@ public struct CampaignStageExcel : IFlatbufferObject
|
|||
public static void AddStrategyMapBG(FlatBufferBuilder builder, StringOffset strategyMapBGOffset) { builder.AddOffset(15, strategyMapBGOffset.Value, 0); }
|
||||
public static void AddCampaignStageRewardId(FlatBufferBuilder builder, long campaignStageRewardId) { builder.AddLong(16, campaignStageRewardId, 0); }
|
||||
public static void AddMaxTurn(FlatBufferBuilder builder, int maxTurn) { builder.AddInt(17, maxTurn, 0); }
|
||||
public static void AddStageTopography_(FlatBufferBuilder builder, SCHALE.Common.FlatData.StageTopography stageTopography_) { builder.AddInt(18, (int)stageTopography_, 0); }
|
||||
public static void AddStageTopography(FlatBufferBuilder builder, SCHALE.Common.FlatData.StageTopography stageTopography) { builder.AddInt(18, (int)stageTopography, 0); }
|
||||
public static void AddRecommandLevel(FlatBufferBuilder builder, int recommandLevel) { builder.AddInt(19, recommandLevel, 0); }
|
||||
public static void AddBgmId(FlatBufferBuilder builder, StringOffset bgmIdOffset) { builder.AddOffset(20, bgmIdOffset.Value, 0); }
|
||||
public static void AddStrategyEnvironment_(FlatBufferBuilder builder, SCHALE.Common.FlatData.StrategyEnvironment strategyEnvironment_) { builder.AddInt(21, (int)strategyEnvironment_, 0); }
|
||||
public static void AddStrategyEnvironment(FlatBufferBuilder builder, SCHALE.Common.FlatData.StrategyEnvironment strategyEnvironment) { builder.AddInt(21, (int)strategyEnvironment, 0); }
|
||||
public static void AddGroundId(FlatBufferBuilder builder, long groundId) { builder.AddLong(22, groundId, 0); }
|
||||
public static void AddStrategySkipGroundId(FlatBufferBuilder builder, int strategySkipGroundId) { builder.AddInt(23, strategySkipGroundId, 0); }
|
||||
public static void AddContentType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ContentType contentType_) { builder.AddInt(24, (int)contentType_, 0); }
|
||||
public static void AddContentType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ContentType contentType) { builder.AddInt(24, (int)contentType, 0); }
|
||||
public static void AddBGMId(FlatBufferBuilder builder, long bGMId) { builder.AddLong(25, bGMId, 0); }
|
||||
public static void AddFirstClearReportEventName(FlatBufferBuilder builder, StringOffset firstClearReportEventNameOffset) { builder.AddOffset(26, firstClearReportEventNameOffset.Value, 0); }
|
||||
public static void AddTacticRewardExp(FlatBufferBuilder builder, long tacticRewardExp) { builder.AddLong(27, tacticRewardExp, 0); }
|
||||
public static void AddFixedEchelonId(FlatBufferBuilder builder, long fixedEchelonId) { builder.AddLong(28, fixedEchelonId, 0); }
|
||||
public static void AddEchelonExtensionType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.EchelonExtensionType echelonExtensionType_) { builder.AddInt(29, (int)echelonExtensionType_, 0); }
|
||||
public static void AddEchelonExtensionType(FlatBufferBuilder builder, SCHALE.Common.FlatData.EchelonExtensionType echelonExtensionType) { builder.AddInt(29, (int)echelonExtensionType, 0); }
|
||||
public static Offset<SCHALE.Common.FlatData.CampaignStageExcel> EndCampaignStageExcel(FlatBufferBuilder builder) {
|
||||
int o = builder.EndTable();
|
||||
return new Offset<SCHALE.Common.FlatData.CampaignStageExcel>(o);
|
||||
|
@ -238,18 +238,18 @@ public struct CampaignStageExcel : IFlatbufferObject
|
|||
_o.StrategyMapBG = TableEncryptionService.Convert(this.StrategyMapBG, key);
|
||||
_o.CampaignStageRewardId = TableEncryptionService.Convert(this.CampaignStageRewardId, key);
|
||||
_o.MaxTurn = TableEncryptionService.Convert(this.MaxTurn, key);
|
||||
_o.StageTopography_ = TableEncryptionService.Convert(this.StageTopography_, key);
|
||||
_o.StageTopography = TableEncryptionService.Convert(this.StageTopography, key);
|
||||
_o.RecommandLevel = TableEncryptionService.Convert(this.RecommandLevel, key);
|
||||
_o.BgmId = TableEncryptionService.Convert(this.BgmId, key);
|
||||
_o.StrategyEnvironment_ = TableEncryptionService.Convert(this.StrategyEnvironment_, key);
|
||||
_o.StrategyEnvironment = TableEncryptionService.Convert(this.StrategyEnvironment, key);
|
||||
_o.GroundId = TableEncryptionService.Convert(this.GroundId, key);
|
||||
_o.StrategySkipGroundId = TableEncryptionService.Convert(this.StrategySkipGroundId, key);
|
||||
_o.ContentType_ = TableEncryptionService.Convert(this.ContentType_, key);
|
||||
_o.ContentType = TableEncryptionService.Convert(this.ContentType, key);
|
||||
_o.BGMId = TableEncryptionService.Convert(this.BGMId, key);
|
||||
_o.FirstClearReportEventName = TableEncryptionService.Convert(this.FirstClearReportEventName, key);
|
||||
_o.TacticRewardExp = TableEncryptionService.Convert(this.TacticRewardExp, key);
|
||||
_o.FixedEchelonId = TableEncryptionService.Convert(this.FixedEchelonId, key);
|
||||
_o.EchelonExtensionType_ = TableEncryptionService.Convert(this.EchelonExtensionType_, key);
|
||||
_o.EchelonExtensionType = TableEncryptionService.Convert(this.EchelonExtensionType, key);
|
||||
}
|
||||
public static Offset<SCHALE.Common.FlatData.CampaignStageExcel> Pack(FlatBufferBuilder builder, CampaignStageExcelT _o) {
|
||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.CampaignStageExcel>);
|
||||
|
@ -289,18 +289,18 @@ public struct CampaignStageExcel : IFlatbufferObject
|
|||
_StrategyMapBG,
|
||||
_o.CampaignStageRewardId,
|
||||
_o.MaxTurn,
|
||||
_o.StageTopography_,
|
||||
_o.StageTopography,
|
||||
_o.RecommandLevel,
|
||||
_BgmId,
|
||||
_o.StrategyEnvironment_,
|
||||
_o.StrategyEnvironment,
|
||||
_o.GroundId,
|
||||
_o.StrategySkipGroundId,
|
||||
_o.ContentType_,
|
||||
_o.ContentType,
|
||||
_o.BGMId,
|
||||
_FirstClearReportEventName,
|
||||
_o.TacticRewardExp,
|
||||
_o.FixedEchelonId,
|
||||
_o.EchelonExtensionType_);
|
||||
_o.EchelonExtensionType);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -324,18 +324,18 @@ public class CampaignStageExcelT
|
|||
public string StrategyMapBG { get; set; }
|
||||
public long CampaignStageRewardId { get; set; }
|
||||
public int MaxTurn { get; set; }
|
||||
public SCHALE.Common.FlatData.StageTopography StageTopography_ { get; set; }
|
||||
public SCHALE.Common.FlatData.StageTopography StageTopography { get; set; }
|
||||
public int RecommandLevel { get; set; }
|
||||
public string BgmId { get; set; }
|
||||
public SCHALE.Common.FlatData.StrategyEnvironment StrategyEnvironment_ { get; set; }
|
||||
public SCHALE.Common.FlatData.StrategyEnvironment StrategyEnvironment { get; set; }
|
||||
public long GroundId { get; set; }
|
||||
public int StrategySkipGroundId { get; set; }
|
||||
public SCHALE.Common.FlatData.ContentType ContentType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ContentType ContentType { get; set; }
|
||||
public long BGMId { get; set; }
|
||||
public string FirstClearReportEventName { get; set; }
|
||||
public long TacticRewardExp { get; set; }
|
||||
public long FixedEchelonId { get; set; }
|
||||
public SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType { get; set; }
|
||||
|
||||
public CampaignStageExcelT() {
|
||||
this.Id = 0;
|
||||
|
@ -344,7 +344,7 @@ public class CampaignStageExcelT
|
|||
this.StageNumber = null;
|
||||
this.CleardScenarioId = 0;
|
||||
this.BattleDuration = 0;
|
||||
this.StageEnterCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.StageEnterCostType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.StageEnterCostId = 0;
|
||||
this.StageEnterCostAmount = 0;
|
||||
this.StageEnterEchelonCount = 0;
|
||||
|
@ -356,18 +356,18 @@ public class CampaignStageExcelT
|
|||
this.StrategyMapBG = null;
|
||||
this.CampaignStageRewardId = 0;
|
||||
this.MaxTurn = 0;
|
||||
this.StageTopography_ = SCHALE.Common.FlatData.StageTopography.Street;
|
||||
this.StageTopography = SCHALE.Common.FlatData.StageTopography.Street;
|
||||
this.RecommandLevel = 0;
|
||||
this.BgmId = null;
|
||||
this.StrategyEnvironment_ = SCHALE.Common.FlatData.StrategyEnvironment.None_;
|
||||
this.StrategyEnvironment = SCHALE.Common.FlatData.StrategyEnvironment.None;
|
||||
this.GroundId = 0;
|
||||
this.StrategySkipGroundId = 0;
|
||||
this.ContentType_ = SCHALE.Common.FlatData.ContentType.None_;
|
||||
this.ContentType = SCHALE.Common.FlatData.ContentType.None;
|
||||
this.BGMId = 0;
|
||||
this.FirstClearReportEventName = null;
|
||||
this.TacticRewardExp = 0;
|
||||
this.FixedEchelonId = 0;
|
||||
this.EchelonExtensionType_ = SCHALE.Common.FlatData.EchelonExtensionType.Base;
|
||||
this.EchelonExtensionType = SCHALE.Common.FlatData.EchelonExtensionType.Base;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -395,18 +395,18 @@ static public class CampaignStageExcelVerify
|
|||
&& verifier.VerifyString(tablePos, 34 /*StrategyMapBG*/, false)
|
||||
&& verifier.VerifyField(tablePos, 36 /*CampaignStageRewardId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 38 /*MaxTurn*/, 4 /*int*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 40 /*StageTopography_*/, 4 /*SCHALE.Common.FlatData.StageTopography*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 40 /*StageTopography*/, 4 /*SCHALE.Common.FlatData.StageTopography*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 42 /*RecommandLevel*/, 4 /*int*/, 4, false)
|
||||
&& verifier.VerifyString(tablePos, 44 /*BgmId*/, false)
|
||||
&& verifier.VerifyField(tablePos, 46 /*StrategyEnvironment_*/, 4 /*SCHALE.Common.FlatData.StrategyEnvironment*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 46 /*StrategyEnvironment*/, 4 /*SCHALE.Common.FlatData.StrategyEnvironment*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 48 /*GroundId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 50 /*StrategySkipGroundId*/, 4 /*int*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 52 /*ContentType_*/, 4 /*SCHALE.Common.FlatData.ContentType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 52 /*ContentType*/, 4 /*SCHALE.Common.FlatData.ContentType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 54 /*BGMId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyString(tablePos, 56 /*FirstClearReportEventName*/, false)
|
||||
&& verifier.VerifyField(tablePos, 58 /*TacticRewardExp*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 60 /*FixedEchelonId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 62 /*EchelonExtensionType_*/, 4 /*SCHALE.Common.FlatData.EchelonExtensionType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 62 /*EchelonExtensionType*/, 4 /*SCHALE.Common.FlatData.EchelonExtensionType*/, 4, false)
|
||||
&& verifier.VerifyTableEnd(tablePos);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -21,18 +21,18 @@ public struct CampaignStageRewardExcel : IFlatbufferObject
|
|||
public CampaignStageRewardExcel __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 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 StageRewardProb { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType StageRewardParcelType { 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 SCHALE.Common.FlatData.ParcelType StageRewardParcelType { 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 StageRewardId { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int StageRewardAmount { 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<SCHALE.Common.FlatData.CampaignStageRewardExcel> CreateCampaignStageRewardExcel(FlatBufferBuilder builder,
|
||||
long GroupId = 0,
|
||||
SCHALE.Common.FlatData.RewardTag RewardTag_ = SCHALE.Common.FlatData.RewardTag.Default,
|
||||
SCHALE.Common.FlatData.RewardTag RewardTag = SCHALE.Common.FlatData.RewardTag.Default,
|
||||
int StageRewardProb = 0,
|
||||
SCHALE.Common.FlatData.ParcelType StageRewardParcelType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType StageRewardParcelType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long StageRewardId = 0,
|
||||
int StageRewardAmount = 0,
|
||||
bool IsDisplayed = false) {
|
||||
|
@ -42,14 +42,14 @@ public struct CampaignStageRewardExcel : IFlatbufferObject
|
|||
CampaignStageRewardExcel.AddStageRewardAmount(builder, StageRewardAmount);
|
||||
CampaignStageRewardExcel.AddStageRewardParcelType(builder, StageRewardParcelType);
|
||||
CampaignStageRewardExcel.AddStageRewardProb(builder, StageRewardProb);
|
||||
CampaignStageRewardExcel.AddRewardTag_(builder, RewardTag_);
|
||||
CampaignStageRewardExcel.AddRewardTag(builder, RewardTag);
|
||||
CampaignStageRewardExcel.AddIsDisplayed(builder, IsDisplayed);
|
||||
return CampaignStageRewardExcel.EndCampaignStageRewardExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartCampaignStageRewardExcel(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 AddRewardTag(FlatBufferBuilder builder, SCHALE.Common.FlatData.RewardTag rewardTag) { builder.AddInt(1, (int)rewardTag, 0); }
|
||||
public static void AddStageRewardProb(FlatBufferBuilder builder, int stageRewardProb) { builder.AddInt(2, stageRewardProb, 0); }
|
||||
public static void AddStageRewardParcelType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ParcelType stageRewardParcelType) { builder.AddInt(3, (int)stageRewardParcelType, 0); }
|
||||
public static void AddStageRewardId(FlatBufferBuilder builder, long stageRewardId) { builder.AddLong(4, stageRewardId, 0); }
|
||||
|
@ -67,7 +67,7 @@ public struct CampaignStageRewardExcel : IFlatbufferObject
|
|||
public void UnPackTo(CampaignStageRewardExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("CampaignStageReward");
|
||||
_o.GroupId = TableEncryptionService.Convert(this.GroupId, key);
|
||||
_o.RewardTag_ = TableEncryptionService.Convert(this.RewardTag_, key);
|
||||
_o.RewardTag = TableEncryptionService.Convert(this.RewardTag, key);
|
||||
_o.StageRewardProb = TableEncryptionService.Convert(this.StageRewardProb, key);
|
||||
_o.StageRewardParcelType = TableEncryptionService.Convert(this.StageRewardParcelType, key);
|
||||
_o.StageRewardId = TableEncryptionService.Convert(this.StageRewardId, key);
|
||||
|
@ -79,7 +79,7 @@ public struct CampaignStageRewardExcel : IFlatbufferObject
|
|||
return CreateCampaignStageRewardExcel(
|
||||
builder,
|
||||
_o.GroupId,
|
||||
_o.RewardTag_,
|
||||
_o.RewardTag,
|
||||
_o.StageRewardProb,
|
||||
_o.StageRewardParcelType,
|
||||
_o.StageRewardId,
|
||||
|
@ -91,7 +91,7 @@ public struct CampaignStageRewardExcel : IFlatbufferObject
|
|||
public class CampaignStageRewardExcelT
|
||||
{
|
||||
public long GroupId { get; set; }
|
||||
public SCHALE.Common.FlatData.RewardTag RewardTag_ { get; set; }
|
||||
public SCHALE.Common.FlatData.RewardTag RewardTag { get; set; }
|
||||
public int StageRewardProb { get; set; }
|
||||
public SCHALE.Common.FlatData.ParcelType StageRewardParcelType { get; set; }
|
||||
public long StageRewardId { get; set; }
|
||||
|
@ -100,9 +100,9 @@ public class CampaignStageRewardExcelT
|
|||
|
||||
public CampaignStageRewardExcelT() {
|
||||
this.GroupId = 0;
|
||||
this.RewardTag_ = SCHALE.Common.FlatData.RewardTag.Default;
|
||||
this.RewardTag = SCHALE.Common.FlatData.RewardTag.Default;
|
||||
this.StageRewardProb = 0;
|
||||
this.StageRewardParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.StageRewardParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.StageRewardId = 0;
|
||||
this.StageRewardAmount = 0;
|
||||
this.IsDisplayed = false;
|
||||
|
@ -116,7 +116,7 @@ static public class CampaignStageRewardExcelVerify
|
|||
{
|
||||
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, 6 /*RewardTag*/, 4 /*SCHALE.Common.FlatData.RewardTag*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*StageRewardProb*/, 4 /*int*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*StageRewardParcelType*/, 4 /*SCHALE.Common.FlatData.ParcelType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*StageRewardId*/, 8 /*long*/, 8, false)
|
||||
|
|
|
@ -36,8 +36,8 @@ public struct CampaignStrategyObjectExcel : IFlatbufferObject
|
|||
public ArraySegment<byte>? GetPrefabNameBytes() { return __p.__vector_as_arraysegment(10); }
|
||||
#endif
|
||||
public byte[] GetPrefabNameArray() { return __p.__vector_as_array<byte>(10); }
|
||||
public SCHALE.Common.FlatData.StrategyObjectType StrategyObjectType_ { get { int o = __p.__offset(12); return o != 0 ? (SCHALE.Common.FlatData.StrategyObjectType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StrategyObjectType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType StrategyRewardParcelType { get { int o = __p.__offset(14); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.StrategyObjectType StrategyObjectType { get { int o = __p.__offset(12); return o != 0 ? (SCHALE.Common.FlatData.StrategyObjectType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StrategyObjectType.None; } }
|
||||
public SCHALE.Common.FlatData.ParcelType StrategyRewardParcelType { get { int o = __p.__offset(14); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long StrategyRewardID { get { int o = __p.__offset(16); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public string StrategyRewardName { get { int o = __p.__offset(18); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
|
@ -59,8 +59,8 @@ public struct CampaignStrategyObjectExcel : IFlatbufferObject
|
|||
uint Key = 0,
|
||||
StringOffset NameOffset = default(StringOffset),
|
||||
StringOffset PrefabNameOffset = default(StringOffset),
|
||||
SCHALE.Common.FlatData.StrategyObjectType StrategyObjectType_ = SCHALE.Common.FlatData.StrategyObjectType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType StrategyRewardParcelType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.StrategyObjectType StrategyObjectType = SCHALE.Common.FlatData.StrategyObjectType.None,
|
||||
SCHALE.Common.FlatData.ParcelType StrategyRewardParcelType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long StrategyRewardID = 0,
|
||||
StringOffset StrategyRewardNameOffset = default(StringOffset),
|
||||
int StrategyRewardAmount = 0,
|
||||
|
@ -81,7 +81,7 @@ public struct CampaignStrategyObjectExcel : IFlatbufferObject
|
|||
CampaignStrategyObjectExcel.AddStrategyRewardAmount(builder, StrategyRewardAmount);
|
||||
CampaignStrategyObjectExcel.AddStrategyRewardName(builder, StrategyRewardNameOffset);
|
||||
CampaignStrategyObjectExcel.AddStrategyRewardParcelType(builder, StrategyRewardParcelType);
|
||||
CampaignStrategyObjectExcel.AddStrategyObjectType_(builder, StrategyObjectType_);
|
||||
CampaignStrategyObjectExcel.AddStrategyObjectType(builder, StrategyObjectType);
|
||||
CampaignStrategyObjectExcel.AddPrefabName(builder, PrefabNameOffset);
|
||||
CampaignStrategyObjectExcel.AddName(builder, NameOffset);
|
||||
CampaignStrategyObjectExcel.AddKey(builder, Key);
|
||||
|
@ -94,7 +94,7 @@ public struct CampaignStrategyObjectExcel : IFlatbufferObject
|
|||
public static void AddKey(FlatBufferBuilder builder, uint key) { builder.AddUint(1, key, 0); }
|
||||
public static void AddName(FlatBufferBuilder builder, StringOffset nameOffset) { builder.AddOffset(2, nameOffset.Value, 0); }
|
||||
public static void AddPrefabName(FlatBufferBuilder builder, StringOffset prefabNameOffset) { builder.AddOffset(3, prefabNameOffset.Value, 0); }
|
||||
public static void AddStrategyObjectType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.StrategyObjectType strategyObjectType_) { builder.AddInt(4, (int)strategyObjectType_, 0); }
|
||||
public static void AddStrategyObjectType(FlatBufferBuilder builder, SCHALE.Common.FlatData.StrategyObjectType strategyObjectType) { builder.AddInt(4, (int)strategyObjectType, 0); }
|
||||
public static void AddStrategyRewardParcelType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ParcelType strategyRewardParcelType) { builder.AddInt(5, (int)strategyRewardParcelType, 0); }
|
||||
public static void AddStrategyRewardID(FlatBufferBuilder builder, long strategyRewardID) { builder.AddLong(6, strategyRewardID, 0); }
|
||||
public static void AddStrategyRewardName(FlatBufferBuilder builder, StringOffset strategyRewardNameOffset) { builder.AddOffset(7, strategyRewardNameOffset.Value, 0); }
|
||||
|
@ -120,7 +120,7 @@ public struct CampaignStrategyObjectExcel : IFlatbufferObject
|
|||
_o.Key = TableEncryptionService.Convert(this.Key, key);
|
||||
_o.Name = TableEncryptionService.Convert(this.Name, key);
|
||||
_o.PrefabName = TableEncryptionService.Convert(this.PrefabName, key);
|
||||
_o.StrategyObjectType_ = TableEncryptionService.Convert(this.StrategyObjectType_, key);
|
||||
_o.StrategyObjectType = TableEncryptionService.Convert(this.StrategyObjectType, key);
|
||||
_o.StrategyRewardParcelType = TableEncryptionService.Convert(this.StrategyRewardParcelType, key);
|
||||
_o.StrategyRewardID = TableEncryptionService.Convert(this.StrategyRewardID, key);
|
||||
_o.StrategyRewardName = TableEncryptionService.Convert(this.StrategyRewardName, key);
|
||||
|
@ -143,7 +143,7 @@ public struct CampaignStrategyObjectExcel : IFlatbufferObject
|
|||
_o.Key,
|
||||
_Name,
|
||||
_PrefabName,
|
||||
_o.StrategyObjectType_,
|
||||
_o.StrategyObjectType,
|
||||
_o.StrategyRewardParcelType,
|
||||
_o.StrategyRewardID,
|
||||
_StrategyRewardName,
|
||||
|
@ -163,7 +163,7 @@ public class CampaignStrategyObjectExcelT
|
|||
public uint Key { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string PrefabName { get; set; }
|
||||
public SCHALE.Common.FlatData.StrategyObjectType StrategyObjectType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.StrategyObjectType StrategyObjectType { get; set; }
|
||||
public SCHALE.Common.FlatData.ParcelType StrategyRewardParcelType { get; set; }
|
||||
public long StrategyRewardID { get; set; }
|
||||
public string StrategyRewardName { get; set; }
|
||||
|
@ -180,8 +180,8 @@ public class CampaignStrategyObjectExcelT
|
|||
this.Key = 0;
|
||||
this.Name = null;
|
||||
this.PrefabName = null;
|
||||
this.StrategyObjectType_ = SCHALE.Common.FlatData.StrategyObjectType.None_;
|
||||
this.StrategyRewardParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.StrategyObjectType = SCHALE.Common.FlatData.StrategyObjectType.None;
|
||||
this.StrategyRewardParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.StrategyRewardID = 0;
|
||||
this.StrategyRewardName = null;
|
||||
this.StrategyRewardAmount = 0;
|
||||
|
@ -204,7 +204,7 @@ static public class CampaignStrategyObjectExcelVerify
|
|||
&& verifier.VerifyField(tablePos, 6 /*Key*/, 4 /*uint*/, 4, false)
|
||||
&& verifier.VerifyString(tablePos, 8 /*Name*/, false)
|
||||
&& verifier.VerifyString(tablePos, 10 /*PrefabName*/, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*StrategyObjectType_*/, 4 /*SCHALE.Common.FlatData.StrategyObjectType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*StrategyObjectType*/, 4 /*SCHALE.Common.FlatData.StrategyObjectType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*StrategyRewardParcelType*/, 4 /*SCHALE.Common.FlatData.ParcelType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 16 /*StrategyRewardID*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyString(tablePos, 18 /*StrategyRewardName*/, false)
|
||||
|
|
|
@ -61,9 +61,9 @@ public struct CampaignUnitExcel : IFlatbufferObject
|
|||
public long[] GetClearScenarioGroupIdArray() { return __p.__vector_as_array<long>(16); }
|
||||
public long GroundId { get { int o = __p.__offset(18); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int MoveRange { get { int o = __p.__offset(20); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.StrategyAIType AIMoveType { get { int o = __p.__offset(22); return o != 0 ? (SCHALE.Common.FlatData.StrategyAIType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StrategyAIType.None_; } }
|
||||
public SCHALE.Common.FlatData.StrategyAIType AIMoveType { get { int o = __p.__offset(22); return o != 0 ? (SCHALE.Common.FlatData.StrategyAIType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StrategyAIType.None; } }
|
||||
public SCHALE.Common.FlatData.HexaUnitGrade Grade { get { int o = __p.__offset(24); return o != 0 ? (SCHALE.Common.FlatData.HexaUnitGrade)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.HexaUnitGrade.Grade1; } }
|
||||
public SCHALE.Common.FlatData.TacticEnvironment EnvironmentType { get { int o = __p.__offset(26); return o != 0 ? (SCHALE.Common.FlatData.TacticEnvironment)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.TacticEnvironment.None_; } }
|
||||
public SCHALE.Common.FlatData.TacticEnvironment EnvironmentType { get { int o = __p.__offset(26); return o != 0 ? (SCHALE.Common.FlatData.TacticEnvironment)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.TacticEnvironment.None; } }
|
||||
public float Scale { get { int o = __p.__offset(28); return o != 0 ? __p.bb.GetFloat(o + __p.bb_pos) : (float)0.0f; } }
|
||||
public bool IsTacticSkip { get { int o = __p.__offset(30); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
|
||||
|
@ -77,9 +77,9 @@ public struct CampaignUnitExcel : IFlatbufferObject
|
|||
VectorOffset ClearScenarioGroupIdOffset = default(VectorOffset),
|
||||
long GroundId = 0,
|
||||
int MoveRange = 0,
|
||||
SCHALE.Common.FlatData.StrategyAIType AIMoveType = SCHALE.Common.FlatData.StrategyAIType.None_,
|
||||
SCHALE.Common.FlatData.StrategyAIType AIMoveType = SCHALE.Common.FlatData.StrategyAIType.None,
|
||||
SCHALE.Common.FlatData.HexaUnitGrade Grade = SCHALE.Common.FlatData.HexaUnitGrade.Grade1,
|
||||
SCHALE.Common.FlatData.TacticEnvironment EnvironmentType = SCHALE.Common.FlatData.TacticEnvironment.None_,
|
||||
SCHALE.Common.FlatData.TacticEnvironment EnvironmentType = SCHALE.Common.FlatData.TacticEnvironment.None,
|
||||
float Scale = 0.0f,
|
||||
bool IsTacticSkip = false) {
|
||||
builder.StartTable(14);
|
||||
|
@ -214,9 +214,9 @@ public class CampaignUnitExcelT
|
|||
this.ClearScenarioGroupId = null;
|
||||
this.GroundId = 0;
|
||||
this.MoveRange = 0;
|
||||
this.AIMoveType = SCHALE.Common.FlatData.StrategyAIType.None_;
|
||||
this.AIMoveType = SCHALE.Common.FlatData.StrategyAIType.None;
|
||||
this.Grade = SCHALE.Common.FlatData.HexaUnitGrade.Grade1;
|
||||
this.EnvironmentType = SCHALE.Common.FlatData.TacticEnvironment.None_;
|
||||
this.EnvironmentType = SCHALE.Common.FlatData.TacticEnvironment.None;
|
||||
this.Scale = 0.0f;
|
||||
this.IsTacticSkip = false;
|
||||
}
|
||||
|
|
|
@ -21,7 +21,7 @@ public struct CharacterAIExcel : IFlatbufferObject
|
|||
public CharacterAIExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public long Id { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.EngageType EngageType_ { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.EngageType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EngageType.SearchAndMove; } }
|
||||
public SCHALE.Common.FlatData.EngageType EngageType { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.EngageType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EngageType.SearchAndMove; } }
|
||||
public SCHALE.Common.FlatData.PositioningType Positioning { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.PositioningType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.PositioningType.CloseToObstacle; } }
|
||||
public bool CheckCanUseAutoSkill { get { int o = __p.__offset(10); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public long DistanceReduceRatioObstaclePath { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
@ -35,7 +35,7 @@ public struct CharacterAIExcel : IFlatbufferObject
|
|||
|
||||
public static Offset<SCHALE.Common.FlatData.CharacterAIExcel> CreateCharacterAIExcel(FlatBufferBuilder builder,
|
||||
long Id = 0,
|
||||
SCHALE.Common.FlatData.EngageType EngageType_ = SCHALE.Common.FlatData.EngageType.SearchAndMove,
|
||||
SCHALE.Common.FlatData.EngageType EngageType = SCHALE.Common.FlatData.EngageType.SearchAndMove,
|
||||
SCHALE.Common.FlatData.PositioningType Positioning = SCHALE.Common.FlatData.PositioningType.CloseToObstacle,
|
||||
bool CheckCanUseAutoSkill = false,
|
||||
long DistanceReduceRatioObstaclePath = 0,
|
||||
|
@ -54,7 +54,7 @@ public struct CharacterAIExcel : IFlatbufferObject
|
|||
CharacterAIExcel.AddDistanceReduceRatioObstaclePath(builder, DistanceReduceRatioObstaclePath);
|
||||
CharacterAIExcel.AddId(builder, Id);
|
||||
CharacterAIExcel.AddPositioning(builder, Positioning);
|
||||
CharacterAIExcel.AddEngageType_(builder, EngageType_);
|
||||
CharacterAIExcel.AddEngageType(builder, EngageType);
|
||||
CharacterAIExcel.AddHasTargetSwitchingMotion(builder, HasTargetSwitchingMotion);
|
||||
CharacterAIExcel.AddCanUseObstacleOfStandMotion(builder, CanUseObstacleOfStandMotion);
|
||||
CharacterAIExcel.AddCanUseObstacleOfKneelMotion(builder, CanUseObstacleOfKneelMotion);
|
||||
|
@ -64,7 +64,7 @@ public struct CharacterAIExcel : IFlatbufferObject
|
|||
|
||||
public static void StartCharacterAIExcel(FlatBufferBuilder builder) { builder.StartTable(12); }
|
||||
public static void AddId(FlatBufferBuilder builder, long id) { builder.AddLong(0, id, 0); }
|
||||
public static void AddEngageType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.EngageType engageType_) { builder.AddInt(1, (int)engageType_, 0); }
|
||||
public static void AddEngageType(FlatBufferBuilder builder, SCHALE.Common.FlatData.EngageType engageType) { builder.AddInt(1, (int)engageType, 0); }
|
||||
public static void AddPositioning(FlatBufferBuilder builder, SCHALE.Common.FlatData.PositioningType positioning) { builder.AddInt(2, (int)positioning, 0); }
|
||||
public static void AddCheckCanUseAutoSkill(FlatBufferBuilder builder, bool checkCanUseAutoSkill) { builder.AddBool(3, checkCanUseAutoSkill, false); }
|
||||
public static void AddDistanceReduceRatioObstaclePath(FlatBufferBuilder builder, long distanceReduceRatioObstaclePath) { builder.AddLong(4, distanceReduceRatioObstaclePath, 0); }
|
||||
|
@ -87,7 +87,7 @@ public struct CharacterAIExcel : IFlatbufferObject
|
|||
public void UnPackTo(CharacterAIExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("CharacterAI");
|
||||
_o.Id = TableEncryptionService.Convert(this.Id, key);
|
||||
_o.EngageType_ = TableEncryptionService.Convert(this.EngageType_, key);
|
||||
_o.EngageType = TableEncryptionService.Convert(this.EngageType, key);
|
||||
_o.Positioning = TableEncryptionService.Convert(this.Positioning, key);
|
||||
_o.CheckCanUseAutoSkill = TableEncryptionService.Convert(this.CheckCanUseAutoSkill, key);
|
||||
_o.DistanceReduceRatioObstaclePath = TableEncryptionService.Convert(this.DistanceReduceRatioObstaclePath, key);
|
||||
|
@ -104,7 +104,7 @@ public struct CharacterAIExcel : IFlatbufferObject
|
|||
return CreateCharacterAIExcel(
|
||||
builder,
|
||||
_o.Id,
|
||||
_o.EngageType_,
|
||||
_o.EngageType,
|
||||
_o.Positioning,
|
||||
_o.CheckCanUseAutoSkill,
|
||||
_o.DistanceReduceRatioObstaclePath,
|
||||
|
@ -121,7 +121,7 @@ public struct CharacterAIExcel : IFlatbufferObject
|
|||
public class CharacterAIExcelT
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public SCHALE.Common.FlatData.EngageType EngageType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.EngageType EngageType { get; set; }
|
||||
public SCHALE.Common.FlatData.PositioningType Positioning { get; set; }
|
||||
public bool CheckCanUseAutoSkill { get; set; }
|
||||
public long DistanceReduceRatioObstaclePath { get; set; }
|
||||
|
@ -135,7 +135,7 @@ public class CharacterAIExcelT
|
|||
|
||||
public CharacterAIExcelT() {
|
||||
this.Id = 0;
|
||||
this.EngageType_ = SCHALE.Common.FlatData.EngageType.SearchAndMove;
|
||||
this.EngageType = SCHALE.Common.FlatData.EngageType.SearchAndMove;
|
||||
this.Positioning = SCHALE.Common.FlatData.PositioningType.CloseToObstacle;
|
||||
this.CheckCanUseAutoSkill = false;
|
||||
this.DistanceReduceRatioObstaclePath = 0;
|
||||
|
@ -156,7 +156,7 @@ static public class CharacterAIExcelVerify
|
|||
{
|
||||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*Id*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*EngageType_*/, 4 /*SCHALE.Common.FlatData.EngageType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*EngageType*/, 4 /*SCHALE.Common.FlatData.EngageType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*Positioning*/, 4 /*SCHALE.Common.FlatData.PositioningType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*CheckCanUseAutoSkill*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*DistanceReduceRatioObstaclePath*/, 8 /*long*/, 8, false)
|
||||
|
|
|
@ -21,7 +21,7 @@ public struct CharacterCalculationLimitExcel : IFlatbufferObject
|
|||
public CharacterCalculationLimitExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public long Id { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.TacticEntityType TacticEntityType_ { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.TacticEntityType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.TacticEntityType.None_; } }
|
||||
public SCHALE.Common.FlatData.TacticEntityType TacticEntityType { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.TacticEntityType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.TacticEntityType.None; } }
|
||||
public SCHALE.Common.FlatData.BattleCalculationStat CalculationValue { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.BattleCalculationStat)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.BattleCalculationStat.FinalDamage; } }
|
||||
public long MinValue { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long MaxValue { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
@ -44,7 +44,7 @@ public struct CharacterCalculationLimitExcel : IFlatbufferObject
|
|||
|
||||
public static Offset<SCHALE.Common.FlatData.CharacterCalculationLimitExcel> CreateCharacterCalculationLimitExcel(FlatBufferBuilder builder,
|
||||
long Id = 0,
|
||||
SCHALE.Common.FlatData.TacticEntityType TacticEntityType_ = SCHALE.Common.FlatData.TacticEntityType.None_,
|
||||
SCHALE.Common.FlatData.TacticEntityType TacticEntityType = SCHALE.Common.FlatData.TacticEntityType.None,
|
||||
SCHALE.Common.FlatData.BattleCalculationStat CalculationValue = SCHALE.Common.FlatData.BattleCalculationStat.FinalDamage,
|
||||
long MinValue = 0,
|
||||
long MaxValue = 0,
|
||||
|
@ -57,13 +57,13 @@ public struct CharacterCalculationLimitExcel : IFlatbufferObject
|
|||
CharacterCalculationLimitExcel.AddDecreaseRate(builder, DecreaseRateOffset);
|
||||
CharacterCalculationLimitExcel.AddLimitStartValue(builder, LimitStartValueOffset);
|
||||
CharacterCalculationLimitExcel.AddCalculationValue(builder, CalculationValue);
|
||||
CharacterCalculationLimitExcel.AddTacticEntityType_(builder, TacticEntityType_);
|
||||
CharacterCalculationLimitExcel.AddTacticEntityType(builder, TacticEntityType);
|
||||
return CharacterCalculationLimitExcel.EndCharacterCalculationLimitExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartCharacterCalculationLimitExcel(FlatBufferBuilder builder) { builder.StartTable(7); }
|
||||
public static void AddId(FlatBufferBuilder builder, long id) { builder.AddLong(0, id, 0); }
|
||||
public static void AddTacticEntityType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.TacticEntityType tacticEntityType_) { builder.AddInt(1, (int)tacticEntityType_, 0); }
|
||||
public static void AddTacticEntityType(FlatBufferBuilder builder, SCHALE.Common.FlatData.TacticEntityType tacticEntityType) { builder.AddInt(1, (int)tacticEntityType, 0); }
|
||||
public static void AddCalculationValue(FlatBufferBuilder builder, SCHALE.Common.FlatData.BattleCalculationStat calculationValue) { builder.AddInt(2, (int)calculationValue, 0); }
|
||||
public static void AddMinValue(FlatBufferBuilder builder, long minValue) { builder.AddLong(3, minValue, 0); }
|
||||
public static void AddMaxValue(FlatBufferBuilder builder, long maxValue) { builder.AddLong(4, maxValue, 0); }
|
||||
|
@ -91,7 +91,7 @@ public struct CharacterCalculationLimitExcel : IFlatbufferObject
|
|||
public void UnPackTo(CharacterCalculationLimitExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("CharacterCalculationLimit");
|
||||
_o.Id = TableEncryptionService.Convert(this.Id, key);
|
||||
_o.TacticEntityType_ = TableEncryptionService.Convert(this.TacticEntityType_, key);
|
||||
_o.TacticEntityType = TableEncryptionService.Convert(this.TacticEntityType, key);
|
||||
_o.CalculationValue = TableEncryptionService.Convert(this.CalculationValue, key);
|
||||
_o.MinValue = TableEncryptionService.Convert(this.MinValue, key);
|
||||
_o.MaxValue = TableEncryptionService.Convert(this.MaxValue, key);
|
||||
|
@ -115,7 +115,7 @@ public struct CharacterCalculationLimitExcel : IFlatbufferObject
|
|||
return CreateCharacterCalculationLimitExcel(
|
||||
builder,
|
||||
_o.Id,
|
||||
_o.TacticEntityType_,
|
||||
_o.TacticEntityType,
|
||||
_o.CalculationValue,
|
||||
_o.MinValue,
|
||||
_o.MaxValue,
|
||||
|
@ -127,7 +127,7 @@ public struct CharacterCalculationLimitExcel : IFlatbufferObject
|
|||
public class CharacterCalculationLimitExcelT
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public SCHALE.Common.FlatData.TacticEntityType TacticEntityType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.TacticEntityType TacticEntityType { get; set; }
|
||||
public SCHALE.Common.FlatData.BattleCalculationStat CalculationValue { get; set; }
|
||||
public long MinValue { get; set; }
|
||||
public long MaxValue { get; set; }
|
||||
|
@ -136,7 +136,7 @@ public class CharacterCalculationLimitExcelT
|
|||
|
||||
public CharacterCalculationLimitExcelT() {
|
||||
this.Id = 0;
|
||||
this.TacticEntityType_ = SCHALE.Common.FlatData.TacticEntityType.None_;
|
||||
this.TacticEntityType = SCHALE.Common.FlatData.TacticEntityType.None;
|
||||
this.CalculationValue = SCHALE.Common.FlatData.BattleCalculationStat.FinalDamage;
|
||||
this.MinValue = 0;
|
||||
this.MaxValue = 0;
|
||||
|
@ -152,7 +152,7 @@ static public class CharacterCalculationLimitExcelVerify
|
|||
{
|
||||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*Id*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*TacticEntityType_*/, 4 /*SCHALE.Common.FlatData.TacticEntityType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*TacticEntityType*/, 4 /*SCHALE.Common.FlatData.TacticEntityType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*CalculationValue*/, 4 /*SCHALE.Common.FlatData.BattleCalculationStat*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*MinValue*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*MaxValue*/, 8 /*long*/, 8, false)
|
||||
|
|
|
@ -24,13 +24,13 @@ public struct CharacterDialogEventExcel : IFlatbufferObject
|
|||
public long OriginalCharacterId { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long DisplayOrder { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long EventID { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ProductionStep ProductionStep_ { get { int o = __p.__offset(12); return o != 0 ? (SCHALE.Common.FlatData.ProductionStep)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ProductionStep.ToDo; } }
|
||||
public SCHALE.Common.FlatData.DialogCategory DialogCategory_ { get { int o = __p.__offset(14); return o != 0 ? (SCHALE.Common.FlatData.DialogCategory)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DialogCategory.Cafe; } }
|
||||
public SCHALE.Common.FlatData.DialogCondition DialogCondition_ { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.DialogCondition)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DialogCondition.Idle; } }
|
||||
public SCHALE.Common.FlatData.DialogConditionDetail DialogConditionDetail_ { get { int o = __p.__offset(18); return o != 0 ? (SCHALE.Common.FlatData.DialogConditionDetail)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DialogConditionDetail.None_; } }
|
||||
public SCHALE.Common.FlatData.ProductionStep ProductionStep { get { int o = __p.__offset(12); return o != 0 ? (SCHALE.Common.FlatData.ProductionStep)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ProductionStep.ToDo; } }
|
||||
public SCHALE.Common.FlatData.DialogCategory DialogCategory { get { int o = __p.__offset(14); return o != 0 ? (SCHALE.Common.FlatData.DialogCategory)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DialogCategory.Cafe; } }
|
||||
public SCHALE.Common.FlatData.DialogCondition DialogCondition { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.DialogCondition)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DialogCondition.Idle; } }
|
||||
public SCHALE.Common.FlatData.DialogConditionDetail DialogConditionDetail { get { int o = __p.__offset(18); return o != 0 ? (SCHALE.Common.FlatData.DialogConditionDetail)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DialogConditionDetail.None; } }
|
||||
public long DialogConditionDetailValue { get { int o = __p.__offset(20); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long GroupId { get { int o = __p.__offset(22); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.DialogType DialogType_ { get { int o = __p.__offset(24); return o != 0 ? (SCHALE.Common.FlatData.DialogType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DialogType.Talk; } }
|
||||
public SCHALE.Common.FlatData.DialogType DialogType { get { int o = __p.__offset(24); return o != 0 ? (SCHALE.Common.FlatData.DialogType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DialogType.Talk; } }
|
||||
public string ActionName { get { int o = __p.__offset(26); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
public Span<byte> GetActionNameBytes() { return __p.__vector_as_span<byte>(26, 1); }
|
||||
|
@ -69,7 +69,7 @@ public struct CharacterDialogEventExcel : IFlatbufferObject
|
|||
#endif
|
||||
public uint[] GetVoiceIdArray() { return __p.__vector_as_array<uint>(36); }
|
||||
public bool CollectionVisible { get { int o = __p.__offset(38); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public SCHALE.Common.FlatData.CVCollectionType CVCollectionType_ { get { int o = __p.__offset(40); return o != 0 ? (SCHALE.Common.FlatData.CVCollectionType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.CVCollectionType.CVNormal; } }
|
||||
public SCHALE.Common.FlatData.CVCollectionType CVCollectionType { get { int o = __p.__offset(40); return o != 0 ? (SCHALE.Common.FlatData.CVCollectionType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.CVCollectionType.CVNormal; } }
|
||||
public long UnlockEventSeason { get { int o = __p.__offset(42); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long ScenarioGroupId { get { int o = __p.__offset(44); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public string LocalizeCVGroup { get { int o = __p.__offset(46); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
|
@ -85,13 +85,13 @@ public struct CharacterDialogEventExcel : IFlatbufferObject
|
|||
long OriginalCharacterId = 0,
|
||||
long DisplayOrder = 0,
|
||||
long EventID = 0,
|
||||
SCHALE.Common.FlatData.ProductionStep ProductionStep_ = SCHALE.Common.FlatData.ProductionStep.ToDo,
|
||||
SCHALE.Common.FlatData.DialogCategory DialogCategory_ = SCHALE.Common.FlatData.DialogCategory.Cafe,
|
||||
SCHALE.Common.FlatData.DialogCondition DialogCondition_ = SCHALE.Common.FlatData.DialogCondition.Idle,
|
||||
SCHALE.Common.FlatData.DialogConditionDetail DialogConditionDetail_ = SCHALE.Common.FlatData.DialogConditionDetail.None_,
|
||||
SCHALE.Common.FlatData.ProductionStep ProductionStep = SCHALE.Common.FlatData.ProductionStep.ToDo,
|
||||
SCHALE.Common.FlatData.DialogCategory DialogCategory = SCHALE.Common.FlatData.DialogCategory.Cafe,
|
||||
SCHALE.Common.FlatData.DialogCondition DialogCondition = SCHALE.Common.FlatData.DialogCondition.Idle,
|
||||
SCHALE.Common.FlatData.DialogConditionDetail DialogConditionDetail = SCHALE.Common.FlatData.DialogConditionDetail.None,
|
||||
long DialogConditionDetailValue = 0,
|
||||
long GroupId = 0,
|
||||
SCHALE.Common.FlatData.DialogType DialogType_ = SCHALE.Common.FlatData.DialogType.Talk,
|
||||
SCHALE.Common.FlatData.DialogType DialogType = SCHALE.Common.FlatData.DialogType.Talk,
|
||||
StringOffset ActionNameOffset = default(StringOffset),
|
||||
long Duration = 0,
|
||||
StringOffset AnimationNameOffset = default(StringOffset),
|
||||
|
@ -99,7 +99,7 @@ public struct CharacterDialogEventExcel : IFlatbufferObject
|
|||
StringOffset LocalizeJPOffset = default(StringOffset),
|
||||
VectorOffset VoiceIdOffset = default(VectorOffset),
|
||||
bool CollectionVisible = false,
|
||||
SCHALE.Common.FlatData.CVCollectionType CVCollectionType_ = SCHALE.Common.FlatData.CVCollectionType.CVNormal,
|
||||
SCHALE.Common.FlatData.CVCollectionType CVCollectionType = SCHALE.Common.FlatData.CVCollectionType.CVNormal,
|
||||
long UnlockEventSeason = 0,
|
||||
long ScenarioGroupId = 0,
|
||||
StringOffset LocalizeCVGroupOffset = default(StringOffset)) {
|
||||
|
@ -114,17 +114,17 @@ public struct CharacterDialogEventExcel : IFlatbufferObject
|
|||
CharacterDialogEventExcel.AddOriginalCharacterId(builder, OriginalCharacterId);
|
||||
CharacterDialogEventExcel.AddCostumeUniqueId(builder, CostumeUniqueId);
|
||||
CharacterDialogEventExcel.AddLocalizeCVGroup(builder, LocalizeCVGroupOffset);
|
||||
CharacterDialogEventExcel.AddCVCollectionType_(builder, CVCollectionType_);
|
||||
CharacterDialogEventExcel.AddCVCollectionType(builder, CVCollectionType);
|
||||
CharacterDialogEventExcel.AddVoiceId(builder, VoiceIdOffset);
|
||||
CharacterDialogEventExcel.AddLocalizeJP(builder, LocalizeJPOffset);
|
||||
CharacterDialogEventExcel.AddLocalizeKR(builder, LocalizeKROffset);
|
||||
CharacterDialogEventExcel.AddAnimationName(builder, AnimationNameOffset);
|
||||
CharacterDialogEventExcel.AddActionName(builder, ActionNameOffset);
|
||||
CharacterDialogEventExcel.AddDialogType_(builder, DialogType_);
|
||||
CharacterDialogEventExcel.AddDialogConditionDetail_(builder, DialogConditionDetail_);
|
||||
CharacterDialogEventExcel.AddDialogCondition_(builder, DialogCondition_);
|
||||
CharacterDialogEventExcel.AddDialogCategory_(builder, DialogCategory_);
|
||||
CharacterDialogEventExcel.AddProductionStep_(builder, ProductionStep_);
|
||||
CharacterDialogEventExcel.AddDialogType(builder, DialogType);
|
||||
CharacterDialogEventExcel.AddDialogConditionDetail(builder, DialogConditionDetail);
|
||||
CharacterDialogEventExcel.AddDialogCondition(builder, DialogCondition);
|
||||
CharacterDialogEventExcel.AddDialogCategory(builder, DialogCategory);
|
||||
CharacterDialogEventExcel.AddProductionStep(builder, ProductionStep);
|
||||
CharacterDialogEventExcel.AddCollectionVisible(builder, CollectionVisible);
|
||||
return CharacterDialogEventExcel.EndCharacterDialogEventExcel(builder);
|
||||
}
|
||||
|
@ -134,13 +134,13 @@ public struct CharacterDialogEventExcel : IFlatbufferObject
|
|||
public static void AddOriginalCharacterId(FlatBufferBuilder builder, long originalCharacterId) { builder.AddLong(1, originalCharacterId, 0); }
|
||||
public static void AddDisplayOrder(FlatBufferBuilder builder, long displayOrder) { builder.AddLong(2, displayOrder, 0); }
|
||||
public static void AddEventID(FlatBufferBuilder builder, long eventID) { builder.AddLong(3, eventID, 0); }
|
||||
public static void AddProductionStep_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ProductionStep productionStep_) { builder.AddInt(4, (int)productionStep_, 0); }
|
||||
public static void AddDialogCategory_(FlatBufferBuilder builder, SCHALE.Common.FlatData.DialogCategory dialogCategory_) { builder.AddInt(5, (int)dialogCategory_, 0); }
|
||||
public static void AddDialogCondition_(FlatBufferBuilder builder, SCHALE.Common.FlatData.DialogCondition dialogCondition_) { builder.AddInt(6, (int)dialogCondition_, 0); }
|
||||
public static void AddDialogConditionDetail_(FlatBufferBuilder builder, SCHALE.Common.FlatData.DialogConditionDetail dialogConditionDetail_) { builder.AddInt(7, (int)dialogConditionDetail_, 0); }
|
||||
public static void AddProductionStep(FlatBufferBuilder builder, SCHALE.Common.FlatData.ProductionStep productionStep) { builder.AddInt(4, (int)productionStep, 0); }
|
||||
public static void AddDialogCategory(FlatBufferBuilder builder, SCHALE.Common.FlatData.DialogCategory dialogCategory) { builder.AddInt(5, (int)dialogCategory, 0); }
|
||||
public static void AddDialogCondition(FlatBufferBuilder builder, SCHALE.Common.FlatData.DialogCondition dialogCondition) { builder.AddInt(6, (int)dialogCondition, 0); }
|
||||
public static void AddDialogConditionDetail(FlatBufferBuilder builder, SCHALE.Common.FlatData.DialogConditionDetail dialogConditionDetail) { builder.AddInt(7, (int)dialogConditionDetail, 0); }
|
||||
public static void AddDialogConditionDetailValue(FlatBufferBuilder builder, long dialogConditionDetailValue) { builder.AddLong(8, dialogConditionDetailValue, 0); }
|
||||
public static void AddGroupId(FlatBufferBuilder builder, long groupId) { builder.AddLong(9, groupId, 0); }
|
||||
public static void AddDialogType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.DialogType dialogType_) { builder.AddInt(10, (int)dialogType_, 0); }
|
||||
public static void AddDialogType(FlatBufferBuilder builder, SCHALE.Common.FlatData.DialogType dialogType) { builder.AddInt(10, (int)dialogType, 0); }
|
||||
public static void AddActionName(FlatBufferBuilder builder, StringOffset actionNameOffset) { builder.AddOffset(11, actionNameOffset.Value, 0); }
|
||||
public static void AddDuration(FlatBufferBuilder builder, long duration) { builder.AddLong(12, duration, 0); }
|
||||
public static void AddAnimationName(FlatBufferBuilder builder, StringOffset animationNameOffset) { builder.AddOffset(13, animationNameOffset.Value, 0); }
|
||||
|
@ -153,7 +153,7 @@ public struct CharacterDialogEventExcel : IFlatbufferObject
|
|||
public static VectorOffset CreateVoiceIdVectorBlock(FlatBufferBuilder builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<uint>(dataPtr, sizeInBytes); return builder.EndVector(); }
|
||||
public static void StartVoiceIdVector(FlatBufferBuilder builder, int numElems) { builder.StartVector(4, numElems, 4); }
|
||||
public static void AddCollectionVisible(FlatBufferBuilder builder, bool collectionVisible) { builder.AddBool(17, collectionVisible, false); }
|
||||
public static void AddCVCollectionType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.CVCollectionType cVCollectionType_) { builder.AddInt(18, (int)cVCollectionType_, 0); }
|
||||
public static void AddCVCollectionType(FlatBufferBuilder builder, SCHALE.Common.FlatData.CVCollectionType cVCollectionType) { builder.AddInt(18, (int)cVCollectionType, 0); }
|
||||
public static void AddUnlockEventSeason(FlatBufferBuilder builder, long unlockEventSeason) { builder.AddLong(19, unlockEventSeason, 0); }
|
||||
public static void AddScenarioGroupId(FlatBufferBuilder builder, long scenarioGroupId) { builder.AddLong(20, scenarioGroupId, 0); }
|
||||
public static void AddLocalizeCVGroup(FlatBufferBuilder builder, StringOffset localizeCVGroupOffset) { builder.AddOffset(21, localizeCVGroupOffset.Value, 0); }
|
||||
|
@ -172,13 +172,13 @@ public struct CharacterDialogEventExcel : IFlatbufferObject
|
|||
_o.OriginalCharacterId = TableEncryptionService.Convert(this.OriginalCharacterId, key);
|
||||
_o.DisplayOrder = TableEncryptionService.Convert(this.DisplayOrder, key);
|
||||
_o.EventID = TableEncryptionService.Convert(this.EventID, key);
|
||||
_o.ProductionStep_ = TableEncryptionService.Convert(this.ProductionStep_, key);
|
||||
_o.DialogCategory_ = TableEncryptionService.Convert(this.DialogCategory_, key);
|
||||
_o.DialogCondition_ = TableEncryptionService.Convert(this.DialogCondition_, key);
|
||||
_o.DialogConditionDetail_ = TableEncryptionService.Convert(this.DialogConditionDetail_, key);
|
||||
_o.ProductionStep = TableEncryptionService.Convert(this.ProductionStep, key);
|
||||
_o.DialogCategory = TableEncryptionService.Convert(this.DialogCategory, key);
|
||||
_o.DialogCondition = TableEncryptionService.Convert(this.DialogCondition, key);
|
||||
_o.DialogConditionDetail = TableEncryptionService.Convert(this.DialogConditionDetail, key);
|
||||
_o.DialogConditionDetailValue = TableEncryptionService.Convert(this.DialogConditionDetailValue, key);
|
||||
_o.GroupId = TableEncryptionService.Convert(this.GroupId, key);
|
||||
_o.DialogType_ = TableEncryptionService.Convert(this.DialogType_, key);
|
||||
_o.DialogType = TableEncryptionService.Convert(this.DialogType, key);
|
||||
_o.ActionName = TableEncryptionService.Convert(this.ActionName, key);
|
||||
_o.Duration = TableEncryptionService.Convert(this.Duration, key);
|
||||
_o.AnimationName = TableEncryptionService.Convert(this.AnimationName, key);
|
||||
|
@ -187,7 +187,7 @@ public struct CharacterDialogEventExcel : IFlatbufferObject
|
|||
_o.VoiceId = new List<uint>();
|
||||
for (var _j = 0; _j < this.VoiceIdLength; ++_j) {_o.VoiceId.Add(TableEncryptionService.Convert(this.VoiceId(_j), key));}
|
||||
_o.CollectionVisible = TableEncryptionService.Convert(this.CollectionVisible, key);
|
||||
_o.CVCollectionType_ = TableEncryptionService.Convert(this.CVCollectionType_, key);
|
||||
_o.CVCollectionType = TableEncryptionService.Convert(this.CVCollectionType, key);
|
||||
_o.UnlockEventSeason = TableEncryptionService.Convert(this.UnlockEventSeason, key);
|
||||
_o.ScenarioGroupId = TableEncryptionService.Convert(this.ScenarioGroupId, key);
|
||||
_o.LocalizeCVGroup = TableEncryptionService.Convert(this.LocalizeCVGroup, key);
|
||||
|
@ -210,13 +210,13 @@ public struct CharacterDialogEventExcel : IFlatbufferObject
|
|||
_o.OriginalCharacterId,
|
||||
_o.DisplayOrder,
|
||||
_o.EventID,
|
||||
_o.ProductionStep_,
|
||||
_o.DialogCategory_,
|
||||
_o.DialogCondition_,
|
||||
_o.DialogConditionDetail_,
|
||||
_o.ProductionStep,
|
||||
_o.DialogCategory,
|
||||
_o.DialogCondition,
|
||||
_o.DialogConditionDetail,
|
||||
_o.DialogConditionDetailValue,
|
||||
_o.GroupId,
|
||||
_o.DialogType_,
|
||||
_o.DialogType,
|
||||
_ActionName,
|
||||
_o.Duration,
|
||||
_AnimationName,
|
||||
|
@ -224,7 +224,7 @@ public struct CharacterDialogEventExcel : IFlatbufferObject
|
|||
_LocalizeJP,
|
||||
_VoiceId,
|
||||
_o.CollectionVisible,
|
||||
_o.CVCollectionType_,
|
||||
_o.CVCollectionType,
|
||||
_o.UnlockEventSeason,
|
||||
_o.ScenarioGroupId,
|
||||
_LocalizeCVGroup);
|
||||
|
@ -237,13 +237,13 @@ public class CharacterDialogEventExcelT
|
|||
public long OriginalCharacterId { get; set; }
|
||||
public long DisplayOrder { get; set; }
|
||||
public long EventID { get; set; }
|
||||
public SCHALE.Common.FlatData.ProductionStep ProductionStep_ { get; set; }
|
||||
public SCHALE.Common.FlatData.DialogCategory DialogCategory_ { get; set; }
|
||||
public SCHALE.Common.FlatData.DialogCondition DialogCondition_ { get; set; }
|
||||
public SCHALE.Common.FlatData.DialogConditionDetail DialogConditionDetail_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ProductionStep ProductionStep { get; set; }
|
||||
public SCHALE.Common.FlatData.DialogCategory DialogCategory { get; set; }
|
||||
public SCHALE.Common.FlatData.DialogCondition DialogCondition { get; set; }
|
||||
public SCHALE.Common.FlatData.DialogConditionDetail DialogConditionDetail { get; set; }
|
||||
public long DialogConditionDetailValue { get; set; }
|
||||
public long GroupId { get; set; }
|
||||
public SCHALE.Common.FlatData.DialogType DialogType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.DialogType DialogType { get; set; }
|
||||
public string ActionName { get; set; }
|
||||
public long Duration { get; set; }
|
||||
public string AnimationName { get; set; }
|
||||
|
@ -251,7 +251,7 @@ public class CharacterDialogEventExcelT
|
|||
public string LocalizeJP { get; set; }
|
||||
public List<uint> VoiceId { get; set; }
|
||||
public bool CollectionVisible { get; set; }
|
||||
public SCHALE.Common.FlatData.CVCollectionType CVCollectionType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.CVCollectionType CVCollectionType { get; set; }
|
||||
public long UnlockEventSeason { get; set; }
|
||||
public long ScenarioGroupId { get; set; }
|
||||
public string LocalizeCVGroup { get; set; }
|
||||
|
@ -261,13 +261,13 @@ public class CharacterDialogEventExcelT
|
|||
this.OriginalCharacterId = 0;
|
||||
this.DisplayOrder = 0;
|
||||
this.EventID = 0;
|
||||
this.ProductionStep_ = SCHALE.Common.FlatData.ProductionStep.ToDo;
|
||||
this.DialogCategory_ = SCHALE.Common.FlatData.DialogCategory.Cafe;
|
||||
this.DialogCondition_ = SCHALE.Common.FlatData.DialogCondition.Idle;
|
||||
this.DialogConditionDetail_ = SCHALE.Common.FlatData.DialogConditionDetail.None_;
|
||||
this.ProductionStep = SCHALE.Common.FlatData.ProductionStep.ToDo;
|
||||
this.DialogCategory = SCHALE.Common.FlatData.DialogCategory.Cafe;
|
||||
this.DialogCondition = SCHALE.Common.FlatData.DialogCondition.Idle;
|
||||
this.DialogConditionDetail = SCHALE.Common.FlatData.DialogConditionDetail.None;
|
||||
this.DialogConditionDetailValue = 0;
|
||||
this.GroupId = 0;
|
||||
this.DialogType_ = SCHALE.Common.FlatData.DialogType.Talk;
|
||||
this.DialogType = SCHALE.Common.FlatData.DialogType.Talk;
|
||||
this.ActionName = null;
|
||||
this.Duration = 0;
|
||||
this.AnimationName = null;
|
||||
|
@ -275,7 +275,7 @@ public class CharacterDialogEventExcelT
|
|||
this.LocalizeJP = null;
|
||||
this.VoiceId = null;
|
||||
this.CollectionVisible = false;
|
||||
this.CVCollectionType_ = SCHALE.Common.FlatData.CVCollectionType.CVNormal;
|
||||
this.CVCollectionType = SCHALE.Common.FlatData.CVCollectionType.CVNormal;
|
||||
this.UnlockEventSeason = 0;
|
||||
this.ScenarioGroupId = 0;
|
||||
this.LocalizeCVGroup = null;
|
||||
|
@ -292,13 +292,13 @@ static public class CharacterDialogEventExcelVerify
|
|||
&& verifier.VerifyField(tablePos, 6 /*OriginalCharacterId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*DisplayOrder*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*EventID*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*ProductionStep_*/, 4 /*SCHALE.Common.FlatData.ProductionStep*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*DialogCategory_*/, 4 /*SCHALE.Common.FlatData.DialogCategory*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 16 /*DialogCondition_*/, 4 /*SCHALE.Common.FlatData.DialogCondition*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 18 /*DialogConditionDetail_*/, 4 /*SCHALE.Common.FlatData.DialogConditionDetail*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*ProductionStep*/, 4 /*SCHALE.Common.FlatData.ProductionStep*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*DialogCategory*/, 4 /*SCHALE.Common.FlatData.DialogCategory*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 16 /*DialogCondition*/, 4 /*SCHALE.Common.FlatData.DialogCondition*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 18 /*DialogConditionDetail*/, 4 /*SCHALE.Common.FlatData.DialogConditionDetail*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 20 /*DialogConditionDetailValue*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 22 /*GroupId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 24 /*DialogType_*/, 4 /*SCHALE.Common.FlatData.DialogType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 24 /*DialogType*/, 4 /*SCHALE.Common.FlatData.DialogType*/, 4, false)
|
||||
&& verifier.VerifyString(tablePos, 26 /*ActionName*/, false)
|
||||
&& verifier.VerifyField(tablePos, 28 /*Duration*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyString(tablePos, 30 /*AnimationName*/, false)
|
||||
|
@ -306,7 +306,7 @@ static public class CharacterDialogEventExcelVerify
|
|||
&& verifier.VerifyString(tablePos, 34 /*LocalizeJP*/, false)
|
||||
&& verifier.VerifyVectorOfData(tablePos, 36 /*VoiceId*/, 4 /*uint*/, false)
|
||||
&& verifier.VerifyField(tablePos, 38 /*CollectionVisible*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyField(tablePos, 40 /*CVCollectionType_*/, 4 /*SCHALE.Common.FlatData.CVCollectionType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 40 /*CVCollectionType*/, 4 /*SCHALE.Common.FlatData.CVCollectionType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 42 /*UnlockEventSeason*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 44 /*ScenarioGroupId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyString(tablePos, 46 /*LocalizeCVGroup*/, false)
|
||||
|
|
|
@ -23,10 +23,10 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
|||
public long CharacterId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long CostumeUniqueId { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long DisplayOrder { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ProductionStep ProductionStep_ { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.ProductionStep)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ProductionStep.ToDo; } }
|
||||
public SCHALE.Common.FlatData.DialogCategory DialogCategory_ { get { int o = __p.__offset(12); return o != 0 ? (SCHALE.Common.FlatData.DialogCategory)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DialogCategory.Cafe; } }
|
||||
public SCHALE.Common.FlatData.DialogCondition DialogCondition_ { get { int o = __p.__offset(14); return o != 0 ? (SCHALE.Common.FlatData.DialogCondition)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DialogCondition.Idle; } }
|
||||
public SCHALE.Common.FlatData.Anniversary Anniversary_ { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.Anniversary)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.Anniversary.None_; } }
|
||||
public SCHALE.Common.FlatData.ProductionStep ProductionStep { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.ProductionStep)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ProductionStep.ToDo; } }
|
||||
public SCHALE.Common.FlatData.DialogCategory DialogCategory { get { int o = __p.__offset(12); return o != 0 ? (SCHALE.Common.FlatData.DialogCategory)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DialogCategory.Cafe; } }
|
||||
public SCHALE.Common.FlatData.DialogCondition DialogCondition { get { int o = __p.__offset(14); return o != 0 ? (SCHALE.Common.FlatData.DialogCondition)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DialogCondition.Idle; } }
|
||||
public SCHALE.Common.FlatData.Anniversary Anniversary { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.Anniversary)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.Anniversary.None; } }
|
||||
public string StartDate { get { int o = __p.__offset(18); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
public Span<byte> GetStartDateBytes() { return __p.__vector_as_span<byte>(18, 1); }
|
||||
|
@ -42,7 +42,7 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
|||
#endif
|
||||
public byte[] GetEndDateArray() { return __p.__vector_as_array<byte>(20); }
|
||||
public long GroupId { get { int o = __p.__offset(22); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.DialogType DialogType_ { get { int o = __p.__offset(24); return o != 0 ? (SCHALE.Common.FlatData.DialogType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DialogType.Talk; } }
|
||||
public SCHALE.Common.FlatData.DialogType DialogType { get { int o = __p.__offset(24); return o != 0 ? (SCHALE.Common.FlatData.DialogType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DialogType.Talk; } }
|
||||
public string ActionName { get { int o = __p.__offset(26); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
public Span<byte> GetActionNameBytes() { return __p.__vector_as_span<byte>(26, 1); }
|
||||
|
@ -84,7 +84,7 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
|||
public float PosX { get { int o = __p.__offset(40); return o != 0 ? __p.bb.GetFloat(o + __p.bb_pos) : (float)0.0f; } }
|
||||
public float PosY { get { int o = __p.__offset(42); return o != 0 ? __p.bb.GetFloat(o + __p.bb_pos) : (float)0.0f; } }
|
||||
public bool CollectionVisible { get { int o = __p.__offset(44); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public SCHALE.Common.FlatData.CVCollectionType CVCollectionType_ { get { int o = __p.__offset(46); return o != 0 ? (SCHALE.Common.FlatData.CVCollectionType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.CVCollectionType.CVNormal; } }
|
||||
public SCHALE.Common.FlatData.CVCollectionType CVCollectionType { get { int o = __p.__offset(46); return o != 0 ? (SCHALE.Common.FlatData.CVCollectionType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.CVCollectionType.CVNormal; } }
|
||||
public long UnlockFavorRank { get { int o = __p.__offset(48); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public bool UnlockEquipWeapon { get { int o = __p.__offset(50); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public string LocalizeCVGroup { get { int o = __p.__offset(52); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
|
@ -99,14 +99,14 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
|||
long CharacterId = 0,
|
||||
long CostumeUniqueId = 0,
|
||||
long DisplayOrder = 0,
|
||||
SCHALE.Common.FlatData.ProductionStep ProductionStep_ = SCHALE.Common.FlatData.ProductionStep.ToDo,
|
||||
SCHALE.Common.FlatData.DialogCategory DialogCategory_ = SCHALE.Common.FlatData.DialogCategory.Cafe,
|
||||
SCHALE.Common.FlatData.DialogCondition DialogCondition_ = SCHALE.Common.FlatData.DialogCondition.Idle,
|
||||
SCHALE.Common.FlatData.Anniversary Anniversary_ = SCHALE.Common.FlatData.Anniversary.None_,
|
||||
SCHALE.Common.FlatData.ProductionStep ProductionStep = SCHALE.Common.FlatData.ProductionStep.ToDo,
|
||||
SCHALE.Common.FlatData.DialogCategory DialogCategory = SCHALE.Common.FlatData.DialogCategory.Cafe,
|
||||
SCHALE.Common.FlatData.DialogCondition DialogCondition = SCHALE.Common.FlatData.DialogCondition.Idle,
|
||||
SCHALE.Common.FlatData.Anniversary Anniversary = SCHALE.Common.FlatData.Anniversary.None,
|
||||
StringOffset StartDateOffset = default(StringOffset),
|
||||
StringOffset EndDateOffset = default(StringOffset),
|
||||
long GroupId = 0,
|
||||
SCHALE.Common.FlatData.DialogType DialogType_ = SCHALE.Common.FlatData.DialogType.Talk,
|
||||
SCHALE.Common.FlatData.DialogType DialogType = SCHALE.Common.FlatData.DialogType.Talk,
|
||||
StringOffset ActionNameOffset = default(StringOffset),
|
||||
long Duration = 0,
|
||||
StringOffset AnimationNameOffset = default(StringOffset),
|
||||
|
@ -117,7 +117,7 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
|||
float PosX = 0.0f,
|
||||
float PosY = 0.0f,
|
||||
bool CollectionVisible = false,
|
||||
SCHALE.Common.FlatData.CVCollectionType CVCollectionType_ = SCHALE.Common.FlatData.CVCollectionType.CVNormal,
|
||||
SCHALE.Common.FlatData.CVCollectionType CVCollectionType = SCHALE.Common.FlatData.CVCollectionType.CVNormal,
|
||||
long UnlockFavorRank = 0,
|
||||
bool UnlockEquipWeapon = false,
|
||||
StringOffset LocalizeCVGroupOffset = default(StringOffset)) {
|
||||
|
@ -129,7 +129,7 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
|||
CharacterDialogExcel.AddCostumeUniqueId(builder, CostumeUniqueId);
|
||||
CharacterDialogExcel.AddCharacterId(builder, CharacterId);
|
||||
CharacterDialogExcel.AddLocalizeCVGroup(builder, LocalizeCVGroupOffset);
|
||||
CharacterDialogExcel.AddCVCollectionType_(builder, CVCollectionType_);
|
||||
CharacterDialogExcel.AddCVCollectionType(builder, CVCollectionType);
|
||||
CharacterDialogExcel.AddPosY(builder, PosY);
|
||||
CharacterDialogExcel.AddPosX(builder, PosX);
|
||||
CharacterDialogExcel.AddVoiceId(builder, VoiceIdOffset);
|
||||
|
@ -137,13 +137,13 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
|||
CharacterDialogExcel.AddLocalizeKR(builder, LocalizeKROffset);
|
||||
CharacterDialogExcel.AddAnimationName(builder, AnimationNameOffset);
|
||||
CharacterDialogExcel.AddActionName(builder, ActionNameOffset);
|
||||
CharacterDialogExcel.AddDialogType_(builder, DialogType_);
|
||||
CharacterDialogExcel.AddDialogType(builder, DialogType);
|
||||
CharacterDialogExcel.AddEndDate(builder, EndDateOffset);
|
||||
CharacterDialogExcel.AddStartDate(builder, StartDateOffset);
|
||||
CharacterDialogExcel.AddAnniversary_(builder, Anniversary_);
|
||||
CharacterDialogExcel.AddDialogCondition_(builder, DialogCondition_);
|
||||
CharacterDialogExcel.AddDialogCategory_(builder, DialogCategory_);
|
||||
CharacterDialogExcel.AddProductionStep_(builder, ProductionStep_);
|
||||
CharacterDialogExcel.AddAnniversary(builder, Anniversary);
|
||||
CharacterDialogExcel.AddDialogCondition(builder, DialogCondition);
|
||||
CharacterDialogExcel.AddDialogCategory(builder, DialogCategory);
|
||||
CharacterDialogExcel.AddProductionStep(builder, ProductionStep);
|
||||
CharacterDialogExcel.AddUnlockEquipWeapon(builder, UnlockEquipWeapon);
|
||||
CharacterDialogExcel.AddCollectionVisible(builder, CollectionVisible);
|
||||
CharacterDialogExcel.AddApplyPosition(builder, ApplyPosition);
|
||||
|
@ -154,14 +154,14 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
|||
public static void AddCharacterId(FlatBufferBuilder builder, long characterId) { builder.AddLong(0, characterId, 0); }
|
||||
public static void AddCostumeUniqueId(FlatBufferBuilder builder, long costumeUniqueId) { builder.AddLong(1, costumeUniqueId, 0); }
|
||||
public static void AddDisplayOrder(FlatBufferBuilder builder, long displayOrder) { builder.AddLong(2, displayOrder, 0); }
|
||||
public static void AddProductionStep_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ProductionStep productionStep_) { builder.AddInt(3, (int)productionStep_, 0); }
|
||||
public static void AddDialogCategory_(FlatBufferBuilder builder, SCHALE.Common.FlatData.DialogCategory dialogCategory_) { builder.AddInt(4, (int)dialogCategory_, 0); }
|
||||
public static void AddDialogCondition_(FlatBufferBuilder builder, SCHALE.Common.FlatData.DialogCondition dialogCondition_) { builder.AddInt(5, (int)dialogCondition_, 0); }
|
||||
public static void AddAnniversary_(FlatBufferBuilder builder, SCHALE.Common.FlatData.Anniversary anniversary_) { builder.AddInt(6, (int)anniversary_, 0); }
|
||||
public static void AddProductionStep(FlatBufferBuilder builder, SCHALE.Common.FlatData.ProductionStep productionStep) { builder.AddInt(3, (int)productionStep, 0); }
|
||||
public static void AddDialogCategory(FlatBufferBuilder builder, SCHALE.Common.FlatData.DialogCategory dialogCategory) { builder.AddInt(4, (int)dialogCategory, 0); }
|
||||
public static void AddDialogCondition(FlatBufferBuilder builder, SCHALE.Common.FlatData.DialogCondition dialogCondition) { builder.AddInt(5, (int)dialogCondition, 0); }
|
||||
public static void AddAnniversary(FlatBufferBuilder builder, SCHALE.Common.FlatData.Anniversary anniversary) { builder.AddInt(6, (int)anniversary, 0); }
|
||||
public static void AddStartDate(FlatBufferBuilder builder, StringOffset startDateOffset) { builder.AddOffset(7, startDateOffset.Value, 0); }
|
||||
public static void AddEndDate(FlatBufferBuilder builder, StringOffset endDateOffset) { builder.AddOffset(8, endDateOffset.Value, 0); }
|
||||
public static void AddGroupId(FlatBufferBuilder builder, long groupId) { builder.AddLong(9, groupId, 0); }
|
||||
public static void AddDialogType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.DialogType dialogType_) { builder.AddInt(10, (int)dialogType_, 0); }
|
||||
public static void AddDialogType(FlatBufferBuilder builder, SCHALE.Common.FlatData.DialogType dialogType) { builder.AddInt(10, (int)dialogType, 0); }
|
||||
public static void AddActionName(FlatBufferBuilder builder, StringOffset actionNameOffset) { builder.AddOffset(11, actionNameOffset.Value, 0); }
|
||||
public static void AddDuration(FlatBufferBuilder builder, long duration) { builder.AddLong(12, duration, 0); }
|
||||
public static void AddAnimationName(FlatBufferBuilder builder, StringOffset animationNameOffset) { builder.AddOffset(13, animationNameOffset.Value, 0); }
|
||||
|
@ -177,7 +177,7 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
|||
public static void AddPosX(FlatBufferBuilder builder, float posX) { builder.AddFloat(18, posX, 0.0f); }
|
||||
public static void AddPosY(FlatBufferBuilder builder, float posY) { builder.AddFloat(19, posY, 0.0f); }
|
||||
public static void AddCollectionVisible(FlatBufferBuilder builder, bool collectionVisible) { builder.AddBool(20, collectionVisible, false); }
|
||||
public static void AddCVCollectionType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.CVCollectionType cVCollectionType_) { builder.AddInt(21, (int)cVCollectionType_, 0); }
|
||||
public static void AddCVCollectionType(FlatBufferBuilder builder, SCHALE.Common.FlatData.CVCollectionType cVCollectionType) { builder.AddInt(21, (int)cVCollectionType, 0); }
|
||||
public static void AddUnlockFavorRank(FlatBufferBuilder builder, long unlockFavorRank) { builder.AddLong(22, unlockFavorRank, 0); }
|
||||
public static void AddUnlockEquipWeapon(FlatBufferBuilder builder, bool unlockEquipWeapon) { builder.AddBool(23, unlockEquipWeapon, false); }
|
||||
public static void AddLocalizeCVGroup(FlatBufferBuilder builder, StringOffset localizeCVGroupOffset) { builder.AddOffset(24, localizeCVGroupOffset.Value, 0); }
|
||||
|
@ -195,14 +195,14 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
|||
_o.CharacterId = TableEncryptionService.Convert(this.CharacterId, key);
|
||||
_o.CostumeUniqueId = TableEncryptionService.Convert(this.CostumeUniqueId, key);
|
||||
_o.DisplayOrder = TableEncryptionService.Convert(this.DisplayOrder, key);
|
||||
_o.ProductionStep_ = TableEncryptionService.Convert(this.ProductionStep_, key);
|
||||
_o.DialogCategory_ = TableEncryptionService.Convert(this.DialogCategory_, key);
|
||||
_o.DialogCondition_ = TableEncryptionService.Convert(this.DialogCondition_, key);
|
||||
_o.Anniversary_ = TableEncryptionService.Convert(this.Anniversary_, key);
|
||||
_o.ProductionStep = TableEncryptionService.Convert(this.ProductionStep, key);
|
||||
_o.DialogCategory = TableEncryptionService.Convert(this.DialogCategory, key);
|
||||
_o.DialogCondition = TableEncryptionService.Convert(this.DialogCondition, key);
|
||||
_o.Anniversary = TableEncryptionService.Convert(this.Anniversary, key);
|
||||
_o.StartDate = TableEncryptionService.Convert(this.StartDate, key);
|
||||
_o.EndDate = TableEncryptionService.Convert(this.EndDate, key);
|
||||
_o.GroupId = TableEncryptionService.Convert(this.GroupId, key);
|
||||
_o.DialogType_ = TableEncryptionService.Convert(this.DialogType_, key);
|
||||
_o.DialogType = TableEncryptionService.Convert(this.DialogType, key);
|
||||
_o.ActionName = TableEncryptionService.Convert(this.ActionName, key);
|
||||
_o.Duration = TableEncryptionService.Convert(this.Duration, key);
|
||||
_o.AnimationName = TableEncryptionService.Convert(this.AnimationName, key);
|
||||
|
@ -214,7 +214,7 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
|||
_o.PosX = TableEncryptionService.Convert(this.PosX, key);
|
||||
_o.PosY = TableEncryptionService.Convert(this.PosY, key);
|
||||
_o.CollectionVisible = TableEncryptionService.Convert(this.CollectionVisible, key);
|
||||
_o.CVCollectionType_ = TableEncryptionService.Convert(this.CVCollectionType_, key);
|
||||
_o.CVCollectionType = TableEncryptionService.Convert(this.CVCollectionType, key);
|
||||
_o.UnlockFavorRank = TableEncryptionService.Convert(this.UnlockFavorRank, key);
|
||||
_o.UnlockEquipWeapon = TableEncryptionService.Convert(this.UnlockEquipWeapon, key);
|
||||
_o.LocalizeCVGroup = TableEncryptionService.Convert(this.LocalizeCVGroup, key);
|
||||
|
@ -238,14 +238,14 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
|||
_o.CharacterId,
|
||||
_o.CostumeUniqueId,
|
||||
_o.DisplayOrder,
|
||||
_o.ProductionStep_,
|
||||
_o.DialogCategory_,
|
||||
_o.DialogCondition_,
|
||||
_o.Anniversary_,
|
||||
_o.ProductionStep,
|
||||
_o.DialogCategory,
|
||||
_o.DialogCondition,
|
||||
_o.Anniversary,
|
||||
_StartDate,
|
||||
_EndDate,
|
||||
_o.GroupId,
|
||||
_o.DialogType_,
|
||||
_o.DialogType,
|
||||
_ActionName,
|
||||
_o.Duration,
|
||||
_AnimationName,
|
||||
|
@ -256,7 +256,7 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
|||
_o.PosX,
|
||||
_o.PosY,
|
||||
_o.CollectionVisible,
|
||||
_o.CVCollectionType_,
|
||||
_o.CVCollectionType,
|
||||
_o.UnlockFavorRank,
|
||||
_o.UnlockEquipWeapon,
|
||||
_LocalizeCVGroup);
|
||||
|
@ -268,14 +268,14 @@ public class CharacterDialogExcelT
|
|||
public long CharacterId { get; set; }
|
||||
public long CostumeUniqueId { get; set; }
|
||||
public long DisplayOrder { get; set; }
|
||||
public SCHALE.Common.FlatData.ProductionStep ProductionStep_ { get; set; }
|
||||
public SCHALE.Common.FlatData.DialogCategory DialogCategory_ { get; set; }
|
||||
public SCHALE.Common.FlatData.DialogCondition DialogCondition_ { get; set; }
|
||||
public SCHALE.Common.FlatData.Anniversary Anniversary_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ProductionStep ProductionStep { get; set; }
|
||||
public SCHALE.Common.FlatData.DialogCategory DialogCategory { get; set; }
|
||||
public SCHALE.Common.FlatData.DialogCondition DialogCondition { get; set; }
|
||||
public SCHALE.Common.FlatData.Anniversary Anniversary { get; set; }
|
||||
public string StartDate { get; set; }
|
||||
public string EndDate { get; set; }
|
||||
public long GroupId { get; set; }
|
||||
public SCHALE.Common.FlatData.DialogType DialogType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.DialogType DialogType { get; set; }
|
||||
public string ActionName { get; set; }
|
||||
public long Duration { get; set; }
|
||||
public string AnimationName { get; set; }
|
||||
|
@ -286,7 +286,7 @@ public class CharacterDialogExcelT
|
|||
public float PosX { get; set; }
|
||||
public float PosY { get; set; }
|
||||
public bool CollectionVisible { get; set; }
|
||||
public SCHALE.Common.FlatData.CVCollectionType CVCollectionType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.CVCollectionType CVCollectionType { get; set; }
|
||||
public long UnlockFavorRank { get; set; }
|
||||
public bool UnlockEquipWeapon { get; set; }
|
||||
public string LocalizeCVGroup { get; set; }
|
||||
|
@ -295,14 +295,14 @@ public class CharacterDialogExcelT
|
|||
this.CharacterId = 0;
|
||||
this.CostumeUniqueId = 0;
|
||||
this.DisplayOrder = 0;
|
||||
this.ProductionStep_ = SCHALE.Common.FlatData.ProductionStep.ToDo;
|
||||
this.DialogCategory_ = SCHALE.Common.FlatData.DialogCategory.Cafe;
|
||||
this.DialogCondition_ = SCHALE.Common.FlatData.DialogCondition.Idle;
|
||||
this.Anniversary_ = SCHALE.Common.FlatData.Anniversary.None_;
|
||||
this.ProductionStep = SCHALE.Common.FlatData.ProductionStep.ToDo;
|
||||
this.DialogCategory = SCHALE.Common.FlatData.DialogCategory.Cafe;
|
||||
this.DialogCondition = SCHALE.Common.FlatData.DialogCondition.Idle;
|
||||
this.Anniversary = SCHALE.Common.FlatData.Anniversary.None;
|
||||
this.StartDate = null;
|
||||
this.EndDate = null;
|
||||
this.GroupId = 0;
|
||||
this.DialogType_ = SCHALE.Common.FlatData.DialogType.Talk;
|
||||
this.DialogType = SCHALE.Common.FlatData.DialogType.Talk;
|
||||
this.ActionName = null;
|
||||
this.Duration = 0;
|
||||
this.AnimationName = null;
|
||||
|
@ -313,7 +313,7 @@ public class CharacterDialogExcelT
|
|||
this.PosX = 0.0f;
|
||||
this.PosY = 0.0f;
|
||||
this.CollectionVisible = false;
|
||||
this.CVCollectionType_ = SCHALE.Common.FlatData.CVCollectionType.CVNormal;
|
||||
this.CVCollectionType = SCHALE.Common.FlatData.CVCollectionType.CVNormal;
|
||||
this.UnlockFavorRank = 0;
|
||||
this.UnlockEquipWeapon = false;
|
||||
this.LocalizeCVGroup = null;
|
||||
|
@ -329,14 +329,14 @@ static public class CharacterDialogExcelVerify
|
|||
&& verifier.VerifyField(tablePos, 4 /*CharacterId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*CostumeUniqueId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*DisplayOrder*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*ProductionStep_*/, 4 /*SCHALE.Common.FlatData.ProductionStep*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*DialogCategory_*/, 4 /*SCHALE.Common.FlatData.DialogCategory*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*DialogCondition_*/, 4 /*SCHALE.Common.FlatData.DialogCondition*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 16 /*Anniversary_*/, 4 /*SCHALE.Common.FlatData.Anniversary*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*ProductionStep*/, 4 /*SCHALE.Common.FlatData.ProductionStep*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*DialogCategory*/, 4 /*SCHALE.Common.FlatData.DialogCategory*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*DialogCondition*/, 4 /*SCHALE.Common.FlatData.DialogCondition*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 16 /*Anniversary*/, 4 /*SCHALE.Common.FlatData.Anniversary*/, 4, false)
|
||||
&& verifier.VerifyString(tablePos, 18 /*StartDate*/, false)
|
||||
&& verifier.VerifyString(tablePos, 20 /*EndDate*/, false)
|
||||
&& verifier.VerifyField(tablePos, 22 /*GroupId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 24 /*DialogType_*/, 4 /*SCHALE.Common.FlatData.DialogType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 24 /*DialogType*/, 4 /*SCHALE.Common.FlatData.DialogType*/, 4, false)
|
||||
&& verifier.VerifyString(tablePos, 26 /*ActionName*/, false)
|
||||
&& verifier.VerifyField(tablePos, 28 /*Duration*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyString(tablePos, 30 /*AnimationName*/, false)
|
||||
|
@ -347,7 +347,7 @@ static public class CharacterDialogExcelVerify
|
|||
&& verifier.VerifyField(tablePos, 40 /*PosX*/, 4 /*float*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 42 /*PosY*/, 4 /*float*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 44 /*CollectionVisible*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyField(tablePos, 46 /*CVCollectionType_*/, 4 /*SCHALE.Common.FlatData.CVCollectionType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 46 /*CVCollectionType*/, 4 /*SCHALE.Common.FlatData.CVCollectionType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 48 /*UnlockFavorRank*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 50 /*UnlockEquipWeapon*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyString(tablePos, 52 /*LocalizeCVGroup*/, false)
|
||||
|
|
|
@ -23,7 +23,7 @@ public struct CharacterDialogFieldExcel : IFlatbufferObject
|
|||
public long GroupId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int Phase { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public int TargetIndex { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.FieldDialogType DialogType { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.FieldDialogType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.FieldDialogType.None_; } }
|
||||
public SCHALE.Common.FlatData.FieldDialogType DialogType { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.FieldDialogType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.FieldDialogType.None; } }
|
||||
public long Duration { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public string MotionName { get { int o = __p.__offset(14); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
|
@ -53,7 +53,7 @@ public struct CharacterDialogFieldExcel : IFlatbufferObject
|
|||
long GroupId = 0,
|
||||
int Phase = 0,
|
||||
int TargetIndex = 0,
|
||||
SCHALE.Common.FlatData.FieldDialogType DialogType = SCHALE.Common.FlatData.FieldDialogType.None_,
|
||||
SCHALE.Common.FlatData.FieldDialogType DialogType = SCHALE.Common.FlatData.FieldDialogType.None,
|
||||
long Duration = 0,
|
||||
StringOffset MotionNameOffset = default(StringOffset),
|
||||
bool IsInteractionDialog = false,
|
||||
|
@ -144,7 +144,7 @@ public class CharacterDialogFieldExcelT
|
|||
this.GroupId = 0;
|
||||
this.Phase = 0;
|
||||
this.TargetIndex = 0;
|
||||
this.DialogType = SCHALE.Common.FlatData.FieldDialogType.None_;
|
||||
this.DialogType = SCHALE.Common.FlatData.FieldDialogType.None;
|
||||
this.Duration = 0;
|
||||
this.MotionName = null;
|
||||
this.IsInteractionDialog = false;
|
||||
|
|
|
@ -30,7 +30,7 @@ public struct CharacterExcel : IFlatbufferObject
|
|||
public byte[] GetDevNameArray() { return __p.__vector_as_array<byte>(6); }
|
||||
public long CostumeGroupId { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public bool IsPlayable { get { int o = __p.__offset(10); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public SCHALE.Common.FlatData.ProductionStep ProductionStep_ { get { int o = __p.__offset(12); return o != 0 ? (SCHALE.Common.FlatData.ProductionStep)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ProductionStep.ToDo; } }
|
||||
public SCHALE.Common.FlatData.ProductionStep ProductionStep { get { int o = __p.__offset(12); return o != 0 ? (SCHALE.Common.FlatData.ProductionStep)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ProductionStep.ToDo; } }
|
||||
public bool CollectionVisible { get { int o = __p.__offset(14); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public string ReleaseDate { get { int o = __p.__offset(16); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
|
@ -55,24 +55,24 @@ public struct CharacterExcel : IFlatbufferObject
|
|||
public byte[] GetCollectionVisibleEndDateArray() { return __p.__vector_as_array<byte>(20); }
|
||||
public bool IsPlayableCharacter { get { int o = __p.__offset(22); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public uint LocalizeEtcId { get { int o = __p.__offset(24); return o != 0 ? __p.bb.GetUint(o + __p.bb_pos) : (uint)0; } }
|
||||
public SCHALE.Common.FlatData.Rarity Rarity_ { get { int o = __p.__offset(26); return o != 0 ? (SCHALE.Common.FlatData.Rarity)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.Rarity.N; } }
|
||||
public SCHALE.Common.FlatData.Rarity Rarity { get { int o = __p.__offset(26); return o != 0 ? (SCHALE.Common.FlatData.Rarity)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.Rarity.N; } }
|
||||
public bool IsNPC { get { int o = __p.__offset(28); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public SCHALE.Common.FlatData.TacticEntityType TacticEntityType_ { get { int o = __p.__offset(30); return o != 0 ? (SCHALE.Common.FlatData.TacticEntityType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.TacticEntityType.None_; } }
|
||||
public SCHALE.Common.FlatData.TacticEntityType TacticEntityType { get { int o = __p.__offset(30); return o != 0 ? (SCHALE.Common.FlatData.TacticEntityType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.TacticEntityType.None; } }
|
||||
public bool CanSurvive { get { int o = __p.__offset(32); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public bool IsDummy { get { int o = __p.__offset(34); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public int SubPartsCount { get { int o = __p.__offset(36); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.TacticRole TacticRole_ { get { int o = __p.__offset(38); return o != 0 ? (SCHALE.Common.FlatData.TacticRole)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.TacticRole.None_; } }
|
||||
public SCHALE.Common.FlatData.WeaponType WeaponType_ { get { int o = __p.__offset(40); return o != 0 ? (SCHALE.Common.FlatData.WeaponType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.WeaponType.None_; } }
|
||||
public SCHALE.Common.FlatData.TacticRange TacticRange_ { get { int o = __p.__offset(42); return o != 0 ? (SCHALE.Common.FlatData.TacticRange)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.TacticRange.Back; } }
|
||||
public SCHALE.Common.FlatData.BulletType BulletType_ { get { int o = __p.__offset(44); return o != 0 ? (SCHALE.Common.FlatData.BulletType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.BulletType.Normal; } }
|
||||
public SCHALE.Common.FlatData.ArmorType ArmorType_ { get { int o = __p.__offset(46); return o != 0 ? (SCHALE.Common.FlatData.ArmorType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ArmorType.LightArmor; } }
|
||||
public SCHALE.Common.FlatData.AimIKType AimIKType_ { get { int o = __p.__offset(48); return o != 0 ? (SCHALE.Common.FlatData.AimIKType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AimIKType.None_; } }
|
||||
public SCHALE.Common.FlatData.School School_ { get { int o = __p.__offset(50); return o != 0 ? (SCHALE.Common.FlatData.School)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.School.None_; } }
|
||||
public SCHALE.Common.FlatData.Club Club_ { get { int o = __p.__offset(52); return o != 0 ? (SCHALE.Common.FlatData.Club)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.Club.None_; } }
|
||||
public SCHALE.Common.FlatData.TacticRole TacticRole { get { int o = __p.__offset(38); return o != 0 ? (SCHALE.Common.FlatData.TacticRole)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.TacticRole.None; } }
|
||||
public SCHALE.Common.FlatData.WeaponType WeaponType { get { int o = __p.__offset(40); return o != 0 ? (SCHALE.Common.FlatData.WeaponType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.WeaponType.None; } }
|
||||
public SCHALE.Common.FlatData.TacticRange TacticRange { get { int o = __p.__offset(42); return o != 0 ? (SCHALE.Common.FlatData.TacticRange)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.TacticRange.Back; } }
|
||||
public SCHALE.Common.FlatData.BulletType BulletType { get { int o = __p.__offset(44); return o != 0 ? (SCHALE.Common.FlatData.BulletType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.BulletType.Normal; } }
|
||||
public SCHALE.Common.FlatData.ArmorType ArmorType { get { int o = __p.__offset(46); return o != 0 ? (SCHALE.Common.FlatData.ArmorType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ArmorType.LightArmor; } }
|
||||
public SCHALE.Common.FlatData.AimIKType AimIKType { get { int o = __p.__offset(48); return o != 0 ? (SCHALE.Common.FlatData.AimIKType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.AimIKType.None; } }
|
||||
public SCHALE.Common.FlatData.School School { get { int o = __p.__offset(50); return o != 0 ? (SCHALE.Common.FlatData.School)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.School.None; } }
|
||||
public SCHALE.Common.FlatData.Club Club { get { int o = __p.__offset(52); return o != 0 ? (SCHALE.Common.FlatData.Club)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.Club.None; } }
|
||||
public int DefaultStarGrade { get { int o = __p.__offset(54); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public int MaxStarGrade { get { int o = __p.__offset(56); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType_ { get { int o = __p.__offset(58); return o != 0 ? (SCHALE.Common.FlatData.StatLevelUpType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StatLevelUpType.Standard; } }
|
||||
public SCHALE.Common.FlatData.SquadType SquadType_ { get { int o = __p.__offset(60); return o != 0 ? (SCHALE.Common.FlatData.SquadType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.SquadType.None_; } }
|
||||
public SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType { get { int o = __p.__offset(58); return o != 0 ? (SCHALE.Common.FlatData.StatLevelUpType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StatLevelUpType.Standard; } }
|
||||
public SCHALE.Common.FlatData.SquadType SquadType { get { int o = __p.__offset(60); return o != 0 ? (SCHALE.Common.FlatData.SquadType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.SquadType.None; } }
|
||||
public bool Jumpable { get { int o = __p.__offset(62); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public long PersonalityId { get { int o = __p.__offset(64); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long CharacterAIId { get { int o = __p.__offset(66); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
@ -134,31 +134,31 @@ public struct CharacterExcel : IFlatbufferObject
|
|||
StringOffset DevNameOffset = default(StringOffset),
|
||||
long CostumeGroupId = 0,
|
||||
bool IsPlayable = false,
|
||||
SCHALE.Common.FlatData.ProductionStep ProductionStep_ = SCHALE.Common.FlatData.ProductionStep.ToDo,
|
||||
SCHALE.Common.FlatData.ProductionStep ProductionStep = SCHALE.Common.FlatData.ProductionStep.ToDo,
|
||||
bool CollectionVisible = false,
|
||||
StringOffset ReleaseDateOffset = default(StringOffset),
|
||||
StringOffset CollectionVisibleStartDateOffset = default(StringOffset),
|
||||
StringOffset CollectionVisibleEndDateOffset = default(StringOffset),
|
||||
bool IsPlayableCharacter = false,
|
||||
uint LocalizeEtcId = 0,
|
||||
SCHALE.Common.FlatData.Rarity Rarity_ = SCHALE.Common.FlatData.Rarity.N,
|
||||
SCHALE.Common.FlatData.Rarity Rarity = SCHALE.Common.FlatData.Rarity.N,
|
||||
bool IsNPC = false,
|
||||
SCHALE.Common.FlatData.TacticEntityType TacticEntityType_ = SCHALE.Common.FlatData.TacticEntityType.None_,
|
||||
SCHALE.Common.FlatData.TacticEntityType TacticEntityType = SCHALE.Common.FlatData.TacticEntityType.None,
|
||||
bool CanSurvive = false,
|
||||
bool IsDummy = false,
|
||||
int SubPartsCount = 0,
|
||||
SCHALE.Common.FlatData.TacticRole TacticRole_ = SCHALE.Common.FlatData.TacticRole.None_,
|
||||
SCHALE.Common.FlatData.WeaponType WeaponType_ = SCHALE.Common.FlatData.WeaponType.None_,
|
||||
SCHALE.Common.FlatData.TacticRange TacticRange_ = SCHALE.Common.FlatData.TacticRange.Back,
|
||||
SCHALE.Common.FlatData.BulletType BulletType_ = SCHALE.Common.FlatData.BulletType.Normal,
|
||||
SCHALE.Common.FlatData.ArmorType ArmorType_ = SCHALE.Common.FlatData.ArmorType.LightArmor,
|
||||
SCHALE.Common.FlatData.AimIKType AimIKType_ = SCHALE.Common.FlatData.AimIKType.None_,
|
||||
SCHALE.Common.FlatData.School School_ = SCHALE.Common.FlatData.School.None_,
|
||||
SCHALE.Common.FlatData.Club Club_ = SCHALE.Common.FlatData.Club.None_,
|
||||
SCHALE.Common.FlatData.TacticRole TacticRole = SCHALE.Common.FlatData.TacticRole.None,
|
||||
SCHALE.Common.FlatData.WeaponType WeaponType = SCHALE.Common.FlatData.WeaponType.None,
|
||||
SCHALE.Common.FlatData.TacticRange TacticRange = SCHALE.Common.FlatData.TacticRange.Back,
|
||||
SCHALE.Common.FlatData.BulletType BulletType = SCHALE.Common.FlatData.BulletType.Normal,
|
||||
SCHALE.Common.FlatData.ArmorType ArmorType = SCHALE.Common.FlatData.ArmorType.LightArmor,
|
||||
SCHALE.Common.FlatData.AimIKType AimIKType = SCHALE.Common.FlatData.AimIKType.None,
|
||||
SCHALE.Common.FlatData.School School = SCHALE.Common.FlatData.School.None,
|
||||
SCHALE.Common.FlatData.Club Club = SCHALE.Common.FlatData.Club.None,
|
||||
int DefaultStarGrade = 0,
|
||||
int MaxStarGrade = 0,
|
||||
SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType_ = SCHALE.Common.FlatData.StatLevelUpType.Standard,
|
||||
SCHALE.Common.FlatData.SquadType SquadType_ = SCHALE.Common.FlatData.SquadType.None_,
|
||||
SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType = SCHALE.Common.FlatData.StatLevelUpType.Standard,
|
||||
SCHALE.Common.FlatData.SquadType SquadType = SCHALE.Common.FlatData.SquadType.None,
|
||||
bool Jumpable = false,
|
||||
long PersonalityId = 0,
|
||||
long CharacterAIId = 0,
|
||||
|
@ -224,26 +224,26 @@ public struct CharacterExcel : IFlatbufferObject
|
|||
CharacterExcel.AddSpawnTemplateId(builder, SpawnTemplateId);
|
||||
CharacterExcel.AddScenarioCharacter(builder, ScenarioCharacterOffset);
|
||||
CharacterExcel.AddCombatStyleIndex(builder, CombatStyleIndex);
|
||||
CharacterExcel.AddSquadType_(builder, SquadType_);
|
||||
CharacterExcel.AddStatLevelUpType_(builder, StatLevelUpType_);
|
||||
CharacterExcel.AddSquadType(builder, SquadType);
|
||||
CharacterExcel.AddStatLevelUpType(builder, StatLevelUpType);
|
||||
CharacterExcel.AddMaxStarGrade(builder, MaxStarGrade);
|
||||
CharacterExcel.AddDefaultStarGrade(builder, DefaultStarGrade);
|
||||
CharacterExcel.AddClub_(builder, Club_);
|
||||
CharacterExcel.AddSchool_(builder, School_);
|
||||
CharacterExcel.AddAimIKType_(builder, AimIKType_);
|
||||
CharacterExcel.AddArmorType_(builder, ArmorType_);
|
||||
CharacterExcel.AddBulletType_(builder, BulletType_);
|
||||
CharacterExcel.AddTacticRange_(builder, TacticRange_);
|
||||
CharacterExcel.AddWeaponType_(builder, WeaponType_);
|
||||
CharacterExcel.AddTacticRole_(builder, TacticRole_);
|
||||
CharacterExcel.AddClub(builder, Club);
|
||||
CharacterExcel.AddSchool(builder, School);
|
||||
CharacterExcel.AddAimIKType(builder, AimIKType);
|
||||
CharacterExcel.AddArmorType(builder, ArmorType);
|
||||
CharacterExcel.AddBulletType(builder, BulletType);
|
||||
CharacterExcel.AddTacticRange(builder, TacticRange);
|
||||
CharacterExcel.AddWeaponType(builder, WeaponType);
|
||||
CharacterExcel.AddTacticRole(builder, TacticRole);
|
||||
CharacterExcel.AddSubPartsCount(builder, SubPartsCount);
|
||||
CharacterExcel.AddTacticEntityType_(builder, TacticEntityType_);
|
||||
CharacterExcel.AddRarity_(builder, Rarity_);
|
||||
CharacterExcel.AddTacticEntityType(builder, TacticEntityType);
|
||||
CharacterExcel.AddRarity(builder, Rarity);
|
||||
CharacterExcel.AddLocalizeEtcId(builder, LocalizeEtcId);
|
||||
CharacterExcel.AddCollectionVisibleEndDate(builder, CollectionVisibleEndDateOffset);
|
||||
CharacterExcel.AddCollectionVisibleStartDate(builder, CollectionVisibleStartDateOffset);
|
||||
CharacterExcel.AddReleaseDate(builder, ReleaseDateOffset);
|
||||
CharacterExcel.AddProductionStep_(builder, ProductionStep_);
|
||||
CharacterExcel.AddProductionStep(builder, ProductionStep);
|
||||
CharacterExcel.AddDevName(builder, DevNameOffset);
|
||||
CharacterExcel.AddIsAirUnit(builder, IsAirUnit);
|
||||
CharacterExcel.AddCanBattleItemMove(builder, CanBattleItemMove);
|
||||
|
@ -267,31 +267,31 @@ public struct CharacterExcel : IFlatbufferObject
|
|||
public static void AddDevName(FlatBufferBuilder builder, StringOffset devNameOffset) { builder.AddOffset(1, devNameOffset.Value, 0); }
|
||||
public static void AddCostumeGroupId(FlatBufferBuilder builder, long costumeGroupId) { builder.AddLong(2, costumeGroupId, 0); }
|
||||
public static void AddIsPlayable(FlatBufferBuilder builder, bool isPlayable) { builder.AddBool(3, isPlayable, false); }
|
||||
public static void AddProductionStep_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ProductionStep productionStep_) { builder.AddInt(4, (int)productionStep_, 0); }
|
||||
public static void AddProductionStep(FlatBufferBuilder builder, SCHALE.Common.FlatData.ProductionStep productionStep) { builder.AddInt(4, (int)productionStep, 0); }
|
||||
public static void AddCollectionVisible(FlatBufferBuilder builder, bool collectionVisible) { builder.AddBool(5, collectionVisible, false); }
|
||||
public static void AddReleaseDate(FlatBufferBuilder builder, StringOffset releaseDateOffset) { builder.AddOffset(6, releaseDateOffset.Value, 0); }
|
||||
public static void AddCollectionVisibleStartDate(FlatBufferBuilder builder, StringOffset collectionVisibleStartDateOffset) { builder.AddOffset(7, collectionVisibleStartDateOffset.Value, 0); }
|
||||
public static void AddCollectionVisibleEndDate(FlatBufferBuilder builder, StringOffset collectionVisibleEndDateOffset) { builder.AddOffset(8, collectionVisibleEndDateOffset.Value, 0); }
|
||||
public static void AddIsPlayableCharacter(FlatBufferBuilder builder, bool isPlayableCharacter) { builder.AddBool(9, isPlayableCharacter, false); }
|
||||
public static void AddLocalizeEtcId(FlatBufferBuilder builder, uint localizeEtcId) { builder.AddUint(10, localizeEtcId, 0); }
|
||||
public static void AddRarity_(FlatBufferBuilder builder, SCHALE.Common.FlatData.Rarity rarity_) { builder.AddInt(11, (int)rarity_, 0); }
|
||||
public static void AddRarity(FlatBufferBuilder builder, SCHALE.Common.FlatData.Rarity rarity) { builder.AddInt(11, (int)rarity, 0); }
|
||||
public static void AddIsNPC(FlatBufferBuilder builder, bool isNPC) { builder.AddBool(12, isNPC, false); }
|
||||
public static void AddTacticEntityType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.TacticEntityType tacticEntityType_) { builder.AddInt(13, (int)tacticEntityType_, 0); }
|
||||
public static void AddTacticEntityType(FlatBufferBuilder builder, SCHALE.Common.FlatData.TacticEntityType tacticEntityType) { builder.AddInt(13, (int)tacticEntityType, 0); }
|
||||
public static void AddCanSurvive(FlatBufferBuilder builder, bool canSurvive) { builder.AddBool(14, canSurvive, false); }
|
||||
public static void AddIsDummy(FlatBufferBuilder builder, bool isDummy) { builder.AddBool(15, isDummy, false); }
|
||||
public static void AddSubPartsCount(FlatBufferBuilder builder, int subPartsCount) { builder.AddInt(16, subPartsCount, 0); }
|
||||
public static void AddTacticRole_(FlatBufferBuilder builder, SCHALE.Common.FlatData.TacticRole tacticRole_) { builder.AddInt(17, (int)tacticRole_, 0); }
|
||||
public static void AddWeaponType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.WeaponType weaponType_) { builder.AddInt(18, (int)weaponType_, 0); }
|
||||
public static void AddTacticRange_(FlatBufferBuilder builder, SCHALE.Common.FlatData.TacticRange tacticRange_) { builder.AddInt(19, (int)tacticRange_, 0); }
|
||||
public static void AddBulletType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.BulletType bulletType_) { builder.AddInt(20, (int)bulletType_, 0); }
|
||||
public static void AddArmorType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ArmorType armorType_) { builder.AddInt(21, (int)armorType_, 0); }
|
||||
public static void AddAimIKType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.AimIKType aimIKType_) { builder.AddInt(22, (int)aimIKType_, 0); }
|
||||
public static void AddSchool_(FlatBufferBuilder builder, SCHALE.Common.FlatData.School school_) { builder.AddInt(23, (int)school_, 0); }
|
||||
public static void AddClub_(FlatBufferBuilder builder, SCHALE.Common.FlatData.Club club_) { builder.AddInt(24, (int)club_, 0); }
|
||||
public static void AddTacticRole(FlatBufferBuilder builder, SCHALE.Common.FlatData.TacticRole tacticRole) { builder.AddInt(17, (int)tacticRole, 0); }
|
||||
public static void AddWeaponType(FlatBufferBuilder builder, SCHALE.Common.FlatData.WeaponType weaponType) { builder.AddInt(18, (int)weaponType, 0); }
|
||||
public static void AddTacticRange(FlatBufferBuilder builder, SCHALE.Common.FlatData.TacticRange tacticRange) { builder.AddInt(19, (int)tacticRange, 0); }
|
||||
public static void AddBulletType(FlatBufferBuilder builder, SCHALE.Common.FlatData.BulletType bulletType) { builder.AddInt(20, (int)bulletType, 0); }
|
||||
public static void AddArmorType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ArmorType armorType) { builder.AddInt(21, (int)armorType, 0); }
|
||||
public static void AddAimIKType(FlatBufferBuilder builder, SCHALE.Common.FlatData.AimIKType aimIKType) { builder.AddInt(22, (int)aimIKType, 0); }
|
||||
public static void AddSchool(FlatBufferBuilder builder, SCHALE.Common.FlatData.School school) { builder.AddInt(23, (int)school, 0); }
|
||||
public static void AddClub(FlatBufferBuilder builder, SCHALE.Common.FlatData.Club club) { builder.AddInt(24, (int)club, 0); }
|
||||
public static void AddDefaultStarGrade(FlatBufferBuilder builder, int defaultStarGrade) { builder.AddInt(25, defaultStarGrade, 0); }
|
||||
public static void AddMaxStarGrade(FlatBufferBuilder builder, int maxStarGrade) { builder.AddInt(26, maxStarGrade, 0); }
|
||||
public static void AddStatLevelUpType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.StatLevelUpType statLevelUpType_) { builder.AddInt(27, (int)statLevelUpType_, 0); }
|
||||
public static void AddSquadType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.SquadType squadType_) { builder.AddInt(28, (int)squadType_, 0); }
|
||||
public static void AddStatLevelUpType(FlatBufferBuilder builder, SCHALE.Common.FlatData.StatLevelUpType statLevelUpType) { builder.AddInt(27, (int)statLevelUpType, 0); }
|
||||
public static void AddSquadType(FlatBufferBuilder builder, SCHALE.Common.FlatData.SquadType squadType) { builder.AddInt(28, (int)squadType, 0); }
|
||||
public static void AddJumpable(FlatBufferBuilder builder, bool jumpable) { builder.AddBool(29, jumpable, false); }
|
||||
public static void AddPersonalityId(FlatBufferBuilder builder, long personalityId) { builder.AddLong(30, personalityId, 0); }
|
||||
public static void AddCharacterAIId(FlatBufferBuilder builder, long characterAIId) { builder.AddLong(31, characterAIId, 0); }
|
||||
|
@ -352,31 +352,31 @@ public struct CharacterExcel : IFlatbufferObject
|
|||
_o.DevName = TableEncryptionService.Convert(this.DevName, key);
|
||||
_o.CostumeGroupId = TableEncryptionService.Convert(this.CostumeGroupId, key);
|
||||
_o.IsPlayable = TableEncryptionService.Convert(this.IsPlayable, key);
|
||||
_o.ProductionStep_ = TableEncryptionService.Convert(this.ProductionStep_, key);
|
||||
_o.ProductionStep = TableEncryptionService.Convert(this.ProductionStep, key);
|
||||
_o.CollectionVisible = TableEncryptionService.Convert(this.CollectionVisible, key);
|
||||
_o.ReleaseDate = TableEncryptionService.Convert(this.ReleaseDate, key);
|
||||
_o.CollectionVisibleStartDate = TableEncryptionService.Convert(this.CollectionVisibleStartDate, key);
|
||||
_o.CollectionVisibleEndDate = TableEncryptionService.Convert(this.CollectionVisibleEndDate, key);
|
||||
_o.IsPlayableCharacter = TableEncryptionService.Convert(this.IsPlayableCharacter, key);
|
||||
_o.LocalizeEtcId = TableEncryptionService.Convert(this.LocalizeEtcId, key);
|
||||
_o.Rarity_ = TableEncryptionService.Convert(this.Rarity_, key);
|
||||
_o.Rarity = TableEncryptionService.Convert(this.Rarity, key);
|
||||
_o.IsNPC = TableEncryptionService.Convert(this.IsNPC, key);
|
||||
_o.TacticEntityType_ = TableEncryptionService.Convert(this.TacticEntityType_, key);
|
||||
_o.TacticEntityType = TableEncryptionService.Convert(this.TacticEntityType, key);
|
||||
_o.CanSurvive = TableEncryptionService.Convert(this.CanSurvive, key);
|
||||
_o.IsDummy = TableEncryptionService.Convert(this.IsDummy, key);
|
||||
_o.SubPartsCount = TableEncryptionService.Convert(this.SubPartsCount, key);
|
||||
_o.TacticRole_ = TableEncryptionService.Convert(this.TacticRole_, key);
|
||||
_o.WeaponType_ = TableEncryptionService.Convert(this.WeaponType_, key);
|
||||
_o.TacticRange_ = TableEncryptionService.Convert(this.TacticRange_, key);
|
||||
_o.BulletType_ = TableEncryptionService.Convert(this.BulletType_, key);
|
||||
_o.ArmorType_ = TableEncryptionService.Convert(this.ArmorType_, key);
|
||||
_o.AimIKType_ = TableEncryptionService.Convert(this.AimIKType_, key);
|
||||
_o.School_ = TableEncryptionService.Convert(this.School_, key);
|
||||
_o.Club_ = TableEncryptionService.Convert(this.Club_, key);
|
||||
_o.TacticRole = TableEncryptionService.Convert(this.TacticRole, key);
|
||||
_o.WeaponType = TableEncryptionService.Convert(this.WeaponType, key);
|
||||
_o.TacticRange = TableEncryptionService.Convert(this.TacticRange, key);
|
||||
_o.BulletType = TableEncryptionService.Convert(this.BulletType, key);
|
||||
_o.ArmorType = TableEncryptionService.Convert(this.ArmorType, key);
|
||||
_o.AimIKType = TableEncryptionService.Convert(this.AimIKType, key);
|
||||
_o.School = TableEncryptionService.Convert(this.School, key);
|
||||
_o.Club = TableEncryptionService.Convert(this.Club, key);
|
||||
_o.DefaultStarGrade = TableEncryptionService.Convert(this.DefaultStarGrade, key);
|
||||
_o.MaxStarGrade = TableEncryptionService.Convert(this.MaxStarGrade, key);
|
||||
_o.StatLevelUpType_ = TableEncryptionService.Convert(this.StatLevelUpType_, key);
|
||||
_o.SquadType_ = TableEncryptionService.Convert(this.SquadType_, key);
|
||||
_o.StatLevelUpType = TableEncryptionService.Convert(this.StatLevelUpType, key);
|
||||
_o.SquadType = TableEncryptionService.Convert(this.SquadType, key);
|
||||
_o.Jumpable = TableEncryptionService.Convert(this.Jumpable, key);
|
||||
_o.PersonalityId = TableEncryptionService.Convert(this.PersonalityId, key);
|
||||
_o.CharacterAIId = TableEncryptionService.Convert(this.CharacterAIId, key);
|
||||
|
@ -438,31 +438,31 @@ public struct CharacterExcel : IFlatbufferObject
|
|||
_DevName,
|
||||
_o.CostumeGroupId,
|
||||
_o.IsPlayable,
|
||||
_o.ProductionStep_,
|
||||
_o.ProductionStep,
|
||||
_o.CollectionVisible,
|
||||
_ReleaseDate,
|
||||
_CollectionVisibleStartDate,
|
||||
_CollectionVisibleEndDate,
|
||||
_o.IsPlayableCharacter,
|
||||
_o.LocalizeEtcId,
|
||||
_o.Rarity_,
|
||||
_o.Rarity,
|
||||
_o.IsNPC,
|
||||
_o.TacticEntityType_,
|
||||
_o.TacticEntityType,
|
||||
_o.CanSurvive,
|
||||
_o.IsDummy,
|
||||
_o.SubPartsCount,
|
||||
_o.TacticRole_,
|
||||
_o.WeaponType_,
|
||||
_o.TacticRange_,
|
||||
_o.BulletType_,
|
||||
_o.ArmorType_,
|
||||
_o.AimIKType_,
|
||||
_o.School_,
|
||||
_o.Club_,
|
||||
_o.TacticRole,
|
||||
_o.WeaponType,
|
||||
_o.TacticRange,
|
||||
_o.BulletType,
|
||||
_o.ArmorType,
|
||||
_o.AimIKType,
|
||||
_o.School,
|
||||
_o.Club,
|
||||
_o.DefaultStarGrade,
|
||||
_o.MaxStarGrade,
|
||||
_o.StatLevelUpType_,
|
||||
_o.SquadType_,
|
||||
_o.StatLevelUpType,
|
||||
_o.SquadType,
|
||||
_o.Jumpable,
|
||||
_o.PersonalityId,
|
||||
_o.CharacterAIId,
|
||||
|
@ -507,31 +507,31 @@ public class CharacterExcelT
|
|||
public string DevName { get; set; }
|
||||
public long CostumeGroupId { get; set; }
|
||||
public bool IsPlayable { get; set; }
|
||||
public SCHALE.Common.FlatData.ProductionStep ProductionStep_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ProductionStep ProductionStep { get; set; }
|
||||
public bool CollectionVisible { get; set; }
|
||||
public string ReleaseDate { get; set; }
|
||||
public string CollectionVisibleStartDate { get; set; }
|
||||
public string CollectionVisibleEndDate { get; set; }
|
||||
public bool IsPlayableCharacter { get; set; }
|
||||
public uint LocalizeEtcId { get; set; }
|
||||
public SCHALE.Common.FlatData.Rarity Rarity_ { get; set; }
|
||||
public SCHALE.Common.FlatData.Rarity Rarity { get; set; }
|
||||
public bool IsNPC { get; set; }
|
||||
public SCHALE.Common.FlatData.TacticEntityType TacticEntityType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.TacticEntityType TacticEntityType { get; set; }
|
||||
public bool CanSurvive { get; set; }
|
||||
public bool IsDummy { get; set; }
|
||||
public int SubPartsCount { get; set; }
|
||||
public SCHALE.Common.FlatData.TacticRole TacticRole_ { get; set; }
|
||||
public SCHALE.Common.FlatData.WeaponType WeaponType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.TacticRange TacticRange_ { get; set; }
|
||||
public SCHALE.Common.FlatData.BulletType BulletType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ArmorType ArmorType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.AimIKType AimIKType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.School School_ { get; set; }
|
||||
public SCHALE.Common.FlatData.Club Club_ { get; set; }
|
||||
public SCHALE.Common.FlatData.TacticRole TacticRole { get; set; }
|
||||
public SCHALE.Common.FlatData.WeaponType WeaponType { get; set; }
|
||||
public SCHALE.Common.FlatData.TacticRange TacticRange { get; set; }
|
||||
public SCHALE.Common.FlatData.BulletType BulletType { get; set; }
|
||||
public SCHALE.Common.FlatData.ArmorType ArmorType { get; set; }
|
||||
public SCHALE.Common.FlatData.AimIKType AimIKType { get; set; }
|
||||
public SCHALE.Common.FlatData.School School { get; set; }
|
||||
public SCHALE.Common.FlatData.Club Club { get; set; }
|
||||
public int DefaultStarGrade { get; set; }
|
||||
public int MaxStarGrade { get; set; }
|
||||
public SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.SquadType SquadType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType { get; set; }
|
||||
public SCHALE.Common.FlatData.SquadType SquadType { get; set; }
|
||||
public bool Jumpable { get; set; }
|
||||
public long PersonalityId { get; set; }
|
||||
public long CharacterAIId { get; set; }
|
||||
|
@ -573,31 +573,31 @@ public class CharacterExcelT
|
|||
this.DevName = null;
|
||||
this.CostumeGroupId = 0;
|
||||
this.IsPlayable = false;
|
||||
this.ProductionStep_ = SCHALE.Common.FlatData.ProductionStep.ToDo;
|
||||
this.ProductionStep = SCHALE.Common.FlatData.ProductionStep.ToDo;
|
||||
this.CollectionVisible = false;
|
||||
this.ReleaseDate = null;
|
||||
this.CollectionVisibleStartDate = null;
|
||||
this.CollectionVisibleEndDate = null;
|
||||
this.IsPlayableCharacter = false;
|
||||
this.LocalizeEtcId = 0;
|
||||
this.Rarity_ = SCHALE.Common.FlatData.Rarity.N;
|
||||
this.Rarity = SCHALE.Common.FlatData.Rarity.N;
|
||||
this.IsNPC = false;
|
||||
this.TacticEntityType_ = SCHALE.Common.FlatData.TacticEntityType.None_;
|
||||
this.TacticEntityType = SCHALE.Common.FlatData.TacticEntityType.None;
|
||||
this.CanSurvive = false;
|
||||
this.IsDummy = false;
|
||||
this.SubPartsCount = 0;
|
||||
this.TacticRole_ = SCHALE.Common.FlatData.TacticRole.None_;
|
||||
this.WeaponType_ = SCHALE.Common.FlatData.WeaponType.None_;
|
||||
this.TacticRange_ = SCHALE.Common.FlatData.TacticRange.Back;
|
||||
this.BulletType_ = SCHALE.Common.FlatData.BulletType.Normal;
|
||||
this.ArmorType_ = SCHALE.Common.FlatData.ArmorType.LightArmor;
|
||||
this.AimIKType_ = SCHALE.Common.FlatData.AimIKType.None_;
|
||||
this.School_ = SCHALE.Common.FlatData.School.None_;
|
||||
this.Club_ = SCHALE.Common.FlatData.Club.None_;
|
||||
this.TacticRole = SCHALE.Common.FlatData.TacticRole.None;
|
||||
this.WeaponType = SCHALE.Common.FlatData.WeaponType.None;
|
||||
this.TacticRange = SCHALE.Common.FlatData.TacticRange.Back;
|
||||
this.BulletType = SCHALE.Common.FlatData.BulletType.Normal;
|
||||
this.ArmorType = SCHALE.Common.FlatData.ArmorType.LightArmor;
|
||||
this.AimIKType = SCHALE.Common.FlatData.AimIKType.None;
|
||||
this.School = SCHALE.Common.FlatData.School.None;
|
||||
this.Club = SCHALE.Common.FlatData.Club.None;
|
||||
this.DefaultStarGrade = 0;
|
||||
this.MaxStarGrade = 0;
|
||||
this.StatLevelUpType_ = SCHALE.Common.FlatData.StatLevelUpType.Standard;
|
||||
this.SquadType_ = SCHALE.Common.FlatData.SquadType.None_;
|
||||
this.StatLevelUpType = SCHALE.Common.FlatData.StatLevelUpType.Standard;
|
||||
this.SquadType = SCHALE.Common.FlatData.SquadType.None;
|
||||
this.Jumpable = false;
|
||||
this.PersonalityId = 0;
|
||||
this.CharacterAIId = 0;
|
||||
|
@ -646,31 +646,31 @@ static public class CharacterExcelVerify
|
|||
&& verifier.VerifyString(tablePos, 6 /*DevName*/, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*CostumeGroupId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*IsPlayable*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*ProductionStep_*/, 4 /*SCHALE.Common.FlatData.ProductionStep*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*ProductionStep*/, 4 /*SCHALE.Common.FlatData.ProductionStep*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*CollectionVisible*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyString(tablePos, 16 /*ReleaseDate*/, false)
|
||||
&& verifier.VerifyString(tablePos, 18 /*CollectionVisibleStartDate*/, false)
|
||||
&& verifier.VerifyString(tablePos, 20 /*CollectionVisibleEndDate*/, false)
|
||||
&& verifier.VerifyField(tablePos, 22 /*IsPlayableCharacter*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyField(tablePos, 24 /*LocalizeEtcId*/, 4 /*uint*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 26 /*Rarity_*/, 4 /*SCHALE.Common.FlatData.Rarity*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 26 /*Rarity*/, 4 /*SCHALE.Common.FlatData.Rarity*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 28 /*IsNPC*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyField(tablePos, 30 /*TacticEntityType_*/, 4 /*SCHALE.Common.FlatData.TacticEntityType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 30 /*TacticEntityType*/, 4 /*SCHALE.Common.FlatData.TacticEntityType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 32 /*CanSurvive*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyField(tablePos, 34 /*IsDummy*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyField(tablePos, 36 /*SubPartsCount*/, 4 /*int*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 38 /*TacticRole_*/, 4 /*SCHALE.Common.FlatData.TacticRole*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 40 /*WeaponType_*/, 4 /*SCHALE.Common.FlatData.WeaponType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 42 /*TacticRange_*/, 4 /*SCHALE.Common.FlatData.TacticRange*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 44 /*BulletType_*/, 4 /*SCHALE.Common.FlatData.BulletType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 46 /*ArmorType_*/, 4 /*SCHALE.Common.FlatData.ArmorType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 48 /*AimIKType_*/, 4 /*SCHALE.Common.FlatData.AimIKType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 50 /*School_*/, 4 /*SCHALE.Common.FlatData.School*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 52 /*Club_*/, 4 /*SCHALE.Common.FlatData.Club*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 38 /*TacticRole*/, 4 /*SCHALE.Common.FlatData.TacticRole*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 40 /*WeaponType*/, 4 /*SCHALE.Common.FlatData.WeaponType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 42 /*TacticRange*/, 4 /*SCHALE.Common.FlatData.TacticRange*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 44 /*BulletType*/, 4 /*SCHALE.Common.FlatData.BulletType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 46 /*ArmorType*/, 4 /*SCHALE.Common.FlatData.ArmorType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 48 /*AimIKType*/, 4 /*SCHALE.Common.FlatData.AimIKType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 50 /*School*/, 4 /*SCHALE.Common.FlatData.School*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 52 /*Club*/, 4 /*SCHALE.Common.FlatData.Club*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 54 /*DefaultStarGrade*/, 4 /*int*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 56 /*MaxStarGrade*/, 4 /*int*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 58 /*StatLevelUpType_*/, 4 /*SCHALE.Common.FlatData.StatLevelUpType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 60 /*SquadType_*/, 4 /*SCHALE.Common.FlatData.SquadType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 58 /*StatLevelUpType*/, 4 /*SCHALE.Common.FlatData.StatLevelUpType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 60 /*SquadType*/, 4 /*SCHALE.Common.FlatData.SquadType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 62 /*Jumpable*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyField(tablePos, 64 /*PersonalityId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 66 /*CharacterAIId*/, 8 /*long*/, 8, false)
|
||||
|
|
|
@ -22,7 +22,7 @@ public struct CharacterGearExcel : IFlatbufferObject
|
|||
|
||||
public long Id { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long CharacterId { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType_ { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.StatLevelUpType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StatLevelUpType.Standard; } }
|
||||
public SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.StatLevelUpType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StatLevelUpType.Standard; } }
|
||||
public long Tier { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long NextTierEquipment { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long RecipeId { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
@ -79,7 +79,7 @@ public struct CharacterGearExcel : IFlatbufferObject
|
|||
public static Offset<SCHALE.Common.FlatData.CharacterGearExcel> CreateCharacterGearExcel(FlatBufferBuilder builder,
|
||||
long Id = 0,
|
||||
long CharacterId = 0,
|
||||
SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType_ = SCHALE.Common.FlatData.StatLevelUpType.Standard,
|
||||
SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType = SCHALE.Common.FlatData.StatLevelUpType.Standard,
|
||||
long Tier = 0,
|
||||
long NextTierEquipment = 0,
|
||||
long RecipeId = 0,
|
||||
|
@ -107,14 +107,14 @@ public struct CharacterGearExcel : IFlatbufferObject
|
|||
CharacterGearExcel.AddMinStatValue(builder, MinStatValueOffset);
|
||||
CharacterGearExcel.AddStatType(builder, StatTypeOffset);
|
||||
CharacterGearExcel.AddLearnSkillSlot(builder, LearnSkillSlotOffset);
|
||||
CharacterGearExcel.AddStatLevelUpType_(builder, StatLevelUpType_);
|
||||
CharacterGearExcel.AddStatLevelUpType(builder, StatLevelUpType);
|
||||
return CharacterGearExcel.EndCharacterGearExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartCharacterGearExcel(FlatBufferBuilder builder) { builder.StartTable(15); }
|
||||
public static void AddId(FlatBufferBuilder builder, long id) { builder.AddLong(0, id, 0); }
|
||||
public static void AddCharacterId(FlatBufferBuilder builder, long characterId) { builder.AddLong(1, characterId, 0); }
|
||||
public static void AddStatLevelUpType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.StatLevelUpType statLevelUpType_) { builder.AddInt(2, (int)statLevelUpType_, 0); }
|
||||
public static void AddStatLevelUpType(FlatBufferBuilder builder, SCHALE.Common.FlatData.StatLevelUpType statLevelUpType) { builder.AddInt(2, (int)statLevelUpType, 0); }
|
||||
public static void AddTier(FlatBufferBuilder builder, long tier) { builder.AddLong(3, tier, 0); }
|
||||
public static void AddNextTierEquipment(FlatBufferBuilder builder, long nextTierEquipment) { builder.AddLong(4, nextTierEquipment, 0); }
|
||||
public static void AddRecipeId(FlatBufferBuilder builder, long recipeId) { builder.AddLong(5, recipeId, 0); }
|
||||
|
@ -160,7 +160,7 @@ public struct CharacterGearExcel : IFlatbufferObject
|
|||
byte[] key = TableEncryptionService.CreateKey("CharacterGear");
|
||||
_o.Id = TableEncryptionService.Convert(this.Id, key);
|
||||
_o.CharacterId = TableEncryptionService.Convert(this.CharacterId, key);
|
||||
_o.StatLevelUpType_ = TableEncryptionService.Convert(this.StatLevelUpType_, key);
|
||||
_o.StatLevelUpType = TableEncryptionService.Convert(this.StatLevelUpType, key);
|
||||
_o.Tier = TableEncryptionService.Convert(this.Tier, key);
|
||||
_o.NextTierEquipment = TableEncryptionService.Convert(this.NextTierEquipment, key);
|
||||
_o.RecipeId = TableEncryptionService.Convert(this.RecipeId, key);
|
||||
|
@ -206,7 +206,7 @@ public struct CharacterGearExcel : IFlatbufferObject
|
|||
builder,
|
||||
_o.Id,
|
||||
_o.CharacterId,
|
||||
_o.StatLevelUpType_,
|
||||
_o.StatLevelUpType,
|
||||
_o.Tier,
|
||||
_o.NextTierEquipment,
|
||||
_o.RecipeId,
|
||||
|
@ -226,7 +226,7 @@ public class CharacterGearExcelT
|
|||
{
|
||||
public long Id { get; set; }
|
||||
public long CharacterId { get; set; }
|
||||
public SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType { get; set; }
|
||||
public long Tier { get; set; }
|
||||
public long NextTierEquipment { get; set; }
|
||||
public long RecipeId { get; set; }
|
||||
|
@ -243,7 +243,7 @@ public class CharacterGearExcelT
|
|||
public CharacterGearExcelT() {
|
||||
this.Id = 0;
|
||||
this.CharacterId = 0;
|
||||
this.StatLevelUpType_ = SCHALE.Common.FlatData.StatLevelUpType.Standard;
|
||||
this.StatLevelUpType = SCHALE.Common.FlatData.StatLevelUpType.Standard;
|
||||
this.Tier = 0;
|
||||
this.NextTierEquipment = 0;
|
||||
this.RecipeId = 0;
|
||||
|
@ -267,7 +267,7 @@ static public class CharacterGearExcelVerify
|
|||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*Id*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*CharacterId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*StatLevelUpType_*/, 4 /*SCHALE.Common.FlatData.StatLevelUpType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*StatLevelUpType*/, 4 /*SCHALE.Common.FlatData.StatLevelUpType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*Tier*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*NextTierEquipment*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*RecipeId*/, 8 /*long*/, 8, false)
|
||||
|
|
|
@ -22,18 +22,18 @@ public struct CharacterPotentialExcel : IFlatbufferObject
|
|||
|
||||
public long Id { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long PotentialStatGroupId { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.PotentialStatBonusRateType PotentialStatBonusRateType_ { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.PotentialStatBonusRateType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.PotentialStatBonusRateType.None_; } }
|
||||
public SCHALE.Common.FlatData.PotentialStatBonusRateType PotentialStatBonusRateType { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.PotentialStatBonusRateType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.PotentialStatBonusRateType.None; } }
|
||||
public bool IsUnnecessaryStat { get { int o = __p.__offset(10); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
|
||||
public static Offset<SCHALE.Common.FlatData.CharacterPotentialExcel> CreateCharacterPotentialExcel(FlatBufferBuilder builder,
|
||||
long Id = 0,
|
||||
long PotentialStatGroupId = 0,
|
||||
SCHALE.Common.FlatData.PotentialStatBonusRateType PotentialStatBonusRateType_ = SCHALE.Common.FlatData.PotentialStatBonusRateType.None_,
|
||||
SCHALE.Common.FlatData.PotentialStatBonusRateType PotentialStatBonusRateType = SCHALE.Common.FlatData.PotentialStatBonusRateType.None,
|
||||
bool IsUnnecessaryStat = false) {
|
||||
builder.StartTable(4);
|
||||
CharacterPotentialExcel.AddPotentialStatGroupId(builder, PotentialStatGroupId);
|
||||
CharacterPotentialExcel.AddId(builder, Id);
|
||||
CharacterPotentialExcel.AddPotentialStatBonusRateType_(builder, PotentialStatBonusRateType_);
|
||||
CharacterPotentialExcel.AddPotentialStatBonusRateType(builder, PotentialStatBonusRateType);
|
||||
CharacterPotentialExcel.AddIsUnnecessaryStat(builder, IsUnnecessaryStat);
|
||||
return CharacterPotentialExcel.EndCharacterPotentialExcel(builder);
|
||||
}
|
||||
|
@ -41,7 +41,7 @@ public struct CharacterPotentialExcel : IFlatbufferObject
|
|||
public static void StartCharacterPotentialExcel(FlatBufferBuilder builder) { builder.StartTable(4); }
|
||||
public static void AddId(FlatBufferBuilder builder, long id) { builder.AddLong(0, id, 0); }
|
||||
public static void AddPotentialStatGroupId(FlatBufferBuilder builder, long potentialStatGroupId) { builder.AddLong(1, potentialStatGroupId, 0); }
|
||||
public static void AddPotentialStatBonusRateType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.PotentialStatBonusRateType potentialStatBonusRateType_) { builder.AddInt(2, (int)potentialStatBonusRateType_, 0); }
|
||||
public static void AddPotentialStatBonusRateType(FlatBufferBuilder builder, SCHALE.Common.FlatData.PotentialStatBonusRateType potentialStatBonusRateType) { builder.AddInt(2, (int)potentialStatBonusRateType, 0); }
|
||||
public static void AddIsUnnecessaryStat(FlatBufferBuilder builder, bool isUnnecessaryStat) { builder.AddBool(3, isUnnecessaryStat, false); }
|
||||
public static Offset<SCHALE.Common.FlatData.CharacterPotentialExcel> EndCharacterPotentialExcel(FlatBufferBuilder builder) {
|
||||
int o = builder.EndTable();
|
||||
|
@ -56,7 +56,7 @@ public struct CharacterPotentialExcel : IFlatbufferObject
|
|||
byte[] key = TableEncryptionService.CreateKey("CharacterPotential");
|
||||
_o.Id = TableEncryptionService.Convert(this.Id, key);
|
||||
_o.PotentialStatGroupId = TableEncryptionService.Convert(this.PotentialStatGroupId, key);
|
||||
_o.PotentialStatBonusRateType_ = TableEncryptionService.Convert(this.PotentialStatBonusRateType_, key);
|
||||
_o.PotentialStatBonusRateType = TableEncryptionService.Convert(this.PotentialStatBonusRateType, key);
|
||||
_o.IsUnnecessaryStat = TableEncryptionService.Convert(this.IsUnnecessaryStat, key);
|
||||
}
|
||||
public static Offset<SCHALE.Common.FlatData.CharacterPotentialExcel> Pack(FlatBufferBuilder builder, CharacterPotentialExcelT _o) {
|
||||
|
@ -65,7 +65,7 @@ public struct CharacterPotentialExcel : IFlatbufferObject
|
|||
builder,
|
||||
_o.Id,
|
||||
_o.PotentialStatGroupId,
|
||||
_o.PotentialStatBonusRateType_,
|
||||
_o.PotentialStatBonusRateType,
|
||||
_o.IsUnnecessaryStat);
|
||||
}
|
||||
}
|
||||
|
@ -74,13 +74,13 @@ public class CharacterPotentialExcelT
|
|||
{
|
||||
public long Id { get; set; }
|
||||
public long PotentialStatGroupId { get; set; }
|
||||
public SCHALE.Common.FlatData.PotentialStatBonusRateType PotentialStatBonusRateType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.PotentialStatBonusRateType PotentialStatBonusRateType { get; set; }
|
||||
public bool IsUnnecessaryStat { get; set; }
|
||||
|
||||
public CharacterPotentialExcelT() {
|
||||
this.Id = 0;
|
||||
this.PotentialStatGroupId = 0;
|
||||
this.PotentialStatBonusRateType_ = SCHALE.Common.FlatData.PotentialStatBonusRateType.None_;
|
||||
this.PotentialStatBonusRateType = SCHALE.Common.FlatData.PotentialStatBonusRateType.None;
|
||||
this.IsUnnecessaryStat = false;
|
||||
}
|
||||
}
|
||||
|
@ -93,7 +93,7 @@ static public class CharacterPotentialExcelVerify
|
|||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*Id*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*PotentialStatGroupId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*PotentialStatBonusRateType_*/, 4 /*SCHALE.Common.FlatData.PotentialStatBonusRateType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*PotentialStatBonusRateType*/, 4 /*SCHALE.Common.FlatData.PotentialStatBonusRateType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*IsUnnecessaryStat*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyTableEnd(tablePos);
|
||||
}
|
||||
|
|
|
@ -37,7 +37,7 @@ public struct CharacterPotentialRewardExcel : IFlatbufferObject
|
|||
public ArraySegment<byte>? GetRequirePotentialStatLevelBytes() { return __p.__vector_as_arraysegment(8); }
|
||||
#endif
|
||||
public long[] GetRequirePotentialStatLevelArray() { return __p.__vector_as_array<long>(8); }
|
||||
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 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; } }
|
||||
|
||||
|
@ -45,7 +45,7 @@ public struct CharacterPotentialRewardExcel : IFlatbufferObject
|
|||
long Id = 0,
|
||||
VectorOffset RequirePotentialStatTypeOffset = default(VectorOffset),
|
||||
VectorOffset RequirePotentialStatLevelOffset = default(VectorOffset),
|
||||
SCHALE.Common.FlatData.ParcelType RewardParcelType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType RewardParcelType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long RewardId = 0,
|
||||
int RewardAmount = 0) {
|
||||
builder.StartTable(6);
|
||||
|
@ -131,7 +131,7 @@ public class CharacterPotentialRewardExcelT
|
|||
this.Id = 0;
|
||||
this.RequirePotentialStatType = null;
|
||||
this.RequirePotentialStatLevel = null;
|
||||
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.RewardId = 0;
|
||||
this.RewardAmount = 0;
|
||||
}
|
||||
|
|
|
@ -21,8 +21,8 @@ public struct CharacterStatLimitExcel : IFlatbufferObject
|
|||
public CharacterStatLimitExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public long Id { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.TacticEntityType TacticEntityType_ { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.TacticEntityType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.TacticEntityType.None_; } }
|
||||
public SCHALE.Common.FlatData.StatType StatType_ { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.StatType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StatType.None_; } }
|
||||
public SCHALE.Common.FlatData.TacticEntityType TacticEntityType { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.TacticEntityType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.TacticEntityType.None; } }
|
||||
public SCHALE.Common.FlatData.StatType StatType { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.StatType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StatType.None; } }
|
||||
public long StatMinValue { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long StatMaxValue { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long StatRatioMinValue { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
@ -30,8 +30,8 @@ public struct CharacterStatLimitExcel : IFlatbufferObject
|
|||
|
||||
public static Offset<SCHALE.Common.FlatData.CharacterStatLimitExcel> CreateCharacterStatLimitExcel(FlatBufferBuilder builder,
|
||||
long Id = 0,
|
||||
SCHALE.Common.FlatData.TacticEntityType TacticEntityType_ = SCHALE.Common.FlatData.TacticEntityType.None_,
|
||||
SCHALE.Common.FlatData.StatType StatType_ = SCHALE.Common.FlatData.StatType.None_,
|
||||
SCHALE.Common.FlatData.TacticEntityType TacticEntityType = SCHALE.Common.FlatData.TacticEntityType.None,
|
||||
SCHALE.Common.FlatData.StatType StatType = SCHALE.Common.FlatData.StatType.None,
|
||||
long StatMinValue = 0,
|
||||
long StatMaxValue = 0,
|
||||
long StatRatioMinValue = 0,
|
||||
|
@ -42,15 +42,15 @@ public struct CharacterStatLimitExcel : IFlatbufferObject
|
|||
CharacterStatLimitExcel.AddStatMaxValue(builder, StatMaxValue);
|
||||
CharacterStatLimitExcel.AddStatMinValue(builder, StatMinValue);
|
||||
CharacterStatLimitExcel.AddId(builder, Id);
|
||||
CharacterStatLimitExcel.AddStatType_(builder, StatType_);
|
||||
CharacterStatLimitExcel.AddTacticEntityType_(builder, TacticEntityType_);
|
||||
CharacterStatLimitExcel.AddStatType(builder, StatType);
|
||||
CharacterStatLimitExcel.AddTacticEntityType(builder, TacticEntityType);
|
||||
return CharacterStatLimitExcel.EndCharacterStatLimitExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartCharacterStatLimitExcel(FlatBufferBuilder builder) { builder.StartTable(7); }
|
||||
public static void AddId(FlatBufferBuilder builder, long id) { builder.AddLong(0, id, 0); }
|
||||
public static void AddTacticEntityType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.TacticEntityType tacticEntityType_) { builder.AddInt(1, (int)tacticEntityType_, 0); }
|
||||
public static void AddStatType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.StatType statType_) { builder.AddInt(2, (int)statType_, 0); }
|
||||
public static void AddTacticEntityType(FlatBufferBuilder builder, SCHALE.Common.FlatData.TacticEntityType tacticEntityType) { builder.AddInt(1, (int)tacticEntityType, 0); }
|
||||
public static void AddStatType(FlatBufferBuilder builder, SCHALE.Common.FlatData.StatType statType) { builder.AddInt(2, (int)statType, 0); }
|
||||
public static void AddStatMinValue(FlatBufferBuilder builder, long statMinValue) { builder.AddLong(3, statMinValue, 0); }
|
||||
public static void AddStatMaxValue(FlatBufferBuilder builder, long statMaxValue) { builder.AddLong(4, statMaxValue, 0); }
|
||||
public static void AddStatRatioMinValue(FlatBufferBuilder builder, long statRatioMinValue) { builder.AddLong(5, statRatioMinValue, 0); }
|
||||
|
@ -67,8 +67,8 @@ public struct CharacterStatLimitExcel : IFlatbufferObject
|
|||
public void UnPackTo(CharacterStatLimitExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("CharacterStatLimit");
|
||||
_o.Id = TableEncryptionService.Convert(this.Id, key);
|
||||
_o.TacticEntityType_ = TableEncryptionService.Convert(this.TacticEntityType_, key);
|
||||
_o.StatType_ = TableEncryptionService.Convert(this.StatType_, key);
|
||||
_o.TacticEntityType = TableEncryptionService.Convert(this.TacticEntityType, key);
|
||||
_o.StatType = TableEncryptionService.Convert(this.StatType, key);
|
||||
_o.StatMinValue = TableEncryptionService.Convert(this.StatMinValue, key);
|
||||
_o.StatMaxValue = TableEncryptionService.Convert(this.StatMaxValue, key);
|
||||
_o.StatRatioMinValue = TableEncryptionService.Convert(this.StatRatioMinValue, key);
|
||||
|
@ -79,8 +79,8 @@ public struct CharacterStatLimitExcel : IFlatbufferObject
|
|||
return CreateCharacterStatLimitExcel(
|
||||
builder,
|
||||
_o.Id,
|
||||
_o.TacticEntityType_,
|
||||
_o.StatType_,
|
||||
_o.TacticEntityType,
|
||||
_o.StatType,
|
||||
_o.StatMinValue,
|
||||
_o.StatMaxValue,
|
||||
_o.StatRatioMinValue,
|
||||
|
@ -91,8 +91,8 @@ public struct CharacterStatLimitExcel : IFlatbufferObject
|
|||
public class CharacterStatLimitExcelT
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public SCHALE.Common.FlatData.TacticEntityType TacticEntityType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.StatType StatType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.TacticEntityType TacticEntityType { get; set; }
|
||||
public SCHALE.Common.FlatData.StatType StatType { get; set; }
|
||||
public long StatMinValue { get; set; }
|
||||
public long StatMaxValue { get; set; }
|
||||
public long StatRatioMinValue { get; set; }
|
||||
|
@ -100,8 +100,8 @@ public class CharacterStatLimitExcelT
|
|||
|
||||
public CharacterStatLimitExcelT() {
|
||||
this.Id = 0;
|
||||
this.TacticEntityType_ = SCHALE.Common.FlatData.TacticEntityType.None_;
|
||||
this.StatType_ = SCHALE.Common.FlatData.StatType.None_;
|
||||
this.TacticEntityType = SCHALE.Common.FlatData.TacticEntityType.None;
|
||||
this.StatType = SCHALE.Common.FlatData.StatType.None;
|
||||
this.StatMinValue = 0;
|
||||
this.StatMaxValue = 0;
|
||||
this.StatRatioMinValue = 0;
|
||||
|
@ -116,8 +116,8 @@ static public class CharacterStatLimitExcelVerify
|
|||
{
|
||||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*Id*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*TacticEntityType_*/, 4 /*SCHALE.Common.FlatData.TacticEntityType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*StatType_*/, 4 /*SCHALE.Common.FlatData.StatType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*TacticEntityType*/, 4 /*SCHALE.Common.FlatData.TacticEntityType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*StatType*/, 4 /*SCHALE.Common.FlatData.StatType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*StatMinValue*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*StatMaxValue*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*StatRatioMinValue*/, 8 /*long*/, 8, false)
|
||||
|
|
|
@ -20,29 +20,29 @@ public struct CharacterStatsTransExcel : IFlatbufferObject
|
|||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
||||
public CharacterStatsTransExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public SCHALE.Common.FlatData.StatType TransSupportStats { get { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.StatType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StatType.None_; } }
|
||||
public SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType_ { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.EchelonExtensionType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EchelonExtensionType.Base; } }
|
||||
public SCHALE.Common.FlatData.StatType TransSupportStats { get { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.StatType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StatType.None; } }
|
||||
public SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.EchelonExtensionType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EchelonExtensionType.Base; } }
|
||||
public int TransSupportStatsFactor { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.StatTransType StatTransType_ { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.StatTransType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StatTransType.SpecialTransStat; } }
|
||||
public SCHALE.Common.FlatData.StatTransType StatTransType { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.StatTransType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StatTransType.SpecialTransStat; } }
|
||||
|
||||
public static Offset<SCHALE.Common.FlatData.CharacterStatsTransExcel> CreateCharacterStatsTransExcel(FlatBufferBuilder builder,
|
||||
SCHALE.Common.FlatData.StatType TransSupportStats = SCHALE.Common.FlatData.StatType.None_,
|
||||
SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType_ = SCHALE.Common.FlatData.EchelonExtensionType.Base,
|
||||
SCHALE.Common.FlatData.StatType TransSupportStats = SCHALE.Common.FlatData.StatType.None,
|
||||
SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType = SCHALE.Common.FlatData.EchelonExtensionType.Base,
|
||||
int TransSupportStatsFactor = 0,
|
||||
SCHALE.Common.FlatData.StatTransType StatTransType_ = SCHALE.Common.FlatData.StatTransType.SpecialTransStat) {
|
||||
SCHALE.Common.FlatData.StatTransType StatTransType = SCHALE.Common.FlatData.StatTransType.SpecialTransStat) {
|
||||
builder.StartTable(4);
|
||||
CharacterStatsTransExcel.AddStatTransType_(builder, StatTransType_);
|
||||
CharacterStatsTransExcel.AddStatTransType(builder, StatTransType);
|
||||
CharacterStatsTransExcel.AddTransSupportStatsFactor(builder, TransSupportStatsFactor);
|
||||
CharacterStatsTransExcel.AddEchelonExtensionType_(builder, EchelonExtensionType_);
|
||||
CharacterStatsTransExcel.AddEchelonExtensionType(builder, EchelonExtensionType);
|
||||
CharacterStatsTransExcel.AddTransSupportStats(builder, TransSupportStats);
|
||||
return CharacterStatsTransExcel.EndCharacterStatsTransExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartCharacterStatsTransExcel(FlatBufferBuilder builder) { builder.StartTable(4); }
|
||||
public static void AddTransSupportStats(FlatBufferBuilder builder, SCHALE.Common.FlatData.StatType transSupportStats) { builder.AddInt(0, (int)transSupportStats, 0); }
|
||||
public static void AddEchelonExtensionType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.EchelonExtensionType echelonExtensionType_) { builder.AddInt(1, (int)echelonExtensionType_, 0); }
|
||||
public static void AddEchelonExtensionType(FlatBufferBuilder builder, SCHALE.Common.FlatData.EchelonExtensionType echelonExtensionType) { builder.AddInt(1, (int)echelonExtensionType, 0); }
|
||||
public static void AddTransSupportStatsFactor(FlatBufferBuilder builder, int transSupportStatsFactor) { builder.AddInt(2, transSupportStatsFactor, 0); }
|
||||
public static void AddStatTransType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.StatTransType statTransType_) { builder.AddInt(3, (int)statTransType_, 0); }
|
||||
public static void AddStatTransType(FlatBufferBuilder builder, SCHALE.Common.FlatData.StatTransType statTransType) { builder.AddInt(3, (int)statTransType, 0); }
|
||||
public static Offset<SCHALE.Common.FlatData.CharacterStatsTransExcel> EndCharacterStatsTransExcel(FlatBufferBuilder builder) {
|
||||
int o = builder.EndTable();
|
||||
return new Offset<SCHALE.Common.FlatData.CharacterStatsTransExcel>(o);
|
||||
|
@ -55,33 +55,33 @@ public struct CharacterStatsTransExcel : IFlatbufferObject
|
|||
public void UnPackTo(CharacterStatsTransExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("CharacterStatsTrans");
|
||||
_o.TransSupportStats = TableEncryptionService.Convert(this.TransSupportStats, key);
|
||||
_o.EchelonExtensionType_ = TableEncryptionService.Convert(this.EchelonExtensionType_, key);
|
||||
_o.EchelonExtensionType = TableEncryptionService.Convert(this.EchelonExtensionType, key);
|
||||
_o.TransSupportStatsFactor = TableEncryptionService.Convert(this.TransSupportStatsFactor, key);
|
||||
_o.StatTransType_ = TableEncryptionService.Convert(this.StatTransType_, key);
|
||||
_o.StatTransType = TableEncryptionService.Convert(this.StatTransType, key);
|
||||
}
|
||||
public static Offset<SCHALE.Common.FlatData.CharacterStatsTransExcel> Pack(FlatBufferBuilder builder, CharacterStatsTransExcelT _o) {
|
||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.CharacterStatsTransExcel>);
|
||||
return CreateCharacterStatsTransExcel(
|
||||
builder,
|
||||
_o.TransSupportStats,
|
||||
_o.EchelonExtensionType_,
|
||||
_o.EchelonExtensionType,
|
||||
_o.TransSupportStatsFactor,
|
||||
_o.StatTransType_);
|
||||
_o.StatTransType);
|
||||
}
|
||||
}
|
||||
|
||||
public class CharacterStatsTransExcelT
|
||||
{
|
||||
public SCHALE.Common.FlatData.StatType TransSupportStats { get; set; }
|
||||
public SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType { get; set; }
|
||||
public int TransSupportStatsFactor { get; set; }
|
||||
public SCHALE.Common.FlatData.StatTransType StatTransType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.StatTransType StatTransType { get; set; }
|
||||
|
||||
public CharacterStatsTransExcelT() {
|
||||
this.TransSupportStats = SCHALE.Common.FlatData.StatType.None_;
|
||||
this.EchelonExtensionType_ = SCHALE.Common.FlatData.EchelonExtensionType.Base;
|
||||
this.TransSupportStats = SCHALE.Common.FlatData.StatType.None;
|
||||
this.EchelonExtensionType = SCHALE.Common.FlatData.EchelonExtensionType.Base;
|
||||
this.TransSupportStatsFactor = 0;
|
||||
this.StatTransType_ = SCHALE.Common.FlatData.StatTransType.SpecialTransStat;
|
||||
this.StatTransType = SCHALE.Common.FlatData.StatTransType.SpecialTransStat;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -92,9 +92,9 @@ static public class CharacterStatsTransExcelVerify
|
|||
{
|
||||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*TransSupportStats*/, 4 /*SCHALE.Common.FlatData.StatType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*EchelonExtensionType_*/, 4 /*SCHALE.Common.FlatData.EchelonExtensionType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*EchelonExtensionType*/, 4 /*SCHALE.Common.FlatData.EchelonExtensionType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*TransSupportStatsFactor*/, 4 /*int*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*StatTransType_*/, 4 /*SCHALE.Common.FlatData.StatTransType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*StatTransType*/, 4 /*SCHALE.Common.FlatData.StatTransType*/, 4, false)
|
||||
&& verifier.VerifyTableEnd(tablePos);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -27,7 +27,7 @@ public struct CharacterVoiceExcel : IFlatbufferObject
|
|||
public int Priority { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public long DisplayOrder { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public bool CollectionVisible { get { int o = __p.__offset(16); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public SCHALE.Common.FlatData.CVCollectionType CVCollectionType_ { get { int o = __p.__offset(18); return o != 0 ? (SCHALE.Common.FlatData.CVCollectionType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.CVCollectionType.CVNormal; } }
|
||||
public SCHALE.Common.FlatData.CVCollectionType CVCollectionType { get { int o = __p.__offset(18); return o != 0 ? (SCHALE.Common.FlatData.CVCollectionType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.CVCollectionType.CVNormal; } }
|
||||
public long UnlockFavorRank { get { int o = __p.__offset(20); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public string LocalizeCVGroup { get { int o = __p.__offset(22); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
|
@ -71,7 +71,7 @@ public struct CharacterVoiceExcel : IFlatbufferObject
|
|||
int Priority = 0,
|
||||
long DisplayOrder = 0,
|
||||
bool CollectionVisible = false,
|
||||
SCHALE.Common.FlatData.CVCollectionType CVCollectionType_ = SCHALE.Common.FlatData.CVCollectionType.CVNormal,
|
||||
SCHALE.Common.FlatData.CVCollectionType CVCollectionType = SCHALE.Common.FlatData.CVCollectionType.CVNormal,
|
||||
long UnlockFavorRank = 0,
|
||||
StringOffset LocalizeCVGroupOffset = default(StringOffset),
|
||||
VectorOffset Nation_Offset = default(VectorOffset),
|
||||
|
@ -88,7 +88,7 @@ public struct CharacterVoiceExcel : IFlatbufferObject
|
|||
CharacterVoiceExcel.AddVolume(builder, VolumeOffset);
|
||||
CharacterVoiceExcel.AddNation_(builder, Nation_Offset);
|
||||
CharacterVoiceExcel.AddLocalizeCVGroup(builder, LocalizeCVGroupOffset);
|
||||
CharacterVoiceExcel.AddCVCollectionType_(builder, CVCollectionType_);
|
||||
CharacterVoiceExcel.AddCVCollectionType(builder, CVCollectionType);
|
||||
CharacterVoiceExcel.AddPriority(builder, Priority);
|
||||
CharacterVoiceExcel.AddVoiceHash(builder, VoiceHash);
|
||||
CharacterVoiceExcel.AddCollectionVisible(builder, CollectionVisible);
|
||||
|
@ -104,7 +104,7 @@ public struct CharacterVoiceExcel : IFlatbufferObject
|
|||
public static void AddPriority(FlatBufferBuilder builder, int priority) { builder.AddInt(4, priority, 0); }
|
||||
public static void AddDisplayOrder(FlatBufferBuilder builder, long displayOrder) { builder.AddLong(5, displayOrder, 0); }
|
||||
public static void AddCollectionVisible(FlatBufferBuilder builder, bool collectionVisible) { builder.AddBool(6, collectionVisible, false); }
|
||||
public static void AddCVCollectionType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.CVCollectionType cVCollectionType_) { builder.AddInt(7, (int)cVCollectionType_, 0); }
|
||||
public static void AddCVCollectionType(FlatBufferBuilder builder, SCHALE.Common.FlatData.CVCollectionType cVCollectionType) { builder.AddInt(7, (int)cVCollectionType, 0); }
|
||||
public static void AddUnlockFavorRank(FlatBufferBuilder builder, long unlockFavorRank) { builder.AddLong(8, unlockFavorRank, 0); }
|
||||
public static void AddLocalizeCVGroup(FlatBufferBuilder builder, StringOffset localizeCVGroupOffset) { builder.AddOffset(9, localizeCVGroupOffset.Value, 0); }
|
||||
public static void AddNation_(FlatBufferBuilder builder, VectorOffset nation_Offset) { builder.AddOffset(10, nation_Offset.Value, 0); }
|
||||
|
@ -149,7 +149,7 @@ public struct CharacterVoiceExcel : IFlatbufferObject
|
|||
_o.Priority = TableEncryptionService.Convert(this.Priority, key);
|
||||
_o.DisplayOrder = TableEncryptionService.Convert(this.DisplayOrder, key);
|
||||
_o.CollectionVisible = TableEncryptionService.Convert(this.CollectionVisible, key);
|
||||
_o.CVCollectionType_ = TableEncryptionService.Convert(this.CVCollectionType_, key);
|
||||
_o.CVCollectionType = TableEncryptionService.Convert(this.CVCollectionType, key);
|
||||
_o.UnlockFavorRank = TableEncryptionService.Convert(this.UnlockFavorRank, key);
|
||||
_o.LocalizeCVGroup = TableEncryptionService.Convert(this.LocalizeCVGroup, key);
|
||||
_o.Nation_ = new List<SCHALE.Common.FlatData.Nation>();
|
||||
|
@ -194,7 +194,7 @@ public struct CharacterVoiceExcel : IFlatbufferObject
|
|||
_o.Priority,
|
||||
_o.DisplayOrder,
|
||||
_o.CollectionVisible,
|
||||
_o.CVCollectionType_,
|
||||
_o.CVCollectionType,
|
||||
_o.UnlockFavorRank,
|
||||
_LocalizeCVGroup,
|
||||
_Nation_,
|
||||
|
@ -213,7 +213,7 @@ public class CharacterVoiceExcelT
|
|||
public int Priority { get; set; }
|
||||
public long DisplayOrder { get; set; }
|
||||
public bool CollectionVisible { get; set; }
|
||||
public SCHALE.Common.FlatData.CVCollectionType CVCollectionType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.CVCollectionType CVCollectionType { get; set; }
|
||||
public long UnlockFavorRank { get; set; }
|
||||
public string LocalizeCVGroup { get; set; }
|
||||
public List<SCHALE.Common.FlatData.Nation> Nation_ { get; set; }
|
||||
|
@ -229,7 +229,7 @@ public class CharacterVoiceExcelT
|
|||
this.Priority = 0;
|
||||
this.DisplayOrder = 0;
|
||||
this.CollectionVisible = false;
|
||||
this.CVCollectionType_ = SCHALE.Common.FlatData.CVCollectionType.CVNormal;
|
||||
this.CVCollectionType = SCHALE.Common.FlatData.CVCollectionType.CVNormal;
|
||||
this.UnlockFavorRank = 0;
|
||||
this.LocalizeCVGroup = null;
|
||||
this.Nation_ = null;
|
||||
|
@ -252,7 +252,7 @@ static public class CharacterVoiceExcelVerify
|
|||
&& verifier.VerifyField(tablePos, 12 /*Priority*/, 4 /*int*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*DisplayOrder*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 16 /*CollectionVisible*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyField(tablePos, 18 /*CVCollectionType_*/, 4 /*SCHALE.Common.FlatData.CVCollectionType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 18 /*CVCollectionType*/, 4 /*SCHALE.Common.FlatData.CVCollectionType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 20 /*UnlockFavorRank*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyString(tablePos, 22 /*LocalizeCVGroup*/, false)
|
||||
&& verifier.VerifyVectorOfData(tablePos, 24 /*Nation_*/, 4 /*SCHALE.Common.FlatData.Nation*/, false)
|
||||
|
|
|
@ -29,7 +29,7 @@ public struct CharacterWeaponExcel : IFlatbufferObject
|
|||
#endif
|
||||
public byte[] GetImagePathArray() { return __p.__vector_as_array<byte>(6); }
|
||||
public long SetRecipe { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType_ { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.StatLevelUpType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StatLevelUpType.Standard; } }
|
||||
public SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.StatLevelUpType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StatLevelUpType.Standard; } }
|
||||
public long AttackPower { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long AttackPower100 { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long MaxHP { get { int o = __p.__offset(16); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
@ -83,7 +83,7 @@ public struct CharacterWeaponExcel : IFlatbufferObject
|
|||
long Id = 0,
|
||||
StringOffset ImagePathOffset = default(StringOffset),
|
||||
long SetRecipe = 0,
|
||||
SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType_ = SCHALE.Common.FlatData.StatLevelUpType.Standard,
|
||||
SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType = SCHALE.Common.FlatData.StatLevelUpType.Standard,
|
||||
long AttackPower = 0,
|
||||
long AttackPower100 = 0,
|
||||
long MaxHP = 0,
|
||||
|
@ -111,7 +111,7 @@ public struct CharacterWeaponExcel : IFlatbufferObject
|
|||
CharacterWeaponExcel.AddMaxLevel(builder, MaxLevelOffset);
|
||||
CharacterWeaponExcel.AddRecipeId(builder, RecipeIdOffset);
|
||||
CharacterWeaponExcel.AddUnlock(builder, UnlockOffset);
|
||||
CharacterWeaponExcel.AddStatLevelUpType_(builder, StatLevelUpType_);
|
||||
CharacterWeaponExcel.AddStatLevelUpType(builder, StatLevelUpType);
|
||||
CharacterWeaponExcel.AddImagePath(builder, ImagePathOffset);
|
||||
return CharacterWeaponExcel.EndCharacterWeaponExcel(builder);
|
||||
}
|
||||
|
@ -120,7 +120,7 @@ public struct CharacterWeaponExcel : IFlatbufferObject
|
|||
public static void AddId(FlatBufferBuilder builder, long id) { builder.AddLong(0, id, 0); }
|
||||
public static void AddImagePath(FlatBufferBuilder builder, StringOffset imagePathOffset) { builder.AddOffset(1, imagePathOffset.Value, 0); }
|
||||
public static void AddSetRecipe(FlatBufferBuilder builder, long setRecipe) { builder.AddLong(2, setRecipe, 0); }
|
||||
public static void AddStatLevelUpType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.StatLevelUpType statLevelUpType_) { builder.AddInt(3, (int)statLevelUpType_, 0); }
|
||||
public static void AddStatLevelUpType(FlatBufferBuilder builder, SCHALE.Common.FlatData.StatLevelUpType statLevelUpType) { builder.AddInt(3, (int)statLevelUpType, 0); }
|
||||
public static void AddAttackPower(FlatBufferBuilder builder, long attackPower) { builder.AddLong(4, attackPower, 0); }
|
||||
public static void AddAttackPower100(FlatBufferBuilder builder, long attackPower100) { builder.AddLong(5, attackPower100, 0); }
|
||||
public static void AddMaxHP(FlatBufferBuilder builder, long maxHP) { builder.AddLong(6, maxHP, 0); }
|
||||
|
@ -177,7 +177,7 @@ public struct CharacterWeaponExcel : IFlatbufferObject
|
|||
_o.Id = TableEncryptionService.Convert(this.Id, key);
|
||||
_o.ImagePath = TableEncryptionService.Convert(this.ImagePath, key);
|
||||
_o.SetRecipe = TableEncryptionService.Convert(this.SetRecipe, key);
|
||||
_o.StatLevelUpType_ = TableEncryptionService.Convert(this.StatLevelUpType_, key);
|
||||
_o.StatLevelUpType = TableEncryptionService.Convert(this.StatLevelUpType, key);
|
||||
_o.AttackPower = TableEncryptionService.Convert(this.AttackPower, key);
|
||||
_o.AttackPower100 = TableEncryptionService.Convert(this.AttackPower100, key);
|
||||
_o.MaxHP = TableEncryptionService.Convert(this.MaxHP, key);
|
||||
|
@ -236,7 +236,7 @@ public struct CharacterWeaponExcel : IFlatbufferObject
|
|||
_o.Id,
|
||||
_ImagePath,
|
||||
_o.SetRecipe,
|
||||
_o.StatLevelUpType_,
|
||||
_o.StatLevelUpType,
|
||||
_o.AttackPower,
|
||||
_o.AttackPower100,
|
||||
_o.MaxHP,
|
||||
|
@ -257,7 +257,7 @@ public class CharacterWeaponExcelT
|
|||
public long Id { get; set; }
|
||||
public string ImagePath { get; set; }
|
||||
public long SetRecipe { get; set; }
|
||||
public SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType { get; set; }
|
||||
public long AttackPower { get; set; }
|
||||
public long AttackPower100 { get; set; }
|
||||
public long MaxHP { get; set; }
|
||||
|
@ -275,7 +275,7 @@ public class CharacterWeaponExcelT
|
|||
this.Id = 0;
|
||||
this.ImagePath = null;
|
||||
this.SetRecipe = 0;
|
||||
this.StatLevelUpType_ = SCHALE.Common.FlatData.StatLevelUpType.Standard;
|
||||
this.StatLevelUpType = SCHALE.Common.FlatData.StatLevelUpType.Standard;
|
||||
this.AttackPower = 0;
|
||||
this.AttackPower100 = 0;
|
||||
this.MaxHP = 0;
|
||||
|
@ -300,7 +300,7 @@ static public class CharacterWeaponExcelVerify
|
|||
&& verifier.VerifyField(tablePos, 4 /*Id*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyString(tablePos, 6 /*ImagePath*/, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*SetRecipe*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*StatLevelUpType_*/, 4 /*SCHALE.Common.FlatData.StatLevelUpType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*StatLevelUpType*/, 4 /*SCHALE.Common.FlatData.StatLevelUpType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*AttackPower*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*AttackPower100*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 16 /*MaxHP*/, 8 /*long*/, 8, false)
|
||||
|
|
|
@ -20,14 +20,14 @@ public struct CharacterWeaponExpBonusExcel : IFlatbufferObject
|
|||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
||||
public CharacterWeaponExpBonusExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public SCHALE.Common.FlatData.WeaponType WeaponType_ { get { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.WeaponType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.WeaponType.None_; } }
|
||||
public SCHALE.Common.FlatData.WeaponType WeaponType { get { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.WeaponType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.WeaponType.None; } }
|
||||
public int WeaponExpGrowthA { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public int WeaponExpGrowthB { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public int WeaponExpGrowthC { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public int WeaponExpGrowthZ { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
|
||||
public static Offset<SCHALE.Common.FlatData.CharacterWeaponExpBonusExcel> CreateCharacterWeaponExpBonusExcel(FlatBufferBuilder builder,
|
||||
SCHALE.Common.FlatData.WeaponType WeaponType_ = SCHALE.Common.FlatData.WeaponType.None_,
|
||||
SCHALE.Common.FlatData.WeaponType WeaponType = SCHALE.Common.FlatData.WeaponType.None,
|
||||
int WeaponExpGrowthA = 0,
|
||||
int WeaponExpGrowthB = 0,
|
||||
int WeaponExpGrowthC = 0,
|
||||
|
@ -37,12 +37,12 @@ public struct CharacterWeaponExpBonusExcel : IFlatbufferObject
|
|||
CharacterWeaponExpBonusExcel.AddWeaponExpGrowthC(builder, WeaponExpGrowthC);
|
||||
CharacterWeaponExpBonusExcel.AddWeaponExpGrowthB(builder, WeaponExpGrowthB);
|
||||
CharacterWeaponExpBonusExcel.AddWeaponExpGrowthA(builder, WeaponExpGrowthA);
|
||||
CharacterWeaponExpBonusExcel.AddWeaponType_(builder, WeaponType_);
|
||||
CharacterWeaponExpBonusExcel.AddWeaponType(builder, WeaponType);
|
||||
return CharacterWeaponExpBonusExcel.EndCharacterWeaponExpBonusExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartCharacterWeaponExpBonusExcel(FlatBufferBuilder builder) { builder.StartTable(5); }
|
||||
public static void AddWeaponType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.WeaponType weaponType_) { builder.AddInt(0, (int)weaponType_, 0); }
|
||||
public static void AddWeaponType(FlatBufferBuilder builder, SCHALE.Common.FlatData.WeaponType weaponType) { builder.AddInt(0, (int)weaponType, 0); }
|
||||
public static void AddWeaponExpGrowthA(FlatBufferBuilder builder, int weaponExpGrowthA) { builder.AddInt(1, weaponExpGrowthA, 0); }
|
||||
public static void AddWeaponExpGrowthB(FlatBufferBuilder builder, int weaponExpGrowthB) { builder.AddInt(2, weaponExpGrowthB, 0); }
|
||||
public static void AddWeaponExpGrowthC(FlatBufferBuilder builder, int weaponExpGrowthC) { builder.AddInt(3, weaponExpGrowthC, 0); }
|
||||
|
@ -58,7 +58,7 @@ public struct CharacterWeaponExpBonusExcel : IFlatbufferObject
|
|||
}
|
||||
public void UnPackTo(CharacterWeaponExpBonusExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("CharacterWeaponExpBonus");
|
||||
_o.WeaponType_ = TableEncryptionService.Convert(this.WeaponType_, key);
|
||||
_o.WeaponType = TableEncryptionService.Convert(this.WeaponType, key);
|
||||
_o.WeaponExpGrowthA = TableEncryptionService.Convert(this.WeaponExpGrowthA, key);
|
||||
_o.WeaponExpGrowthB = TableEncryptionService.Convert(this.WeaponExpGrowthB, key);
|
||||
_o.WeaponExpGrowthC = TableEncryptionService.Convert(this.WeaponExpGrowthC, key);
|
||||
|
@ -68,7 +68,7 @@ public struct CharacterWeaponExpBonusExcel : IFlatbufferObject
|
|||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.CharacterWeaponExpBonusExcel>);
|
||||
return CreateCharacterWeaponExpBonusExcel(
|
||||
builder,
|
||||
_o.WeaponType_,
|
||||
_o.WeaponType,
|
||||
_o.WeaponExpGrowthA,
|
||||
_o.WeaponExpGrowthB,
|
||||
_o.WeaponExpGrowthC,
|
||||
|
@ -78,14 +78,14 @@ public struct CharacterWeaponExpBonusExcel : IFlatbufferObject
|
|||
|
||||
public class CharacterWeaponExpBonusExcelT
|
||||
{
|
||||
public SCHALE.Common.FlatData.WeaponType WeaponType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.WeaponType WeaponType { get; set; }
|
||||
public int WeaponExpGrowthA { get; set; }
|
||||
public int WeaponExpGrowthB { get; set; }
|
||||
public int WeaponExpGrowthC { get; set; }
|
||||
public int WeaponExpGrowthZ { get; set; }
|
||||
|
||||
public CharacterWeaponExpBonusExcelT() {
|
||||
this.WeaponType_ = SCHALE.Common.FlatData.WeaponType.None_;
|
||||
this.WeaponType = SCHALE.Common.FlatData.WeaponType.None;
|
||||
this.WeaponExpGrowthA = 0;
|
||||
this.WeaponExpGrowthB = 0;
|
||||
this.WeaponExpGrowthC = 0;
|
||||
|
@ -99,7 +99,7 @@ static public class CharacterWeaponExpBonusExcelVerify
|
|||
static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos)
|
||||
{
|
||||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*WeaponType_*/, 4 /*SCHALE.Common.FlatData.WeaponType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 4 /*WeaponType*/, 4 /*SCHALE.Common.FlatData.WeaponType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*WeaponExpGrowthA*/, 4 /*int*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*WeaponExpGrowthB*/, 4 /*int*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*WeaponExpGrowthC*/, 4 /*int*/, 4, false)
|
||||
|
|
|
@ -21,7 +21,7 @@ public struct ClanAssistSlotExcel : IFlatbufferObject
|
|||
public ClanAssistSlotExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public long SlotId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.EchelonType EchelonType_ { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.EchelonType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EchelonType.None_; } }
|
||||
public SCHALE.Common.FlatData.EchelonType EchelonType { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.EchelonType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EchelonType.None; } }
|
||||
public long SlotNumber { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long AssistTermRewardPeriodFromSec { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long AssistRewardLimit { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
@ -31,7 +31,7 @@ public struct ClanAssistSlotExcel : IFlatbufferObject
|
|||
|
||||
public static Offset<SCHALE.Common.FlatData.ClanAssistSlotExcel> CreateClanAssistSlotExcel(FlatBufferBuilder builder,
|
||||
long SlotId = 0,
|
||||
SCHALE.Common.FlatData.EchelonType EchelonType_ = SCHALE.Common.FlatData.EchelonType.None_,
|
||||
SCHALE.Common.FlatData.EchelonType EchelonType = SCHALE.Common.FlatData.EchelonType.None,
|
||||
long SlotNumber = 0,
|
||||
long AssistTermRewardPeriodFromSec = 0,
|
||||
long AssistRewardLimit = 0,
|
||||
|
@ -46,13 +46,13 @@ public struct ClanAssistSlotExcel : IFlatbufferObject
|
|||
ClanAssistSlotExcel.AddAssistTermRewardPeriodFromSec(builder, AssistTermRewardPeriodFromSec);
|
||||
ClanAssistSlotExcel.AddSlotNumber(builder, SlotNumber);
|
||||
ClanAssistSlotExcel.AddSlotId(builder, SlotId);
|
||||
ClanAssistSlotExcel.AddEchelonType_(builder, EchelonType_);
|
||||
ClanAssistSlotExcel.AddEchelonType(builder, EchelonType);
|
||||
return ClanAssistSlotExcel.EndClanAssistSlotExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartClanAssistSlotExcel(FlatBufferBuilder builder) { builder.StartTable(8); }
|
||||
public static void AddSlotId(FlatBufferBuilder builder, long slotId) { builder.AddLong(0, slotId, 0); }
|
||||
public static void AddEchelonType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.EchelonType echelonType_) { builder.AddInt(1, (int)echelonType_, 0); }
|
||||
public static void AddEchelonType(FlatBufferBuilder builder, SCHALE.Common.FlatData.EchelonType echelonType) { builder.AddInt(1, (int)echelonType, 0); }
|
||||
public static void AddSlotNumber(FlatBufferBuilder builder, long slotNumber) { builder.AddLong(2, slotNumber, 0); }
|
||||
public static void AddAssistTermRewardPeriodFromSec(FlatBufferBuilder builder, long assistTermRewardPeriodFromSec) { builder.AddLong(3, assistTermRewardPeriodFromSec, 0); }
|
||||
public static void AddAssistRewardLimit(FlatBufferBuilder builder, long assistRewardLimit) { builder.AddLong(4, assistRewardLimit, 0); }
|
||||
|
@ -71,7 +71,7 @@ public struct ClanAssistSlotExcel : IFlatbufferObject
|
|||
public void UnPackTo(ClanAssistSlotExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("ClanAssistSlot");
|
||||
_o.SlotId = TableEncryptionService.Convert(this.SlotId, key);
|
||||
_o.EchelonType_ = TableEncryptionService.Convert(this.EchelonType_, key);
|
||||
_o.EchelonType = TableEncryptionService.Convert(this.EchelonType, key);
|
||||
_o.SlotNumber = TableEncryptionService.Convert(this.SlotNumber, key);
|
||||
_o.AssistTermRewardPeriodFromSec = TableEncryptionService.Convert(this.AssistTermRewardPeriodFromSec, key);
|
||||
_o.AssistRewardLimit = TableEncryptionService.Convert(this.AssistRewardLimit, key);
|
||||
|
@ -84,7 +84,7 @@ public struct ClanAssistSlotExcel : IFlatbufferObject
|
|||
return CreateClanAssistSlotExcel(
|
||||
builder,
|
||||
_o.SlotId,
|
||||
_o.EchelonType_,
|
||||
_o.EchelonType,
|
||||
_o.SlotNumber,
|
||||
_o.AssistTermRewardPeriodFromSec,
|
||||
_o.AssistRewardLimit,
|
||||
|
@ -97,7 +97,7 @@ public struct ClanAssistSlotExcel : IFlatbufferObject
|
|||
public class ClanAssistSlotExcelT
|
||||
{
|
||||
public long SlotId { get; set; }
|
||||
public SCHALE.Common.FlatData.EchelonType EchelonType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.EchelonType EchelonType { get; set; }
|
||||
public long SlotNumber { get; set; }
|
||||
public long AssistTermRewardPeriodFromSec { get; set; }
|
||||
public long AssistRewardLimit { get; set; }
|
||||
|
@ -107,7 +107,7 @@ public class ClanAssistSlotExcelT
|
|||
|
||||
public ClanAssistSlotExcelT() {
|
||||
this.SlotId = 0;
|
||||
this.EchelonType_ = SCHALE.Common.FlatData.EchelonType.None_;
|
||||
this.EchelonType = SCHALE.Common.FlatData.EchelonType.None;
|
||||
this.SlotNumber = 0;
|
||||
this.AssistTermRewardPeriodFromSec = 0;
|
||||
this.AssistRewardLimit = 0;
|
||||
|
@ -124,7 +124,7 @@ static public class ClanAssistSlotExcelVerify
|
|||
{
|
||||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*SlotId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*EchelonType_*/, 4 /*SCHALE.Common.FlatData.EchelonType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*EchelonType*/, 4 /*SCHALE.Common.FlatData.EchelonType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*SlotNumber*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*AssistTermRewardPeriodFromSec*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*AssistRewardLimit*/, 8 /*long*/, 8, false)
|
||||
|
|
|
@ -20,30 +20,30 @@ public struct ClanRewardExcel : IFlatbufferObject
|
|||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
||||
public ClanRewardExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public SCHALE.Common.FlatData.ClanRewardType ClanRewardType_ { get { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.ClanRewardType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ClanRewardType.None_; } }
|
||||
public SCHALE.Common.FlatData.EchelonType EchelonType_ { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.EchelonType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EchelonType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType RewardParcelType { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ClanRewardType ClanRewardType { get { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.ClanRewardType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ClanRewardType.None; } }
|
||||
public SCHALE.Common.FlatData.EchelonType EchelonType { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.EchelonType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EchelonType.None; } }
|
||||
public SCHALE.Common.FlatData.ParcelType RewardParcelType { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long RewardParcelId { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long RewardParcelAmount { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
||||
public static Offset<SCHALE.Common.FlatData.ClanRewardExcel> CreateClanRewardExcel(FlatBufferBuilder builder,
|
||||
SCHALE.Common.FlatData.ClanRewardType ClanRewardType_ = SCHALE.Common.FlatData.ClanRewardType.None_,
|
||||
SCHALE.Common.FlatData.EchelonType EchelonType_ = SCHALE.Common.FlatData.EchelonType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType RewardParcelType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ClanRewardType ClanRewardType = SCHALE.Common.FlatData.ClanRewardType.None,
|
||||
SCHALE.Common.FlatData.EchelonType EchelonType = SCHALE.Common.FlatData.EchelonType.None,
|
||||
SCHALE.Common.FlatData.ParcelType RewardParcelType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long RewardParcelId = 0,
|
||||
long RewardParcelAmount = 0) {
|
||||
builder.StartTable(5);
|
||||
ClanRewardExcel.AddRewardParcelAmount(builder, RewardParcelAmount);
|
||||
ClanRewardExcel.AddRewardParcelId(builder, RewardParcelId);
|
||||
ClanRewardExcel.AddRewardParcelType(builder, RewardParcelType);
|
||||
ClanRewardExcel.AddEchelonType_(builder, EchelonType_);
|
||||
ClanRewardExcel.AddClanRewardType_(builder, ClanRewardType_);
|
||||
ClanRewardExcel.AddEchelonType(builder, EchelonType);
|
||||
ClanRewardExcel.AddClanRewardType(builder, ClanRewardType);
|
||||
return ClanRewardExcel.EndClanRewardExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartClanRewardExcel(FlatBufferBuilder builder) { builder.StartTable(5); }
|
||||
public static void AddClanRewardType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ClanRewardType clanRewardType_) { builder.AddInt(0, (int)clanRewardType_, 0); }
|
||||
public static void AddEchelonType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.EchelonType echelonType_) { builder.AddInt(1, (int)echelonType_, 0); }
|
||||
public static void AddClanRewardType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ClanRewardType clanRewardType) { builder.AddInt(0, (int)clanRewardType, 0); }
|
||||
public static void AddEchelonType(FlatBufferBuilder builder, SCHALE.Common.FlatData.EchelonType echelonType) { builder.AddInt(1, (int)echelonType, 0); }
|
||||
public static void AddRewardParcelType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ParcelType rewardParcelType) { builder.AddInt(2, (int)rewardParcelType, 0); }
|
||||
public static void AddRewardParcelId(FlatBufferBuilder builder, long rewardParcelId) { builder.AddLong(3, rewardParcelId, 0); }
|
||||
public static void AddRewardParcelAmount(FlatBufferBuilder builder, long rewardParcelAmount) { builder.AddLong(4, rewardParcelAmount, 0); }
|
||||
|
@ -58,8 +58,8 @@ public struct ClanRewardExcel : IFlatbufferObject
|
|||
}
|
||||
public void UnPackTo(ClanRewardExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("ClanReward");
|
||||
_o.ClanRewardType_ = TableEncryptionService.Convert(this.ClanRewardType_, key);
|
||||
_o.EchelonType_ = TableEncryptionService.Convert(this.EchelonType_, key);
|
||||
_o.ClanRewardType = TableEncryptionService.Convert(this.ClanRewardType, key);
|
||||
_o.EchelonType = TableEncryptionService.Convert(this.EchelonType, key);
|
||||
_o.RewardParcelType = TableEncryptionService.Convert(this.RewardParcelType, key);
|
||||
_o.RewardParcelId = TableEncryptionService.Convert(this.RewardParcelId, key);
|
||||
_o.RewardParcelAmount = TableEncryptionService.Convert(this.RewardParcelAmount, key);
|
||||
|
@ -68,8 +68,8 @@ public struct ClanRewardExcel : IFlatbufferObject
|
|||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.ClanRewardExcel>);
|
||||
return CreateClanRewardExcel(
|
||||
builder,
|
||||
_o.ClanRewardType_,
|
||||
_o.EchelonType_,
|
||||
_o.ClanRewardType,
|
||||
_o.EchelonType,
|
||||
_o.RewardParcelType,
|
||||
_o.RewardParcelId,
|
||||
_o.RewardParcelAmount);
|
||||
|
@ -78,16 +78,16 @@ public struct ClanRewardExcel : IFlatbufferObject
|
|||
|
||||
public class ClanRewardExcelT
|
||||
{
|
||||
public SCHALE.Common.FlatData.ClanRewardType ClanRewardType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.EchelonType EchelonType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ClanRewardType ClanRewardType { get; set; }
|
||||
public SCHALE.Common.FlatData.EchelonType EchelonType { get; set; }
|
||||
public SCHALE.Common.FlatData.ParcelType RewardParcelType { get; set; }
|
||||
public long RewardParcelId { get; set; }
|
||||
public long RewardParcelAmount { get; set; }
|
||||
|
||||
public ClanRewardExcelT() {
|
||||
this.ClanRewardType_ = SCHALE.Common.FlatData.ClanRewardType.None_;
|
||||
this.EchelonType_ = SCHALE.Common.FlatData.EchelonType.None_;
|
||||
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.ClanRewardType = SCHALE.Common.FlatData.ClanRewardType.None;
|
||||
this.EchelonType = SCHALE.Common.FlatData.EchelonType.None;
|
||||
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.RewardParcelId = 0;
|
||||
this.RewardParcelAmount = 0;
|
||||
}
|
||||
|
@ -99,8 +99,8 @@ static public class ClanRewardExcelVerify
|
|||
static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos)
|
||||
{
|
||||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*ClanRewardType_*/, 4 /*SCHALE.Common.FlatData.ClanRewardType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*EchelonType_*/, 4 /*SCHALE.Common.FlatData.EchelonType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 4 /*ClanRewardType*/, 4 /*SCHALE.Common.FlatData.ClanRewardType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*EchelonType*/, 4 /*SCHALE.Common.FlatData.EchelonType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*RewardParcelType*/, 4 /*SCHALE.Common.FlatData.ParcelType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*RewardParcelId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*RewardParcelAmount*/, 8 /*long*/, 8, false)
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum ClanRewardType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
AssistTerm = 1,
|
||||
AssistRent = 2,
|
||||
Attendance = 3,
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum ClanSocialGrade : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
President = 1,
|
||||
Manager = 2,
|
||||
Member = 3,
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum ClearCheck : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Success_Play = 1,
|
||||
Success_Sweep = 2,
|
||||
Fail_Timeout = 3,
|
||||
|
|
|
@ -20,20 +20,20 @@ public struct ClearDeckRuleExcel : IFlatbufferObject
|
|||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
||||
public ClearDeckRuleExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public SCHALE.Common.FlatData.ContentType ContentType_ { get { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.ContentType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ContentType.None_; } }
|
||||
public SCHALE.Common.FlatData.ContentType ContentType { get { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.ContentType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ContentType.None; } }
|
||||
public long SizeLimit { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
||||
public static Offset<SCHALE.Common.FlatData.ClearDeckRuleExcel> CreateClearDeckRuleExcel(FlatBufferBuilder builder,
|
||||
SCHALE.Common.FlatData.ContentType ContentType_ = SCHALE.Common.FlatData.ContentType.None_,
|
||||
SCHALE.Common.FlatData.ContentType ContentType = SCHALE.Common.FlatData.ContentType.None,
|
||||
long SizeLimit = 0) {
|
||||
builder.StartTable(2);
|
||||
ClearDeckRuleExcel.AddSizeLimit(builder, SizeLimit);
|
||||
ClearDeckRuleExcel.AddContentType_(builder, ContentType_);
|
||||
ClearDeckRuleExcel.AddContentType(builder, ContentType);
|
||||
return ClearDeckRuleExcel.EndClearDeckRuleExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartClearDeckRuleExcel(FlatBufferBuilder builder) { builder.StartTable(2); }
|
||||
public static void AddContentType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ContentType contentType_) { builder.AddInt(0, (int)contentType_, 0); }
|
||||
public static void AddContentType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ContentType contentType) { builder.AddInt(0, (int)contentType, 0); }
|
||||
public static void AddSizeLimit(FlatBufferBuilder builder, long sizeLimit) { builder.AddLong(1, sizeLimit, 0); }
|
||||
public static Offset<SCHALE.Common.FlatData.ClearDeckRuleExcel> EndClearDeckRuleExcel(FlatBufferBuilder builder) {
|
||||
int o = builder.EndTable();
|
||||
|
@ -46,25 +46,25 @@ public struct ClearDeckRuleExcel : IFlatbufferObject
|
|||
}
|
||||
public void UnPackTo(ClearDeckRuleExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("ClearDeckRule");
|
||||
_o.ContentType_ = TableEncryptionService.Convert(this.ContentType_, key);
|
||||
_o.ContentType = TableEncryptionService.Convert(this.ContentType, key);
|
||||
_o.SizeLimit = TableEncryptionService.Convert(this.SizeLimit, key);
|
||||
}
|
||||
public static Offset<SCHALE.Common.FlatData.ClearDeckRuleExcel> Pack(FlatBufferBuilder builder, ClearDeckRuleExcelT _o) {
|
||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.ClearDeckRuleExcel>);
|
||||
return CreateClearDeckRuleExcel(
|
||||
builder,
|
||||
_o.ContentType_,
|
||||
_o.ContentType,
|
||||
_o.SizeLimit);
|
||||
}
|
||||
}
|
||||
|
||||
public class ClearDeckRuleExcelT
|
||||
{
|
||||
public SCHALE.Common.FlatData.ContentType ContentType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ContentType ContentType { get; set; }
|
||||
public long SizeLimit { get; set; }
|
||||
|
||||
public ClearDeckRuleExcelT() {
|
||||
this.ContentType_ = SCHALE.Common.FlatData.ContentType.None_;
|
||||
this.ContentType = SCHALE.Common.FlatData.ContentType.None;
|
||||
this.SizeLimit = 0;
|
||||
}
|
||||
}
|
||||
|
@ -75,7 +75,7 @@ static public class ClearDeckRuleExcelVerify
|
|||
static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos)
|
||||
{
|
||||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*ContentType_*/, 4 /*SCHALE.Common.FlatData.ContentType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 4 /*ContentType*/, 4 /*SCHALE.Common.FlatData.ContentType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*SizeLimit*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyTableEnd(tablePos);
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum Club : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Engineer = 1,
|
||||
CleanNClearing = 2,
|
||||
KnightsHospitaller = 3,
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum CollectionUnlockType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
ClearSpecificEventStage = 1,
|
||||
ClearSpecificEventScenario = 2,
|
||||
ClearSpecificEventMission = 3,
|
||||
|
|
|
@ -21,7 +21,7 @@ public struct CombatEmojiExcel : IFlatbufferObject
|
|||
public CombatEmojiExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public long UniqueId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.EmojiEvent EmojiEvent_ { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.EmojiEvent)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EmojiEvent.EnterConver; } }
|
||||
public SCHALE.Common.FlatData.EmojiEvent EmojiEvent { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.EmojiEvent)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EmojiEvent.EnterConver; } }
|
||||
public int OrderOfPriority { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public bool EmojiDuration { get { int o = __p.__offset(10); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public bool EmojiReversal { get { int o = __p.__offset(12); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
|
@ -31,7 +31,7 @@ public struct CombatEmojiExcel : IFlatbufferObject
|
|||
|
||||
public static Offset<SCHALE.Common.FlatData.CombatEmojiExcel> CreateCombatEmojiExcel(FlatBufferBuilder builder,
|
||||
long UniqueId = 0,
|
||||
SCHALE.Common.FlatData.EmojiEvent EmojiEvent_ = SCHALE.Common.FlatData.EmojiEvent.EnterConver,
|
||||
SCHALE.Common.FlatData.EmojiEvent EmojiEvent = SCHALE.Common.FlatData.EmojiEvent.EnterConver,
|
||||
int OrderOfPriority = 0,
|
||||
bool EmojiDuration = false,
|
||||
bool EmojiReversal = false,
|
||||
|
@ -42,7 +42,7 @@ public struct CombatEmojiExcel : IFlatbufferObject
|
|||
CombatEmojiExcel.AddUniqueId(builder, UniqueId);
|
||||
CombatEmojiExcel.AddShowEmojiDelay(builder, ShowEmojiDelay);
|
||||
CombatEmojiExcel.AddOrderOfPriority(builder, OrderOfPriority);
|
||||
CombatEmojiExcel.AddEmojiEvent_(builder, EmojiEvent_);
|
||||
CombatEmojiExcel.AddEmojiEvent(builder, EmojiEvent);
|
||||
CombatEmojiExcel.AddShowDefaultBG(builder, ShowDefaultBG);
|
||||
CombatEmojiExcel.AddEmojiTurnOn(builder, EmojiTurnOn);
|
||||
CombatEmojiExcel.AddEmojiReversal(builder, EmojiReversal);
|
||||
|
@ -52,7 +52,7 @@ public struct CombatEmojiExcel : IFlatbufferObject
|
|||
|
||||
public static void StartCombatEmojiExcel(FlatBufferBuilder builder) { builder.StartTable(8); }
|
||||
public static void AddUniqueId(FlatBufferBuilder builder, long uniqueId) { builder.AddLong(0, uniqueId, 0); }
|
||||
public static void AddEmojiEvent_(FlatBufferBuilder builder, SCHALE.Common.FlatData.EmojiEvent emojiEvent_) { builder.AddInt(1, (int)emojiEvent_, 0); }
|
||||
public static void AddEmojiEvent(FlatBufferBuilder builder, SCHALE.Common.FlatData.EmojiEvent emojiEvent) { builder.AddInt(1, (int)emojiEvent, 0); }
|
||||
public static void AddOrderOfPriority(FlatBufferBuilder builder, int orderOfPriority) { builder.AddInt(2, orderOfPriority, 0); }
|
||||
public static void AddEmojiDuration(FlatBufferBuilder builder, bool emojiDuration) { builder.AddBool(3, emojiDuration, false); }
|
||||
public static void AddEmojiReversal(FlatBufferBuilder builder, bool emojiReversal) { builder.AddBool(4, emojiReversal, false); }
|
||||
|
@ -71,7 +71,7 @@ public struct CombatEmojiExcel : IFlatbufferObject
|
|||
public void UnPackTo(CombatEmojiExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("CombatEmoji");
|
||||
_o.UniqueId = TableEncryptionService.Convert(this.UniqueId, key);
|
||||
_o.EmojiEvent_ = TableEncryptionService.Convert(this.EmojiEvent_, key);
|
||||
_o.EmojiEvent = TableEncryptionService.Convert(this.EmojiEvent, key);
|
||||
_o.OrderOfPriority = TableEncryptionService.Convert(this.OrderOfPriority, key);
|
||||
_o.EmojiDuration = TableEncryptionService.Convert(this.EmojiDuration, key);
|
||||
_o.EmojiReversal = TableEncryptionService.Convert(this.EmojiReversal, key);
|
||||
|
@ -84,7 +84,7 @@ public struct CombatEmojiExcel : IFlatbufferObject
|
|||
return CreateCombatEmojiExcel(
|
||||
builder,
|
||||
_o.UniqueId,
|
||||
_o.EmojiEvent_,
|
||||
_o.EmojiEvent,
|
||||
_o.OrderOfPriority,
|
||||
_o.EmojiDuration,
|
||||
_o.EmojiReversal,
|
||||
|
@ -97,7 +97,7 @@ public struct CombatEmojiExcel : IFlatbufferObject
|
|||
public class CombatEmojiExcelT
|
||||
{
|
||||
public long UniqueId { get; set; }
|
||||
public SCHALE.Common.FlatData.EmojiEvent EmojiEvent_ { get; set; }
|
||||
public SCHALE.Common.FlatData.EmojiEvent EmojiEvent { get; set; }
|
||||
public int OrderOfPriority { get; set; }
|
||||
public bool EmojiDuration { get; set; }
|
||||
public bool EmojiReversal { get; set; }
|
||||
|
@ -107,7 +107,7 @@ public class CombatEmojiExcelT
|
|||
|
||||
public CombatEmojiExcelT() {
|
||||
this.UniqueId = 0;
|
||||
this.EmojiEvent_ = SCHALE.Common.FlatData.EmojiEvent.EnterConver;
|
||||
this.EmojiEvent = SCHALE.Common.FlatData.EmojiEvent.EnterConver;
|
||||
this.OrderOfPriority = 0;
|
||||
this.EmojiDuration = false;
|
||||
this.EmojiReversal = false;
|
||||
|
@ -124,7 +124,7 @@ static public class CombatEmojiExcelVerify
|
|||
{
|
||||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*UniqueId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*EmojiEvent_*/, 4 /*SCHALE.Common.FlatData.EmojiEvent*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*EmojiEvent*/, 4 /*SCHALE.Common.FlatData.EmojiEvent*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*OrderOfPriority*/, 4 /*int*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*EmojiDuration*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*EmojiReversal*/, 1 /*bool*/, 1, false)
|
||||
|
|
|
@ -21,13 +21,13 @@ public struct ConquestCalculateExcel : IFlatbufferObject
|
|||
public ConquestCalculateExcel __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 SCHALE.Common.FlatData.ParcelType CalculateConditionParcelType { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType CalculateConditionParcelType { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long CalculateConditionParcelUniqueId { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long CalculateConditionParcelAmount { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
||||
public static Offset<SCHALE.Common.FlatData.ConquestCalculateExcel> CreateConquestCalculateExcel(FlatBufferBuilder builder,
|
||||
long EventContentId = 0,
|
||||
SCHALE.Common.FlatData.ParcelType CalculateConditionParcelType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType CalculateConditionParcelType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long CalculateConditionParcelUniqueId = 0,
|
||||
long CalculateConditionParcelAmount = 0) {
|
||||
builder.StartTable(4);
|
||||
|
@ -79,7 +79,7 @@ public class ConquestCalculateExcelT
|
|||
|
||||
public ConquestCalculateExcelT() {
|
||||
this.EventContentId = 0;
|
||||
this.CalculateConditionParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.CalculateConditionParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.CalculateConditionParcelUniqueId = 0;
|
||||
this.CalculateConditionParcelAmount = 0;
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum ConquestConditionType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
OpenDateOffset = 1,
|
||||
ItemAcquire = 2,
|
||||
ParcelUse = 3,
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum ConquestEnemyType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Normal = 1,
|
||||
MiddleBoss = 2,
|
||||
Boss = 3,
|
||||
|
|
|
@ -22,7 +22,7 @@ public struct ConquestErosionExcel : IFlatbufferObject
|
|||
|
||||
public long EventContentId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long Id { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ConquestErosionType ErosionType { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.ConquestErosionType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ConquestErosionType.None_; } }
|
||||
public SCHALE.Common.FlatData.ConquestErosionType ErosionType { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.ConquestErosionType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ConquestErosionType.None; } }
|
||||
public int Phase { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public bool PhaseAlarm { get { int o = __p.__offset(12); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public int StepIndex { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
|
@ -46,7 +46,7 @@ public struct ConquestErosionExcel : IFlatbufferObject
|
|||
public SCHALE.Common.FlatData.ConquestConditionType[] GetPhaseBeforeExposeConditionTypeArray() { int o = __p.__offset(20); if (o == 0) return null; int p = __p.__vector(o); int l = __p.__vector_len(o); SCHALE.Common.FlatData.ConquestConditionType[] a = new SCHALE.Common.FlatData.ConquestConditionType[l]; for (int i = 0; i < l; i++) { a[i] = (SCHALE.Common.FlatData.ConquestConditionType)__p.bb.GetInt(p + i * 4); } return a; }
|
||||
public string PhaseBeforeExposeConditionParameter(int j) { int o = __p.__offset(22); return o != 0 ? __p.__string(__p.__vector(o) + j * 4) : null; }
|
||||
public int PhaseBeforeExposeConditionParameterLength { get { int o = __p.__offset(22); return o != 0 ? __p.__vector_len(o) : 0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType ErosionBattleConditionParcelType { get { int o = __p.__offset(24); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType ErosionBattleConditionParcelType { get { int o = __p.__offset(24); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long ErosionBattleConditionParcelUniqueId { get { int o = __p.__offset(26); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long ErosionBattleConditionParcelAmount { get { int o = __p.__offset(28); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long ConquestRewardId { get { int o = __p.__offset(30); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
@ -54,7 +54,7 @@ public struct ConquestErosionExcel : IFlatbufferObject
|
|||
public static Offset<SCHALE.Common.FlatData.ConquestErosionExcel> CreateConquestErosionExcel(FlatBufferBuilder builder,
|
||||
long EventContentId = 0,
|
||||
long Id = 0,
|
||||
SCHALE.Common.FlatData.ConquestErosionType ErosionType = SCHALE.Common.FlatData.ConquestErosionType.None_,
|
||||
SCHALE.Common.FlatData.ConquestErosionType ErosionType = SCHALE.Common.FlatData.ConquestErosionType.None,
|
||||
int Phase = 0,
|
||||
bool PhaseAlarm = false,
|
||||
int StepIndex = 0,
|
||||
|
@ -62,7 +62,7 @@ public struct ConquestErosionExcel : IFlatbufferObject
|
|||
VectorOffset PhaseStartConditionParameterOffset = default(VectorOffset),
|
||||
VectorOffset PhaseBeforeExposeConditionTypeOffset = default(VectorOffset),
|
||||
VectorOffset PhaseBeforeExposeConditionParameterOffset = default(VectorOffset),
|
||||
SCHALE.Common.FlatData.ParcelType ErosionBattleConditionParcelType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType ErosionBattleConditionParcelType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long ErosionBattleConditionParcelUniqueId = 0,
|
||||
long ErosionBattleConditionParcelAmount = 0,
|
||||
long ConquestRewardId = 0) {
|
||||
|
@ -212,7 +212,7 @@ public class ConquestErosionExcelT
|
|||
public ConquestErosionExcelT() {
|
||||
this.EventContentId = 0;
|
||||
this.Id = 0;
|
||||
this.ErosionType = SCHALE.Common.FlatData.ConquestErosionType.None_;
|
||||
this.ErosionType = SCHALE.Common.FlatData.ConquestErosionType.None;
|
||||
this.Phase = 0;
|
||||
this.PhaseAlarm = false;
|
||||
this.StepIndex = 0;
|
||||
|
@ -220,7 +220,7 @@ public class ConquestErosionExcelT
|
|||
this.PhaseStartConditionParameter = null;
|
||||
this.PhaseBeforeExposeConditionType = null;
|
||||
this.PhaseBeforeExposeConditionParameter = null;
|
||||
this.ErosionBattleConditionParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.ErosionBattleConditionParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.ErosionBattleConditionParcelUniqueId = 0;
|
||||
this.ErosionBattleConditionParcelAmount = 0;
|
||||
this.ConquestRewardId = 0;
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum ConquestErosionType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
IndividualErosion = 1,
|
||||
MassErosion = 2,
|
||||
};
|
||||
|
|
|
@ -22,7 +22,7 @@ public struct ConquestEventExcel : IFlatbufferObject
|
|||
|
||||
public long EventContentId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long MainStoryEventContentId { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ConquestEventType ConquestEventType_ { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.ConquestEventType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ConquestEventType.None_; } }
|
||||
public SCHALE.Common.FlatData.ConquestEventType ConquestEventType { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.ConquestEventType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ConquestEventType.None; } }
|
||||
public bool UseErosion { get { int o = __p.__offset(10); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public bool UseUnexpectedEvent { get { int o = __p.__offset(12); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public bool UseCalculate { get { int o = __p.__offset(14); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
|
@ -116,7 +116,7 @@ public struct ConquestEventExcel : IFlatbufferObject
|
|||
public static Offset<SCHALE.Common.FlatData.ConquestEventExcel> CreateConquestEventExcel(FlatBufferBuilder builder,
|
||||
long EventContentId = 0,
|
||||
long MainStoryEventContentId = 0,
|
||||
SCHALE.Common.FlatData.ConquestEventType ConquestEventType_ = SCHALE.Common.FlatData.ConquestEventType.None_,
|
||||
SCHALE.Common.FlatData.ConquestEventType ConquestEventType = SCHALE.Common.FlatData.ConquestEventType.None,
|
||||
bool UseErosion = false,
|
||||
bool UseUnexpectedEvent = false,
|
||||
bool UseCalculate = false,
|
||||
|
@ -162,7 +162,7 @@ public struct ConquestEventExcel : IFlatbufferObject
|
|||
ConquestEventExcel.AddEvnetScenarioBG(builder, EvnetScenarioBGOffset);
|
||||
ConquestEventExcel.AddEvnetMapNameLocalize(builder, EvnetMapNameLocalizeOffset);
|
||||
ConquestEventExcel.AddEvnetMapGoalLocalize(builder, EvnetMapGoalLocalizeOffset);
|
||||
ConquestEventExcel.AddConquestEventType_(builder, ConquestEventType_);
|
||||
ConquestEventExcel.AddConquestEventType(builder, ConquestEventType);
|
||||
ConquestEventExcel.AddUseConquestObject(builder, UseConquestObject);
|
||||
ConquestEventExcel.AddUseCalculate(builder, UseCalculate);
|
||||
ConquestEventExcel.AddUseUnexpectedEvent(builder, UseUnexpectedEvent);
|
||||
|
@ -173,7 +173,7 @@ public struct ConquestEventExcel : IFlatbufferObject
|
|||
public static void StartConquestEventExcel(FlatBufferBuilder builder) { builder.StartTable(26); }
|
||||
public static void AddEventContentId(FlatBufferBuilder builder, long eventContentId) { builder.AddLong(0, eventContentId, 0); }
|
||||
public static void AddMainStoryEventContentId(FlatBufferBuilder builder, long mainStoryEventContentId) { builder.AddLong(1, mainStoryEventContentId, 0); }
|
||||
public static void AddConquestEventType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ConquestEventType conquestEventType_) { builder.AddInt(2, (int)conquestEventType_, 0); }
|
||||
public static void AddConquestEventType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ConquestEventType conquestEventType) { builder.AddInt(2, (int)conquestEventType, 0); }
|
||||
public static void AddUseErosion(FlatBufferBuilder builder, bool useErosion) { builder.AddBool(3, useErosion, false); }
|
||||
public static void AddUseUnexpectedEvent(FlatBufferBuilder builder, bool useUnexpectedEvent) { builder.AddBool(4, useUnexpectedEvent, false); }
|
||||
public static void AddUseCalculate(FlatBufferBuilder builder, bool useCalculate) { builder.AddBool(5, useCalculate, false); }
|
||||
|
@ -210,7 +210,7 @@ public struct ConquestEventExcel : IFlatbufferObject
|
|||
byte[] key = TableEncryptionService.CreateKey("ConquestEvent");
|
||||
_o.EventContentId = TableEncryptionService.Convert(this.EventContentId, key);
|
||||
_o.MainStoryEventContentId = TableEncryptionService.Convert(this.MainStoryEventContentId, key);
|
||||
_o.ConquestEventType_ = TableEncryptionService.Convert(this.ConquestEventType_, key);
|
||||
_o.ConquestEventType = TableEncryptionService.Convert(this.ConquestEventType, key);
|
||||
_o.UseErosion = TableEncryptionService.Convert(this.UseErosion, key);
|
||||
_o.UseUnexpectedEvent = TableEncryptionService.Convert(this.UseUnexpectedEvent, key);
|
||||
_o.UseCalculate = TableEncryptionService.Convert(this.UseCalculate, key);
|
||||
|
@ -252,7 +252,7 @@ public struct ConquestEventExcel : IFlatbufferObject
|
|||
builder,
|
||||
_o.EventContentId,
|
||||
_o.MainStoryEventContentId,
|
||||
_o.ConquestEventType_,
|
||||
_o.ConquestEventType,
|
||||
_o.UseErosion,
|
||||
_o.UseUnexpectedEvent,
|
||||
_o.UseCalculate,
|
||||
|
@ -283,7 +283,7 @@ public class ConquestEventExcelT
|
|||
{
|
||||
public long EventContentId { get; set; }
|
||||
public long MainStoryEventContentId { get; set; }
|
||||
public SCHALE.Common.FlatData.ConquestEventType ConquestEventType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ConquestEventType ConquestEventType { get; set; }
|
||||
public bool UseErosion { get; set; }
|
||||
public bool UseUnexpectedEvent { get; set; }
|
||||
public bool UseCalculate { get; set; }
|
||||
|
@ -311,7 +311,7 @@ public class ConquestEventExcelT
|
|||
public ConquestEventExcelT() {
|
||||
this.EventContentId = 0;
|
||||
this.MainStoryEventContentId = 0;
|
||||
this.ConquestEventType_ = SCHALE.Common.FlatData.ConquestEventType.None_;
|
||||
this.ConquestEventType = SCHALE.Common.FlatData.ConquestEventType.None;
|
||||
this.UseErosion = false;
|
||||
this.UseUnexpectedEvent = false;
|
||||
this.UseCalculate = false;
|
||||
|
@ -346,7 +346,7 @@ static public class ConquestEventExcelVerify
|
|||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*EventContentId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*MainStoryEventContentId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*ConquestEventType_*/, 4 /*SCHALE.Common.FlatData.ConquestEventType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*ConquestEventType*/, 4 /*SCHALE.Common.FlatData.ConquestEventType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*UseErosion*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*UseUnexpectedEvent*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*UseCalculate*/, 1 /*bool*/, 1, false)
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum ConquestEventType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Event01 = 1,
|
||||
Event02 = 2,
|
||||
};
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum ConquestItemType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
EventPoint = 1,
|
||||
EventToken1 = 2,
|
||||
EventToken2 = 3,
|
||||
|
|
|
@ -28,7 +28,7 @@ public struct ConquestMapExcel : IFlatbufferObject
|
|||
public ArraySegment<byte>? GetDevNameBytes() { return __p.__vector_as_arraysegment(6); }
|
||||
#endif
|
||||
public byte[] GetDevNameArray() { return __p.__vector_as_array<byte>(6); }
|
||||
public SCHALE.Common.FlatData.StageDifficulty MapDifficulty { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.StageDifficulty)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StageDifficulty.None_; } }
|
||||
public SCHALE.Common.FlatData.StageDifficulty MapDifficulty { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.StageDifficulty)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StageDifficulty.None; } }
|
||||
public int StepIndex { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public string ConquestMap { get { int o = __p.__offset(12); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
|
@ -81,7 +81,7 @@ public struct ConquestMapExcel : IFlatbufferObject
|
|||
public static Offset<SCHALE.Common.FlatData.ConquestMapExcel> CreateConquestMapExcel(FlatBufferBuilder builder,
|
||||
long EventContentId = 0,
|
||||
StringOffset DevNameOffset = default(StringOffset),
|
||||
SCHALE.Common.FlatData.StageDifficulty MapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None_,
|
||||
SCHALE.Common.FlatData.StageDifficulty MapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None,
|
||||
int StepIndex = 0,
|
||||
StringOffset ConquestMapOffset = default(StringOffset),
|
||||
long StepEnterScenarioGroupId = 0,
|
||||
|
@ -216,7 +216,7 @@ public class ConquestMapExcelT
|
|||
public ConquestMapExcelT() {
|
||||
this.EventContentId = 0;
|
||||
this.DevName = null;
|
||||
this.MapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None_;
|
||||
this.MapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None;
|
||||
this.StepIndex = 0;
|
||||
this.ConquestMap = null;
|
||||
this.StepEnterScenarioGroupId = 0;
|
||||
|
|
|
@ -22,7 +22,7 @@ public struct ConquestObjectExcel : IFlatbufferObject
|
|||
|
||||
public long Id { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long EventContentId { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ConquestObjectType ConquestObjectType_ { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.ConquestObjectType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ConquestObjectType.None_; } }
|
||||
public SCHALE.Common.FlatData.ConquestObjectType ConquestObjectType { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.ConquestObjectType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ConquestObjectType.None; } }
|
||||
public uint Key { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetUint(o + __p.bb_pos) : (uint)0; } }
|
||||
public string Name { get { int o = __p.__offset(12); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
|
@ -38,7 +38,7 @@ public struct ConquestObjectExcel : IFlatbufferObject
|
|||
public ArraySegment<byte>? GetPrefabNameBytes() { return __p.__vector_as_arraysegment(14); }
|
||||
#endif
|
||||
public byte[] GetPrefabNameArray() { return __p.__vector_as_array<byte>(14); }
|
||||
public SCHALE.Common.FlatData.ParcelType ConquestRewardParcelType { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType ConquestRewardParcelType { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long ConquestRewardID { get { int o = __p.__offset(18); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int ConquestRewardAmount { get { int o = __p.__offset(20); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public bool Disposable { get { int o = __p.__offset(22); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
|
@ -48,11 +48,11 @@ public struct ConquestObjectExcel : IFlatbufferObject
|
|||
public static Offset<SCHALE.Common.FlatData.ConquestObjectExcel> CreateConquestObjectExcel(FlatBufferBuilder builder,
|
||||
long Id = 0,
|
||||
long EventContentId = 0,
|
||||
SCHALE.Common.FlatData.ConquestObjectType ConquestObjectType_ = SCHALE.Common.FlatData.ConquestObjectType.None_,
|
||||
SCHALE.Common.FlatData.ConquestObjectType ConquestObjectType = SCHALE.Common.FlatData.ConquestObjectType.None,
|
||||
uint Key = 0,
|
||||
StringOffset NameOffset = default(StringOffset),
|
||||
StringOffset PrefabNameOffset = default(StringOffset),
|
||||
SCHALE.Common.FlatData.ParcelType ConquestRewardParcelType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType ConquestRewardParcelType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long ConquestRewardID = 0,
|
||||
int ConquestRewardAmount = 0,
|
||||
bool Disposable = false,
|
||||
|
@ -69,7 +69,7 @@ public struct ConquestObjectExcel : IFlatbufferObject
|
|||
ConquestObjectExcel.AddPrefabName(builder, PrefabNameOffset);
|
||||
ConquestObjectExcel.AddName(builder, NameOffset);
|
||||
ConquestObjectExcel.AddKey(builder, Key);
|
||||
ConquestObjectExcel.AddConquestObjectType_(builder, ConquestObjectType_);
|
||||
ConquestObjectExcel.AddConquestObjectType(builder, ConquestObjectType);
|
||||
ConquestObjectExcel.AddDisposable(builder, Disposable);
|
||||
return ConquestObjectExcel.EndConquestObjectExcel(builder);
|
||||
}
|
||||
|
@ -77,7 +77,7 @@ public struct ConquestObjectExcel : IFlatbufferObject
|
|||
public static void StartConquestObjectExcel(FlatBufferBuilder builder) { builder.StartTable(12); }
|
||||
public static void AddId(FlatBufferBuilder builder, long id) { builder.AddLong(0, id, 0); }
|
||||
public static void AddEventContentId(FlatBufferBuilder builder, long eventContentId) { builder.AddLong(1, eventContentId, 0); }
|
||||
public static void AddConquestObjectType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ConquestObjectType conquestObjectType_) { builder.AddInt(2, (int)conquestObjectType_, 0); }
|
||||
public static void AddConquestObjectType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ConquestObjectType conquestObjectType) { builder.AddInt(2, (int)conquestObjectType, 0); }
|
||||
public static void AddKey(FlatBufferBuilder builder, uint key) { builder.AddUint(3, key, 0); }
|
||||
public static void AddName(FlatBufferBuilder builder, StringOffset nameOffset) { builder.AddOffset(4, nameOffset.Value, 0); }
|
||||
public static void AddPrefabName(FlatBufferBuilder builder, StringOffset prefabNameOffset) { builder.AddOffset(5, prefabNameOffset.Value, 0); }
|
||||
|
@ -100,7 +100,7 @@ public struct ConquestObjectExcel : IFlatbufferObject
|
|||
byte[] key = TableEncryptionService.CreateKey("ConquestObject");
|
||||
_o.Id = TableEncryptionService.Convert(this.Id, key);
|
||||
_o.EventContentId = TableEncryptionService.Convert(this.EventContentId, key);
|
||||
_o.ConquestObjectType_ = TableEncryptionService.Convert(this.ConquestObjectType_, key);
|
||||
_o.ConquestObjectType = TableEncryptionService.Convert(this.ConquestObjectType, key);
|
||||
_o.Key = TableEncryptionService.Convert(this.Key, key);
|
||||
_o.Name = TableEncryptionService.Convert(this.Name, key);
|
||||
_o.PrefabName = TableEncryptionService.Convert(this.PrefabName, key);
|
||||
|
@ -119,7 +119,7 @@ public struct ConquestObjectExcel : IFlatbufferObject
|
|||
builder,
|
||||
_o.Id,
|
||||
_o.EventContentId,
|
||||
_o.ConquestObjectType_,
|
||||
_o.ConquestObjectType,
|
||||
_o.Key,
|
||||
_Name,
|
||||
_PrefabName,
|
||||
|
@ -136,7 +136,7 @@ public class ConquestObjectExcelT
|
|||
{
|
||||
public long Id { get; set; }
|
||||
public long EventContentId { get; set; }
|
||||
public SCHALE.Common.FlatData.ConquestObjectType ConquestObjectType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ConquestObjectType ConquestObjectType { get; set; }
|
||||
public uint Key { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string PrefabName { get; set; }
|
||||
|
@ -150,11 +150,11 @@ public class ConquestObjectExcelT
|
|||
public ConquestObjectExcelT() {
|
||||
this.Id = 0;
|
||||
this.EventContentId = 0;
|
||||
this.ConquestObjectType_ = SCHALE.Common.FlatData.ConquestObjectType.None_;
|
||||
this.ConquestObjectType = SCHALE.Common.FlatData.ConquestObjectType.None;
|
||||
this.Key = 0;
|
||||
this.Name = null;
|
||||
this.PrefabName = null;
|
||||
this.ConquestRewardParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.ConquestRewardParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.ConquestRewardID = 0;
|
||||
this.ConquestRewardAmount = 0;
|
||||
this.Disposable = false;
|
||||
|
@ -171,7 +171,7 @@ static public class ConquestObjectExcelVerify
|
|||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*Id*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*EventContentId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*ConquestObjectType_*/, 4 /*SCHALE.Common.FlatData.ConquestObjectType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*ConquestObjectType*/, 4 /*SCHALE.Common.FlatData.ConquestObjectType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*Key*/, 4 /*uint*/, 4, false)
|
||||
&& verifier.VerifyString(tablePos, 12 /*Name*/, false)
|
||||
&& verifier.VerifyString(tablePos, 14 /*PrefabName*/, false)
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum ConquestObjectType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
ParcelOneTimePerAccount = 1,
|
||||
};
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ public struct ConquestProgressResourceExcel : IFlatbufferObject
|
|||
|
||||
public long Id { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long EventContentId { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ConquestProgressType Group { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.ConquestProgressType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ConquestProgressType.None_; } }
|
||||
public SCHALE.Common.FlatData.ConquestProgressType Group { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.ConquestProgressType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ConquestProgressType.None; } }
|
||||
public string ProgressResource { get { int o = __p.__offset(10); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
public Span<byte> GetProgressResourceBytes() { return __p.__vector_as_span<byte>(10, 1); }
|
||||
|
@ -49,7 +49,7 @@ public struct ConquestProgressResourceExcel : IFlatbufferObject
|
|||
public static Offset<SCHALE.Common.FlatData.ConquestProgressResourceExcel> CreateConquestProgressResourceExcel(FlatBufferBuilder builder,
|
||||
long Id = 0,
|
||||
long EventContentId = 0,
|
||||
SCHALE.Common.FlatData.ConquestProgressType Group = SCHALE.Common.FlatData.ConquestProgressType.None_,
|
||||
SCHALE.Common.FlatData.ConquestProgressType Group = SCHALE.Common.FlatData.ConquestProgressType.None,
|
||||
StringOffset ProgressResourceOffset = default(StringOffset),
|
||||
VectorOffset VoiceIdOffset = default(VectorOffset),
|
||||
StringOffset ProgressLocalizeCodeOffset = default(StringOffset)) {
|
||||
|
@ -126,7 +126,7 @@ public class ConquestProgressResourceExcelT
|
|||
public ConquestProgressResourceExcelT() {
|
||||
this.Id = 0;
|
||||
this.EventContentId = 0;
|
||||
this.Group = SCHALE.Common.FlatData.ConquestProgressType.None_;
|
||||
this.Group = SCHALE.Common.FlatData.ConquestProgressType.None;
|
||||
this.ProgressResource = null;
|
||||
this.VoiceId = null;
|
||||
this.ProgressLocalizeCode = null;
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum ConquestProgressType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Upgrade = 1,
|
||||
Manage = 2,
|
||||
};
|
||||
|
|
|
@ -21,18 +21,18 @@ public struct ConquestRewardExcel : IFlatbufferObject
|
|||
public ConquestRewardExcel __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 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 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<SCHALE.Common.FlatData.ConquestRewardExcel> CreateConquestRewardExcel(FlatBufferBuilder builder,
|
||||
long GroupId = 0,
|
||||
SCHALE.Common.FlatData.RewardTag RewardTag_ = SCHALE.Common.FlatData.RewardTag.Default,
|
||||
SCHALE.Common.FlatData.RewardTag RewardTag = SCHALE.Common.FlatData.RewardTag.Default,
|
||||
int RewardProb = 0,
|
||||
SCHALE.Common.FlatData.ParcelType RewardParcelType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType RewardParcelType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long RewardId = 0,
|
||||
int RewardAmount = 0,
|
||||
bool IsDisplayed = false) {
|
||||
|
@ -42,14 +42,14 @@ public struct ConquestRewardExcel : IFlatbufferObject
|
|||
ConquestRewardExcel.AddRewardAmount(builder, RewardAmount);
|
||||
ConquestRewardExcel.AddRewardParcelType(builder, RewardParcelType);
|
||||
ConquestRewardExcel.AddRewardProb(builder, RewardProb);
|
||||
ConquestRewardExcel.AddRewardTag_(builder, RewardTag_);
|
||||
ConquestRewardExcel.AddRewardTag(builder, RewardTag);
|
||||
ConquestRewardExcel.AddIsDisplayed(builder, IsDisplayed);
|
||||
return ConquestRewardExcel.EndConquestRewardExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartConquestRewardExcel(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 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); }
|
||||
|
@ -67,7 +67,7 @@ public struct ConquestRewardExcel : IFlatbufferObject
|
|||
public void UnPackTo(ConquestRewardExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("ConquestReward");
|
||||
_o.GroupId = TableEncryptionService.Convert(this.GroupId, key);
|
||||
_o.RewardTag_ = TableEncryptionService.Convert(this.RewardTag_, 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);
|
||||
|
@ -79,7 +79,7 @@ public struct ConquestRewardExcel : IFlatbufferObject
|
|||
return CreateConquestRewardExcel(
|
||||
builder,
|
||||
_o.GroupId,
|
||||
_o.RewardTag_,
|
||||
_o.RewardTag,
|
||||
_o.RewardProb,
|
||||
_o.RewardParcelType,
|
||||
_o.RewardId,
|
||||
|
@ -91,7 +91,7 @@ public struct ConquestRewardExcel : IFlatbufferObject
|
|||
public class ConquestRewardExcelT
|
||||
{
|
||||
public long GroupId { get; set; }
|
||||
public SCHALE.Common.FlatData.RewardTag RewardTag_ { 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; }
|
||||
|
@ -100,9 +100,9 @@ public class ConquestRewardExcelT
|
|||
|
||||
public ConquestRewardExcelT() {
|
||||
this.GroupId = 0;
|
||||
this.RewardTag_ = SCHALE.Common.FlatData.RewardTag.Default;
|
||||
this.RewardTag = SCHALE.Common.FlatData.RewardTag.Default;
|
||||
this.RewardProb = 0;
|
||||
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.RewardId = 0;
|
||||
this.RewardAmount = 0;
|
||||
this.IsDisplayed = false;
|
||||
|
@ -116,7 +116,7 @@ static public class ConquestRewardExcelVerify
|
|||
{
|
||||
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, 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)
|
||||
|
|
|
@ -21,7 +21,7 @@ public struct ConquestStepExcel : IFlatbufferObject
|
|||
public ConquestStepExcel __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 SCHALE.Common.FlatData.StageDifficulty MapDifficulty { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.StageDifficulty)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StageDifficulty.None_; } }
|
||||
public SCHALE.Common.FlatData.StageDifficulty MapDifficulty { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.StageDifficulty)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StageDifficulty.None; } }
|
||||
public int Step { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public string StepGoalLocalize { get { int o = __p.__offset(10); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
|
@ -31,7 +31,7 @@ public struct ConquestStepExcel : IFlatbufferObject
|
|||
#endif
|
||||
public byte[] GetStepGoalLocalizeArray() { return __p.__vector_as_array<byte>(10); }
|
||||
public long StepEnterScenarioGroupId { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType StepEnterItemType { get { int o = __p.__offset(14); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType StepEnterItemType { get { int o = __p.__offset(14); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long StepEnterItemUniqueId { get { int o = __p.__offset(16); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long StepEnterItemAmount { get { int o = __p.__offset(18); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long UnexpectedEventUnitId(int j) { int o = __p.__offset(20); return o != 0 ? __p.bb.GetLong(__p.__vector(o) + j * 8) : (long)0; }
|
||||
|
@ -54,11 +54,11 @@ public struct ConquestStepExcel : IFlatbufferObject
|
|||
|
||||
public static Offset<SCHALE.Common.FlatData.ConquestStepExcel> CreateConquestStepExcel(FlatBufferBuilder builder,
|
||||
long EventContentId = 0,
|
||||
SCHALE.Common.FlatData.StageDifficulty MapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None_,
|
||||
SCHALE.Common.FlatData.StageDifficulty MapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None,
|
||||
int Step = 0,
|
||||
StringOffset StepGoalLocalizeOffset = default(StringOffset),
|
||||
long StepEnterScenarioGroupId = 0,
|
||||
SCHALE.Common.FlatData.ParcelType StepEnterItemType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType StepEnterItemType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long StepEnterItemUniqueId = 0,
|
||||
long StepEnterItemAmount = 0,
|
||||
VectorOffset UnexpectedEventUnitIdOffset = default(VectorOffset),
|
||||
|
@ -167,11 +167,11 @@ public class ConquestStepExcelT
|
|||
|
||||
public ConquestStepExcelT() {
|
||||
this.EventContentId = 0;
|
||||
this.MapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None_;
|
||||
this.MapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None;
|
||||
this.Step = 0;
|
||||
this.StepGoalLocalize = null;
|
||||
this.StepEnterScenarioGroupId = 0;
|
||||
this.StepEnterItemType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.StepEnterItemType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.StepEnterItemUniqueId = 0;
|
||||
this.StepEnterItemAmount = 0;
|
||||
this.UnexpectedEventUnitId = null;
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum ConquestTeamType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Team1 = 1,
|
||||
Team2 = 2,
|
||||
Team3 = 3,
|
||||
|
|
|
@ -52,21 +52,21 @@ public struct ConquestTileExcel : IFlatbufferObject
|
|||
#endif
|
||||
public byte[] GetTileImageNameArray() { return __p.__vector_as_array<byte>(16); }
|
||||
public bool Playable { get { int o = __p.__offset(18); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public SCHALE.Common.FlatData.ConquestTileType TileType { get { int o = __p.__offset(20); return o != 0 ? (SCHALE.Common.FlatData.ConquestTileType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ConquestTileType.None_; } }
|
||||
public SCHALE.Common.FlatData.ConquestTileType TileType { get { int o = __p.__offset(20); return o != 0 ? (SCHALE.Common.FlatData.ConquestTileType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ConquestTileType.None; } }
|
||||
public bool NotMapFog { get { int o = __p.__offset(22); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public long GroupBonusId { get { int o = __p.__offset(24); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType ConquestCostType { get { int o = __p.__offset(26); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType ConquestCostType { get { int o = __p.__offset(26); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long ConquestCostId { get { int o = __p.__offset(28); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int ConquestCostAmount { get { int o = __p.__offset(30); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType ManageCostType { get { int o = __p.__offset(32); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType ManageCostType { get { int o = __p.__offset(32); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long ManageCostId { get { int o = __p.__offset(34); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int ManageCostAmount { get { int o = __p.__offset(36); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public long ConquestRewardId { get { int o = __p.__offset(38); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long MassErosionId { get { int o = __p.__offset(40); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType Upgrade2CostType { get { int o = __p.__offset(42); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType Upgrade2CostType { get { int o = __p.__offset(42); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long Upgrade2CostId { get { int o = __p.__offset(44); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int Upgrade2CostAmount { get { int o = __p.__offset(46); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType Upgrade3CostType { get { int o = __p.__offset(48); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType Upgrade3CostType { get { int o = __p.__offset(48); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long Upgrade3CostId { get { int o = __p.__offset(50); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int Upgrade3CostAmount { get { int o = __p.__offset(52); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
|
||||
|
@ -79,21 +79,21 @@ public struct ConquestTileExcel : IFlatbufferObject
|
|||
StringOffset TileNameLocalizeOffset = default(StringOffset),
|
||||
StringOffset TileImageNameOffset = default(StringOffset),
|
||||
bool Playable = false,
|
||||
SCHALE.Common.FlatData.ConquestTileType TileType = SCHALE.Common.FlatData.ConquestTileType.None_,
|
||||
SCHALE.Common.FlatData.ConquestTileType TileType = SCHALE.Common.FlatData.ConquestTileType.None,
|
||||
bool NotMapFog = false,
|
||||
long GroupBonusId = 0,
|
||||
SCHALE.Common.FlatData.ParcelType ConquestCostType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType ConquestCostType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long ConquestCostId = 0,
|
||||
int ConquestCostAmount = 0,
|
||||
SCHALE.Common.FlatData.ParcelType ManageCostType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType ManageCostType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long ManageCostId = 0,
|
||||
int ManageCostAmount = 0,
|
||||
long ConquestRewardId = 0,
|
||||
long MassErosionId = 0,
|
||||
SCHALE.Common.FlatData.ParcelType Upgrade2CostType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType Upgrade2CostType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long Upgrade2CostId = 0,
|
||||
int Upgrade2CostAmount = 0,
|
||||
SCHALE.Common.FlatData.ParcelType Upgrade3CostType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType Upgrade3CostType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long Upgrade3CostId = 0,
|
||||
int Upgrade3CostAmount = 0) {
|
||||
builder.StartTable(25);
|
||||
|
@ -261,21 +261,21 @@ public class ConquestTileExcelT
|
|||
this.TileNameLocalize = null;
|
||||
this.TileImageName = null;
|
||||
this.Playable = false;
|
||||
this.TileType = SCHALE.Common.FlatData.ConquestTileType.None_;
|
||||
this.TileType = SCHALE.Common.FlatData.ConquestTileType.None;
|
||||
this.NotMapFog = false;
|
||||
this.GroupBonusId = 0;
|
||||
this.ConquestCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.ConquestCostType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.ConquestCostId = 0;
|
||||
this.ConquestCostAmount = 0;
|
||||
this.ManageCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.ManageCostType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.ManageCostId = 0;
|
||||
this.ManageCostAmount = 0;
|
||||
this.ConquestRewardId = 0;
|
||||
this.MassErosionId = 0;
|
||||
this.Upgrade2CostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.Upgrade2CostType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.Upgrade2CostId = 0;
|
||||
this.Upgrade2CostAmount = 0;
|
||||
this.Upgrade3CostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.Upgrade3CostType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.Upgrade3CostId = 0;
|
||||
this.Upgrade3CostAmount = 0;
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum ConquestTileType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Start = 1,
|
||||
Normal = 2,
|
||||
Battle = 3,
|
||||
|
|
|
@ -21,7 +21,7 @@ public struct ConquestUnexpectedEventExcel : IFlatbufferObject
|
|||
public ConquestUnexpectedEventExcel __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 SCHALE.Common.FlatData.ParcelType UnexpectedEventConditionType { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType UnexpectedEventConditionType { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long UnexpectedEventConditionUniqueId { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long UnexpectedEventConditionAmount { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int UnexpectedEventOccurDailyLimitCount { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
|
@ -39,7 +39,7 @@ public struct ConquestUnexpectedEventExcel : IFlatbufferObject
|
|||
|
||||
public static Offset<SCHALE.Common.FlatData.ConquestUnexpectedEventExcel> CreateConquestUnexpectedEventExcel(FlatBufferBuilder builder,
|
||||
long EventContentId = 0,
|
||||
SCHALE.Common.FlatData.ParcelType UnexpectedEventConditionType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType UnexpectedEventConditionType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long UnexpectedEventConditionUniqueId = 0,
|
||||
long UnexpectedEventConditionAmount = 0,
|
||||
int UnexpectedEventOccurDailyLimitCount = 0,
|
||||
|
@ -138,7 +138,7 @@ public class ConquestUnexpectedEventExcelT
|
|||
|
||||
public ConquestUnexpectedEventExcelT() {
|
||||
this.EventContentId = 0;
|
||||
this.UnexpectedEventConditionType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.UnexpectedEventConditionType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.UnexpectedEventConditionUniqueId = 0;
|
||||
this.UnexpectedEventConditionAmount = 0;
|
||||
this.UnexpectedEventOccurDailyLimitCount = 0;
|
||||
|
|
|
@ -59,8 +59,8 @@ public struct ConquestUnitExcel : IFlatbufferObject
|
|||
public ArraySegment<byte>? GetPointAnimationBytes() { return __p.__vector_as_arraysegment(20); }
|
||||
#endif
|
||||
public byte[] GetPointAnimationArray() { return __p.__vector_as_array<byte>(20); }
|
||||
public SCHALE.Common.FlatData.ConquestEnemyType EnemyType { get { int o = __p.__offset(22); return o != 0 ? (SCHALE.Common.FlatData.ConquestEnemyType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ConquestEnemyType.None_; } }
|
||||
public SCHALE.Common.FlatData.ConquestTeamType Team { get { int o = __p.__offset(24); return o != 0 ? (SCHALE.Common.FlatData.ConquestTeamType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ConquestTeamType.None_; } }
|
||||
public SCHALE.Common.FlatData.ConquestEnemyType EnemyType { get { int o = __p.__offset(22); return o != 0 ? (SCHALE.Common.FlatData.ConquestEnemyType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ConquestEnemyType.None; } }
|
||||
public SCHALE.Common.FlatData.ConquestTeamType Team { get { int o = __p.__offset(24); return o != 0 ? (SCHALE.Common.FlatData.ConquestTeamType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ConquestTeamType.None; } }
|
||||
public long UnitGroup { get { int o = __p.__offset(26); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long PrevUnitGroup { get { int o = __p.__offset(28); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long BattleDuration { get { int o = __p.__offset(30); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
@ -82,20 +82,20 @@ public struct ConquestUnitExcel : IFlatbufferObject
|
|||
#endif
|
||||
public int[] GetStarGoalAmountArray() { return __p.__vector_as_array<int>(36); }
|
||||
public long GroupBuffId { get { int o = __p.__offset(38); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType StageEnterCostType { get { int o = __p.__offset(40); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType StageEnterCostType { get { int o = __p.__offset(40); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long StageEnterCostId { get { int o = __p.__offset(42); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int StageEnterCostAmount { get { int o = __p.__offset(44); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType ManageEchelonStageEnterCostType { get { int o = __p.__offset(46); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType ManageEchelonStageEnterCostType { get { int o = __p.__offset(46); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long ManageEchelonStageEnterCostId { get { int o = __p.__offset(48); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int ManageEchelonStageEnterCostAmount { get { int o = __p.__offset(50); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public long EnterScenarioGroupId { get { int o = __p.__offset(52); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long ClearScenarioGroupId { get { int o = __p.__offset(54); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long ConquestRewardId { get { int o = __p.__offset(56); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.StageTopography StageTopography_ { get { int o = __p.__offset(58); return o != 0 ? (SCHALE.Common.FlatData.StageTopography)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StageTopography.Street; } }
|
||||
public SCHALE.Common.FlatData.StageTopography StageTopography { get { int o = __p.__offset(58); return o != 0 ? (SCHALE.Common.FlatData.StageTopography)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StageTopography.Street; } }
|
||||
public int RecommandLevel { get { int o = __p.__offset(60); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public long TacticRewardExp { get { int o = __p.__offset(62); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long FixedEchelonId { get { int o = __p.__offset(64); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType_ { get { int o = __p.__offset(66); return o != 0 ? (SCHALE.Common.FlatData.EchelonExtensionType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EchelonExtensionType.Base; } }
|
||||
public SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType { get { int o = __p.__offset(66); return o != 0 ? (SCHALE.Common.FlatData.EchelonExtensionType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EchelonExtensionType.Base; } }
|
||||
|
||||
public static Offset<SCHALE.Common.FlatData.ConquestUnitExcel> CreateConquestUnitExcel(FlatBufferBuilder builder,
|
||||
long Id = 0,
|
||||
|
@ -107,8 +107,8 @@ public struct ConquestUnitExcel : IFlatbufferObject
|
|||
float ShieldEffectScale = 0.0f,
|
||||
StringOffset UnitFxPrefabNameOffset = default(StringOffset),
|
||||
StringOffset PointAnimationOffset = default(StringOffset),
|
||||
SCHALE.Common.FlatData.ConquestEnemyType EnemyType = SCHALE.Common.FlatData.ConquestEnemyType.None_,
|
||||
SCHALE.Common.FlatData.ConquestTeamType Team = SCHALE.Common.FlatData.ConquestTeamType.None_,
|
||||
SCHALE.Common.FlatData.ConquestEnemyType EnemyType = SCHALE.Common.FlatData.ConquestEnemyType.None,
|
||||
SCHALE.Common.FlatData.ConquestTeamType Team = SCHALE.Common.FlatData.ConquestTeamType.None,
|
||||
long UnitGroup = 0,
|
||||
long PrevUnitGroup = 0,
|
||||
long BattleDuration = 0,
|
||||
|
@ -116,20 +116,20 @@ public struct ConquestUnitExcel : IFlatbufferObject
|
|||
VectorOffset StarGoalOffset = default(VectorOffset),
|
||||
VectorOffset StarGoalAmountOffset = default(VectorOffset),
|
||||
long GroupBuffId = 0,
|
||||
SCHALE.Common.FlatData.ParcelType StageEnterCostType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType StageEnterCostType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long StageEnterCostId = 0,
|
||||
int StageEnterCostAmount = 0,
|
||||
SCHALE.Common.FlatData.ParcelType ManageEchelonStageEnterCostType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType ManageEchelonStageEnterCostType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long ManageEchelonStageEnterCostId = 0,
|
||||
int ManageEchelonStageEnterCostAmount = 0,
|
||||
long EnterScenarioGroupId = 0,
|
||||
long ClearScenarioGroupId = 0,
|
||||
long ConquestRewardId = 0,
|
||||
SCHALE.Common.FlatData.StageTopography StageTopography_ = SCHALE.Common.FlatData.StageTopography.Street,
|
||||
SCHALE.Common.FlatData.StageTopography StageTopography = SCHALE.Common.FlatData.StageTopography.Street,
|
||||
int RecommandLevel = 0,
|
||||
long TacticRewardExp = 0,
|
||||
long FixedEchelonId = 0,
|
||||
SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType_ = SCHALE.Common.FlatData.EchelonExtensionType.Base) {
|
||||
SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType = SCHALE.Common.FlatData.EchelonExtensionType.Base) {
|
||||
builder.StartTable(32);
|
||||
ConquestUnitExcel.AddFixedEchelonId(builder, FixedEchelonId);
|
||||
ConquestUnitExcel.AddTacticRewardExp(builder, TacticRewardExp);
|
||||
|
@ -144,9 +144,9 @@ public struct ConquestUnitExcel : IFlatbufferObject
|
|||
ConquestUnitExcel.AddPrevUnitGroup(builder, PrevUnitGroup);
|
||||
ConquestUnitExcel.AddUnitGroup(builder, UnitGroup);
|
||||
ConquestUnitExcel.AddId(builder, Id);
|
||||
ConquestUnitExcel.AddEchelonExtensionType_(builder, EchelonExtensionType_);
|
||||
ConquestUnitExcel.AddEchelonExtensionType(builder, EchelonExtensionType);
|
||||
ConquestUnitExcel.AddRecommandLevel(builder, RecommandLevel);
|
||||
ConquestUnitExcel.AddStageTopography_(builder, StageTopography_);
|
||||
ConquestUnitExcel.AddStageTopography(builder, StageTopography);
|
||||
ConquestUnitExcel.AddManageEchelonStageEnterCostAmount(builder, ManageEchelonStageEnterCostAmount);
|
||||
ConquestUnitExcel.AddManageEchelonStageEnterCostType(builder, ManageEchelonStageEnterCostType);
|
||||
ConquestUnitExcel.AddStageEnterCostAmount(builder, StageEnterCostAmount);
|
||||
|
@ -204,11 +204,11 @@ public struct ConquestUnitExcel : IFlatbufferObject
|
|||
public static void AddEnterScenarioGroupId(FlatBufferBuilder builder, long enterScenarioGroupId) { builder.AddLong(24, enterScenarioGroupId, 0); }
|
||||
public static void AddClearScenarioGroupId(FlatBufferBuilder builder, long clearScenarioGroupId) { builder.AddLong(25, clearScenarioGroupId, 0); }
|
||||
public static void AddConquestRewardId(FlatBufferBuilder builder, long conquestRewardId) { builder.AddLong(26, conquestRewardId, 0); }
|
||||
public static void AddStageTopography_(FlatBufferBuilder builder, SCHALE.Common.FlatData.StageTopography stageTopography_) { builder.AddInt(27, (int)stageTopography_, 0); }
|
||||
public static void AddStageTopography(FlatBufferBuilder builder, SCHALE.Common.FlatData.StageTopography stageTopography) { builder.AddInt(27, (int)stageTopography, 0); }
|
||||
public static void AddRecommandLevel(FlatBufferBuilder builder, int recommandLevel) { builder.AddInt(28, recommandLevel, 0); }
|
||||
public static void AddTacticRewardExp(FlatBufferBuilder builder, long tacticRewardExp) { builder.AddLong(29, tacticRewardExp, 0); }
|
||||
public static void AddFixedEchelonId(FlatBufferBuilder builder, long fixedEchelonId) { builder.AddLong(30, fixedEchelonId, 0); }
|
||||
public static void AddEchelonExtensionType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.EchelonExtensionType echelonExtensionType_) { builder.AddInt(31, (int)echelonExtensionType_, 0); }
|
||||
public static void AddEchelonExtensionType(FlatBufferBuilder builder, SCHALE.Common.FlatData.EchelonExtensionType echelonExtensionType) { builder.AddInt(31, (int)echelonExtensionType, 0); }
|
||||
public static Offset<SCHALE.Common.FlatData.ConquestUnitExcel> EndConquestUnitExcel(FlatBufferBuilder builder) {
|
||||
int o = builder.EndTable();
|
||||
return new Offset<SCHALE.Common.FlatData.ConquestUnitExcel>(o);
|
||||
|
@ -249,11 +249,11 @@ public struct ConquestUnitExcel : IFlatbufferObject
|
|||
_o.EnterScenarioGroupId = TableEncryptionService.Convert(this.EnterScenarioGroupId, key);
|
||||
_o.ClearScenarioGroupId = TableEncryptionService.Convert(this.ClearScenarioGroupId, key);
|
||||
_o.ConquestRewardId = TableEncryptionService.Convert(this.ConquestRewardId, key);
|
||||
_o.StageTopography_ = TableEncryptionService.Convert(this.StageTopography_, key);
|
||||
_o.StageTopography = TableEncryptionService.Convert(this.StageTopography, key);
|
||||
_o.RecommandLevel = TableEncryptionService.Convert(this.RecommandLevel, key);
|
||||
_o.TacticRewardExp = TableEncryptionService.Convert(this.TacticRewardExp, key);
|
||||
_o.FixedEchelonId = TableEncryptionService.Convert(this.FixedEchelonId, key);
|
||||
_o.EchelonExtensionType_ = TableEncryptionService.Convert(this.EchelonExtensionType_, key);
|
||||
_o.EchelonExtensionType = TableEncryptionService.Convert(this.EchelonExtensionType, key);
|
||||
}
|
||||
public static Offset<SCHALE.Common.FlatData.ConquestUnitExcel> Pack(FlatBufferBuilder builder, ConquestUnitExcelT _o) {
|
||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.ConquestUnitExcel>);
|
||||
|
@ -301,11 +301,11 @@ public struct ConquestUnitExcel : IFlatbufferObject
|
|||
_o.EnterScenarioGroupId,
|
||||
_o.ClearScenarioGroupId,
|
||||
_o.ConquestRewardId,
|
||||
_o.StageTopography_,
|
||||
_o.StageTopography,
|
||||
_o.RecommandLevel,
|
||||
_o.TacticRewardExp,
|
||||
_o.FixedEchelonId,
|
||||
_o.EchelonExtensionType_);
|
||||
_o.EchelonExtensionType);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -338,11 +338,11 @@ public class ConquestUnitExcelT
|
|||
public long EnterScenarioGroupId { get; set; }
|
||||
public long ClearScenarioGroupId { get; set; }
|
||||
public long ConquestRewardId { get; set; }
|
||||
public SCHALE.Common.FlatData.StageTopography StageTopography_ { get; set; }
|
||||
public SCHALE.Common.FlatData.StageTopography StageTopography { get; set; }
|
||||
public int RecommandLevel { get; set; }
|
||||
public long TacticRewardExp { get; set; }
|
||||
public long FixedEchelonId { get; set; }
|
||||
public SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType { get; set; }
|
||||
|
||||
public ConquestUnitExcelT() {
|
||||
this.Id = 0;
|
||||
|
@ -354,8 +354,8 @@ public class ConquestUnitExcelT
|
|||
this.ShieldEffectScale = 0.0f;
|
||||
this.UnitFxPrefabName = null;
|
||||
this.PointAnimation = null;
|
||||
this.EnemyType = SCHALE.Common.FlatData.ConquestEnemyType.None_;
|
||||
this.Team = SCHALE.Common.FlatData.ConquestTeamType.None_;
|
||||
this.EnemyType = SCHALE.Common.FlatData.ConquestEnemyType.None;
|
||||
this.Team = SCHALE.Common.FlatData.ConquestTeamType.None;
|
||||
this.UnitGroup = 0;
|
||||
this.PrevUnitGroup = 0;
|
||||
this.BattleDuration = 0;
|
||||
|
@ -363,20 +363,20 @@ public class ConquestUnitExcelT
|
|||
this.StarGoal = null;
|
||||
this.StarGoalAmount = null;
|
||||
this.GroupBuffId = 0;
|
||||
this.StageEnterCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.StageEnterCostType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.StageEnterCostId = 0;
|
||||
this.StageEnterCostAmount = 0;
|
||||
this.ManageEchelonStageEnterCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.ManageEchelonStageEnterCostType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.ManageEchelonStageEnterCostId = 0;
|
||||
this.ManageEchelonStageEnterCostAmount = 0;
|
||||
this.EnterScenarioGroupId = 0;
|
||||
this.ClearScenarioGroupId = 0;
|
||||
this.ConquestRewardId = 0;
|
||||
this.StageTopography_ = SCHALE.Common.FlatData.StageTopography.Street;
|
||||
this.StageTopography = SCHALE.Common.FlatData.StageTopography.Street;
|
||||
this.RecommandLevel = 0;
|
||||
this.TacticRewardExp = 0;
|
||||
this.FixedEchelonId = 0;
|
||||
this.EchelonExtensionType_ = SCHALE.Common.FlatData.EchelonExtensionType.Base;
|
||||
this.EchelonExtensionType = SCHALE.Common.FlatData.EchelonExtensionType.Base;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -413,11 +413,11 @@ static public class ConquestUnitExcelVerify
|
|||
&& verifier.VerifyField(tablePos, 52 /*EnterScenarioGroupId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 54 /*ClearScenarioGroupId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 56 /*ConquestRewardId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 58 /*StageTopography_*/, 4 /*SCHALE.Common.FlatData.StageTopography*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 58 /*StageTopography*/, 4 /*SCHALE.Common.FlatData.StageTopography*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 60 /*RecommandLevel*/, 4 /*int*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 62 /*TacticRewardExp*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 64 /*FixedEchelonId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 66 /*EchelonExtensionType_*/, 4 /*SCHALE.Common.FlatData.EchelonExtensionType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 66 /*EchelonExtensionType*/, 4 /*SCHALE.Common.FlatData.EchelonExtensionType*/, 4, false)
|
||||
&& verifier.VerifyTableEnd(tablePos);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -26,7 +26,7 @@ public struct ConstArenaExcel : IFlatbufferObject
|
|||
public long TSSStartCoolTime { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long EndAlarm { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long TimeRewardMaxAmount { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType EnterCostType { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType EnterCostType { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long EnterCostId { get { int o = __p.__offset(18); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long TicketCost { get { int o = __p.__offset(20); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public string DailyRewardResetTime { get { int o = __p.__offset(22); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
|
@ -134,7 +134,7 @@ public struct ConstArenaExcel : IFlatbufferObject
|
|||
long TSSStartCoolTime = 0,
|
||||
long EndAlarm = 0,
|
||||
long TimeRewardMaxAmount = 0,
|
||||
SCHALE.Common.FlatData.ParcelType EnterCostType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType EnterCostType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long EnterCostId = 0,
|
||||
long TicketCost = 0,
|
||||
StringOffset DailyRewardResetTimeOffset = default(StringOffset),
|
||||
|
@ -443,7 +443,7 @@ public class ConstArenaExcelT
|
|||
this.TSSStartCoolTime = 0;
|
||||
this.EndAlarm = 0;
|
||||
this.TimeRewardMaxAmount = 0;
|
||||
this.EnterCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.EnterCostType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.EnterCostId = 0;
|
||||
this.TicketCost = 0;
|
||||
this.DailyRewardResetTime = null;
|
||||
|
|
|
@ -74,7 +74,7 @@ public struct ConstCommonExcel : IFlatbufferObject
|
|||
public int ShiftingCraftSlotMaxCapacity { get { int o = __p.__offset(78); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public int CraftTicketItemUniqueId { get { int o = __p.__offset(80); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public int CraftTicketConsumeAmount { get { int o = __p.__offset(82); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType AcademyEnterCostType { get { int o = __p.__offset(84); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType AcademyEnterCostType { get { int o = __p.__offset(84); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long AcademyEnterCostId { get { int o = __p.__offset(86); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int AcademyTicketCost { get { int o = __p.__offset(88); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public int MassangerMessageExpireDay { get { int o = __p.__offset(90); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
|
@ -156,7 +156,7 @@ public struct ConstCommonExcel : IFlatbufferObject
|
|||
public int WeaponLvUpCoefficient { get { int o = __p.__offset(202); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public int ShowRaidMyListCount { get { int o = __p.__offset(204); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public int MaxLevelExpMasterCoinRatio { get { int o = __p.__offset(206); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType RaidEnterCostType { get { int o = __p.__offset(208); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType RaidEnterCostType { get { int o = __p.__offset(208); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long RaidEnterCostId { get { int o = __p.__offset(210); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long RaidTicketCost { get { int o = __p.__offset(212); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public string TimeAttackDungeonScenarioId { get { int o = __p.__offset(214); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
|
@ -167,7 +167,7 @@ public struct ConstCommonExcel : IFlatbufferObject
|
|||
#endif
|
||||
public byte[] GetTimeAttackDungeonScenarioIdArray() { return __p.__vector_as_array<byte>(214); }
|
||||
public int TimeAttackDungoenPlayCountPerTicket { get { int o = __p.__offset(216); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType TimeAttackDungeonEnterCostType { get { int o = __p.__offset(218); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType TimeAttackDungeonEnterCostType { get { int o = __p.__offset(218); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long TimeAttackDungeonEnterCostId { get { int o = __p.__offset(220); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long TimeAttackDungeonEnterCost { get { int o = __p.__offset(222); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long ClanLeaderTransferLastLoginLimit { get { int o = __p.__offset(224); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
@ -219,7 +219,7 @@ public struct ConstCommonExcel : IFlatbufferObject
|
|||
#endif
|
||||
public byte[] GetBirthdayMailStartDateArray() { return __p.__vector_as_array<byte>(292); }
|
||||
public int BirthdayMailRemainDate { get { int o = __p.__offset(294); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType BirthdayMailParcelType { get { int o = __p.__offset(296); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType BirthdayMailParcelType { get { int o = __p.__offset(296); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long BirthdayMailParcelId { get { int o = __p.__offset(298); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int BirthdayMailParcelAmount { get { int o = __p.__offset(300); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public int ClearDeckAverageDeckCount { get { int o = __p.__offset(302); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
|
@ -1006,7 +1006,7 @@ public class ConstCommonExcelT
|
|||
this.ShiftingCraftSlotMaxCapacity = 0;
|
||||
this.CraftTicketItemUniqueId = 0;
|
||||
this.CraftTicketConsumeAmount = 0;
|
||||
this.AcademyEnterCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.AcademyEnterCostType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.AcademyEnterCostId = 0;
|
||||
this.AcademyTicketCost = 0;
|
||||
this.MassangerMessageExpireDay = 0;
|
||||
|
@ -1068,12 +1068,12 @@ public class ConstCommonExcelT
|
|||
this.WeaponLvUpCoefficient = 0;
|
||||
this.ShowRaidMyListCount = 0;
|
||||
this.MaxLevelExpMasterCoinRatio = 0;
|
||||
this.RaidEnterCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.RaidEnterCostType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.RaidEnterCostId = 0;
|
||||
this.RaidTicketCost = 0;
|
||||
this.TimeAttackDungeonScenarioId = null;
|
||||
this.TimeAttackDungoenPlayCountPerTicket = 0;
|
||||
this.TimeAttackDungeonEnterCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.TimeAttackDungeonEnterCostType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.TimeAttackDungeonEnterCostId = 0;
|
||||
this.TimeAttackDungeonEnterCost = 0;
|
||||
this.ClanLeaderTransferLastLoginLimit = 0;
|
||||
|
@ -1112,7 +1112,7 @@ public class ConstCommonExcelT
|
|||
this.EmblemDefaultId = 0;
|
||||
this.BirthdayMailStartDate = null;
|
||||
this.BirthdayMailRemainDate = 0;
|
||||
this.BirthdayMailParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.BirthdayMailParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.BirthdayMailParcelId = 0;
|
||||
this.BirthdayMailParcelAmount = 0;
|
||||
this.ClearDeckAverageDeckCount = 0;
|
||||
|
|
|
@ -21,17 +21,17 @@ public struct ContentEnterCostReduceExcel : IFlatbufferObject
|
|||
public ContentEnterCostReduceExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public long EnterCostReduceGroupId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ContentType ContentType_ { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.ContentType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ContentType.None_; } }
|
||||
public SCHALE.Common.FlatData.ContentType ContentType { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.ContentType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ContentType.None; } }
|
||||
public long StageId { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType ReduceEnterCostType { 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 SCHALE.Common.FlatData.ParcelType ReduceEnterCostType { 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 ReduceEnterCostId { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long ReduceAmount { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
||||
public static Offset<SCHALE.Common.FlatData.ContentEnterCostReduceExcel> CreateContentEnterCostReduceExcel(FlatBufferBuilder builder,
|
||||
long EnterCostReduceGroupId = 0,
|
||||
SCHALE.Common.FlatData.ContentType ContentType_ = SCHALE.Common.FlatData.ContentType.None_,
|
||||
SCHALE.Common.FlatData.ContentType ContentType = SCHALE.Common.FlatData.ContentType.None,
|
||||
long StageId = 0,
|
||||
SCHALE.Common.FlatData.ParcelType ReduceEnterCostType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType ReduceEnterCostType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long ReduceEnterCostId = 0,
|
||||
long ReduceAmount = 0) {
|
||||
builder.StartTable(6);
|
||||
|
@ -40,13 +40,13 @@ public struct ContentEnterCostReduceExcel : IFlatbufferObject
|
|||
ContentEnterCostReduceExcel.AddStageId(builder, StageId);
|
||||
ContentEnterCostReduceExcel.AddEnterCostReduceGroupId(builder, EnterCostReduceGroupId);
|
||||
ContentEnterCostReduceExcel.AddReduceEnterCostType(builder, ReduceEnterCostType);
|
||||
ContentEnterCostReduceExcel.AddContentType_(builder, ContentType_);
|
||||
ContentEnterCostReduceExcel.AddContentType(builder, ContentType);
|
||||
return ContentEnterCostReduceExcel.EndContentEnterCostReduceExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartContentEnterCostReduceExcel(FlatBufferBuilder builder) { builder.StartTable(6); }
|
||||
public static void AddEnterCostReduceGroupId(FlatBufferBuilder builder, long enterCostReduceGroupId) { builder.AddLong(0, enterCostReduceGroupId, 0); }
|
||||
public static void AddContentType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ContentType contentType_) { builder.AddInt(1, (int)contentType_, 0); }
|
||||
public static void AddContentType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ContentType contentType) { builder.AddInt(1, (int)contentType, 0); }
|
||||
public static void AddStageId(FlatBufferBuilder builder, long stageId) { builder.AddLong(2, stageId, 0); }
|
||||
public static void AddReduceEnterCostType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ParcelType reduceEnterCostType) { builder.AddInt(3, (int)reduceEnterCostType, 0); }
|
||||
public static void AddReduceEnterCostId(FlatBufferBuilder builder, long reduceEnterCostId) { builder.AddLong(4, reduceEnterCostId, 0); }
|
||||
|
@ -63,7 +63,7 @@ public struct ContentEnterCostReduceExcel : IFlatbufferObject
|
|||
public void UnPackTo(ContentEnterCostReduceExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("ContentEnterCostReduce");
|
||||
_o.EnterCostReduceGroupId = TableEncryptionService.Convert(this.EnterCostReduceGroupId, key);
|
||||
_o.ContentType_ = TableEncryptionService.Convert(this.ContentType_, key);
|
||||
_o.ContentType = TableEncryptionService.Convert(this.ContentType, key);
|
||||
_o.StageId = TableEncryptionService.Convert(this.StageId, key);
|
||||
_o.ReduceEnterCostType = TableEncryptionService.Convert(this.ReduceEnterCostType, key);
|
||||
_o.ReduceEnterCostId = TableEncryptionService.Convert(this.ReduceEnterCostId, key);
|
||||
|
@ -74,7 +74,7 @@ public struct ContentEnterCostReduceExcel : IFlatbufferObject
|
|||
return CreateContentEnterCostReduceExcel(
|
||||
builder,
|
||||
_o.EnterCostReduceGroupId,
|
||||
_o.ContentType_,
|
||||
_o.ContentType,
|
||||
_o.StageId,
|
||||
_o.ReduceEnterCostType,
|
||||
_o.ReduceEnterCostId,
|
||||
|
@ -85,7 +85,7 @@ public struct ContentEnterCostReduceExcel : IFlatbufferObject
|
|||
public class ContentEnterCostReduceExcelT
|
||||
{
|
||||
public long EnterCostReduceGroupId { get; set; }
|
||||
public SCHALE.Common.FlatData.ContentType ContentType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ContentType ContentType { get; set; }
|
||||
public long StageId { get; set; }
|
||||
public SCHALE.Common.FlatData.ParcelType ReduceEnterCostType { get; set; }
|
||||
public long ReduceEnterCostId { get; set; }
|
||||
|
@ -93,9 +93,9 @@ public class ContentEnterCostReduceExcelT
|
|||
|
||||
public ContentEnterCostReduceExcelT() {
|
||||
this.EnterCostReduceGroupId = 0;
|
||||
this.ContentType_ = SCHALE.Common.FlatData.ContentType.None_;
|
||||
this.ContentType = SCHALE.Common.FlatData.ContentType.None;
|
||||
this.StageId = 0;
|
||||
this.ReduceEnterCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.ReduceEnterCostType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.ReduceEnterCostId = 0;
|
||||
this.ReduceAmount = 0;
|
||||
}
|
||||
|
@ -108,7 +108,7 @@ static public class ContentEnterCostReduceExcelVerify
|
|||
{
|
||||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*EnterCostReduceGroupId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*ContentType_*/, 4 /*SCHALE.Common.FlatData.ContentType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*ContentType*/, 4 /*SCHALE.Common.FlatData.ContentType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*StageId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*ReduceEnterCostType*/, 4 /*SCHALE.Common.FlatData.ParcelType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*ReduceEnterCostId*/, 8 /*long*/, 8, false)
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum ContentLockType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
NotUseControlledByOtherSetting = 1,
|
||||
Academy = 2,
|
||||
MultiFloorRaid = 3,
|
||||
|
|
|
@ -20,7 +20,7 @@ public struct ContentSpoilerPopupExcel : IFlatbufferObject
|
|||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
||||
public ContentSpoilerPopupExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public SCHALE.Common.FlatData.ContentType ContentType_ { get { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.ContentType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ContentType.None_; } }
|
||||
public SCHALE.Common.FlatData.ContentType ContentType { get { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.ContentType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ContentType.None; } }
|
||||
public string SpoilerPopupTitle { get { int o = __p.__offset(6); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
public Span<byte> GetSpoilerPopupTitleBytes() { return __p.__vector_as_span<byte>(6, 1); }
|
||||
|
@ -39,7 +39,7 @@ public struct ContentSpoilerPopupExcel : IFlatbufferObject
|
|||
public long ConditionScenarioModeId { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
||||
public static Offset<SCHALE.Common.FlatData.ContentSpoilerPopupExcel> CreateContentSpoilerPopupExcel(FlatBufferBuilder builder,
|
||||
SCHALE.Common.FlatData.ContentType ContentType_ = SCHALE.Common.FlatData.ContentType.None_,
|
||||
SCHALE.Common.FlatData.ContentType ContentType = SCHALE.Common.FlatData.ContentType.None,
|
||||
StringOffset SpoilerPopupTitleOffset = default(StringOffset),
|
||||
StringOffset SpoilerPopupDescriptionOffset = default(StringOffset),
|
||||
bool IsWarningPopUp = false,
|
||||
|
@ -48,13 +48,13 @@ public struct ContentSpoilerPopupExcel : IFlatbufferObject
|
|||
ContentSpoilerPopupExcel.AddConditionScenarioModeId(builder, ConditionScenarioModeId);
|
||||
ContentSpoilerPopupExcel.AddSpoilerPopupDescription(builder, SpoilerPopupDescriptionOffset);
|
||||
ContentSpoilerPopupExcel.AddSpoilerPopupTitle(builder, SpoilerPopupTitleOffset);
|
||||
ContentSpoilerPopupExcel.AddContentType_(builder, ContentType_);
|
||||
ContentSpoilerPopupExcel.AddContentType(builder, ContentType);
|
||||
ContentSpoilerPopupExcel.AddIsWarningPopUp(builder, IsWarningPopUp);
|
||||
return ContentSpoilerPopupExcel.EndContentSpoilerPopupExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartContentSpoilerPopupExcel(FlatBufferBuilder builder) { builder.StartTable(5); }
|
||||
public static void AddContentType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ContentType contentType_) { builder.AddInt(0, (int)contentType_, 0); }
|
||||
public static void AddContentType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ContentType contentType) { builder.AddInt(0, (int)contentType, 0); }
|
||||
public static void AddSpoilerPopupTitle(FlatBufferBuilder builder, StringOffset spoilerPopupTitleOffset) { builder.AddOffset(1, spoilerPopupTitleOffset.Value, 0); }
|
||||
public static void AddSpoilerPopupDescription(FlatBufferBuilder builder, StringOffset spoilerPopupDescriptionOffset) { builder.AddOffset(2, spoilerPopupDescriptionOffset.Value, 0); }
|
||||
public static void AddIsWarningPopUp(FlatBufferBuilder builder, bool isWarningPopUp) { builder.AddBool(3, isWarningPopUp, false); }
|
||||
|
@ -70,7 +70,7 @@ public struct ContentSpoilerPopupExcel : IFlatbufferObject
|
|||
}
|
||||
public void UnPackTo(ContentSpoilerPopupExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("ContentSpoilerPopup");
|
||||
_o.ContentType_ = TableEncryptionService.Convert(this.ContentType_, key);
|
||||
_o.ContentType = TableEncryptionService.Convert(this.ContentType, key);
|
||||
_o.SpoilerPopupTitle = TableEncryptionService.Convert(this.SpoilerPopupTitle, key);
|
||||
_o.SpoilerPopupDescription = TableEncryptionService.Convert(this.SpoilerPopupDescription, key);
|
||||
_o.IsWarningPopUp = TableEncryptionService.Convert(this.IsWarningPopUp, key);
|
||||
|
@ -82,7 +82,7 @@ public struct ContentSpoilerPopupExcel : IFlatbufferObject
|
|||
var _SpoilerPopupDescription = _o.SpoilerPopupDescription == null ? default(StringOffset) : builder.CreateString(_o.SpoilerPopupDescription);
|
||||
return CreateContentSpoilerPopupExcel(
|
||||
builder,
|
||||
_o.ContentType_,
|
||||
_o.ContentType,
|
||||
_SpoilerPopupTitle,
|
||||
_SpoilerPopupDescription,
|
||||
_o.IsWarningPopUp,
|
||||
|
@ -92,14 +92,14 @@ public struct ContentSpoilerPopupExcel : IFlatbufferObject
|
|||
|
||||
public class ContentSpoilerPopupExcelT
|
||||
{
|
||||
public SCHALE.Common.FlatData.ContentType ContentType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ContentType ContentType { get; set; }
|
||||
public string SpoilerPopupTitle { get; set; }
|
||||
public string SpoilerPopupDescription { get; set; }
|
||||
public bool IsWarningPopUp { get; set; }
|
||||
public long ConditionScenarioModeId { get; set; }
|
||||
|
||||
public ContentSpoilerPopupExcelT() {
|
||||
this.ContentType_ = SCHALE.Common.FlatData.ContentType.None_;
|
||||
this.ContentType = SCHALE.Common.FlatData.ContentType.None;
|
||||
this.SpoilerPopupTitle = null;
|
||||
this.SpoilerPopupDescription = null;
|
||||
this.IsWarningPopUp = false;
|
||||
|
@ -113,7 +113,7 @@ static public class ContentSpoilerPopupExcelVerify
|
|||
static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos)
|
||||
{
|
||||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*ContentType_*/, 4 /*SCHALE.Common.FlatData.ContentType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 4 /*ContentType*/, 4 /*SCHALE.Common.FlatData.ContentType*/, 4, false)
|
||||
&& verifier.VerifyString(tablePos, 6 /*SpoilerPopupTitle*/, false)
|
||||
&& verifier.VerifyString(tablePos, 8 /*SpoilerPopupDescription*/, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*IsWarningPopUp*/, 1 /*bool*/, 1, false)
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum ContentType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
CampaignMainStage = 1,
|
||||
CampaignSubStage = 2,
|
||||
WeekDungeon = 3,
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum ContentsChangeType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
WorldRaidBossDamageRatio = 1,
|
||||
WorldRaidBossGroupDate = 2,
|
||||
};
|
||||
|
|
|
@ -23,7 +23,7 @@ public struct ContentsScenarioExcel : IFlatbufferObject
|
|||
public uint Id { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetUint(o + __p.bb_pos) : (uint)0; } }
|
||||
public uint LocalizeId { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetUint(o + __p.bb_pos) : (uint)0; } }
|
||||
public int DisplayOrder { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.ScenarioContentType ScenarioContentType_ { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.ScenarioContentType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ScenarioContentType.Prologue; } }
|
||||
public SCHALE.Common.FlatData.ScenarioContentType ScenarioContentType { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.ScenarioContentType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ScenarioContentType.Prologue; } }
|
||||
public long ScenarioGroupId(int j) { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(__p.__vector(o) + j * 8) : (long)0; }
|
||||
public int ScenarioGroupIdLength { get { int o = __p.__offset(12); return o != 0 ? __p.__vector_len(o) : 0; } }
|
||||
#if ENABLE_SPAN_T
|
||||
|
@ -37,11 +37,11 @@ public struct ContentsScenarioExcel : IFlatbufferObject
|
|||
uint Id = 0,
|
||||
uint LocalizeId = 0,
|
||||
int DisplayOrder = 0,
|
||||
SCHALE.Common.FlatData.ScenarioContentType ScenarioContentType_ = SCHALE.Common.FlatData.ScenarioContentType.Prologue,
|
||||
SCHALE.Common.FlatData.ScenarioContentType ScenarioContentType = SCHALE.Common.FlatData.ScenarioContentType.Prologue,
|
||||
VectorOffset ScenarioGroupIdOffset = default(VectorOffset)) {
|
||||
builder.StartTable(5);
|
||||
ContentsScenarioExcel.AddScenarioGroupId(builder, ScenarioGroupIdOffset);
|
||||
ContentsScenarioExcel.AddScenarioContentType_(builder, ScenarioContentType_);
|
||||
ContentsScenarioExcel.AddScenarioContentType(builder, ScenarioContentType);
|
||||
ContentsScenarioExcel.AddDisplayOrder(builder, DisplayOrder);
|
||||
ContentsScenarioExcel.AddLocalizeId(builder, LocalizeId);
|
||||
ContentsScenarioExcel.AddId(builder, Id);
|
||||
|
@ -52,7 +52,7 @@ public struct ContentsScenarioExcel : IFlatbufferObject
|
|||
public static void AddId(FlatBufferBuilder builder, uint id) { builder.AddUint(0, id, 0); }
|
||||
public static void AddLocalizeId(FlatBufferBuilder builder, uint localizeId) { builder.AddUint(1, localizeId, 0); }
|
||||
public static void AddDisplayOrder(FlatBufferBuilder builder, int displayOrder) { builder.AddInt(2, displayOrder, 0); }
|
||||
public static void AddScenarioContentType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ScenarioContentType scenarioContentType_) { builder.AddInt(3, (int)scenarioContentType_, 0); }
|
||||
public static void AddScenarioContentType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ScenarioContentType scenarioContentType) { builder.AddInt(3, (int)scenarioContentType, 0); }
|
||||
public static void AddScenarioGroupId(FlatBufferBuilder builder, VectorOffset scenarioGroupIdOffset) { builder.AddOffset(4, scenarioGroupIdOffset.Value, 0); }
|
||||
public static VectorOffset CreateScenarioGroupIdVector(FlatBufferBuilder builder, long[] data) { builder.StartVector(8, data.Length, 8); for (int i = data.Length - 1; i >= 0; i--) builder.AddLong(data[i]); return builder.EndVector(); }
|
||||
public static VectorOffset CreateScenarioGroupIdVectorBlock(FlatBufferBuilder builder, long[] data) { builder.StartVector(8, data.Length, 8); builder.Add(data); return builder.EndVector(); }
|
||||
|
@ -73,7 +73,7 @@ public struct ContentsScenarioExcel : IFlatbufferObject
|
|||
_o.Id = TableEncryptionService.Convert(this.Id, key);
|
||||
_o.LocalizeId = TableEncryptionService.Convert(this.LocalizeId, key);
|
||||
_o.DisplayOrder = TableEncryptionService.Convert(this.DisplayOrder, key);
|
||||
_o.ScenarioContentType_ = TableEncryptionService.Convert(this.ScenarioContentType_, key);
|
||||
_o.ScenarioContentType = TableEncryptionService.Convert(this.ScenarioContentType, key);
|
||||
_o.ScenarioGroupId = new List<long>();
|
||||
for (var _j = 0; _j < this.ScenarioGroupIdLength; ++_j) {_o.ScenarioGroupId.Add(TableEncryptionService.Convert(this.ScenarioGroupId(_j), key));}
|
||||
}
|
||||
|
@ -89,7 +89,7 @@ public struct ContentsScenarioExcel : IFlatbufferObject
|
|||
_o.Id,
|
||||
_o.LocalizeId,
|
||||
_o.DisplayOrder,
|
||||
_o.ScenarioContentType_,
|
||||
_o.ScenarioContentType,
|
||||
_ScenarioGroupId);
|
||||
}
|
||||
}
|
||||
|
@ -99,14 +99,14 @@ public class ContentsScenarioExcelT
|
|||
public uint Id { get; set; }
|
||||
public uint LocalizeId { get; set; }
|
||||
public int DisplayOrder { get; set; }
|
||||
public SCHALE.Common.FlatData.ScenarioContentType ScenarioContentType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ScenarioContentType ScenarioContentType { get; set; }
|
||||
public List<long> ScenarioGroupId { get; set; }
|
||||
|
||||
public ContentsScenarioExcelT() {
|
||||
this.Id = 0;
|
||||
this.LocalizeId = 0;
|
||||
this.DisplayOrder = 0;
|
||||
this.ScenarioContentType_ = SCHALE.Common.FlatData.ScenarioContentType.Prologue;
|
||||
this.ScenarioContentType = SCHALE.Common.FlatData.ScenarioContentType.Prologue;
|
||||
this.ScenarioGroupId = null;
|
||||
}
|
||||
}
|
||||
|
@ -120,7 +120,7 @@ static public class ContentsScenarioExcelVerify
|
|||
&& verifier.VerifyField(tablePos, 4 /*Id*/, 4 /*uint*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*LocalizeId*/, 4 /*uint*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*DisplayOrder*/, 4 /*int*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*ScenarioContentType_*/, 4 /*SCHALE.Common.FlatData.ScenarioContentType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*ScenarioContentType*/, 4 /*SCHALE.Common.FlatData.ScenarioContentType*/, 4, false)
|
||||
&& verifier.VerifyVectorOfData(tablePos, 12 /*ScenarioGroupId*/, 8 /*long*/, false)
|
||||
&& verifier.VerifyTableEnd(tablePos);
|
||||
}
|
||||
|
|
|
@ -21,7 +21,7 @@ public struct ContentsShortcutExcel : IFlatbufferObject
|
|||
public ContentsShortcutExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public long UniqueId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ContentType ContentType_ { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.ContentType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ContentType.None_; } }
|
||||
public SCHALE.Common.FlatData.ContentType ContentType { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.ContentType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ContentType.None; } }
|
||||
public long EventContentId { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long ScenarioModeVolume { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long ScenarioModeChapter { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
@ -40,7 +40,7 @@ public struct ContentsShortcutExcel : IFlatbufferObject
|
|||
#endif
|
||||
public byte[] GetShortcutCloseTimeArray() { return __p.__vector_as_array<byte>(16); }
|
||||
public long ConditionContentId { get { int o = __p.__offset(18); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.StageDifficulty ConquestMapDifficulty { get { int o = __p.__offset(20); return o != 0 ? (SCHALE.Common.FlatData.StageDifficulty)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StageDifficulty.None_; } }
|
||||
public SCHALE.Common.FlatData.StageDifficulty ConquestMapDifficulty { get { int o = __p.__offset(20); return o != 0 ? (SCHALE.Common.FlatData.StageDifficulty)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.StageDifficulty.None; } }
|
||||
public int ConquestStepIndex { get { int o = __p.__offset(22); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public long ShortcutContentId { get { int o = __p.__offset(24); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public string ShortcutUIName(int j) { int o = __p.__offset(26); return o != 0 ? __p.__string(__p.__vector(o) + j * 4) : null; }
|
||||
|
@ -55,14 +55,14 @@ public struct ContentsShortcutExcel : IFlatbufferObject
|
|||
|
||||
public static Offset<SCHALE.Common.FlatData.ContentsShortcutExcel> CreateContentsShortcutExcel(FlatBufferBuilder builder,
|
||||
long UniqueId = 0,
|
||||
SCHALE.Common.FlatData.ContentType ContentType_ = SCHALE.Common.FlatData.ContentType.None_,
|
||||
SCHALE.Common.FlatData.ContentType ContentType = SCHALE.Common.FlatData.ContentType.None,
|
||||
long EventContentId = 0,
|
||||
long ScenarioModeVolume = 0,
|
||||
long ScenarioModeChapter = 0,
|
||||
StringOffset ShortcutOpenTimeOffset = default(StringOffset),
|
||||
StringOffset ShortcutCloseTimeOffset = default(StringOffset),
|
||||
long ConditionContentId = 0,
|
||||
SCHALE.Common.FlatData.StageDifficulty ConquestMapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None_,
|
||||
SCHALE.Common.FlatData.StageDifficulty ConquestMapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None,
|
||||
int ConquestStepIndex = 0,
|
||||
long ShortcutContentId = 0,
|
||||
VectorOffset ShortcutUINameOffset = default(VectorOffset),
|
||||
|
@ -80,13 +80,13 @@ public struct ContentsShortcutExcel : IFlatbufferObject
|
|||
ContentsShortcutExcel.AddConquestMapDifficulty(builder, ConquestMapDifficulty);
|
||||
ContentsShortcutExcel.AddShortcutCloseTime(builder, ShortcutCloseTimeOffset);
|
||||
ContentsShortcutExcel.AddShortcutOpenTime(builder, ShortcutOpenTimeOffset);
|
||||
ContentsShortcutExcel.AddContentType_(builder, ContentType_);
|
||||
ContentsShortcutExcel.AddContentType(builder, ContentType);
|
||||
return ContentsShortcutExcel.EndContentsShortcutExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartContentsShortcutExcel(FlatBufferBuilder builder) { builder.StartTable(13); }
|
||||
public static void AddUniqueId(FlatBufferBuilder builder, long uniqueId) { builder.AddLong(0, uniqueId, 0); }
|
||||
public static void AddContentType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ContentType contentType_) { builder.AddInt(1, (int)contentType_, 0); }
|
||||
public static void AddContentType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ContentType contentType) { builder.AddInt(1, (int)contentType, 0); }
|
||||
public static void AddEventContentId(FlatBufferBuilder builder, long eventContentId) { builder.AddLong(2, eventContentId, 0); }
|
||||
public static void AddScenarioModeVolume(FlatBufferBuilder builder, long scenarioModeVolume) { builder.AddLong(3, scenarioModeVolume, 0); }
|
||||
public static void AddScenarioModeChapter(FlatBufferBuilder builder, long scenarioModeChapter) { builder.AddLong(4, scenarioModeChapter, 0); }
|
||||
|
@ -115,7 +115,7 @@ public struct ContentsShortcutExcel : IFlatbufferObject
|
|||
public void UnPackTo(ContentsShortcutExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("ContentsShortcut");
|
||||
_o.UniqueId = TableEncryptionService.Convert(this.UniqueId, key);
|
||||
_o.ContentType_ = TableEncryptionService.Convert(this.ContentType_, key);
|
||||
_o.ContentType = TableEncryptionService.Convert(this.ContentType, key);
|
||||
_o.EventContentId = TableEncryptionService.Convert(this.EventContentId, key);
|
||||
_o.ScenarioModeVolume = TableEncryptionService.Convert(this.ScenarioModeVolume, key);
|
||||
_o.ScenarioModeChapter = TableEncryptionService.Convert(this.ScenarioModeChapter, key);
|
||||
|
@ -143,7 +143,7 @@ public struct ContentsShortcutExcel : IFlatbufferObject
|
|||
return CreateContentsShortcutExcel(
|
||||
builder,
|
||||
_o.UniqueId,
|
||||
_o.ContentType_,
|
||||
_o.ContentType,
|
||||
_o.EventContentId,
|
||||
_o.ScenarioModeVolume,
|
||||
_o.ScenarioModeChapter,
|
||||
|
@ -161,7 +161,7 @@ public struct ContentsShortcutExcel : IFlatbufferObject
|
|||
public class ContentsShortcutExcelT
|
||||
{
|
||||
public long UniqueId { get; set; }
|
||||
public SCHALE.Common.FlatData.ContentType ContentType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ContentType ContentType { get; set; }
|
||||
public long EventContentId { get; set; }
|
||||
public long ScenarioModeVolume { get; set; }
|
||||
public long ScenarioModeChapter { get; set; }
|
||||
|
@ -176,14 +176,14 @@ public class ContentsShortcutExcelT
|
|||
|
||||
public ContentsShortcutExcelT() {
|
||||
this.UniqueId = 0;
|
||||
this.ContentType_ = SCHALE.Common.FlatData.ContentType.None_;
|
||||
this.ContentType = SCHALE.Common.FlatData.ContentType.None;
|
||||
this.EventContentId = 0;
|
||||
this.ScenarioModeVolume = 0;
|
||||
this.ScenarioModeChapter = 0;
|
||||
this.ShortcutOpenTime = null;
|
||||
this.ShortcutCloseTime = null;
|
||||
this.ConditionContentId = 0;
|
||||
this.ConquestMapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None_;
|
||||
this.ConquestMapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None;
|
||||
this.ConquestStepIndex = 0;
|
||||
this.ShortcutContentId = 0;
|
||||
this.ShortcutUIName = null;
|
||||
|
@ -198,7 +198,7 @@ static public class ContentsShortcutExcelVerify
|
|||
{
|
||||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*UniqueId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*ContentType_*/, 4 /*SCHALE.Common.FlatData.ContentType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*ContentType*/, 4 /*SCHALE.Common.FlatData.ContentType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*EventContentId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*ScenarioModeVolume*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*ScenarioModeChapter*/, 8 /*long*/, 8, false)
|
||||
|
|
|
@ -29,7 +29,7 @@ public struct CostumeExcel : IFlatbufferObject
|
|||
public ArraySegment<byte>? GetDevNameBytes() { return __p.__vector_as_arraysegment(8); }
|
||||
#endif
|
||||
public byte[] GetDevNameArray() { return __p.__vector_as_array<byte>(8); }
|
||||
public SCHALE.Common.FlatData.ProductionStep ProductionStep_ { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.ProductionStep)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ProductionStep.ToDo; } }
|
||||
public SCHALE.Common.FlatData.ProductionStep ProductionStep { get { int o = __p.__offset(10); return o != 0 ? (SCHALE.Common.FlatData.ProductionStep)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ProductionStep.ToDo; } }
|
||||
public bool IsDefault { get { int o = __p.__offset(12); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public bool CollectionVisible { get { int o = __p.__offset(14); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public string ReleaseDate { get { int o = __p.__offset(16); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
|
@ -53,7 +53,7 @@ public struct CostumeExcel : IFlatbufferObject
|
|||
public ArraySegment<byte>? GetCollectionVisibleEndDateBytes() { return __p.__vector_as_arraysegment(20); }
|
||||
#endif
|
||||
public byte[] GetCollectionVisibleEndDateArray() { return __p.__vector_as_array<byte>(20); }
|
||||
public SCHALE.Common.FlatData.Rarity Rarity_ { get { int o = __p.__offset(22); return o != 0 ? (SCHALE.Common.FlatData.Rarity)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.Rarity.N; } }
|
||||
public SCHALE.Common.FlatData.Rarity Rarity { get { int o = __p.__offset(22); return o != 0 ? (SCHALE.Common.FlatData.Rarity)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.Rarity.N; } }
|
||||
public long CharacterSkillListGroupId { get { int o = __p.__offset(24); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public string SpineResourceName { get { int o = __p.__offset(26); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
|
@ -71,7 +71,7 @@ public struct CostumeExcel : IFlatbufferObject
|
|||
public byte[] GetSpineResourceNameDioramaArray() { return __p.__vector_as_array<byte>(28); }
|
||||
public string SpineResourceNameDioramaForFormConversion(int j) { int o = __p.__offset(30); return o != 0 ? __p.__string(__p.__vector(o) + j * 4) : null; }
|
||||
public int SpineResourceNameDioramaForFormConversionLength { get { int o = __p.__offset(30); return o != 0 ? __p.__vector_len(o) : 0; } }
|
||||
public SCHALE.Common.FlatData.EntityMaterialType EntityMaterialType_ { get { int o = __p.__offset(32); return o != 0 ? (SCHALE.Common.FlatData.EntityMaterialType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EntityMaterialType.Wood; } }
|
||||
public SCHALE.Common.FlatData.EntityMaterialType EntityMaterialType { get { int o = __p.__offset(32); return o != 0 ? (SCHALE.Common.FlatData.EntityMaterialType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EntityMaterialType.Wood; } }
|
||||
public string ModelPrefabName { get { int o = __p.__offset(34); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
public Span<byte> GetModelPrefabNameBytes() { return __p.__vector_as_span<byte>(34, 1); }
|
||||
|
@ -167,18 +167,18 @@ public struct CostumeExcel : IFlatbufferObject
|
|||
long CostumeGroupId = 0,
|
||||
long CostumeUniqueId = 0,
|
||||
StringOffset DevNameOffset = default(StringOffset),
|
||||
SCHALE.Common.FlatData.ProductionStep ProductionStep_ = SCHALE.Common.FlatData.ProductionStep.ToDo,
|
||||
SCHALE.Common.FlatData.ProductionStep ProductionStep = SCHALE.Common.FlatData.ProductionStep.ToDo,
|
||||
bool IsDefault = false,
|
||||
bool CollectionVisible = false,
|
||||
StringOffset ReleaseDateOffset = default(StringOffset),
|
||||
StringOffset CollectionVisibleStartDateOffset = default(StringOffset),
|
||||
StringOffset CollectionVisibleEndDateOffset = default(StringOffset),
|
||||
SCHALE.Common.FlatData.Rarity Rarity_ = SCHALE.Common.FlatData.Rarity.N,
|
||||
SCHALE.Common.FlatData.Rarity Rarity = SCHALE.Common.FlatData.Rarity.N,
|
||||
long CharacterSkillListGroupId = 0,
|
||||
StringOffset SpineResourceNameOffset = default(StringOffset),
|
||||
StringOffset SpineResourceNameDioramaOffset = default(StringOffset),
|
||||
VectorOffset SpineResourceNameDioramaForFormConversionOffset = default(VectorOffset),
|
||||
SCHALE.Common.FlatData.EntityMaterialType EntityMaterialType_ = SCHALE.Common.FlatData.EntityMaterialType.Wood,
|
||||
SCHALE.Common.FlatData.EntityMaterialType EntityMaterialType = SCHALE.Common.FlatData.EntityMaterialType.Wood,
|
||||
StringOffset ModelPrefabNameOffset = default(StringOffset),
|
||||
StringOffset CafeModelPrefabNameOffset = default(StringOffset),
|
||||
StringOffset EchelonModelPrefabNameOffset = default(StringOffset),
|
||||
|
@ -214,15 +214,15 @@ public struct CostumeExcel : IFlatbufferObject
|
|||
CostumeExcel.AddEchelonModelPrefabName(builder, EchelonModelPrefabNameOffset);
|
||||
CostumeExcel.AddCafeModelPrefabName(builder, CafeModelPrefabNameOffset);
|
||||
CostumeExcel.AddModelPrefabName(builder, ModelPrefabNameOffset);
|
||||
CostumeExcel.AddEntityMaterialType_(builder, EntityMaterialType_);
|
||||
CostumeExcel.AddEntityMaterialType(builder, EntityMaterialType);
|
||||
CostumeExcel.AddSpineResourceNameDioramaForFormConversion(builder, SpineResourceNameDioramaForFormConversionOffset);
|
||||
CostumeExcel.AddSpineResourceNameDiorama(builder, SpineResourceNameDioramaOffset);
|
||||
CostumeExcel.AddSpineResourceName(builder, SpineResourceNameOffset);
|
||||
CostumeExcel.AddRarity_(builder, Rarity_);
|
||||
CostumeExcel.AddRarity(builder, Rarity);
|
||||
CostumeExcel.AddCollectionVisibleEndDate(builder, CollectionVisibleEndDateOffset);
|
||||
CostumeExcel.AddCollectionVisibleStartDate(builder, CollectionVisibleStartDateOffset);
|
||||
CostumeExcel.AddReleaseDate(builder, ReleaseDateOffset);
|
||||
CostumeExcel.AddProductionStep_(builder, ProductionStep_);
|
||||
CostumeExcel.AddProductionStep(builder, ProductionStep);
|
||||
CostumeExcel.AddDevName(builder, DevNameOffset);
|
||||
CostumeExcel.AddShowObjectHpStatus(builder, ShowObjectHpStatus);
|
||||
CostumeExcel.AddAnimationValidator(builder, AnimationValidator);
|
||||
|
@ -236,13 +236,13 @@ public struct CostumeExcel : IFlatbufferObject
|
|||
public static void AddCostumeGroupId(FlatBufferBuilder builder, long costumeGroupId) { builder.AddLong(0, costumeGroupId, 0); }
|
||||
public static void AddCostumeUniqueId(FlatBufferBuilder builder, long costumeUniqueId) { builder.AddLong(1, costumeUniqueId, 0); }
|
||||
public static void AddDevName(FlatBufferBuilder builder, StringOffset devNameOffset) { builder.AddOffset(2, devNameOffset.Value, 0); }
|
||||
public static void AddProductionStep_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ProductionStep productionStep_) { builder.AddInt(3, (int)productionStep_, 0); }
|
||||
public static void AddProductionStep(FlatBufferBuilder builder, SCHALE.Common.FlatData.ProductionStep productionStep) { builder.AddInt(3, (int)productionStep, 0); }
|
||||
public static void AddIsDefault(FlatBufferBuilder builder, bool isDefault) { builder.AddBool(4, isDefault, false); }
|
||||
public static void AddCollectionVisible(FlatBufferBuilder builder, bool collectionVisible) { builder.AddBool(5, collectionVisible, false); }
|
||||
public static void AddReleaseDate(FlatBufferBuilder builder, StringOffset releaseDateOffset) { builder.AddOffset(6, releaseDateOffset.Value, 0); }
|
||||
public static void AddCollectionVisibleStartDate(FlatBufferBuilder builder, StringOffset collectionVisibleStartDateOffset) { builder.AddOffset(7, collectionVisibleStartDateOffset.Value, 0); }
|
||||
public static void AddCollectionVisibleEndDate(FlatBufferBuilder builder, StringOffset collectionVisibleEndDateOffset) { builder.AddOffset(8, collectionVisibleEndDateOffset.Value, 0); }
|
||||
public static void AddRarity_(FlatBufferBuilder builder, SCHALE.Common.FlatData.Rarity rarity_) { builder.AddInt(9, (int)rarity_, 0); }
|
||||
public static void AddRarity(FlatBufferBuilder builder, SCHALE.Common.FlatData.Rarity rarity) { builder.AddInt(9, (int)rarity, 0); }
|
||||
public static void AddCharacterSkillListGroupId(FlatBufferBuilder builder, long characterSkillListGroupId) { builder.AddLong(10, characterSkillListGroupId, 0); }
|
||||
public static void AddSpineResourceName(FlatBufferBuilder builder, StringOffset spineResourceNameOffset) { builder.AddOffset(11, spineResourceNameOffset.Value, 0); }
|
||||
public static void AddSpineResourceNameDiorama(FlatBufferBuilder builder, StringOffset spineResourceNameDioramaOffset) { builder.AddOffset(12, spineResourceNameDioramaOffset.Value, 0); }
|
||||
|
@ -252,7 +252,7 @@ public struct CostumeExcel : IFlatbufferObject
|
|||
public static VectorOffset CreateSpineResourceNameDioramaForFormConversionVectorBlock(FlatBufferBuilder builder, ArraySegment<StringOffset> data) { builder.StartVector(4, data.Count, 4); builder.Add(data); return builder.EndVector(); }
|
||||
public static VectorOffset CreateSpineResourceNameDioramaForFormConversionVectorBlock(FlatBufferBuilder builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<StringOffset>(dataPtr, sizeInBytes); return builder.EndVector(); }
|
||||
public static void StartSpineResourceNameDioramaForFormConversionVector(FlatBufferBuilder builder, int numElems) { builder.StartVector(4, numElems, 4); }
|
||||
public static void AddEntityMaterialType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.EntityMaterialType entityMaterialType_) { builder.AddInt(14, (int)entityMaterialType_, 0); }
|
||||
public static void AddEntityMaterialType(FlatBufferBuilder builder, SCHALE.Common.FlatData.EntityMaterialType entityMaterialType) { builder.AddInt(14, (int)entityMaterialType, 0); }
|
||||
public static void AddModelPrefabName(FlatBufferBuilder builder, StringOffset modelPrefabNameOffset) { builder.AddOffset(15, modelPrefabNameOffset.Value, 0); }
|
||||
public static void AddCafeModelPrefabName(FlatBufferBuilder builder, StringOffset cafeModelPrefabNameOffset) { builder.AddOffset(16, cafeModelPrefabNameOffset.Value, 0); }
|
||||
public static void AddEchelonModelPrefabName(FlatBufferBuilder builder, StringOffset echelonModelPrefabNameOffset) { builder.AddOffset(17, echelonModelPrefabNameOffset.Value, 0); }
|
||||
|
@ -289,19 +289,19 @@ public struct CostumeExcel : IFlatbufferObject
|
|||
_o.CostumeGroupId = TableEncryptionService.Convert(this.CostumeGroupId, key);
|
||||
_o.CostumeUniqueId = TableEncryptionService.Convert(this.CostumeUniqueId, key);
|
||||
_o.DevName = TableEncryptionService.Convert(this.DevName, key);
|
||||
_o.ProductionStep_ = TableEncryptionService.Convert(this.ProductionStep_, key);
|
||||
_o.ProductionStep = TableEncryptionService.Convert(this.ProductionStep, key);
|
||||
_o.IsDefault = TableEncryptionService.Convert(this.IsDefault, key);
|
||||
_o.CollectionVisible = TableEncryptionService.Convert(this.CollectionVisible, key);
|
||||
_o.ReleaseDate = TableEncryptionService.Convert(this.ReleaseDate, key);
|
||||
_o.CollectionVisibleStartDate = TableEncryptionService.Convert(this.CollectionVisibleStartDate, key);
|
||||
_o.CollectionVisibleEndDate = TableEncryptionService.Convert(this.CollectionVisibleEndDate, key);
|
||||
_o.Rarity_ = TableEncryptionService.Convert(this.Rarity_, key);
|
||||
_o.Rarity = TableEncryptionService.Convert(this.Rarity, key);
|
||||
_o.CharacterSkillListGroupId = TableEncryptionService.Convert(this.CharacterSkillListGroupId, key);
|
||||
_o.SpineResourceName = TableEncryptionService.Convert(this.SpineResourceName, key);
|
||||
_o.SpineResourceNameDiorama = TableEncryptionService.Convert(this.SpineResourceNameDiorama, key);
|
||||
_o.SpineResourceNameDioramaForFormConversion = new List<string>();
|
||||
for (var _j = 0; _j < this.SpineResourceNameDioramaForFormConversionLength; ++_j) {_o.SpineResourceNameDioramaForFormConversion.Add(TableEncryptionService.Convert(this.SpineResourceNameDioramaForFormConversion(_j), key));}
|
||||
_o.EntityMaterialType_ = TableEncryptionService.Convert(this.EntityMaterialType_, key);
|
||||
_o.EntityMaterialType = TableEncryptionService.Convert(this.EntityMaterialType, key);
|
||||
_o.ModelPrefabName = TableEncryptionService.Convert(this.ModelPrefabName, key);
|
||||
_o.CafeModelPrefabName = TableEncryptionService.Convert(this.CafeModelPrefabName, key);
|
||||
_o.EchelonModelPrefabName = TableEncryptionService.Convert(this.EchelonModelPrefabName, key);
|
||||
|
@ -358,18 +358,18 @@ public struct CostumeExcel : IFlatbufferObject
|
|||
_o.CostumeGroupId,
|
||||
_o.CostumeUniqueId,
|
||||
_DevName,
|
||||
_o.ProductionStep_,
|
||||
_o.ProductionStep,
|
||||
_o.IsDefault,
|
||||
_o.CollectionVisible,
|
||||
_ReleaseDate,
|
||||
_CollectionVisibleStartDate,
|
||||
_CollectionVisibleEndDate,
|
||||
_o.Rarity_,
|
||||
_o.Rarity,
|
||||
_o.CharacterSkillListGroupId,
|
||||
_SpineResourceName,
|
||||
_SpineResourceNameDiorama,
|
||||
_SpineResourceNameDioramaForFormConversion,
|
||||
_o.EntityMaterialType_,
|
||||
_o.EntityMaterialType,
|
||||
_ModelPrefabName,
|
||||
_CafeModelPrefabName,
|
||||
_EchelonModelPrefabName,
|
||||
|
@ -395,18 +395,18 @@ public class CostumeExcelT
|
|||
public long CostumeGroupId { get; set; }
|
||||
public long CostumeUniqueId { get; set; }
|
||||
public string DevName { get; set; }
|
||||
public SCHALE.Common.FlatData.ProductionStep ProductionStep_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ProductionStep ProductionStep { get; set; }
|
||||
public bool IsDefault { get; set; }
|
||||
public bool CollectionVisible { get; set; }
|
||||
public string ReleaseDate { get; set; }
|
||||
public string CollectionVisibleStartDate { get; set; }
|
||||
public string CollectionVisibleEndDate { get; set; }
|
||||
public SCHALE.Common.FlatData.Rarity Rarity_ { get; set; }
|
||||
public SCHALE.Common.FlatData.Rarity Rarity { get; set; }
|
||||
public long CharacterSkillListGroupId { get; set; }
|
||||
public string SpineResourceName { get; set; }
|
||||
public string SpineResourceNameDiorama { get; set; }
|
||||
public List<string> SpineResourceNameDioramaForFormConversion { get; set; }
|
||||
public SCHALE.Common.FlatData.EntityMaterialType EntityMaterialType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.EntityMaterialType EntityMaterialType { get; set; }
|
||||
public string ModelPrefabName { get; set; }
|
||||
public string CafeModelPrefabName { get; set; }
|
||||
public string EchelonModelPrefabName { get; set; }
|
||||
|
@ -429,18 +429,18 @@ public class CostumeExcelT
|
|||
this.CostumeGroupId = 0;
|
||||
this.CostumeUniqueId = 0;
|
||||
this.DevName = null;
|
||||
this.ProductionStep_ = SCHALE.Common.FlatData.ProductionStep.ToDo;
|
||||
this.ProductionStep = SCHALE.Common.FlatData.ProductionStep.ToDo;
|
||||
this.IsDefault = false;
|
||||
this.CollectionVisible = false;
|
||||
this.ReleaseDate = null;
|
||||
this.CollectionVisibleStartDate = null;
|
||||
this.CollectionVisibleEndDate = null;
|
||||
this.Rarity_ = SCHALE.Common.FlatData.Rarity.N;
|
||||
this.Rarity = SCHALE.Common.FlatData.Rarity.N;
|
||||
this.CharacterSkillListGroupId = 0;
|
||||
this.SpineResourceName = null;
|
||||
this.SpineResourceNameDiorama = null;
|
||||
this.SpineResourceNameDioramaForFormConversion = null;
|
||||
this.EntityMaterialType_ = SCHALE.Common.FlatData.EntityMaterialType.Wood;
|
||||
this.EntityMaterialType = SCHALE.Common.FlatData.EntityMaterialType.Wood;
|
||||
this.ModelPrefabName = null;
|
||||
this.CafeModelPrefabName = null;
|
||||
this.EchelonModelPrefabName = null;
|
||||
|
@ -470,18 +470,18 @@ static public class CostumeExcelVerify
|
|||
&& verifier.VerifyField(tablePos, 4 /*CostumeGroupId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*CostumeUniqueId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyString(tablePos, 8 /*DevName*/, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*ProductionStep_*/, 4 /*SCHALE.Common.FlatData.ProductionStep*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*ProductionStep*/, 4 /*SCHALE.Common.FlatData.ProductionStep*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*IsDefault*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*CollectionVisible*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyString(tablePos, 16 /*ReleaseDate*/, false)
|
||||
&& verifier.VerifyString(tablePos, 18 /*CollectionVisibleStartDate*/, false)
|
||||
&& verifier.VerifyString(tablePos, 20 /*CollectionVisibleEndDate*/, false)
|
||||
&& verifier.VerifyField(tablePos, 22 /*Rarity_*/, 4 /*SCHALE.Common.FlatData.Rarity*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 22 /*Rarity*/, 4 /*SCHALE.Common.FlatData.Rarity*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 24 /*CharacterSkillListGroupId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyString(tablePos, 26 /*SpineResourceName*/, false)
|
||||
&& verifier.VerifyString(tablePos, 28 /*SpineResourceNameDiorama*/, false)
|
||||
&& verifier.VerifyVectorOfStrings(tablePos, 30 /*SpineResourceNameDioramaForFormConversion*/, false)
|
||||
&& verifier.VerifyField(tablePos, 32 /*EntityMaterialType_*/, 4 /*SCHALE.Common.FlatData.EntityMaterialType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 32 /*EntityMaterialType*/, 4 /*SCHALE.Common.FlatData.EntityMaterialType*/, 4, false)
|
||||
&& verifier.VerifyString(tablePos, 34 /*ModelPrefabName*/, false)
|
||||
&& verifier.VerifyString(tablePos, 36 /*CafeModelPrefabName*/, false)
|
||||
&& verifier.VerifyString(tablePos, 38 /*EchelonModelPrefabName*/, false)
|
||||
|
|
|
@ -21,7 +21,7 @@ public struct CouponStuffExcel : IFlatbufferObject
|
|||
public CouponStuffExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public long StuffId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType ParcelType_ { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType ParcelType { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long ParcelId { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int LimitAmount { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public string CouponStuffNameLocalizeKey { get { int o = __p.__offset(12); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
|
@ -34,7 +34,7 @@ public struct CouponStuffExcel : IFlatbufferObject
|
|||
|
||||
public static Offset<SCHALE.Common.FlatData.CouponStuffExcel> CreateCouponStuffExcel(FlatBufferBuilder builder,
|
||||
long StuffId = 0,
|
||||
SCHALE.Common.FlatData.ParcelType ParcelType_ = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType ParcelType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long ParcelId = 0,
|
||||
int LimitAmount = 0,
|
||||
StringOffset CouponStuffNameLocalizeKeyOffset = default(StringOffset)) {
|
||||
|
@ -43,13 +43,13 @@ public struct CouponStuffExcel : IFlatbufferObject
|
|||
CouponStuffExcel.AddStuffId(builder, StuffId);
|
||||
CouponStuffExcel.AddCouponStuffNameLocalizeKey(builder, CouponStuffNameLocalizeKeyOffset);
|
||||
CouponStuffExcel.AddLimitAmount(builder, LimitAmount);
|
||||
CouponStuffExcel.AddParcelType_(builder, ParcelType_);
|
||||
CouponStuffExcel.AddParcelType(builder, ParcelType);
|
||||
return CouponStuffExcel.EndCouponStuffExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartCouponStuffExcel(FlatBufferBuilder builder) { builder.StartTable(5); }
|
||||
public static void AddStuffId(FlatBufferBuilder builder, long stuffId) { builder.AddLong(0, stuffId, 0); }
|
||||
public static void AddParcelType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ParcelType parcelType_) { builder.AddInt(1, (int)parcelType_, 0); }
|
||||
public static void AddParcelType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ParcelType parcelType) { builder.AddInt(1, (int)parcelType, 0); }
|
||||
public static void AddParcelId(FlatBufferBuilder builder, long parcelId) { builder.AddLong(2, parcelId, 0); }
|
||||
public static void AddLimitAmount(FlatBufferBuilder builder, int limitAmount) { builder.AddInt(3, limitAmount, 0); }
|
||||
public static void AddCouponStuffNameLocalizeKey(FlatBufferBuilder builder, StringOffset couponStuffNameLocalizeKeyOffset) { builder.AddOffset(4, couponStuffNameLocalizeKeyOffset.Value, 0); }
|
||||
|
@ -65,7 +65,7 @@ public struct CouponStuffExcel : IFlatbufferObject
|
|||
public void UnPackTo(CouponStuffExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("CouponStuff");
|
||||
_o.StuffId = TableEncryptionService.Convert(this.StuffId, key);
|
||||
_o.ParcelType_ = TableEncryptionService.Convert(this.ParcelType_, key);
|
||||
_o.ParcelType = TableEncryptionService.Convert(this.ParcelType, key);
|
||||
_o.ParcelId = TableEncryptionService.Convert(this.ParcelId, key);
|
||||
_o.LimitAmount = TableEncryptionService.Convert(this.LimitAmount, key);
|
||||
_o.CouponStuffNameLocalizeKey = TableEncryptionService.Convert(this.CouponStuffNameLocalizeKey, key);
|
||||
|
@ -76,7 +76,7 @@ public struct CouponStuffExcel : IFlatbufferObject
|
|||
return CreateCouponStuffExcel(
|
||||
builder,
|
||||
_o.StuffId,
|
||||
_o.ParcelType_,
|
||||
_o.ParcelType,
|
||||
_o.ParcelId,
|
||||
_o.LimitAmount,
|
||||
_CouponStuffNameLocalizeKey);
|
||||
|
@ -86,14 +86,14 @@ public struct CouponStuffExcel : IFlatbufferObject
|
|||
public class CouponStuffExcelT
|
||||
{
|
||||
public long StuffId { get; set; }
|
||||
public SCHALE.Common.FlatData.ParcelType ParcelType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ParcelType ParcelType { get; set; }
|
||||
public long ParcelId { get; set; }
|
||||
public int LimitAmount { get; set; }
|
||||
public string CouponStuffNameLocalizeKey { get; set; }
|
||||
|
||||
public CouponStuffExcelT() {
|
||||
this.StuffId = 0;
|
||||
this.ParcelType_ = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.ParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.ParcelId = 0;
|
||||
this.LimitAmount = 0;
|
||||
this.CouponStuffNameLocalizeKey = null;
|
||||
|
@ -107,7 +107,7 @@ static public class CouponStuffExcelVerify
|
|||
{
|
||||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*StuffId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*ParcelType_*/, 4 /*SCHALE.Common.FlatData.ParcelType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*ParcelType*/, 4 /*SCHALE.Common.FlatData.ParcelType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*ParcelId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*LimitAmount*/, 4 /*int*/, 4, false)
|
||||
&& verifier.VerifyString(tablePos, 12 /*CouponStuffNameLocalizeKey*/, false)
|
||||
|
|
|
@ -37,11 +37,11 @@ public struct CurrencyExcel : IFlatbufferObject
|
|||
public ArraySegment<byte>? GetIconBytes() { return __p.__vector_as_arraysegment(12); }
|
||||
#endif
|
||||
public byte[] GetIconArray() { return __p.__vector_as_array<byte>(12); }
|
||||
public SCHALE.Common.FlatData.Rarity Rarity_ { get { int o = __p.__offset(14); return o != 0 ? (SCHALE.Common.FlatData.Rarity)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.Rarity.N; } }
|
||||
public SCHALE.Common.FlatData.Rarity Rarity { get { int o = __p.__offset(14); return o != 0 ? (SCHALE.Common.FlatData.Rarity)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.Rarity.N; } }
|
||||
public int AutoChargeMsc { get { int o = __p.__offset(16); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public int AutoChargeAmount { get { int o = __p.__offset(18); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.CurrencyOverChargeType CurrencyOverChargeType_ { get { int o = __p.__offset(20); return o != 0 ? (SCHALE.Common.FlatData.CurrencyOverChargeType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.CurrencyOverChargeType.CanNotCharge; } }
|
||||
public SCHALE.Common.FlatData.CurrencyAdditionalChargeType CurrencyAdditionalChargeType_ { get { int o = __p.__offset(22); return o != 0 ? (SCHALE.Common.FlatData.CurrencyAdditionalChargeType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.CurrencyAdditionalChargeType.EnableAutoChargeOverLimit; } }
|
||||
public SCHALE.Common.FlatData.CurrencyOverChargeType CurrencyOverChargeType { get { int o = __p.__offset(20); return o != 0 ? (SCHALE.Common.FlatData.CurrencyOverChargeType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.CurrencyOverChargeType.CanNotCharge; } }
|
||||
public SCHALE.Common.FlatData.CurrencyAdditionalChargeType CurrencyAdditionalChargeType { get { int o = __p.__offset(22); return o != 0 ? (SCHALE.Common.FlatData.CurrencyAdditionalChargeType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.CurrencyAdditionalChargeType.EnableAutoChargeOverLimit; } }
|
||||
public long ChargeLimit { get { int o = __p.__offset(24); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long OverChargeLimit { get { int o = __p.__offset(26); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public string SpriteName { get { int o = __p.__offset(28); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
|
@ -51,7 +51,7 @@ public struct CurrencyExcel : IFlatbufferObject
|
|||
public ArraySegment<byte>? GetSpriteNameBytes() { return __p.__vector_as_arraysegment(28); }
|
||||
#endif
|
||||
public byte[] GetSpriteNameArray() { return __p.__vector_as_array<byte>(28); }
|
||||
public SCHALE.Common.FlatData.DailyRefillType DailyRefillType_ { get { int o = __p.__offset(30); return o != 0 ? (SCHALE.Common.FlatData.DailyRefillType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DailyRefillType.None_; } }
|
||||
public SCHALE.Common.FlatData.DailyRefillType DailyRefillType { get { int o = __p.__offset(30); return o != 0 ? (SCHALE.Common.FlatData.DailyRefillType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.DailyRefillType.None; } }
|
||||
public long DailyRefillAmount { get { int o = __p.__offset(32); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long DailyRefillTime(int j) { int o = __p.__offset(34); return o != 0 ? __p.bb.GetLong(__p.__vector(o) + j * 8) : (long)0; }
|
||||
public int DailyRefillTimeLength { get { int o = __p.__offset(34); return o != 0 ? __p.__vector_len(o) : 0; } }
|
||||
|
@ -69,7 +69,7 @@ public struct CurrencyExcel : IFlatbufferObject
|
|||
#endif
|
||||
public byte[] GetExpirationDateTimeArray() { return __p.__vector_as_array<byte>(36); }
|
||||
public int ExpirationNotifyDateIn { get { int o = __p.__offset(38); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType ExpiryChangeParcelType { get { int o = __p.__offset(40); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType ExpiryChangeParcelType { get { int o = __p.__offset(40); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long ExpiryChangeId { get { int o = __p.__offset(42); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long ExpiryChangeAmount { get { int o = __p.__offset(44); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
||||
|
@ -79,20 +79,20 @@ public struct CurrencyExcel : IFlatbufferObject
|
|||
SCHALE.Common.FlatData.CurrencyTypes CurrencyType = SCHALE.Common.FlatData.CurrencyTypes.Invalid,
|
||||
StringOffset CurrencyNameOffset = default(StringOffset),
|
||||
StringOffset IconOffset = default(StringOffset),
|
||||
SCHALE.Common.FlatData.Rarity Rarity_ = SCHALE.Common.FlatData.Rarity.N,
|
||||
SCHALE.Common.FlatData.Rarity Rarity = SCHALE.Common.FlatData.Rarity.N,
|
||||
int AutoChargeMsc = 0,
|
||||
int AutoChargeAmount = 0,
|
||||
SCHALE.Common.FlatData.CurrencyOverChargeType CurrencyOverChargeType_ = SCHALE.Common.FlatData.CurrencyOverChargeType.CanNotCharge,
|
||||
SCHALE.Common.FlatData.CurrencyAdditionalChargeType CurrencyAdditionalChargeType_ = SCHALE.Common.FlatData.CurrencyAdditionalChargeType.EnableAutoChargeOverLimit,
|
||||
SCHALE.Common.FlatData.CurrencyOverChargeType CurrencyOverChargeType = SCHALE.Common.FlatData.CurrencyOverChargeType.CanNotCharge,
|
||||
SCHALE.Common.FlatData.CurrencyAdditionalChargeType CurrencyAdditionalChargeType = SCHALE.Common.FlatData.CurrencyAdditionalChargeType.EnableAutoChargeOverLimit,
|
||||
long ChargeLimit = 0,
|
||||
long OverChargeLimit = 0,
|
||||
StringOffset SpriteNameOffset = default(StringOffset),
|
||||
SCHALE.Common.FlatData.DailyRefillType DailyRefillType_ = SCHALE.Common.FlatData.DailyRefillType.None_,
|
||||
SCHALE.Common.FlatData.DailyRefillType DailyRefillType = SCHALE.Common.FlatData.DailyRefillType.None,
|
||||
long DailyRefillAmount = 0,
|
||||
VectorOffset DailyRefillTimeOffset = default(VectorOffset),
|
||||
StringOffset ExpirationDateTimeOffset = default(StringOffset),
|
||||
int ExpirationNotifyDateIn = 0,
|
||||
SCHALE.Common.FlatData.ParcelType ExpiryChangeParcelType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType ExpiryChangeParcelType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long ExpiryChangeId = 0,
|
||||
long ExpiryChangeAmount = 0) {
|
||||
builder.StartTable(21);
|
||||
|
@ -106,13 +106,13 @@ public struct CurrencyExcel : IFlatbufferObject
|
|||
CurrencyExcel.AddExpirationNotifyDateIn(builder, ExpirationNotifyDateIn);
|
||||
CurrencyExcel.AddExpirationDateTime(builder, ExpirationDateTimeOffset);
|
||||
CurrencyExcel.AddDailyRefillTime(builder, DailyRefillTimeOffset);
|
||||
CurrencyExcel.AddDailyRefillType_(builder, DailyRefillType_);
|
||||
CurrencyExcel.AddDailyRefillType(builder, DailyRefillType);
|
||||
CurrencyExcel.AddSpriteName(builder, SpriteNameOffset);
|
||||
CurrencyExcel.AddCurrencyAdditionalChargeType_(builder, CurrencyAdditionalChargeType_);
|
||||
CurrencyExcel.AddCurrencyOverChargeType_(builder, CurrencyOverChargeType_);
|
||||
CurrencyExcel.AddCurrencyAdditionalChargeType(builder, CurrencyAdditionalChargeType);
|
||||
CurrencyExcel.AddCurrencyOverChargeType(builder, CurrencyOverChargeType);
|
||||
CurrencyExcel.AddAutoChargeAmount(builder, AutoChargeAmount);
|
||||
CurrencyExcel.AddAutoChargeMsc(builder, AutoChargeMsc);
|
||||
CurrencyExcel.AddRarity_(builder, Rarity_);
|
||||
CurrencyExcel.AddRarity(builder, Rarity);
|
||||
CurrencyExcel.AddIcon(builder, IconOffset);
|
||||
CurrencyExcel.AddCurrencyName(builder, CurrencyNameOffset);
|
||||
CurrencyExcel.AddCurrencyType(builder, CurrencyType);
|
||||
|
@ -126,15 +126,15 @@ public struct CurrencyExcel : IFlatbufferObject
|
|||
public static void AddCurrencyType(FlatBufferBuilder builder, SCHALE.Common.FlatData.CurrencyTypes currencyType) { builder.AddInt(2, (int)currencyType, 0); }
|
||||
public static void AddCurrencyName(FlatBufferBuilder builder, StringOffset currencyNameOffset) { builder.AddOffset(3, currencyNameOffset.Value, 0); }
|
||||
public static void AddIcon(FlatBufferBuilder builder, StringOffset iconOffset) { builder.AddOffset(4, iconOffset.Value, 0); }
|
||||
public static void AddRarity_(FlatBufferBuilder builder, SCHALE.Common.FlatData.Rarity rarity_) { builder.AddInt(5, (int)rarity_, 0); }
|
||||
public static void AddRarity(FlatBufferBuilder builder, SCHALE.Common.FlatData.Rarity rarity) { builder.AddInt(5, (int)rarity, 0); }
|
||||
public static void AddAutoChargeMsc(FlatBufferBuilder builder, int autoChargeMsc) { builder.AddInt(6, autoChargeMsc, 0); }
|
||||
public static void AddAutoChargeAmount(FlatBufferBuilder builder, int autoChargeAmount) { builder.AddInt(7, autoChargeAmount, 0); }
|
||||
public static void AddCurrencyOverChargeType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.CurrencyOverChargeType currencyOverChargeType_) { builder.AddInt(8, (int)currencyOverChargeType_, 0); }
|
||||
public static void AddCurrencyAdditionalChargeType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.CurrencyAdditionalChargeType currencyAdditionalChargeType_) { builder.AddInt(9, (int)currencyAdditionalChargeType_, 0); }
|
||||
public static void AddCurrencyOverChargeType(FlatBufferBuilder builder, SCHALE.Common.FlatData.CurrencyOverChargeType currencyOverChargeType) { builder.AddInt(8, (int)currencyOverChargeType, 0); }
|
||||
public static void AddCurrencyAdditionalChargeType(FlatBufferBuilder builder, SCHALE.Common.FlatData.CurrencyAdditionalChargeType currencyAdditionalChargeType) { builder.AddInt(9, (int)currencyAdditionalChargeType, 0); }
|
||||
public static void AddChargeLimit(FlatBufferBuilder builder, long chargeLimit) { builder.AddLong(10, chargeLimit, 0); }
|
||||
public static void AddOverChargeLimit(FlatBufferBuilder builder, long overChargeLimit) { builder.AddLong(11, overChargeLimit, 0); }
|
||||
public static void AddSpriteName(FlatBufferBuilder builder, StringOffset spriteNameOffset) { builder.AddOffset(12, spriteNameOffset.Value, 0); }
|
||||
public static void AddDailyRefillType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.DailyRefillType dailyRefillType_) { builder.AddInt(13, (int)dailyRefillType_, 0); }
|
||||
public static void AddDailyRefillType(FlatBufferBuilder builder, SCHALE.Common.FlatData.DailyRefillType dailyRefillType) { builder.AddInt(13, (int)dailyRefillType, 0); }
|
||||
public static void AddDailyRefillAmount(FlatBufferBuilder builder, long dailyRefillAmount) { builder.AddLong(14, dailyRefillAmount, 0); }
|
||||
public static void AddDailyRefillTime(FlatBufferBuilder builder, VectorOffset dailyRefillTimeOffset) { builder.AddOffset(15, dailyRefillTimeOffset.Value, 0); }
|
||||
public static VectorOffset CreateDailyRefillTimeVector(FlatBufferBuilder builder, long[] data) { builder.StartVector(8, data.Length, 8); for (int i = data.Length - 1; i >= 0; i--) builder.AddLong(data[i]); return builder.EndVector(); }
|
||||
|
@ -163,15 +163,15 @@ public struct CurrencyExcel : IFlatbufferObject
|
|||
_o.CurrencyType = TableEncryptionService.Convert(this.CurrencyType, key);
|
||||
_o.CurrencyName = TableEncryptionService.Convert(this.CurrencyName, key);
|
||||
_o.Icon = TableEncryptionService.Convert(this.Icon, key);
|
||||
_o.Rarity_ = TableEncryptionService.Convert(this.Rarity_, key);
|
||||
_o.Rarity = TableEncryptionService.Convert(this.Rarity, key);
|
||||
_o.AutoChargeMsc = TableEncryptionService.Convert(this.AutoChargeMsc, key);
|
||||
_o.AutoChargeAmount = TableEncryptionService.Convert(this.AutoChargeAmount, key);
|
||||
_o.CurrencyOverChargeType_ = TableEncryptionService.Convert(this.CurrencyOverChargeType_, key);
|
||||
_o.CurrencyAdditionalChargeType_ = TableEncryptionService.Convert(this.CurrencyAdditionalChargeType_, key);
|
||||
_o.CurrencyOverChargeType = TableEncryptionService.Convert(this.CurrencyOverChargeType, key);
|
||||
_o.CurrencyAdditionalChargeType = TableEncryptionService.Convert(this.CurrencyAdditionalChargeType, key);
|
||||
_o.ChargeLimit = TableEncryptionService.Convert(this.ChargeLimit, key);
|
||||
_o.OverChargeLimit = TableEncryptionService.Convert(this.OverChargeLimit, key);
|
||||
_o.SpriteName = TableEncryptionService.Convert(this.SpriteName, key);
|
||||
_o.DailyRefillType_ = TableEncryptionService.Convert(this.DailyRefillType_, key);
|
||||
_o.DailyRefillType = TableEncryptionService.Convert(this.DailyRefillType, key);
|
||||
_o.DailyRefillAmount = TableEncryptionService.Convert(this.DailyRefillAmount, key);
|
||||
_o.DailyRefillTime = new List<long>();
|
||||
for (var _j = 0; _j < this.DailyRefillTimeLength; ++_j) {_o.DailyRefillTime.Add(TableEncryptionService.Convert(this.DailyRefillTime(_j), key));}
|
||||
|
@ -199,15 +199,15 @@ public struct CurrencyExcel : IFlatbufferObject
|
|||
_o.CurrencyType,
|
||||
_CurrencyName,
|
||||
_Icon,
|
||||
_o.Rarity_,
|
||||
_o.Rarity,
|
||||
_o.AutoChargeMsc,
|
||||
_o.AutoChargeAmount,
|
||||
_o.CurrencyOverChargeType_,
|
||||
_o.CurrencyAdditionalChargeType_,
|
||||
_o.CurrencyOverChargeType,
|
||||
_o.CurrencyAdditionalChargeType,
|
||||
_o.ChargeLimit,
|
||||
_o.OverChargeLimit,
|
||||
_SpriteName,
|
||||
_o.DailyRefillType_,
|
||||
_o.DailyRefillType,
|
||||
_o.DailyRefillAmount,
|
||||
_DailyRefillTime,
|
||||
_ExpirationDateTime,
|
||||
|
@ -225,15 +225,15 @@ public class CurrencyExcelT
|
|||
public SCHALE.Common.FlatData.CurrencyTypes CurrencyType { get; set; }
|
||||
public string CurrencyName { get; set; }
|
||||
public string Icon { get; set; }
|
||||
public SCHALE.Common.FlatData.Rarity Rarity_ { get; set; }
|
||||
public SCHALE.Common.FlatData.Rarity Rarity { get; set; }
|
||||
public int AutoChargeMsc { get; set; }
|
||||
public int AutoChargeAmount { get; set; }
|
||||
public SCHALE.Common.FlatData.CurrencyOverChargeType CurrencyOverChargeType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.CurrencyAdditionalChargeType CurrencyAdditionalChargeType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.CurrencyOverChargeType CurrencyOverChargeType { get; set; }
|
||||
public SCHALE.Common.FlatData.CurrencyAdditionalChargeType CurrencyAdditionalChargeType { get; set; }
|
||||
public long ChargeLimit { get; set; }
|
||||
public long OverChargeLimit { get; set; }
|
||||
public string SpriteName { get; set; }
|
||||
public SCHALE.Common.FlatData.DailyRefillType DailyRefillType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.DailyRefillType DailyRefillType { get; set; }
|
||||
public long DailyRefillAmount { get; set; }
|
||||
public List<long> DailyRefillTime { get; set; }
|
||||
public string ExpirationDateTime { get; set; }
|
||||
|
@ -248,20 +248,20 @@ public class CurrencyExcelT
|
|||
this.CurrencyType = SCHALE.Common.FlatData.CurrencyTypes.Invalid;
|
||||
this.CurrencyName = null;
|
||||
this.Icon = null;
|
||||
this.Rarity_ = SCHALE.Common.FlatData.Rarity.N;
|
||||
this.Rarity = SCHALE.Common.FlatData.Rarity.N;
|
||||
this.AutoChargeMsc = 0;
|
||||
this.AutoChargeAmount = 0;
|
||||
this.CurrencyOverChargeType_ = SCHALE.Common.FlatData.CurrencyOverChargeType.CanNotCharge;
|
||||
this.CurrencyAdditionalChargeType_ = SCHALE.Common.FlatData.CurrencyAdditionalChargeType.EnableAutoChargeOverLimit;
|
||||
this.CurrencyOverChargeType = SCHALE.Common.FlatData.CurrencyOverChargeType.CanNotCharge;
|
||||
this.CurrencyAdditionalChargeType = SCHALE.Common.FlatData.CurrencyAdditionalChargeType.EnableAutoChargeOverLimit;
|
||||
this.ChargeLimit = 0;
|
||||
this.OverChargeLimit = 0;
|
||||
this.SpriteName = null;
|
||||
this.DailyRefillType_ = SCHALE.Common.FlatData.DailyRefillType.None_;
|
||||
this.DailyRefillType = SCHALE.Common.FlatData.DailyRefillType.None;
|
||||
this.DailyRefillAmount = 0;
|
||||
this.DailyRefillTime = null;
|
||||
this.ExpirationDateTime = null;
|
||||
this.ExpirationNotifyDateIn = 0;
|
||||
this.ExpiryChangeParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.ExpiryChangeParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.ExpiryChangeId = 0;
|
||||
this.ExpiryChangeAmount = 0;
|
||||
}
|
||||
|
@ -278,15 +278,15 @@ static public class CurrencyExcelVerify
|
|||
&& verifier.VerifyField(tablePos, 8 /*CurrencyType*/, 4 /*SCHALE.Common.FlatData.CurrencyTypes*/, 4, false)
|
||||
&& verifier.VerifyString(tablePos, 10 /*CurrencyName*/, false)
|
||||
&& verifier.VerifyString(tablePos, 12 /*Icon*/, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*Rarity_*/, 4 /*SCHALE.Common.FlatData.Rarity*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*Rarity*/, 4 /*SCHALE.Common.FlatData.Rarity*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 16 /*AutoChargeMsc*/, 4 /*int*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 18 /*AutoChargeAmount*/, 4 /*int*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 20 /*CurrencyOverChargeType_*/, 4 /*SCHALE.Common.FlatData.CurrencyOverChargeType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 22 /*CurrencyAdditionalChargeType_*/, 4 /*SCHALE.Common.FlatData.CurrencyAdditionalChargeType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 20 /*CurrencyOverChargeType*/, 4 /*SCHALE.Common.FlatData.CurrencyOverChargeType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 22 /*CurrencyAdditionalChargeType*/, 4 /*SCHALE.Common.FlatData.CurrencyAdditionalChargeType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 24 /*ChargeLimit*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 26 /*OverChargeLimit*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyString(tablePos, 28 /*SpriteName*/, false)
|
||||
&& verifier.VerifyField(tablePos, 30 /*DailyRefillType_*/, 4 /*SCHALE.Common.FlatData.DailyRefillType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 30 /*DailyRefillType*/, 4 /*SCHALE.Common.FlatData.DailyRefillType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 32 /*DailyRefillAmount*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyVectorOfData(tablePos, 34 /*DailyRefillTime*/, 8 /*long*/, false)
|
||||
&& verifier.VerifyString(tablePos, 36 /*ExpirationDateTime*/, false)
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum DailyRefillType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Default = 1,
|
||||
Login = 2,
|
||||
};
|
||||
|
|
|
@ -21,14 +21,14 @@ public struct DefaultFurnitureExcel : IFlatbufferObject
|
|||
public DefaultFurnitureExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public long Id { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.FurnitureLocation Location { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.FurnitureLocation)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.FurnitureLocation.None_; } }
|
||||
public SCHALE.Common.FlatData.FurnitureLocation Location { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.FurnitureLocation)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.FurnitureLocation.None; } }
|
||||
public float PositionX { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetFloat(o + __p.bb_pos) : (float)0.0f; } }
|
||||
public float PositionY { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetFloat(o + __p.bb_pos) : (float)0.0f; } }
|
||||
public float Rotation { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetFloat(o + __p.bb_pos) : (float)0.0f; } }
|
||||
|
||||
public static Offset<SCHALE.Common.FlatData.DefaultFurnitureExcel> CreateDefaultFurnitureExcel(FlatBufferBuilder builder,
|
||||
long Id = 0,
|
||||
SCHALE.Common.FlatData.FurnitureLocation Location = SCHALE.Common.FlatData.FurnitureLocation.None_,
|
||||
SCHALE.Common.FlatData.FurnitureLocation Location = SCHALE.Common.FlatData.FurnitureLocation.None,
|
||||
float PositionX = 0.0f,
|
||||
float PositionY = 0.0f,
|
||||
float Rotation = 0.0f) {
|
||||
|
@ -86,7 +86,7 @@ public class DefaultFurnitureExcelT
|
|||
|
||||
public DefaultFurnitureExcelT() {
|
||||
this.Id = 0;
|
||||
this.Location = SCHALE.Common.FlatData.FurnitureLocation.None_;
|
||||
this.Location = SCHALE.Common.FlatData.FurnitureLocation.None;
|
||||
this.PositionX = 0.0f;
|
||||
this.PositionY = 0.0f;
|
||||
this.Rotation = 0.0f;
|
||||
|
|
|
@ -22,7 +22,7 @@ public struct DefaultMailExcel : IFlatbufferObject
|
|||
|
||||
public long Id { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public uint LocalizeCodeId { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetUint(o + __p.bb_pos) : (uint)0; } }
|
||||
public SCHALE.Common.FlatData.MailType MailType_ { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.MailType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.MailType.System; } }
|
||||
public SCHALE.Common.FlatData.MailType MailType { get { int o = __p.__offset(8); return o != 0 ? (SCHALE.Common.FlatData.MailType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.MailType.System; } }
|
||||
public string MailSendPeriodFrom { get { int o = __p.__offset(10); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
#if ENABLE_SPAN_T
|
||||
public Span<byte> GetMailSendPeriodFromBytes() { return __p.__vector_as_span<byte>(10, 1); }
|
||||
|
@ -65,7 +65,7 @@ public struct DefaultMailExcel : IFlatbufferObject
|
|||
public static Offset<SCHALE.Common.FlatData.DefaultMailExcel> CreateDefaultMailExcel(FlatBufferBuilder builder,
|
||||
long Id = 0,
|
||||
uint LocalizeCodeId = 0,
|
||||
SCHALE.Common.FlatData.MailType MailType_ = SCHALE.Common.FlatData.MailType.System,
|
||||
SCHALE.Common.FlatData.MailType MailType = SCHALE.Common.FlatData.MailType.System,
|
||||
StringOffset MailSendPeriodFromOffset = default(StringOffset),
|
||||
StringOffset MailSendPeriodToOffset = default(StringOffset),
|
||||
VectorOffset RewardParcelTypeOffset = default(VectorOffset),
|
||||
|
@ -78,7 +78,7 @@ public struct DefaultMailExcel : IFlatbufferObject
|
|||
DefaultMailExcel.AddRewardParcelType(builder, RewardParcelTypeOffset);
|
||||
DefaultMailExcel.AddMailSendPeriodTo(builder, MailSendPeriodToOffset);
|
||||
DefaultMailExcel.AddMailSendPeriodFrom(builder, MailSendPeriodFromOffset);
|
||||
DefaultMailExcel.AddMailType_(builder, MailType_);
|
||||
DefaultMailExcel.AddMailType(builder, MailType);
|
||||
DefaultMailExcel.AddLocalizeCodeId(builder, LocalizeCodeId);
|
||||
return DefaultMailExcel.EndDefaultMailExcel(builder);
|
||||
}
|
||||
|
@ -86,7 +86,7 @@ public struct DefaultMailExcel : IFlatbufferObject
|
|||
public static void StartDefaultMailExcel(FlatBufferBuilder builder) { builder.StartTable(8); }
|
||||
public static void AddId(FlatBufferBuilder builder, long id) { builder.AddLong(0, id, 0); }
|
||||
public static void AddLocalizeCodeId(FlatBufferBuilder builder, uint localizeCodeId) { builder.AddUint(1, localizeCodeId, 0); }
|
||||
public static void AddMailType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.MailType mailType_) { builder.AddInt(2, (int)mailType_, 0); }
|
||||
public static void AddMailType(FlatBufferBuilder builder, SCHALE.Common.FlatData.MailType mailType) { builder.AddInt(2, (int)mailType, 0); }
|
||||
public static void AddMailSendPeriodFrom(FlatBufferBuilder builder, StringOffset mailSendPeriodFromOffset) { builder.AddOffset(3, mailSendPeriodFromOffset.Value, 0); }
|
||||
public static void AddMailSendPeriodTo(FlatBufferBuilder builder, StringOffset mailSendPeriodToOffset) { builder.AddOffset(4, mailSendPeriodToOffset.Value, 0); }
|
||||
public static void AddRewardParcelType(FlatBufferBuilder builder, VectorOffset rewardParcelTypeOffset) { builder.AddOffset(5, rewardParcelTypeOffset.Value, 0); }
|
||||
|
@ -120,7 +120,7 @@ public struct DefaultMailExcel : IFlatbufferObject
|
|||
byte[] key = TableEncryptionService.CreateKey("DefaultMail");
|
||||
_o.Id = TableEncryptionService.Convert(this.Id, key);
|
||||
_o.LocalizeCodeId = TableEncryptionService.Convert(this.LocalizeCodeId, key);
|
||||
_o.MailType_ = TableEncryptionService.Convert(this.MailType_, key);
|
||||
_o.MailType = TableEncryptionService.Convert(this.MailType, key);
|
||||
_o.MailSendPeriodFrom = TableEncryptionService.Convert(this.MailSendPeriodFrom, key);
|
||||
_o.MailSendPeriodTo = TableEncryptionService.Convert(this.MailSendPeriodTo, key);
|
||||
_o.RewardParcelType = new List<SCHALE.Common.FlatData.ParcelType>();
|
||||
|
@ -153,7 +153,7 @@ public struct DefaultMailExcel : IFlatbufferObject
|
|||
builder,
|
||||
_o.Id,
|
||||
_o.LocalizeCodeId,
|
||||
_o.MailType_,
|
||||
_o.MailType,
|
||||
_MailSendPeriodFrom,
|
||||
_MailSendPeriodTo,
|
||||
_RewardParcelType,
|
||||
|
@ -166,7 +166,7 @@ public class DefaultMailExcelT
|
|||
{
|
||||
public long Id { get; set; }
|
||||
public uint LocalizeCodeId { get; set; }
|
||||
public SCHALE.Common.FlatData.MailType MailType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.MailType MailType { get; set; }
|
||||
public string MailSendPeriodFrom { get; set; }
|
||||
public string MailSendPeriodTo { get; set; }
|
||||
public List<SCHALE.Common.FlatData.ParcelType> RewardParcelType { get; set; }
|
||||
|
@ -176,7 +176,7 @@ public class DefaultMailExcelT
|
|||
public DefaultMailExcelT() {
|
||||
this.Id = 0;
|
||||
this.LocalizeCodeId = 0;
|
||||
this.MailType_ = SCHALE.Common.FlatData.MailType.System;
|
||||
this.MailType = SCHALE.Common.FlatData.MailType.System;
|
||||
this.MailSendPeriodFrom = null;
|
||||
this.MailSendPeriodTo = null;
|
||||
this.RewardParcelType = null;
|
||||
|
@ -193,7 +193,7 @@ static public class DefaultMailExcelVerify
|
|||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*Id*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*LocalizeCodeId*/, 4 /*uint*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*MailType_*/, 4 /*SCHALE.Common.FlatData.MailType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*MailType*/, 4 /*SCHALE.Common.FlatData.MailType*/, 4, false)
|
||||
&& verifier.VerifyString(tablePos, 10 /*MailSendPeriodFrom*/, false)
|
||||
&& verifier.VerifyString(tablePos, 12 /*MailSendPeriodTo*/, false)
|
||||
&& verifier.VerifyVectorOfData(tablePos, 14 /*RewardParcelType*/, 4 /*SCHALE.Common.FlatData.ParcelType*/, false)
|
||||
|
|
|
@ -20,23 +20,23 @@ public struct DefaultParcelExcel : IFlatbufferObject
|
|||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
||||
public DefaultParcelExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public SCHALE.Common.FlatData.ParcelType ParcelType_ { get { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType ParcelType { get { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.ParcelType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ParcelType.None; } }
|
||||
public long ParcelId { get { int o = __p.__offset(6); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long ParcelAmount { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
||||
public static Offset<SCHALE.Common.FlatData.DefaultParcelExcel> CreateDefaultParcelExcel(FlatBufferBuilder builder,
|
||||
SCHALE.Common.FlatData.ParcelType ParcelType_ = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType ParcelType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long ParcelId = 0,
|
||||
long ParcelAmount = 0) {
|
||||
builder.StartTable(3);
|
||||
DefaultParcelExcel.AddParcelAmount(builder, ParcelAmount);
|
||||
DefaultParcelExcel.AddParcelId(builder, ParcelId);
|
||||
DefaultParcelExcel.AddParcelType_(builder, ParcelType_);
|
||||
DefaultParcelExcel.AddParcelType(builder, ParcelType);
|
||||
return DefaultParcelExcel.EndDefaultParcelExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartDefaultParcelExcel(FlatBufferBuilder builder) { builder.StartTable(3); }
|
||||
public static void AddParcelType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ParcelType parcelType_) { builder.AddInt(0, (int)parcelType_, 0); }
|
||||
public static void AddParcelType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ParcelType parcelType) { builder.AddInt(0, (int)parcelType, 0); }
|
||||
public static void AddParcelId(FlatBufferBuilder builder, long parcelId) { builder.AddLong(1, parcelId, 0); }
|
||||
public static void AddParcelAmount(FlatBufferBuilder builder, long parcelAmount) { builder.AddLong(2, parcelAmount, 0); }
|
||||
public static Offset<SCHALE.Common.FlatData.DefaultParcelExcel> EndDefaultParcelExcel(FlatBufferBuilder builder) {
|
||||
|
@ -50,7 +50,7 @@ public struct DefaultParcelExcel : IFlatbufferObject
|
|||
}
|
||||
public void UnPackTo(DefaultParcelExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("DefaultParcel");
|
||||
_o.ParcelType_ = TableEncryptionService.Convert(this.ParcelType_, key);
|
||||
_o.ParcelType = TableEncryptionService.Convert(this.ParcelType, key);
|
||||
_o.ParcelId = TableEncryptionService.Convert(this.ParcelId, key);
|
||||
_o.ParcelAmount = TableEncryptionService.Convert(this.ParcelAmount, key);
|
||||
}
|
||||
|
@ -58,7 +58,7 @@ public struct DefaultParcelExcel : IFlatbufferObject
|
|||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.DefaultParcelExcel>);
|
||||
return CreateDefaultParcelExcel(
|
||||
builder,
|
||||
_o.ParcelType_,
|
||||
_o.ParcelType,
|
||||
_o.ParcelId,
|
||||
_o.ParcelAmount);
|
||||
}
|
||||
|
@ -66,12 +66,12 @@ public struct DefaultParcelExcel : IFlatbufferObject
|
|||
|
||||
public class DefaultParcelExcelT
|
||||
{
|
||||
public SCHALE.Common.FlatData.ParcelType ParcelType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ParcelType ParcelType { get; set; }
|
||||
public long ParcelId { get; set; }
|
||||
public long ParcelAmount { get; set; }
|
||||
|
||||
public DefaultParcelExcelT() {
|
||||
this.ParcelType_ = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.ParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.ParcelId = 0;
|
||||
this.ParcelAmount = 0;
|
||||
}
|
||||
|
@ -83,7 +83,7 @@ static public class DefaultParcelExcelVerify
|
|||
static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos)
|
||||
{
|
||||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*ParcelType_*/, 4 /*SCHALE.Common.FlatData.ParcelType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 4 /*ParcelType*/, 4 /*SCHALE.Common.FlatData.ParcelType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*ParcelId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*ParcelAmount*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyTableEnd(tablePos);
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum DialogConditionDetail : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Day = 1,
|
||||
Close = 2,
|
||||
MiniGameDreamMakerDay = 3,
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum DreamMakerEndingCondition : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Param01 = 1,
|
||||
Param02 = 2,
|
||||
Param03 = 3,
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum DreamMakerEndingRewardType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
FirstEndingReward = 1,
|
||||
LoopEndingReward = 2,
|
||||
};
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum DreamMakerEndingType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Normal = 1,
|
||||
Special = 2,
|
||||
};
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum DreamMakerMultiplierCondition : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Round = 1,
|
||||
CollectionCount = 2,
|
||||
EndingCount = 3,
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum DreamMakerParamOperationType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
GrowUpHigh = 1,
|
||||
GrowUp = 2,
|
||||
GrowDownHigh = 3,
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum DreamMakerParameterType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Param01 = 1,
|
||||
Param02 = 2,
|
||||
Param03 = 3,
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum DreamMakerResult : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Fail = 1,
|
||||
Success = 2,
|
||||
Perfect = 3,
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum DreamMakerVoiceCondition : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Fail = 1,
|
||||
Success = 2,
|
||||
Perfect = 3,
|
||||
|
|
|
@ -21,19 +21,19 @@ public struct DuplicateBonusExcel : IFlatbufferObject
|
|||
public DuplicateBonusExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
||||
|
||||
public long Id { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ItemCategory ItemCategory_ { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.ItemCategory)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ItemCategory.Coin; } }
|
||||
public SCHALE.Common.FlatData.ItemCategory ItemCategory { get { int o = __p.__offset(6); return o != 0 ? (SCHALE.Common.FlatData.ItemCategory)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.ItemCategory.Coin; } }
|
||||
public long ItemId { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long CharacterId { get { int o = __p.__offset(10); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public SCHALE.Common.FlatData.ParcelType RewardParcelType { 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_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType RewardParcelType { 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; } }
|
||||
public long RewardParcelId { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long RewardParcelAmount { get { int o = __p.__offset(16); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
||||
public static Offset<SCHALE.Common.FlatData.DuplicateBonusExcel> CreateDuplicateBonusExcel(FlatBufferBuilder builder,
|
||||
long Id = 0,
|
||||
SCHALE.Common.FlatData.ItemCategory ItemCategory_ = SCHALE.Common.FlatData.ItemCategory.Coin,
|
||||
SCHALE.Common.FlatData.ItemCategory ItemCategory = SCHALE.Common.FlatData.ItemCategory.Coin,
|
||||
long ItemId = 0,
|
||||
long CharacterId = 0,
|
||||
SCHALE.Common.FlatData.ParcelType RewardParcelType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType RewardParcelType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long RewardParcelId = 0,
|
||||
long RewardParcelAmount = 0) {
|
||||
builder.StartTable(7);
|
||||
|
@ -43,13 +43,13 @@ public struct DuplicateBonusExcel : IFlatbufferObject
|
|||
DuplicateBonusExcel.AddItemId(builder, ItemId);
|
||||
DuplicateBonusExcel.AddId(builder, Id);
|
||||
DuplicateBonusExcel.AddRewardParcelType(builder, RewardParcelType);
|
||||
DuplicateBonusExcel.AddItemCategory_(builder, ItemCategory_);
|
||||
DuplicateBonusExcel.AddItemCategory(builder, ItemCategory);
|
||||
return DuplicateBonusExcel.EndDuplicateBonusExcel(builder);
|
||||
}
|
||||
|
||||
public static void StartDuplicateBonusExcel(FlatBufferBuilder builder) { builder.StartTable(7); }
|
||||
public static void AddId(FlatBufferBuilder builder, long id) { builder.AddLong(0, id, 0); }
|
||||
public static void AddItemCategory_(FlatBufferBuilder builder, SCHALE.Common.FlatData.ItemCategory itemCategory_) { builder.AddInt(1, (int)itemCategory_, 0); }
|
||||
public static void AddItemCategory(FlatBufferBuilder builder, SCHALE.Common.FlatData.ItemCategory itemCategory) { builder.AddInt(1, (int)itemCategory, 0); }
|
||||
public static void AddItemId(FlatBufferBuilder builder, long itemId) { builder.AddLong(2, itemId, 0); }
|
||||
public static void AddCharacterId(FlatBufferBuilder builder, long characterId) { builder.AddLong(3, characterId, 0); }
|
||||
public static void AddRewardParcelType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ParcelType rewardParcelType) { builder.AddInt(4, (int)rewardParcelType, 0); }
|
||||
|
@ -67,7 +67,7 @@ public struct DuplicateBonusExcel : IFlatbufferObject
|
|||
public void UnPackTo(DuplicateBonusExcelT _o) {
|
||||
byte[] key = TableEncryptionService.CreateKey("DuplicateBonus");
|
||||
_o.Id = TableEncryptionService.Convert(this.Id, key);
|
||||
_o.ItemCategory_ = TableEncryptionService.Convert(this.ItemCategory_, key);
|
||||
_o.ItemCategory = TableEncryptionService.Convert(this.ItemCategory, key);
|
||||
_o.ItemId = TableEncryptionService.Convert(this.ItemId, key);
|
||||
_o.CharacterId = TableEncryptionService.Convert(this.CharacterId, key);
|
||||
_o.RewardParcelType = TableEncryptionService.Convert(this.RewardParcelType, key);
|
||||
|
@ -79,7 +79,7 @@ public struct DuplicateBonusExcel : IFlatbufferObject
|
|||
return CreateDuplicateBonusExcel(
|
||||
builder,
|
||||
_o.Id,
|
||||
_o.ItemCategory_,
|
||||
_o.ItemCategory,
|
||||
_o.ItemId,
|
||||
_o.CharacterId,
|
||||
_o.RewardParcelType,
|
||||
|
@ -91,7 +91,7 @@ public struct DuplicateBonusExcel : IFlatbufferObject
|
|||
public class DuplicateBonusExcelT
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public SCHALE.Common.FlatData.ItemCategory ItemCategory_ { get; set; }
|
||||
public SCHALE.Common.FlatData.ItemCategory ItemCategory { get; set; }
|
||||
public long ItemId { get; set; }
|
||||
public long CharacterId { get; set; }
|
||||
public SCHALE.Common.FlatData.ParcelType RewardParcelType { get; set; }
|
||||
|
@ -100,10 +100,10 @@ public class DuplicateBonusExcelT
|
|||
|
||||
public DuplicateBonusExcelT() {
|
||||
this.Id = 0;
|
||||
this.ItemCategory_ = SCHALE.Common.FlatData.ItemCategory.Coin;
|
||||
this.ItemCategory = SCHALE.Common.FlatData.ItemCategory.Coin;
|
||||
this.ItemId = 0;
|
||||
this.CharacterId = 0;
|
||||
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.RewardParcelId = 0;
|
||||
this.RewardParcelAmount = 0;
|
||||
}
|
||||
|
@ -116,7 +116,7 @@ static public class DuplicateBonusExcelVerify
|
|||
{
|
||||
return verifier.VerifyTableStart(tablePos)
|
||||
&& verifier.VerifyField(tablePos, 4 /*Id*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*ItemCategory_*/, 4 /*SCHALE.Common.FlatData.ItemCategory*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 6 /*ItemCategory*/, 4 /*SCHALE.Common.FlatData.ItemCategory*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 8 /*ItemId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 10 /*CharacterId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*RewardParcelType*/, 4 /*SCHALE.Common.FlatData.ParcelType*/, 4, false)
|
||||
|
|
|
@ -38,26 +38,26 @@ public struct EchelonConstraintExcel : IFlatbufferObject
|
|||
public ArraySegment<byte>? GetPersonalityIdBytes() { return __p.__vector_as_arraysegment(10); }
|
||||
#endif
|
||||
public long[] GetPersonalityIdArray() { return __p.__vector_as_array<long>(10); }
|
||||
public SCHALE.Common.FlatData.WeaponType WeaponType_ { get { int o = __p.__offset(12); return o != 0 ? (SCHALE.Common.FlatData.WeaponType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.WeaponType.None_; } }
|
||||
public SCHALE.Common.FlatData.School School_ { get { int o = __p.__offset(14); return o != 0 ? (SCHALE.Common.FlatData.School)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.School.None_; } }
|
||||
public SCHALE.Common.FlatData.Club Club_ { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.Club)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.Club.None_; } }
|
||||
public SCHALE.Common.FlatData.TacticRole Role { get { int o = __p.__offset(18); return o != 0 ? (SCHALE.Common.FlatData.TacticRole)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.TacticRole.None_; } }
|
||||
public SCHALE.Common.FlatData.WeaponType WeaponType { get { int o = __p.__offset(12); return o != 0 ? (SCHALE.Common.FlatData.WeaponType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.WeaponType.None; } }
|
||||
public SCHALE.Common.FlatData.School School { get { int o = __p.__offset(14); return o != 0 ? (SCHALE.Common.FlatData.School)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.School.None; } }
|
||||
public SCHALE.Common.FlatData.Club Club { get { int o = __p.__offset(16); return o != 0 ? (SCHALE.Common.FlatData.Club)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.Club.None; } }
|
||||
public SCHALE.Common.FlatData.TacticRole Role { get { int o = __p.__offset(18); return o != 0 ? (SCHALE.Common.FlatData.TacticRole)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.TacticRole.None; } }
|
||||
|
||||
public static Offset<SCHALE.Common.FlatData.EchelonConstraintExcel> CreateEchelonConstraintExcel(FlatBufferBuilder builder,
|
||||
long GroupId = 0,
|
||||
bool IsWhiteList = false,
|
||||
VectorOffset CharacterIdOffset = default(VectorOffset),
|
||||
VectorOffset PersonalityIdOffset = default(VectorOffset),
|
||||
SCHALE.Common.FlatData.WeaponType WeaponType_ = SCHALE.Common.FlatData.WeaponType.None_,
|
||||
SCHALE.Common.FlatData.School School_ = SCHALE.Common.FlatData.School.None_,
|
||||
SCHALE.Common.FlatData.Club Club_ = SCHALE.Common.FlatData.Club.None_,
|
||||
SCHALE.Common.FlatData.TacticRole Role = SCHALE.Common.FlatData.TacticRole.None_) {
|
||||
SCHALE.Common.FlatData.WeaponType WeaponType = SCHALE.Common.FlatData.WeaponType.None,
|
||||
SCHALE.Common.FlatData.School School = SCHALE.Common.FlatData.School.None,
|
||||
SCHALE.Common.FlatData.Club Club = SCHALE.Common.FlatData.Club.None,
|
||||
SCHALE.Common.FlatData.TacticRole Role = SCHALE.Common.FlatData.TacticRole.None) {
|
||||
builder.StartTable(8);
|
||||
EchelonConstraintExcel.AddGroupId(builder, GroupId);
|
||||
EchelonConstraintExcel.AddRole(builder, Role);
|
||||
EchelonConstraintExcel.AddClub_(builder, Club_);
|
||||
EchelonConstraintExcel.AddSchool_(builder, School_);
|
||||
EchelonConstraintExcel.AddWeaponType_(builder, WeaponType_);
|
||||
EchelonConstraintExcel.AddClub(builder, Club);
|
||||
EchelonConstraintExcel.AddSchool(builder, School);
|
||||
EchelonConstraintExcel.AddWeaponType(builder, WeaponType);
|
||||
EchelonConstraintExcel.AddPersonalityId(builder, PersonalityIdOffset);
|
||||
EchelonConstraintExcel.AddCharacterId(builder, CharacterIdOffset);
|
||||
EchelonConstraintExcel.AddIsWhiteList(builder, IsWhiteList);
|
||||
|
@ -79,9 +79,9 @@ public struct EchelonConstraintExcel : IFlatbufferObject
|
|||
public static VectorOffset CreatePersonalityIdVectorBlock(FlatBufferBuilder builder, ArraySegment<long> data) { builder.StartVector(8, data.Count, 8); builder.Add(data); return builder.EndVector(); }
|
||||
public static VectorOffset CreatePersonalityIdVectorBlock(FlatBufferBuilder builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<long>(dataPtr, sizeInBytes); return builder.EndVector(); }
|
||||
public static void StartPersonalityIdVector(FlatBufferBuilder builder, int numElems) { builder.StartVector(8, numElems, 8); }
|
||||
public static void AddWeaponType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.WeaponType weaponType_) { builder.AddInt(4, (int)weaponType_, 0); }
|
||||
public static void AddSchool_(FlatBufferBuilder builder, SCHALE.Common.FlatData.School school_) { builder.AddInt(5, (int)school_, 0); }
|
||||
public static void AddClub_(FlatBufferBuilder builder, SCHALE.Common.FlatData.Club club_) { builder.AddInt(6, (int)club_, 0); }
|
||||
public static void AddWeaponType(FlatBufferBuilder builder, SCHALE.Common.FlatData.WeaponType weaponType) { builder.AddInt(4, (int)weaponType, 0); }
|
||||
public static void AddSchool(FlatBufferBuilder builder, SCHALE.Common.FlatData.School school) { builder.AddInt(5, (int)school, 0); }
|
||||
public static void AddClub(FlatBufferBuilder builder, SCHALE.Common.FlatData.Club club) { builder.AddInt(6, (int)club, 0); }
|
||||
public static void AddRole(FlatBufferBuilder builder, SCHALE.Common.FlatData.TacticRole role) { builder.AddInt(7, (int)role, 0); }
|
||||
public static Offset<SCHALE.Common.FlatData.EchelonConstraintExcel> EndEchelonConstraintExcel(FlatBufferBuilder builder) {
|
||||
int o = builder.EndTable();
|
||||
|
@ -100,9 +100,9 @@ public struct EchelonConstraintExcel : IFlatbufferObject
|
|||
for (var _j = 0; _j < this.CharacterIdLength; ++_j) {_o.CharacterId.Add(TableEncryptionService.Convert(this.CharacterId(_j), key));}
|
||||
_o.PersonalityId = new List<long>();
|
||||
for (var _j = 0; _j < this.PersonalityIdLength; ++_j) {_o.PersonalityId.Add(TableEncryptionService.Convert(this.PersonalityId(_j), key));}
|
||||
_o.WeaponType_ = TableEncryptionService.Convert(this.WeaponType_, key);
|
||||
_o.School_ = TableEncryptionService.Convert(this.School_, key);
|
||||
_o.Club_ = TableEncryptionService.Convert(this.Club_, key);
|
||||
_o.WeaponType = TableEncryptionService.Convert(this.WeaponType, key);
|
||||
_o.School = TableEncryptionService.Convert(this.School, key);
|
||||
_o.Club = TableEncryptionService.Convert(this.Club, key);
|
||||
_o.Role = TableEncryptionService.Convert(this.Role, key);
|
||||
}
|
||||
public static Offset<SCHALE.Common.FlatData.EchelonConstraintExcel> Pack(FlatBufferBuilder builder, EchelonConstraintExcelT _o) {
|
||||
|
@ -123,9 +123,9 @@ public struct EchelonConstraintExcel : IFlatbufferObject
|
|||
_o.IsWhiteList,
|
||||
_CharacterId,
|
||||
_PersonalityId,
|
||||
_o.WeaponType_,
|
||||
_o.School_,
|
||||
_o.Club_,
|
||||
_o.WeaponType,
|
||||
_o.School,
|
||||
_o.Club,
|
||||
_o.Role);
|
||||
}
|
||||
}
|
||||
|
@ -136,9 +136,9 @@ public class EchelonConstraintExcelT
|
|||
public bool IsWhiteList { get; set; }
|
||||
public List<long> CharacterId { get; set; }
|
||||
public List<long> PersonalityId { get; set; }
|
||||
public SCHALE.Common.FlatData.WeaponType WeaponType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.School School_ { get; set; }
|
||||
public SCHALE.Common.FlatData.Club Club_ { get; set; }
|
||||
public SCHALE.Common.FlatData.WeaponType WeaponType { get; set; }
|
||||
public SCHALE.Common.FlatData.School School { get; set; }
|
||||
public SCHALE.Common.FlatData.Club Club { get; set; }
|
||||
public SCHALE.Common.FlatData.TacticRole Role { get; set; }
|
||||
|
||||
public EchelonConstraintExcelT() {
|
||||
|
@ -146,10 +146,10 @@ public class EchelonConstraintExcelT
|
|||
this.IsWhiteList = false;
|
||||
this.CharacterId = null;
|
||||
this.PersonalityId = null;
|
||||
this.WeaponType_ = SCHALE.Common.FlatData.WeaponType.None_;
|
||||
this.School_ = SCHALE.Common.FlatData.School.None_;
|
||||
this.Club_ = SCHALE.Common.FlatData.Club.None_;
|
||||
this.Role = SCHALE.Common.FlatData.TacticRole.None_;
|
||||
this.WeaponType = SCHALE.Common.FlatData.WeaponType.None;
|
||||
this.School = SCHALE.Common.FlatData.School.None;
|
||||
this.Club = SCHALE.Common.FlatData.Club.None;
|
||||
this.Role = SCHALE.Common.FlatData.TacticRole.None;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -163,9 +163,9 @@ static public class EchelonConstraintExcelVerify
|
|||
&& verifier.VerifyField(tablePos, 6 /*IsWhiteList*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyVectorOfData(tablePos, 8 /*CharacterId*/, 8 /*long*/, false)
|
||||
&& verifier.VerifyVectorOfData(tablePos, 10 /*PersonalityId*/, 8 /*long*/, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*WeaponType_*/, 4 /*SCHALE.Common.FlatData.WeaponType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*School_*/, 4 /*SCHALE.Common.FlatData.School*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 16 /*Club_*/, 4 /*SCHALE.Common.FlatData.Club*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 12 /*WeaponType*/, 4 /*SCHALE.Common.FlatData.WeaponType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 14 /*School*/, 4 /*SCHALE.Common.FlatData.School*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 16 /*Club*/, 4 /*SCHALE.Common.FlatData.Club*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 18 /*Role*/, 4 /*SCHALE.Common.FlatData.TacticRole*/, 4, false)
|
||||
&& verifier.VerifyTableEnd(tablePos);
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum EchelonType : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Adventure = 1,
|
||||
Raid = 2,
|
||||
ArenaAttack = 3,
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
|||
|
||||
public enum EffectBone : int
|
||||
{
|
||||
None_ = 0,
|
||||
None = 0,
|
||||
Shot = 1,
|
||||
Head = 2,
|
||||
Body = 3,
|
||||
|
|
|
@ -30,7 +30,7 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
public ArraySegment<byte>? GetRaidBossGroupBytes() { return __p.__vector_as_arraysegment(10); }
|
||||
#endif
|
||||
public byte[] GetRaidBossGroupArray() { return __p.__vector_as_array<byte>(10); }
|
||||
public SCHALE.Common.FlatData.ParcelType RaidEnterCostType { 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_; } }
|
||||
public SCHALE.Common.FlatData.ParcelType RaidEnterCostType { 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; } }
|
||||
public long RaidEnterCostId { get { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int RaidEnterCostAmount { get { int o = __p.__offset(16); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
public string BossSpinePath { get { int o = __p.__offset(18); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||
|
@ -63,7 +63,7 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
public ArraySegment<byte>? GetBossCharacterIdBytes() { return __p.__vector_as_arraysegment(26); }
|
||||
#endif
|
||||
public long[] GetBossCharacterIdArray() { return __p.__vector_as_array<long>(26); }
|
||||
public SCHALE.Common.FlatData.Difficulty Difficulty_ { get { int o = __p.__offset(28); return o != 0 ? (SCHALE.Common.FlatData.Difficulty)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.Difficulty.Normal; } }
|
||||
public SCHALE.Common.FlatData.Difficulty Difficulty { get { int o = __p.__offset(28); return o != 0 ? (SCHALE.Common.FlatData.Difficulty)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.Difficulty.Normal; } }
|
||||
public bool IsOpen { get { int o = __p.__offset(30); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public long MaxPlayerCount { get { int o = __p.__offset(32); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public int RaidRoomLifeTime { get { int o = __p.__offset(34); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||
|
@ -83,7 +83,7 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
public ArraySegment<byte>? GetEnterTimeLineBytes() { return __p.__vector_as_arraysegment(42); }
|
||||
#endif
|
||||
public byte[] GetEnterTimeLineArray() { return __p.__vector_as_array<byte>(42); }
|
||||
public SCHALE.Common.FlatData.TacticEnvironment TacticEnvironment_ { get { int o = __p.__offset(44); return o != 0 ? (SCHALE.Common.FlatData.TacticEnvironment)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.TacticEnvironment.None_; } }
|
||||
public SCHALE.Common.FlatData.TacticEnvironment TacticEnvironment { get { int o = __p.__offset(44); return o != 0 ? (SCHALE.Common.FlatData.TacticEnvironment)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.TacticEnvironment.None; } }
|
||||
public long DefaultClearScore { get { int o = __p.__offset(46); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long MaximumScore { get { int o = __p.__offset(48); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
public long PerSecondMinusScore { get { int o = __p.__offset(50); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||
|
@ -128,14 +128,14 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
public uint ClearScenarioKey { get { int o = __p.__offset(74); return o != 0 ? __p.bb.GetUint(o + __p.bb_pos) : (uint)0; } }
|
||||
public bool ShowSkillCard { get { int o = __p.__offset(76); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||
public uint BossBGInfoKey { get { int o = __p.__offset(78); return o != 0 ? __p.bb.GetUint(o + __p.bb_pos) : (uint)0; } }
|
||||
public SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType_ { get { int o = __p.__offset(80); return o != 0 ? (SCHALE.Common.FlatData.EchelonExtensionType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EchelonExtensionType.Base; } }
|
||||
public SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType { get { int o = __p.__offset(80); return o != 0 ? (SCHALE.Common.FlatData.EchelonExtensionType)__p.bb.GetInt(o + __p.bb_pos) : SCHALE.Common.FlatData.EchelonExtensionType.Base; } }
|
||||
|
||||
public static Offset<SCHALE.Common.FlatData.EliminateRaidStageExcel> CreateEliminateRaidStageExcel(FlatBufferBuilder builder,
|
||||
long Id = 0,
|
||||
bool UseBossIndex = false,
|
||||
bool UseBossAIPhaseSync = false,
|
||||
StringOffset RaidBossGroupOffset = default(StringOffset),
|
||||
SCHALE.Common.FlatData.ParcelType RaidEnterCostType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||
SCHALE.Common.FlatData.ParcelType RaidEnterCostType = SCHALE.Common.FlatData.ParcelType.None,
|
||||
long RaidEnterCostId = 0,
|
||||
int RaidEnterCostAmount = 0,
|
||||
StringOffset BossSpinePathOffset = default(StringOffset),
|
||||
|
@ -143,7 +143,7 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
StringOffset BGPathOffset = default(StringOffset),
|
||||
long RaidCharacterId = 0,
|
||||
VectorOffset BossCharacterIdOffset = default(VectorOffset),
|
||||
SCHALE.Common.FlatData.Difficulty Difficulty_ = SCHALE.Common.FlatData.Difficulty.Normal,
|
||||
SCHALE.Common.FlatData.Difficulty Difficulty = SCHALE.Common.FlatData.Difficulty.Normal,
|
||||
bool IsOpen = false,
|
||||
long MaxPlayerCount = 0,
|
||||
int RaidRoomLifeTime = 0,
|
||||
|
@ -151,7 +151,7 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
long GroundId = 0,
|
||||
StringOffset GroundDevNameOffset = default(StringOffset),
|
||||
StringOffset EnterTimeLineOffset = default(StringOffset),
|
||||
SCHALE.Common.FlatData.TacticEnvironment TacticEnvironment_ = SCHALE.Common.FlatData.TacticEnvironment.None_,
|
||||
SCHALE.Common.FlatData.TacticEnvironment TacticEnvironment = SCHALE.Common.FlatData.TacticEnvironment.None,
|
||||
long DefaultClearScore = 0,
|
||||
long MaximumScore = 0,
|
||||
long PerSecondMinusScore = 0,
|
||||
|
@ -169,7 +169,7 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
uint ClearScenarioKey = 0,
|
||||
bool ShowSkillCard = false,
|
||||
uint BossBGInfoKey = 0,
|
||||
SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType_ = SCHALE.Common.FlatData.EchelonExtensionType.Base) {
|
||||
SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType = SCHALE.Common.FlatData.EchelonExtensionType.Base) {
|
||||
builder.StartTable(39);
|
||||
EliminateRaidStageExcel.AddTimeLinePhase(builder, TimeLinePhase);
|
||||
EliminateRaidStageExcel.AddRaidRewardGroupId(builder, RaidRewardGroupId);
|
||||
|
@ -185,7 +185,7 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
EliminateRaidStageExcel.AddRaidCharacterId(builder, RaidCharacterId);
|
||||
EliminateRaidStageExcel.AddRaidEnterCostId(builder, RaidEnterCostId);
|
||||
EliminateRaidStageExcel.AddId(builder, Id);
|
||||
EliminateRaidStageExcel.AddEchelonExtensionType_(builder, EchelonExtensionType_);
|
||||
EliminateRaidStageExcel.AddEchelonExtensionType(builder, EchelonExtensionType);
|
||||
EliminateRaidStageExcel.AddBossBGInfoKey(builder, BossBGInfoKey);
|
||||
EliminateRaidStageExcel.AddClearScenarioKey(builder, ClearScenarioKey);
|
||||
EliminateRaidStageExcel.AddEnterScenarioKey(builder, EnterScenarioKey);
|
||||
|
@ -194,11 +194,11 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
EliminateRaidStageExcel.AddBattleReadyTimelinePhaseEnd(builder, BattleReadyTimelinePhaseEndOffset);
|
||||
EliminateRaidStageExcel.AddBattleReadyTimelinePhaseStart(builder, BattleReadyTimelinePhaseStartOffset);
|
||||
EliminateRaidStageExcel.AddBattleReadyTimelinePath(builder, BattleReadyTimelinePathOffset);
|
||||
EliminateRaidStageExcel.AddTacticEnvironment_(builder, TacticEnvironment_);
|
||||
EliminateRaidStageExcel.AddTacticEnvironment(builder, TacticEnvironment);
|
||||
EliminateRaidStageExcel.AddEnterTimeLine(builder, EnterTimeLineOffset);
|
||||
EliminateRaidStageExcel.AddGroundDevName(builder, GroundDevNameOffset);
|
||||
EliminateRaidStageExcel.AddRaidRoomLifeTime(builder, RaidRoomLifeTime);
|
||||
EliminateRaidStageExcel.AddDifficulty_(builder, Difficulty_);
|
||||
EliminateRaidStageExcel.AddDifficulty(builder, Difficulty);
|
||||
EliminateRaidStageExcel.AddBossCharacterId(builder, BossCharacterIdOffset);
|
||||
EliminateRaidStageExcel.AddBGPath(builder, BGPathOffset);
|
||||
EliminateRaidStageExcel.AddPortraitPath(builder, PortraitPathOffset);
|
||||
|
@ -231,7 +231,7 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
public static VectorOffset CreateBossCharacterIdVectorBlock(FlatBufferBuilder builder, ArraySegment<long> data) { builder.StartVector(8, data.Count, 8); builder.Add(data); return builder.EndVector(); }
|
||||
public static VectorOffset CreateBossCharacterIdVectorBlock(FlatBufferBuilder builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<long>(dataPtr, sizeInBytes); return builder.EndVector(); }
|
||||
public static void StartBossCharacterIdVector(FlatBufferBuilder builder, int numElems) { builder.StartVector(8, numElems, 8); }
|
||||
public static void AddDifficulty_(FlatBufferBuilder builder, SCHALE.Common.FlatData.Difficulty difficulty_) { builder.AddInt(12, (int)difficulty_, 0); }
|
||||
public static void AddDifficulty(FlatBufferBuilder builder, SCHALE.Common.FlatData.Difficulty difficulty) { builder.AddInt(12, (int)difficulty, 0); }
|
||||
public static void AddIsOpen(FlatBufferBuilder builder, bool isOpen) { builder.AddBool(13, isOpen, false); }
|
||||
public static void AddMaxPlayerCount(FlatBufferBuilder builder, long maxPlayerCount) { builder.AddLong(14, maxPlayerCount, 0); }
|
||||
public static void AddRaidRoomLifeTime(FlatBufferBuilder builder, int raidRoomLifeTime) { builder.AddInt(15, raidRoomLifeTime, 0); }
|
||||
|
@ -239,7 +239,7 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
public static void AddGroundId(FlatBufferBuilder builder, long groundId) { builder.AddLong(17, groundId, 0); }
|
||||
public static void AddGroundDevName(FlatBufferBuilder builder, StringOffset groundDevNameOffset) { builder.AddOffset(18, groundDevNameOffset.Value, 0); }
|
||||
public static void AddEnterTimeLine(FlatBufferBuilder builder, StringOffset enterTimeLineOffset) { builder.AddOffset(19, enterTimeLineOffset.Value, 0); }
|
||||
public static void AddTacticEnvironment_(FlatBufferBuilder builder, SCHALE.Common.FlatData.TacticEnvironment tacticEnvironment_) { builder.AddInt(20, (int)tacticEnvironment_, 0); }
|
||||
public static void AddTacticEnvironment(FlatBufferBuilder builder, SCHALE.Common.FlatData.TacticEnvironment tacticEnvironment) { builder.AddInt(20, (int)tacticEnvironment, 0); }
|
||||
public static void AddDefaultClearScore(FlatBufferBuilder builder, long defaultClearScore) { builder.AddLong(21, defaultClearScore, 0); }
|
||||
public static void AddMaximumScore(FlatBufferBuilder builder, long maximumScore) { builder.AddLong(22, maximumScore, 0); }
|
||||
public static void AddPerSecondMinusScore(FlatBufferBuilder builder, long perSecondMinusScore) { builder.AddLong(23, perSecondMinusScore, 0); }
|
||||
|
@ -272,7 +272,7 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
public static void AddClearScenarioKey(FlatBufferBuilder builder, uint clearScenarioKey) { builder.AddUint(35, clearScenarioKey, 0); }
|
||||
public static void AddShowSkillCard(FlatBufferBuilder builder, bool showSkillCard) { builder.AddBool(36, showSkillCard, false); }
|
||||
public static void AddBossBGInfoKey(FlatBufferBuilder builder, uint bossBGInfoKey) { builder.AddUint(37, bossBGInfoKey, 0); }
|
||||
public static void AddEchelonExtensionType_(FlatBufferBuilder builder, SCHALE.Common.FlatData.EchelonExtensionType echelonExtensionType_) { builder.AddInt(38, (int)echelonExtensionType_, 0); }
|
||||
public static void AddEchelonExtensionType(FlatBufferBuilder builder, SCHALE.Common.FlatData.EchelonExtensionType echelonExtensionType) { builder.AddInt(38, (int)echelonExtensionType, 0); }
|
||||
public static Offset<SCHALE.Common.FlatData.EliminateRaidStageExcel> EndEliminateRaidStageExcel(FlatBufferBuilder builder) {
|
||||
int o = builder.EndTable();
|
||||
return new Offset<SCHALE.Common.FlatData.EliminateRaidStageExcel>(o);
|
||||
|
@ -297,7 +297,7 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
_o.RaidCharacterId = TableEncryptionService.Convert(this.RaidCharacterId, key);
|
||||
_o.BossCharacterId = new List<long>();
|
||||
for (var _j = 0; _j < this.BossCharacterIdLength; ++_j) {_o.BossCharacterId.Add(TableEncryptionService.Convert(this.BossCharacterId(_j), key));}
|
||||
_o.Difficulty_ = TableEncryptionService.Convert(this.Difficulty_, key);
|
||||
_o.Difficulty = TableEncryptionService.Convert(this.Difficulty, key);
|
||||
_o.IsOpen = TableEncryptionService.Convert(this.IsOpen, key);
|
||||
_o.MaxPlayerCount = TableEncryptionService.Convert(this.MaxPlayerCount, key);
|
||||
_o.RaidRoomLifeTime = TableEncryptionService.Convert(this.RaidRoomLifeTime, key);
|
||||
|
@ -305,7 +305,7 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
_o.GroundId = TableEncryptionService.Convert(this.GroundId, key);
|
||||
_o.GroundDevName = TableEncryptionService.Convert(this.GroundDevName, key);
|
||||
_o.EnterTimeLine = TableEncryptionService.Convert(this.EnterTimeLine, key);
|
||||
_o.TacticEnvironment_ = TableEncryptionService.Convert(this.TacticEnvironment_, key);
|
||||
_o.TacticEnvironment = TableEncryptionService.Convert(this.TacticEnvironment, key);
|
||||
_o.DefaultClearScore = TableEncryptionService.Convert(this.DefaultClearScore, key);
|
||||
_o.MaximumScore = TableEncryptionService.Convert(this.MaximumScore, key);
|
||||
_o.PerSecondMinusScore = TableEncryptionService.Convert(this.PerSecondMinusScore, key);
|
||||
|
@ -326,7 +326,7 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
_o.ClearScenarioKey = TableEncryptionService.Convert(this.ClearScenarioKey, key);
|
||||
_o.ShowSkillCard = TableEncryptionService.Convert(this.ShowSkillCard, key);
|
||||
_o.BossBGInfoKey = TableEncryptionService.Convert(this.BossBGInfoKey, key);
|
||||
_o.EchelonExtensionType_ = TableEncryptionService.Convert(this.EchelonExtensionType_, key);
|
||||
_o.EchelonExtensionType = TableEncryptionService.Convert(this.EchelonExtensionType, key);
|
||||
}
|
||||
public static Offset<SCHALE.Common.FlatData.EliminateRaidStageExcel> Pack(FlatBufferBuilder builder, EliminateRaidStageExcelT _o) {
|
||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.EliminateRaidStageExcel>);
|
||||
|
@ -373,7 +373,7 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
_BGPath,
|
||||
_o.RaidCharacterId,
|
||||
_BossCharacterId,
|
||||
_o.Difficulty_,
|
||||
_o.Difficulty,
|
||||
_o.IsOpen,
|
||||
_o.MaxPlayerCount,
|
||||
_o.RaidRoomLifeTime,
|
||||
|
@ -381,7 +381,7 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
_o.GroundId,
|
||||
_GroundDevName,
|
||||
_EnterTimeLine,
|
||||
_o.TacticEnvironment_,
|
||||
_o.TacticEnvironment,
|
||||
_o.DefaultClearScore,
|
||||
_o.MaximumScore,
|
||||
_o.PerSecondMinusScore,
|
||||
|
@ -399,7 +399,7 @@ public struct EliminateRaidStageExcel : IFlatbufferObject
|
|||
_o.ClearScenarioKey,
|
||||
_o.ShowSkillCard,
|
||||
_o.BossBGInfoKey,
|
||||
_o.EchelonExtensionType_);
|
||||
_o.EchelonExtensionType);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -417,7 +417,7 @@ public class EliminateRaidStageExcelT
|
|||
public string BGPath { get; set; }
|
||||
public long RaidCharacterId { get; set; }
|
||||
public List<long> BossCharacterId { get; set; }
|
||||
public SCHALE.Common.FlatData.Difficulty Difficulty_ { get; set; }
|
||||
public SCHALE.Common.FlatData.Difficulty Difficulty { get; set; }
|
||||
public bool IsOpen { get; set; }
|
||||
public long MaxPlayerCount { get; set; }
|
||||
public int RaidRoomLifeTime { get; set; }
|
||||
|
@ -425,7 +425,7 @@ public class EliminateRaidStageExcelT
|
|||
public long GroundId { get; set; }
|
||||
public string GroundDevName { get; set; }
|
||||
public string EnterTimeLine { get; set; }
|
||||
public SCHALE.Common.FlatData.TacticEnvironment TacticEnvironment_ { get; set; }
|
||||
public SCHALE.Common.FlatData.TacticEnvironment TacticEnvironment { get; set; }
|
||||
public long DefaultClearScore { get; set; }
|
||||
public long MaximumScore { get; set; }
|
||||
public long PerSecondMinusScore { get; set; }
|
||||
|
@ -443,14 +443,14 @@ public class EliminateRaidStageExcelT
|
|||
public uint ClearScenarioKey { get; set; }
|
||||
public bool ShowSkillCard { get; set; }
|
||||
public uint BossBGInfoKey { get; set; }
|
||||
public SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType_ { get; set; }
|
||||
public SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType { get; set; }
|
||||
|
||||
public EliminateRaidStageExcelT() {
|
||||
this.Id = 0;
|
||||
this.UseBossIndex = false;
|
||||
this.UseBossAIPhaseSync = false;
|
||||
this.RaidBossGroup = null;
|
||||
this.RaidEnterCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||
this.RaidEnterCostType = SCHALE.Common.FlatData.ParcelType.None;
|
||||
this.RaidEnterCostId = 0;
|
||||
this.RaidEnterCostAmount = 0;
|
||||
this.BossSpinePath = null;
|
||||
|
@ -458,7 +458,7 @@ public class EliminateRaidStageExcelT
|
|||
this.BGPath = null;
|
||||
this.RaidCharacterId = 0;
|
||||
this.BossCharacterId = null;
|
||||
this.Difficulty_ = SCHALE.Common.FlatData.Difficulty.Normal;
|
||||
this.Difficulty = SCHALE.Common.FlatData.Difficulty.Normal;
|
||||
this.IsOpen = false;
|
||||
this.MaxPlayerCount = 0;
|
||||
this.RaidRoomLifeTime = 0;
|
||||
|
@ -466,7 +466,7 @@ public class EliminateRaidStageExcelT
|
|||
this.GroundId = 0;
|
||||
this.GroundDevName = null;
|
||||
this.EnterTimeLine = null;
|
||||
this.TacticEnvironment_ = SCHALE.Common.FlatData.TacticEnvironment.None_;
|
||||
this.TacticEnvironment = SCHALE.Common.FlatData.TacticEnvironment.None;
|
||||
this.DefaultClearScore = 0;
|
||||
this.MaximumScore = 0;
|
||||
this.PerSecondMinusScore = 0;
|
||||
|
@ -484,7 +484,7 @@ public class EliminateRaidStageExcelT
|
|||
this.ClearScenarioKey = 0;
|
||||
this.ShowSkillCard = false;
|
||||
this.BossBGInfoKey = 0;
|
||||
this.EchelonExtensionType_ = SCHALE.Common.FlatData.EchelonExtensionType.Base;
|
||||
this.EchelonExtensionType = SCHALE.Common.FlatData.EchelonExtensionType.Base;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -506,7 +506,7 @@ static public class EliminateRaidStageExcelVerify
|
|||
&& verifier.VerifyString(tablePos, 22 /*BGPath*/, false)
|
||||
&& verifier.VerifyField(tablePos, 24 /*RaidCharacterId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyVectorOfData(tablePos, 26 /*BossCharacterId*/, 8 /*long*/, false)
|
||||
&& verifier.VerifyField(tablePos, 28 /*Difficulty_*/, 4 /*SCHALE.Common.FlatData.Difficulty*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 28 /*Difficulty*/, 4 /*SCHALE.Common.FlatData.Difficulty*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 30 /*IsOpen*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyField(tablePos, 32 /*MaxPlayerCount*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 34 /*RaidRoomLifeTime*/, 4 /*int*/, 4, false)
|
||||
|
@ -514,7 +514,7 @@ static public class EliminateRaidStageExcelVerify
|
|||
&& verifier.VerifyField(tablePos, 38 /*GroundId*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyString(tablePos, 40 /*GroundDevName*/, false)
|
||||
&& verifier.VerifyString(tablePos, 42 /*EnterTimeLine*/, false)
|
||||
&& verifier.VerifyField(tablePos, 44 /*TacticEnvironment_*/, 4 /*SCHALE.Common.FlatData.TacticEnvironment*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 44 /*TacticEnvironment*/, 4 /*SCHALE.Common.FlatData.TacticEnvironment*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 46 /*DefaultClearScore*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 48 /*MaximumScore*/, 8 /*long*/, 8, false)
|
||||
&& verifier.VerifyField(tablePos, 50 /*PerSecondMinusScore*/, 8 /*long*/, 8, false)
|
||||
|
@ -532,7 +532,7 @@ static public class EliminateRaidStageExcelVerify
|
|||
&& verifier.VerifyField(tablePos, 74 /*ClearScenarioKey*/, 4 /*uint*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 76 /*ShowSkillCard*/, 1 /*bool*/, 1, false)
|
||||
&& verifier.VerifyField(tablePos, 78 /*BossBGInfoKey*/, 4 /*uint*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 80 /*EchelonExtensionType_*/, 4 /*SCHALE.Common.FlatData.EchelonExtensionType*/, 4, false)
|
||||
&& verifier.VerifyField(tablePos, 80 /*EchelonExtensionType*/, 4 /*SCHALE.Common.FlatData.EchelonExtensionType*/, 4, false)
|
||||
&& verifier.VerifyTableEnd(tablePos);
|
||||
}
|
||||
}
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue