2024-04-21 00:21:57 +00:00
|
|
|
// <auto-generated>
|
|
|
|
// automatically generated by the FlatBuffers compiler, do not modify
|
|
|
|
// </auto-generated>
|
|
|
|
|
|
|
|
namespace SCHALE.Common.FlatData
|
|
|
|
{
|
|
|
|
|
|
|
|
using global::System;
|
|
|
|
using global::System.Collections.Generic;
|
2024-04-29 15:52:45 +00:00
|
|
|
using global::SCHALE.Common.Crypto;
|
2024-04-21 00:21:57 +00:00
|
|
|
using global::Google.FlatBuffers;
|
|
|
|
|
|
|
|
public struct ContentSpoilerPopupExcel : IFlatbufferObject
|
|
|
|
{
|
|
|
|
private Table __p;
|
|
|
|
public ByteBuffer ByteBuffer { get { return __p.bb; } }
|
|
|
|
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_24_3_25(); }
|
|
|
|
public static ContentSpoilerPopupExcel GetRootAsContentSpoilerPopupExcel(ByteBuffer _bb) { return GetRootAsContentSpoilerPopupExcel(_bb, new ContentSpoilerPopupExcel()); }
|
|
|
|
public static ContentSpoilerPopupExcel GetRootAsContentSpoilerPopupExcel(ByteBuffer _bb, ContentSpoilerPopupExcel obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
|
|
|
|
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
|
|
|
public ContentSpoilerPopupExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
|
|
|
|
2024-12-30 22:20:43 +00:00
|
|
|
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; } }
|
2024-04-21 00:21:57 +00:00
|
|
|
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); }
|
|
|
|
#else
|
|
|
|
public ArraySegment<byte>? GetSpoilerPopupTitleBytes() { return __p.__vector_as_arraysegment(6); }
|
|
|
|
#endif
|
|
|
|
public byte[] GetSpoilerPopupTitleArray() { return __p.__vector_as_array<byte>(6); }
|
|
|
|
public string SpoilerPopupDescription { get { int o = __p.__offset(8); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
|
|
|
#if ENABLE_SPAN_T
|
|
|
|
public Span<byte> GetSpoilerPopupDescriptionBytes() { return __p.__vector_as_span<byte>(8, 1); }
|
|
|
|
#else
|
|
|
|
public ArraySegment<byte>? GetSpoilerPopupDescriptionBytes() { return __p.__vector_as_arraysegment(8); }
|
|
|
|
#endif
|
|
|
|
public byte[] GetSpoilerPopupDescriptionArray() { return __p.__vector_as_array<byte>(8); }
|
|
|
|
public bool IsWarningPopUp { get { int o = __p.__offset(10); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
|
|
|
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,
|
2024-12-30 22:20:43 +00:00
|
|
|
SCHALE.Common.FlatData.ContentType ContentType = SCHALE.Common.FlatData.ContentType.None,
|
2024-04-21 00:21:57 +00:00
|
|
|
StringOffset SpoilerPopupTitleOffset = default(StringOffset),
|
|
|
|
StringOffset SpoilerPopupDescriptionOffset = default(StringOffset),
|
|
|
|
bool IsWarningPopUp = false,
|
|
|
|
long ConditionScenarioModeId = 0) {
|
|
|
|
builder.StartTable(5);
|
|
|
|
ContentSpoilerPopupExcel.AddConditionScenarioModeId(builder, ConditionScenarioModeId);
|
|
|
|
ContentSpoilerPopupExcel.AddSpoilerPopupDescription(builder, SpoilerPopupDescriptionOffset);
|
|
|
|
ContentSpoilerPopupExcel.AddSpoilerPopupTitle(builder, SpoilerPopupTitleOffset);
|
2024-12-30 22:20:43 +00:00
|
|
|
ContentSpoilerPopupExcel.AddContentType(builder, ContentType);
|
2024-04-21 00:21:57 +00:00
|
|
|
ContentSpoilerPopupExcel.AddIsWarningPopUp(builder, IsWarningPopUp);
|
|
|
|
return ContentSpoilerPopupExcel.EndContentSpoilerPopupExcel(builder);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void StartContentSpoilerPopupExcel(FlatBufferBuilder builder) { builder.StartTable(5); }
|
2024-12-30 22:20:43 +00:00
|
|
|
public static void AddContentType(FlatBufferBuilder builder, SCHALE.Common.FlatData.ContentType contentType) { builder.AddInt(0, (int)contentType, 0); }
|
2024-04-21 00:21:57 +00:00
|
|
|
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); }
|
|
|
|
public static void AddConditionScenarioModeId(FlatBufferBuilder builder, long conditionScenarioModeId) { builder.AddLong(4, conditionScenarioModeId, 0); }
|
|
|
|
public static Offset<SCHALE.Common.FlatData.ContentSpoilerPopupExcel> EndContentSpoilerPopupExcel(FlatBufferBuilder builder) {
|
|
|
|
int o = builder.EndTable();
|
|
|
|
return new Offset<SCHALE.Common.FlatData.ContentSpoilerPopupExcel>(o);
|
|
|
|
}
|
2024-04-29 15:52:45 +00:00
|
|
|
public ContentSpoilerPopupExcelT UnPack() {
|
|
|
|
var _o = new ContentSpoilerPopupExcelT();
|
|
|
|
this.UnPackTo(_o);
|
|
|
|
return _o;
|
|
|
|
}
|
|
|
|
public void UnPackTo(ContentSpoilerPopupExcelT _o) {
|
|
|
|
byte[] key = TableEncryptionService.CreateKey("ContentSpoilerPopup");
|
2024-12-30 22:20:43 +00:00
|
|
|
_o.ContentType = TableEncryptionService.Convert(this.ContentType, key);
|
2024-04-29 15:52:45 +00:00
|
|
|
_o.SpoilerPopupTitle = TableEncryptionService.Convert(this.SpoilerPopupTitle, key);
|
|
|
|
_o.SpoilerPopupDescription = TableEncryptionService.Convert(this.SpoilerPopupDescription, key);
|
|
|
|
_o.IsWarningPopUp = TableEncryptionService.Convert(this.IsWarningPopUp, key);
|
|
|
|
_o.ConditionScenarioModeId = TableEncryptionService.Convert(this.ConditionScenarioModeId, key);
|
|
|
|
}
|
|
|
|
public static Offset<SCHALE.Common.FlatData.ContentSpoilerPopupExcel> Pack(FlatBufferBuilder builder, ContentSpoilerPopupExcelT _o) {
|
|
|
|
if (_o == null) return default(Offset<SCHALE.Common.FlatData.ContentSpoilerPopupExcel>);
|
|
|
|
var _SpoilerPopupTitle = _o.SpoilerPopupTitle == null ? default(StringOffset) : builder.CreateString(_o.SpoilerPopupTitle);
|
|
|
|
var _SpoilerPopupDescription = _o.SpoilerPopupDescription == null ? default(StringOffset) : builder.CreateString(_o.SpoilerPopupDescription);
|
|
|
|
return CreateContentSpoilerPopupExcel(
|
|
|
|
builder,
|
2024-12-30 22:20:43 +00:00
|
|
|
_o.ContentType,
|
2024-04-29 15:52:45 +00:00
|
|
|
_SpoilerPopupTitle,
|
|
|
|
_SpoilerPopupDescription,
|
|
|
|
_o.IsWarningPopUp,
|
|
|
|
_o.ConditionScenarioModeId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public class ContentSpoilerPopupExcelT
|
|
|
|
{
|
2024-12-30 22:20:43 +00:00
|
|
|
public SCHALE.Common.FlatData.ContentType ContentType { get; set; }
|
2024-04-29 15:52:45 +00:00
|
|
|
public string SpoilerPopupTitle { get; set; }
|
|
|
|
public string SpoilerPopupDescription { get; set; }
|
|
|
|
public bool IsWarningPopUp { get; set; }
|
|
|
|
public long ConditionScenarioModeId { get; set; }
|
|
|
|
|
|
|
|
public ContentSpoilerPopupExcelT() {
|
2024-12-30 22:20:43 +00:00
|
|
|
this.ContentType = SCHALE.Common.FlatData.ContentType.None;
|
2024-04-29 15:52:45 +00:00
|
|
|
this.SpoilerPopupTitle = null;
|
|
|
|
this.SpoilerPopupDescription = null;
|
|
|
|
this.IsWarningPopUp = false;
|
|
|
|
this.ConditionScenarioModeId = 0;
|
|
|
|
}
|
2024-04-21 00:21:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static public class ContentSpoilerPopupExcelVerify
|
|
|
|
{
|
|
|
|
static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos)
|
|
|
|
{
|
|
|
|
return verifier.VerifyTableStart(tablePos)
|
2024-12-30 22:20:43 +00:00
|
|
|
&& verifier.VerifyField(tablePos, 4 /*ContentType*/, 4 /*SCHALE.Common.FlatData.ContentType*/, 4, false)
|
2024-04-21 00:21:57 +00:00
|
|
|
&& verifier.VerifyString(tablePos, 6 /*SpoilerPopupTitle*/, false)
|
|
|
|
&& verifier.VerifyString(tablePos, 8 /*SpoilerPopupDescription*/, false)
|
|
|
|
&& verifier.VerifyField(tablePos, 10 /*IsWarningPopUp*/, 1 /*bool*/, 1, false)
|
|
|
|
&& verifier.VerifyField(tablePos, 12 /*ConditionScenarioModeId*/, 8 /*long*/, 8, false)
|
|
|
|
&& verifier.VerifyTableEnd(tablePos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|