HUGE UPDATE by suna-aquatope
(this is bascially a merge of https://github.com/xiaofeiTM233/RE.SCHALE.GameServer) - Latest protos and dbmodels from new dumper - Newest FlatData - Integration of ExcelDB.db (auto downloader + table loader) for exceltables are moved: (SchoolDungeon, Gear, MemoryLobby, Scenario) - Implement SchoolDungeon, WeekDungeon, Partial Campaign - Currency System - New Command & improved old ones (unlockall, currency) Thank you very much suna-aquatope and xiaofeiTM233
This commit is contained in:
parent
f51ca0e566
commit
151559ee84
|
@ -40,7 +40,7 @@ namespace SCHALE.Common.Crypto
|
||||||
{
|
{
|
||||||
foreach (var type in Assembly.GetAssembly(typeof(AcademyFavorScheduleExcelTable))!.GetTypes().Where(t => t.IsAssignableTo(typeof(IFlatbufferObject)) && t.Name.EndsWith("ExcelTable")))
|
foreach (var type in Assembly.GetAssembly(typeof(AcademyFavorScheduleExcelTable))!.GetTypes().Where(t => t.IsAssignableTo(typeof(IFlatbufferObject)) && t.Name.EndsWith("ExcelTable")))
|
||||||
{
|
{
|
||||||
var bytesFilePath = Path.Join(bytesDir, $"{type.Name.ToLower()}.bytes");
|
var bytesFilePath = Path.Join(bytesDir, $"{type.Name}.bytes");
|
||||||
if (!File.Exists(bytesFilePath))
|
if (!File.Exists(bytesFilePath))
|
||||||
{
|
{
|
||||||
Console.WriteLine($"bytes files for {type.Name} not found. skipping...");
|
Console.WriteLine($"bytes files for {type.Name} not found. skipping...");
|
||||||
|
@ -50,11 +50,19 @@ namespace SCHALE.Common.Crypto
|
||||||
var bytes = File.ReadAllBytes(bytesFilePath);
|
var bytes = File.ReadAllBytes(bytesFilePath);
|
||||||
TableEncryptionService.XOR(type.Name, bytes);
|
TableEncryptionService.XOR(type.Name, bytes);
|
||||||
var inst = type.GetMethod($"GetRootAs{type.Name}", BindingFlags.Static | BindingFlags.Public, [typeof(ByteBuffer)])!.Invoke(null, [new ByteBuffer(bytes)]);
|
var inst = type.GetMethod($"GetRootAs{type.Name}", BindingFlags.Static | BindingFlags.Public, [typeof(ByteBuffer)])!.Invoke(null, [new ByteBuffer(bytes)]);
|
||||||
|
try
|
||||||
|
{
|
||||||
var obj = type.GetMethod("UnPack", BindingFlags.Instance | BindingFlags.Public)!.Invoke(inst, null);
|
var obj = type.GetMethod("UnPack", BindingFlags.Instance | BindingFlags.Public)!.Invoke(inst, null);
|
||||||
File.WriteAllText(Path.Join(destDir, $"{type.Name}.json"), JsonConvert.SerializeObject(obj, Formatting.Indented, new StringEnumConverter()));
|
File.WriteAllText(Path.Join(destDir, $"{type.Name}.json"), JsonConvert.SerializeObject(obj, Formatting.Indented, new StringEnumConverter()));
|
||||||
Console.WriteLine($"Dumped {type.Name} successfully");
|
Console.WriteLine($"Dumped {type.Name} successfully");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"Error dumping ${type.Name}");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,6 +45,26 @@ namespace SCHALE.Common.Database
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
public virtual ICollection<FurnitureDB> Furnitures { get; }
|
public virtual ICollection<FurnitureDB> Furnitures { get; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public virtual ICollection<ScenarioGroupHistoryDB> ScenarioGroups { get; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public virtual ICollection<AccountCurrencyDB> Currencies { get; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public virtual ICollection<MultiFloorRaidDB> MultiFloorRaids { get; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public virtual ICollection<WeekDungeonStageHistoryDB> WeekDungeonStageHistories { get; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public virtual ICollection<SchoolDungeonStageHistoryDB> SchoolDungeonStageHistories { get; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public virtual ICollection<CampaignStageHistoryDB> CampaignStageHistories { get; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public virtual ICollection<MailDB> Mails { get; }
|
||||||
|
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
public virtual RaidInfo RaidInfo { get; set; }
|
public virtual RaidInfo RaidInfo { get; set; }
|
||||||
|
@ -62,6 +82,13 @@ namespace SCHALE.Common.Database
|
||||||
Scenarios = new List<ScenarioHistoryDB>();
|
Scenarios = new List<ScenarioHistoryDB>();
|
||||||
Cafes = new List<CafeDB>();
|
Cafes = new List<CafeDB>();
|
||||||
Furnitures = new List<FurnitureDB>();
|
Furnitures = new List<FurnitureDB>();
|
||||||
|
ScenarioGroups = new List<ScenarioGroupHistoryDB>();
|
||||||
|
Currencies = new List<AccountCurrencyDB>();
|
||||||
|
MultiFloorRaids = new List<MultiFloorRaidDB>();
|
||||||
|
WeekDungeonStageHistories = new List<WeekDungeonStageHistoryDB>();
|
||||||
|
SchoolDungeonStageHistories = new List<SchoolDungeonStageHistoryDB>();
|
||||||
|
CampaignStageHistories = new List<CampaignStageHistoryDB>();
|
||||||
|
Mails = new List<MailDB>();
|
||||||
}
|
}
|
||||||
|
|
||||||
public AccountDB(long publisherAccountId) : this()
|
public AccountDB(long publisherAccountId) : this()
|
||||||
|
@ -324,6 +351,24 @@ namespace SCHALE.Common.Database
|
||||||
public DateTime ClearDateTime { get; set; }
|
public DateTime ClearDateTime { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class ScenarioGroupHistoryDB
|
||||||
|
{
|
||||||
|
[JsonIgnore]
|
||||||
|
public virtual AccountDB Account { get; set; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public long AccountServerId { get; set; }
|
||||||
|
|
||||||
|
[Key]
|
||||||
|
public long ServerId { get; set; }
|
||||||
|
|
||||||
|
public long ScenarioGroupUqniueId { get; set; }
|
||||||
|
public long ScenarioType { get; set; }
|
||||||
|
public Nullable<long> EventContentId { get; set; }
|
||||||
|
public DateTime ClearDateTime { get; set; }
|
||||||
|
public bool IsReturn { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
public class EchelonDB
|
public class EchelonDB
|
||||||
{
|
{
|
||||||
[Key]
|
[Key]
|
||||||
|
@ -369,6 +414,16 @@ namespace SCHALE.Common.Database
|
||||||
public int[] CombatStyleIndex { get; set; } = [];
|
public int[] CombatStyleIndex { get; set; } = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class CampaignSubStageSaveDB : ContentSaveDB
|
||||||
|
{
|
||||||
|
public override ContentType ContentType { get => ContentType.CampaignSubStage; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class CampaignTutorialStageSaveDB : ContentSaveDB
|
||||||
|
{
|
||||||
|
public override ContentType ContentType { get => ContentType.CampaignTutorialStage; }
|
||||||
|
}
|
||||||
|
|
||||||
public class CafeDB
|
public class CafeDB
|
||||||
{
|
{
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
|
@ -379,7 +434,6 @@ namespace SCHALE.Common.Database
|
||||||
|
|
||||||
[Key]
|
[Key]
|
||||||
public long CafeDBId { get; set; }
|
public long CafeDBId { get; set; }
|
||||||
|
|
||||||
public long CafeId { get; set; }
|
public long CafeId { get; set; }
|
||||||
public long AccountId { get; set; }
|
public long AccountId { get; set; }
|
||||||
public int CafeRank { get; set; }
|
public int CafeRank { get; set; }
|
||||||
|
@ -440,8 +494,15 @@ namespace SCHALE.Common.Database
|
||||||
|
|
||||||
public class CampaignStageHistoryDB
|
public class CampaignStageHistoryDB
|
||||||
{
|
{
|
||||||
|
[JsonIgnore]
|
||||||
|
public virtual AccountDB Account { get; set; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
public long AccountServerId { get; set; }
|
public long AccountServerId { get; set; }
|
||||||
|
|
||||||
|
[Key]
|
||||||
|
public long ServerId { get; set; }
|
||||||
|
|
||||||
public long StoryUniqueId { get; set; }
|
public long StoryUniqueId { get; set; }
|
||||||
public long ChapterUniqueId { get; set; }
|
public long ChapterUniqueId { get; set; }
|
||||||
public long StageUniqueId { get; set; }
|
public long StageUniqueId { get; set; }
|
||||||
|
@ -464,6 +525,32 @@ namespace SCHALE.Common.Database
|
||||||
public long TodayPlayCountForUI { get; }
|
public long TodayPlayCountForUI { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class MailDB
|
||||||
|
{
|
||||||
|
[JsonIgnore]
|
||||||
|
public virtual AccountDB Account { get; set; }
|
||||||
|
|
||||||
|
[Key]
|
||||||
|
public long ServerId { get; set; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public long AccountServerId { get; set; }
|
||||||
|
|
||||||
|
public MailType Type { get; set; }
|
||||||
|
public long UniqueId { get; set; }
|
||||||
|
public string Sender { get; set; }
|
||||||
|
public string Comment { get; set; }
|
||||||
|
public DateTime SendDate { get; set; }
|
||||||
|
public Nullable<DateTime> ReceiptDate { get; set; }
|
||||||
|
public Nullable<DateTime> ExpireDate { get; set; }
|
||||||
|
|
||||||
|
[NotMapped] // TODO: implement storing these two with ef core, this is very nessary since these parcel infos are the items given in the mail, must be stored
|
||||||
|
public List<ParcelInfo> ParcelInfos { get; set; } // remove [NotMapped] if implemented storing
|
||||||
|
|
||||||
|
[NotMapped]
|
||||||
|
public List<ParcelInfo> RemainParcelInfos { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
public class CampaignChapterClearRewardHistoryDB
|
public class CampaignChapterClearRewardHistoryDB
|
||||||
{
|
{
|
||||||
public long AccountServerId { get; set; }
|
public long AccountServerId { get; set; }
|
||||||
|
@ -473,6 +560,101 @@ namespace SCHALE.Common.Database
|
||||||
public DateTime ReceiveDate { get; set; }
|
public DateTime ReceiveDate { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class AccountCurrencyDB
|
||||||
|
{
|
||||||
|
[JsonIgnore]
|
||||||
|
public virtual AccountDB Account { get; set; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public long AccountServerId { get; set; }
|
||||||
|
|
||||||
|
[Key]
|
||||||
|
public long ServerId { get; set; }
|
||||||
|
|
||||||
|
public long AccountLevel { get; set; }
|
||||||
|
public long AcademyLocationRankSum { get; set; }
|
||||||
|
public Dictionary<CurrencyTypes, long> CurrencyDict { get; set; }
|
||||||
|
public Dictionary<CurrencyTypes, DateTime> UpdateTimeDict { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class MultiFloorRaidDB
|
||||||
|
{
|
||||||
|
[JsonIgnore]
|
||||||
|
public virtual AccountDB Account { get; set; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public long AccountServerId { get; set; }
|
||||||
|
|
||||||
|
[Key]
|
||||||
|
public long ServerId { get; set; }
|
||||||
|
|
||||||
|
public long SeasonId { get; set; }
|
||||||
|
public int ClearedDifficulty { get; set; }
|
||||||
|
public DateTime LastClearDate { get; set; }
|
||||||
|
public int RewardDifficulty { get; set; }
|
||||||
|
public DateTime LastRewardDate { get; set; }
|
||||||
|
public int ClearBattleFrame { get; set; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public bool AllCleared { get; } = false;
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public bool HasReceivableRewards { get; } = false;
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public List<ParcelInfo> TotalReceivableRewards { get; } = new List<ParcelInfo>();
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public List<ParcelInfo> TotalReceivedRewards { get; } = new List<ParcelInfo>();
|
||||||
|
}
|
||||||
|
|
||||||
|
public class WeekDungeonStageHistoryDB
|
||||||
|
{
|
||||||
|
[JsonIgnore]
|
||||||
|
public virtual AccountDB Account { get; set; }
|
||||||
|
|
||||||
|
[Key]
|
||||||
|
public long ServerId { get; set; }
|
||||||
|
[JsonIgnore]
|
||||||
|
public long AccountServerId { get; set; }
|
||||||
|
|
||||||
|
public long StageUniqueId { get; set; }
|
||||||
|
public Dictionary<StarGoalType, long> StarGoalRecord { get; set; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public bool IsCleardEver { get; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class SchoolDungeonStageHistoryDB
|
||||||
|
{
|
||||||
|
[JsonIgnore]
|
||||||
|
public virtual AccountDB Account { get; set; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public long AccountServerId { get; set; }
|
||||||
|
|
||||||
|
[Key]
|
||||||
|
public long ServerId { get; set; }
|
||||||
|
|
||||||
|
public long StageUniqueId { get; set; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public long BestStarRecord { get; }
|
||||||
|
public bool[] StarFlags { get; set; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public bool Star1Flag { get; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public bool Star2Flag { get; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public bool Star3Flag { get; }
|
||||||
|
|
||||||
|
[JsonIgnore]
|
||||||
|
public bool IsClearedEver { get; }
|
||||||
|
}
|
||||||
|
|
||||||
[Serializable]
|
[Serializable]
|
||||||
public struct BasisPoint : IEquatable<BasisPoint>, IComparable<BasisPoint>
|
public struct BasisPoint : IEquatable<BasisPoint>, IComparable<BasisPoint>
|
||||||
{
|
{
|
||||||
|
|
|
@ -27,6 +27,13 @@ namespace SCHALE.Common.Database
|
||||||
public DbSet<CafeDB> Cafes { get; set; }
|
public DbSet<CafeDB> Cafes { get; set; }
|
||||||
public DbSet<FurnitureDB> Furnitures { get; set; }
|
public DbSet<FurnitureDB> Furnitures { get; set; }
|
||||||
|
|
||||||
|
public DbSet<AccountCurrencyDB> Currencies { get; set; }
|
||||||
|
public DbSet<MultiFloorRaidDB> MultiFloorRaids { get; set; }
|
||||||
|
public DbSet<WeekDungeonStageHistoryDB> WeekDungeonStageHistories { get; set; }
|
||||||
|
public DbSet<SchoolDungeonStageHistoryDB> SchoolDungeonStageHistories { get; set; }
|
||||||
|
public DbSet<CampaignStageHistoryDB> CampaignStageHistories { get; set; }
|
||||||
|
public DbSet<MailDB> Mails { get; set; }
|
||||||
|
|
||||||
public static SCHALEContext Create(string connectionString) =>
|
public static SCHALEContext Create(string connectionString) =>
|
||||||
new(new DbContextOptionsBuilder<SCHALEContext>()
|
new(new DbContextOptionsBuilder<SCHALEContext>()
|
||||||
.UseSqlServer(connectionString)
|
.UseSqlServer(connectionString)
|
||||||
|
@ -122,6 +129,22 @@ namespace SCHALE.Common.Database
|
||||||
|
|
||||||
modelBuilder.Entity<MissionProgressDB>().Property(x => x.ServerId).ValueGeneratedOnAdd();
|
modelBuilder.Entity<MissionProgressDB>().Property(x => x.ServerId).ValueGeneratedOnAdd();
|
||||||
modelBuilder.Entity<MissionProgressDB>().Property(x => x.ProgressParameters).HasJsonConversion();
|
modelBuilder.Entity<MissionProgressDB>().Property(x => x.ProgressParameters).HasJsonConversion();
|
||||||
|
|
||||||
|
modelBuilder.Entity<AccountCurrencyDB>().Property(x => x.ServerId).ValueGeneratedOnAdd();
|
||||||
|
modelBuilder.Entity<AccountCurrencyDB>().Property(x => x.CurrencyDict).HasJsonConversion();
|
||||||
|
modelBuilder.Entity<AccountCurrencyDB>().Property(x => x.UpdateTimeDict).HasJsonConversion();
|
||||||
|
|
||||||
|
modelBuilder.Entity<MultiFloorRaidDB>().Property(x => x.ServerId).ValueGeneratedOnAdd();
|
||||||
|
modelBuilder.Entity<MultiFloorRaidDB>().Property(x => x.TotalReceivableRewards).HasJsonConversion();
|
||||||
|
modelBuilder.Entity<MultiFloorRaidDB>().Property(x => x.TotalReceivedRewards).HasJsonConversion();
|
||||||
|
|
||||||
|
modelBuilder.Entity<WeekDungeonStageHistoryDB>().Property(x => x.ServerId).ValueGeneratedOnAdd();
|
||||||
|
modelBuilder.Entity<WeekDungeonStageHistoryDB>().Property(x => x.StarGoalRecord).HasJsonConversion();
|
||||||
|
|
||||||
|
modelBuilder.Entity<SchoolDungeonStageHistoryDB>().Property(x => x.ServerId).ValueGeneratedOnAdd();
|
||||||
|
modelBuilder.Entity<ScenarioGroupHistoryDB>().Property(x => x.ServerId).ValueGeneratedOnAdd();
|
||||||
|
modelBuilder.Entity<CampaignStageHistoryDB>().Property(x => x.ServerId).ValueGeneratedOnAdd();
|
||||||
|
modelBuilder.Entity<MailDB>().Property(x => x.ServerId).ValueGeneratedOnAdd();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,121 @@ using SCHALE.Common.NetworkProtocol;
|
||||||
|
|
||||||
namespace SCHALE.Common.Database
|
namespace SCHALE.Common.Database
|
||||||
{
|
{
|
||||||
|
|
||||||
|
public abstract class HexaCommand
|
||||||
|
{
|
||||||
|
public long CommandId { get; set; }
|
||||||
|
public virtual HexaCommandType Type { get; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum HexaCommandType
|
||||||
|
{
|
||||||
|
None = 0,
|
||||||
|
UnitSpawn = 1,
|
||||||
|
PlayScenario = 2,
|
||||||
|
StrategySpawn = 3,
|
||||||
|
TileSpawn = 4,
|
||||||
|
TileHide = 5,
|
||||||
|
EndBattle = 6,
|
||||||
|
WaitTurn = 7,
|
||||||
|
StrategyHide = 8,
|
||||||
|
UnitDie = 9,
|
||||||
|
UnitMove = 10,
|
||||||
|
CharacterEmoji = 11,
|
||||||
|
}
|
||||||
|
|
||||||
|
public abstract class HexaCondition
|
||||||
|
{
|
||||||
|
public long ConditionId { get; set; }
|
||||||
|
public abstract HexaConditionType Type { get; }
|
||||||
|
public abstract bool Resuable { get; }
|
||||||
|
public bool AlreadyTriggered { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum HexaConditionType
|
||||||
|
{
|
||||||
|
None = 0,
|
||||||
|
StartCampaign = 1,
|
||||||
|
TurnBeginEnd = 2,
|
||||||
|
UnitDead = 3,
|
||||||
|
PlayerArrivedInTileFirstTime = 4,
|
||||||
|
AnyEnemyDead = 5,
|
||||||
|
EveryTurn = 6,
|
||||||
|
EnemyArrivedInTileFirstTime = 7,
|
||||||
|
SpecificEnemyArrivedInTileFirstTime = 8,
|
||||||
|
}
|
||||||
|
|
||||||
|
public class HexaEvent
|
||||||
|
{
|
||||||
|
public string EventName { get; set; }
|
||||||
|
public long EventId { get; set; }
|
||||||
|
public IList<HexaCondition> HexaConditions { get; }
|
||||||
|
public MultipleConditionCheckType MultipleConditionCheckType { get; set; }
|
||||||
|
public IList<HexaCommand> HexaCommands { get; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class HexaTileMap
|
||||||
|
{
|
||||||
|
public static readonly float XOffset;
|
||||||
|
public static readonly float YOffset;
|
||||||
|
public static readonly float EmptyOffset;
|
||||||
|
public static readonly float Up;
|
||||||
|
public int LastEntityId;
|
||||||
|
public bool IsBig;
|
||||||
|
private List<HexaEvent> events;
|
||||||
|
public List<HexaTile> hexaTileList;
|
||||||
|
public List<HexaUnit> hexaUnitList;
|
||||||
|
public List<Strategy> hexaStrageyList;
|
||||||
|
[JsonIgnore]
|
||||||
|
public Dictionary<HexLocation, HexaTile> TileLocationMap;
|
||||||
|
}
|
||||||
|
|
||||||
|
public class CampaignStageInfo
|
||||||
|
{
|
||||||
|
public long UniqueId { get; set; }
|
||||||
|
public string DevName { get; set; }
|
||||||
|
public long ChapterNumber { get; set; }
|
||||||
|
public string StageNumber { get; set; }
|
||||||
|
public long TutorialStageNumber { get; set; }
|
||||||
|
public long[] PrerequisiteScenarioIds { get; set; }
|
||||||
|
public int RecommandLevel { get; set; }
|
||||||
|
public string StrategyMap { get; set; }
|
||||||
|
public string BackgroundBG { get; set; }
|
||||||
|
public long StoryUniqueId { get; set; }
|
||||||
|
public long ChapterUniqueId { get; set; }
|
||||||
|
public long DailyPlayCountLimit { get; }
|
||||||
|
public StageTopography StageTopography { get; set; }
|
||||||
|
public int StageEnterCostAmount { get; set; }
|
||||||
|
public int MaxTurn { get; set; }
|
||||||
|
public int MaxEchelonCount { get; set; }
|
||||||
|
public StageDifficulty StageDifficulty { get; set; }
|
||||||
|
public HashSet<long> PrerequisiteStageUniqueIds { get; set; }
|
||||||
|
public long DailyPlayLimit { get; set; }
|
||||||
|
public TimeSpan PlayTimeLimit { get; set; }
|
||||||
|
public long PlayTurnLimit { get; set; }
|
||||||
|
public ParcelCost EnterCost { get; }
|
||||||
|
public ParcelCost PurchasePlayCountHardStageCost { get; set; }
|
||||||
|
public HexaTileMap HexaTileMap { get; set; }
|
||||||
|
public long StarConditionTurnCount { get; set; }
|
||||||
|
public long StarConditionSTacticRackCount { get; set; }
|
||||||
|
public long RewardUniqueId { get; set; }
|
||||||
|
public long TacticRewardPlayerExp { get; set; }
|
||||||
|
public long TacticRewardExp { get; set; }
|
||||||
|
public virtual bool ShowClearDeckButton { get; }
|
||||||
|
public List<ValueTuple<ParcelInfo, RewardTag>> StageReward { get; set; }
|
||||||
|
public List<ValueTuple<ParcelInfo, RewardTag>> DisplayReward { get; set; }
|
||||||
|
public StrategyEnvironment StrategyEnvironment { get; set; }
|
||||||
|
public ContentType ContentType { get; set; }
|
||||||
|
public long GroundId { get; set; }
|
||||||
|
public int StrategySkipGroundId { get; }
|
||||||
|
public long BattleDuration { get; set; }
|
||||||
|
public long BGMId { get; set; }
|
||||||
|
public long FixedEchelonId { get; set; }
|
||||||
|
public bool IsEventContent { get; }
|
||||||
|
public ParcelInfo EnterParcelInfo { get; set; }
|
||||||
|
public bool IsDeprecated { get; set; }
|
||||||
|
public EchelonExtensionType EchelonExtensionType { get; set; }
|
||||||
|
}
|
||||||
public class AcademyLocationDB
|
public class AcademyLocationDB
|
||||||
{
|
{
|
||||||
public long LocationId { get; set; }
|
public long LocationId { get; set; }
|
||||||
|
@ -58,14 +173,6 @@ namespace SCHALE.Common.Database
|
||||||
public long EmblemUniqueId { get; set; }
|
public long EmblemUniqueId { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class AccountCurrencyDB
|
|
||||||
{
|
|
||||||
public long AccountLevel { get; set; }
|
|
||||||
public long AcademyLocationRankSum { get; set; }
|
|
||||||
public Dictionary<CurrencyTypes, long> CurrencyDict { get; set; }
|
|
||||||
public Dictionary<CurrencyTypes, DateTime> UpdateTimeDict { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public class AccountRestrictionsDB
|
public class AccountRestrictionsDB
|
||||||
{
|
{
|
||||||
public bool NicknameRestriction { get; set; }
|
public bool NicknameRestriction { get; set; }
|
||||||
|
@ -299,7 +406,7 @@ namespace SCHALE.Common.Database
|
||||||
|
|
||||||
public class CampaignMainStageSaveDB : ContentSaveDB
|
public class CampaignMainStageSaveDB : ContentSaveDB
|
||||||
{
|
{
|
||||||
public override ContentType ContentType { get; }
|
public override ContentType ContentType { get => ContentType.CampaignMainStage; }
|
||||||
public CampaignState CampaignState { get; set; }
|
public CampaignState CampaignState { get; set; }
|
||||||
public int CurrentTurn { get; set; }
|
public int CurrentTurn { get; set; }
|
||||||
public int EnemyClearCount { get; set; }
|
public int EnemyClearCount { get; set; }
|
||||||
|
@ -324,11 +431,6 @@ namespace SCHALE.Common.Database
|
||||||
public Dictionary<ResetContentType, long> ResetCount { get; set; }
|
public Dictionary<ResetContentType, long> ResetCount { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class CampaignSubStageSaveDB : ContentSaveDB
|
|
||||||
{
|
|
||||||
public override ContentType ContentType { get; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public class CampaignExtraStageSaveDB : ContentSaveDB
|
public class CampaignExtraStageSaveDB : ContentSaveDB
|
||||||
{
|
{
|
||||||
public override ContentType ContentType { get; }
|
public override ContentType ContentType { get; }
|
||||||
|
@ -349,11 +451,6 @@ namespace SCHALE.Common.Database
|
||||||
public override ContentType ContentType { get; }
|
public override ContentType ContentType { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class CampaignTutorialStageSaveDB : ContentSaveDB
|
|
||||||
{
|
|
||||||
public override ContentType ContentType { get; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public class CardShopElementDB
|
public class CardShopElementDB
|
||||||
{
|
{
|
||||||
public long EventContentId { get; set; }
|
public long EventContentId { get; set; }
|
||||||
|
@ -1170,21 +1267,6 @@ namespace SCHALE.Common.Database
|
||||||
public string Subject { get; set; }
|
public string Subject { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class MailDB
|
|
||||||
{
|
|
||||||
public long ServerId { get; set; }
|
|
||||||
public long AccountServerId { get; set; }
|
|
||||||
public MailType Type { get; set; }
|
|
||||||
public long UniqueId { get; set; }
|
|
||||||
public string Sender { get; set; }
|
|
||||||
public string Comment { get; set; }
|
|
||||||
public DateTime SendDate { get; set; }
|
|
||||||
public Nullable<DateTime> ReceiptDate { get; set; }
|
|
||||||
public Nullable<DateTime> ExpireDate { get; set; }
|
|
||||||
public List<ParcelInfo> ParcelInfos { get; set; }
|
|
||||||
public List<ParcelInfo> RemainParcelInfos { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public class MiniGameDefenseStageHistoryDB
|
public class MiniGameDefenseStageHistoryDB
|
||||||
{
|
{
|
||||||
public long StageId { get; set; }
|
public long StageId { get; set; }
|
||||||
|
@ -1308,28 +1390,6 @@ namespace SCHALE.Common.Database
|
||||||
public ProductTagType ProductTagType { get; }
|
public ProductTagType ProductTagType { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class MultiFloorRaidDB
|
|
||||||
{
|
|
||||||
public long SeasonId { get; set; }
|
|
||||||
public int ClearedDifficulty { get; set; }
|
|
||||||
public DateTime LastClearDate { get; set; }
|
|
||||||
public int RewardDifficulty { get; set; }
|
|
||||||
public DateTime LastRewardDate { get; set; }
|
|
||||||
public int ClearBattleFrame { get; set; }
|
|
||||||
|
|
||||||
[JsonIgnore]
|
|
||||||
public bool AllCleared { get; }
|
|
||||||
|
|
||||||
[JsonIgnore]
|
|
||||||
public bool HasReceivableRewards { get; }
|
|
||||||
|
|
||||||
[JsonIgnore]
|
|
||||||
public List<ParcelInfo> TotalReceivableRewards { get; }
|
|
||||||
|
|
||||||
[JsonIgnore]
|
|
||||||
public List<ParcelInfo> TotalReceivedRewards { get; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public class MultiSweepPresetDB
|
public class MultiSweepPresetDB
|
||||||
{
|
{
|
||||||
public long PresetId { get; set; }
|
public long PresetId { get; set; }
|
||||||
|
@ -1657,37 +1717,6 @@ namespace SCHALE.Common.Database
|
||||||
public DateTime ReceiveDate { get; set; }
|
public DateTime ReceiveDate { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class ScenarioGroupHistoryDB
|
|
||||||
{
|
|
||||||
public long AccountServerId { get; set; }
|
|
||||||
public long ScenarioGroupUqniueId { get; set; }
|
|
||||||
public long ScenarioType { get; set; }
|
|
||||||
public Nullable<long> EventContentId { get; set; }
|
|
||||||
public DateTime ClearDateTime { get; set; }
|
|
||||||
public bool IsReturn { get; set; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public sealed class SchoolDungeonStageHistoryDB
|
|
||||||
{
|
|
||||||
public long StageUniqueId { get; set; }
|
|
||||||
|
|
||||||
[JsonIgnore]
|
|
||||||
public long BestStarRecord { get; }
|
|
||||||
public bool[] StarFlags { get; set; }
|
|
||||||
|
|
||||||
[JsonIgnore]
|
|
||||||
public bool Star1Flag { get; }
|
|
||||||
|
|
||||||
[JsonIgnore]
|
|
||||||
public bool Star2Flag { get; }
|
|
||||||
|
|
||||||
[JsonIgnore]
|
|
||||||
public bool Star3Flag { get; }
|
|
||||||
|
|
||||||
[JsonIgnore]
|
|
||||||
public bool IsClearedEver { get; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public class SchoolDungeonStageSaveDB : ContentSaveDB
|
public class SchoolDungeonStageSaveDB : ContentSaveDB
|
||||||
{
|
{
|
||||||
public override ContentType ContentType { get; }
|
public override ContentType ContentType { get; }
|
||||||
|
@ -1888,16 +1917,6 @@ namespace SCHALE.Common.Database
|
||||||
public int Sequence { get; set; }
|
public int Sequence { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class WeekDungeonStageHistoryDB
|
|
||||||
{
|
|
||||||
public long AccountServerId { get; set; }
|
|
||||||
public long StageUniqueId { get; set; }
|
|
||||||
public Dictionary<StarGoalType, long> StarGoalRecord { get; set; }
|
|
||||||
|
|
||||||
[JsonIgnore]
|
|
||||||
public bool IsCleardEver { get; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public class WorldRaidSnapshot
|
public class WorldRaidSnapshot
|
||||||
{
|
{
|
||||||
public List<WorldRaidLocalBossDB> WorldRaidLocalBossDBs { get; set; }
|
public List<WorldRaidLocalBossDB> WorldRaidLocalBossDBs { get; set; }
|
||||||
|
@ -2092,8 +2111,8 @@ namespace SCHALE.Common.Database
|
||||||
public bool IsPlayerWin { get; }
|
public bool IsPlayerWin { get; }
|
||||||
public BattleEndType EndType { get; set; }
|
public BattleEndType EndType { get; set; }
|
||||||
public int EndFrame { get; set; }
|
public int EndFrame { get; set; }
|
||||||
//public GroupSummary Group01Summary { get; set; }
|
public GroupSummary Group01Summary { get; set; }
|
||||||
//public GroupSummary Group02Summary { get; set; }
|
public GroupSummary Group02Summary { get; set; }
|
||||||
public WeekDungeonSummary WeekDungeonSummary { get; set; }
|
public WeekDungeonSummary WeekDungeonSummary { get; set; }
|
||||||
public RaidSummary RaidSummary { get; set; }
|
public RaidSummary RaidSummary { get; set; }
|
||||||
public ArenaSummary ArenaSummary { get; set; }
|
public ArenaSummary ArenaSummary { get; set; }
|
||||||
|
@ -2932,8 +2951,10 @@ namespace SCHALE.Common.Database
|
||||||
|
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
public long LeaderCharacterId { get; }
|
public long LeaderCharacterId { get; }
|
||||||
public KeyedCollection<EntityId, HeroSummary> Heroes { get; set; }
|
|
||||||
public KeyedCollection<EntityId, HeroSummary> Supporters { get; set; }
|
// Thanks https://github.com/suna-aquatope
|
||||||
|
public List<HeroSummary>/*KeyedCollection<EntityId, HeroSummary>*/ Heroes { get; set; }
|
||||||
|
public List<HeroSummary>/*KeyedCollection<EntityId, HeroSummary>*/ Supporters { get; set; }
|
||||||
|
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
public int AliveCount { get; }
|
public int AliveCount { get; }
|
||||||
|
|
|
@ -61,31 +61,31 @@ public struct AcademyFavorScheduleExcel : IFlatbufferObject
|
||||||
public long[] GetRewardAmountArray() { return __p.__vector_as_array<long>(26); }
|
public long[] GetRewardAmountArray() { return __p.__vector_as_array<long>(26); }
|
||||||
|
|
||||||
public static Offset<SCHALE.Common.FlatData.AcademyFavorScheduleExcel> CreateAcademyFavorScheduleExcel(FlatBufferBuilder builder,
|
public static Offset<SCHALE.Common.FlatData.AcademyFavorScheduleExcel> CreateAcademyFavorScheduleExcel(FlatBufferBuilder builder,
|
||||||
long id = 0,
|
long Id = 0,
|
||||||
long character_id = 0,
|
long CharacterId = 0,
|
||||||
long schedule_group_id = 0,
|
long ScheduleGroupId = 0,
|
||||||
long order_in_group = 0,
|
long OrderInGroup = 0,
|
||||||
StringOffset locationOffset = default(StringOffset),
|
StringOffset LocationOffset = default(StringOffset),
|
||||||
uint localize_scenario_id = 0,
|
uint LocalizeScenarioId = 0,
|
||||||
long favor_rank = 0,
|
long FavorRank = 0,
|
||||||
long secret_stone_amount = 0,
|
long SecretStoneAmount = 0,
|
||||||
long scenario_sript_group_id = 0,
|
long ScenarioSriptGroupId = 0,
|
||||||
VectorOffset reward_parcel_typeOffset = default(VectorOffset),
|
VectorOffset RewardParcelTypeOffset = default(VectorOffset),
|
||||||
VectorOffset reward_parcel_idOffset = default(VectorOffset),
|
VectorOffset RewardParcelIdOffset = default(VectorOffset),
|
||||||
VectorOffset reward_amountOffset = default(VectorOffset)) {
|
VectorOffset RewardAmountOffset = default(VectorOffset)) {
|
||||||
builder.StartTable(12);
|
builder.StartTable(12);
|
||||||
AcademyFavorScheduleExcel.AddScenarioSriptGroupId(builder, scenario_sript_group_id);
|
AcademyFavorScheduleExcel.AddScenarioSriptGroupId(builder, ScenarioSriptGroupId);
|
||||||
AcademyFavorScheduleExcel.AddSecretStoneAmount(builder, secret_stone_amount);
|
AcademyFavorScheduleExcel.AddSecretStoneAmount(builder, SecretStoneAmount);
|
||||||
AcademyFavorScheduleExcel.AddFavorRank(builder, favor_rank);
|
AcademyFavorScheduleExcel.AddFavorRank(builder, FavorRank);
|
||||||
AcademyFavorScheduleExcel.AddOrderInGroup(builder, order_in_group);
|
AcademyFavorScheduleExcel.AddOrderInGroup(builder, OrderInGroup);
|
||||||
AcademyFavorScheduleExcel.AddScheduleGroupId(builder, schedule_group_id);
|
AcademyFavorScheduleExcel.AddScheduleGroupId(builder, ScheduleGroupId);
|
||||||
AcademyFavorScheduleExcel.AddCharacterId(builder, character_id);
|
AcademyFavorScheduleExcel.AddCharacterId(builder, CharacterId);
|
||||||
AcademyFavorScheduleExcel.AddId(builder, id);
|
AcademyFavorScheduleExcel.AddId(builder, Id);
|
||||||
AcademyFavorScheduleExcel.AddRewardAmount(builder, reward_amountOffset);
|
AcademyFavorScheduleExcel.AddRewardAmount(builder, RewardAmountOffset);
|
||||||
AcademyFavorScheduleExcel.AddRewardParcelId(builder, reward_parcel_idOffset);
|
AcademyFavorScheduleExcel.AddRewardParcelId(builder, RewardParcelIdOffset);
|
||||||
AcademyFavorScheduleExcel.AddRewardParcelType(builder, reward_parcel_typeOffset);
|
AcademyFavorScheduleExcel.AddRewardParcelType(builder, RewardParcelTypeOffset);
|
||||||
AcademyFavorScheduleExcel.AddLocalizeScenarioId(builder, localize_scenario_id);
|
AcademyFavorScheduleExcel.AddLocalizeScenarioId(builder, LocalizeScenarioId);
|
||||||
AcademyFavorScheduleExcel.AddLocation(builder, locationOffset);
|
AcademyFavorScheduleExcel.AddLocation(builder, LocationOffset);
|
||||||
return AcademyFavorScheduleExcel.EndAcademyFavorScheduleExcel(builder);
|
return AcademyFavorScheduleExcel.EndAcademyFavorScheduleExcel(builder);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -146,21 +146,21 @@ public struct AcademyFavorScheduleExcel : IFlatbufferObject
|
||||||
}
|
}
|
||||||
public static Offset<SCHALE.Common.FlatData.AcademyFavorScheduleExcel> Pack(FlatBufferBuilder builder, AcademyFavorScheduleExcelT _o) {
|
public static Offset<SCHALE.Common.FlatData.AcademyFavorScheduleExcel> Pack(FlatBufferBuilder builder, AcademyFavorScheduleExcelT _o) {
|
||||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.AcademyFavorScheduleExcel>);
|
if (_o == null) return default(Offset<SCHALE.Common.FlatData.AcademyFavorScheduleExcel>);
|
||||||
var _location = _o.Location == null ? default(StringOffset) : builder.CreateString(_o.Location);
|
var _Location = _o.Location == null ? default(StringOffset) : builder.CreateString(_o.Location);
|
||||||
var _reward_parcel_type = default(VectorOffset);
|
var _RewardParcelType = default(VectorOffset);
|
||||||
if (_o.RewardParcelType != null) {
|
if (_o.RewardParcelType != null) {
|
||||||
var __reward_parcel_type = _o.RewardParcelType.ToArray();
|
var __RewardParcelType = _o.RewardParcelType.ToArray();
|
||||||
_reward_parcel_type = CreateRewardParcelTypeVector(builder, __reward_parcel_type);
|
_RewardParcelType = CreateRewardParcelTypeVector(builder, __RewardParcelType);
|
||||||
}
|
}
|
||||||
var _reward_parcel_id = default(VectorOffset);
|
var _RewardParcelId = default(VectorOffset);
|
||||||
if (_o.RewardParcelId != null) {
|
if (_o.RewardParcelId != null) {
|
||||||
var __reward_parcel_id = _o.RewardParcelId.ToArray();
|
var __RewardParcelId = _o.RewardParcelId.ToArray();
|
||||||
_reward_parcel_id = CreateRewardParcelIdVector(builder, __reward_parcel_id);
|
_RewardParcelId = CreateRewardParcelIdVector(builder, __RewardParcelId);
|
||||||
}
|
}
|
||||||
var _reward_amount = default(VectorOffset);
|
var _RewardAmount = default(VectorOffset);
|
||||||
if (_o.RewardAmount != null) {
|
if (_o.RewardAmount != null) {
|
||||||
var __reward_amount = _o.RewardAmount.ToArray();
|
var __RewardAmount = _o.RewardAmount.ToArray();
|
||||||
_reward_amount = CreateRewardAmountVector(builder, __reward_amount);
|
_RewardAmount = CreateRewardAmountVector(builder, __RewardAmount);
|
||||||
}
|
}
|
||||||
return CreateAcademyFavorScheduleExcel(
|
return CreateAcademyFavorScheduleExcel(
|
||||||
builder,
|
builder,
|
||||||
|
@ -168,14 +168,14 @@ public struct AcademyFavorScheduleExcel : IFlatbufferObject
|
||||||
_o.CharacterId,
|
_o.CharacterId,
|
||||||
_o.ScheduleGroupId,
|
_o.ScheduleGroupId,
|
||||||
_o.OrderInGroup,
|
_o.OrderInGroup,
|
||||||
_location,
|
_Location,
|
||||||
_o.LocalizeScenarioId,
|
_o.LocalizeScenarioId,
|
||||||
_o.FavorRank,
|
_o.FavorRank,
|
||||||
_o.SecretStoneAmount,
|
_o.SecretStoneAmount,
|
||||||
_o.ScenarioSriptGroupId,
|
_o.ScenarioSriptGroupId,
|
||||||
_reward_parcel_type,
|
_RewardParcelType,
|
||||||
_reward_parcel_id,
|
_RewardParcelId,
|
||||||
_reward_amount);
|
_RewardAmount);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -24,9 +24,9 @@ public struct AcademyFavorScheduleExcelTable : IFlatbufferObject
|
||||||
public int DataListLength { get { int o = __p.__offset(4); return o != 0 ? __p.__vector_len(o) : 0; } }
|
public int DataListLength { get { int o = __p.__offset(4); return o != 0 ? __p.__vector_len(o) : 0; } }
|
||||||
|
|
||||||
public static Offset<SCHALE.Common.FlatData.AcademyFavorScheduleExcelTable> CreateAcademyFavorScheduleExcelTable(FlatBufferBuilder builder,
|
public static Offset<SCHALE.Common.FlatData.AcademyFavorScheduleExcelTable> CreateAcademyFavorScheduleExcelTable(FlatBufferBuilder builder,
|
||||||
VectorOffset data_listOffset = default(VectorOffset)) {
|
VectorOffset DataListOffset = default(VectorOffset)) {
|
||||||
builder.StartTable(1);
|
builder.StartTable(1);
|
||||||
AcademyFavorScheduleExcelTable.AddDataList(builder, data_listOffset);
|
AcademyFavorScheduleExcelTable.AddDataList(builder, DataListOffset);
|
||||||
return AcademyFavorScheduleExcelTable.EndAcademyFavorScheduleExcelTable(builder);
|
return AcademyFavorScheduleExcelTable.EndAcademyFavorScheduleExcelTable(builder);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -53,15 +53,15 @@ public struct AcademyFavorScheduleExcelTable : IFlatbufferObject
|
||||||
}
|
}
|
||||||
public static Offset<SCHALE.Common.FlatData.AcademyFavorScheduleExcelTable> Pack(FlatBufferBuilder builder, AcademyFavorScheduleExcelTableT _o) {
|
public static Offset<SCHALE.Common.FlatData.AcademyFavorScheduleExcelTable> Pack(FlatBufferBuilder builder, AcademyFavorScheduleExcelTableT _o) {
|
||||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.AcademyFavorScheduleExcelTable>);
|
if (_o == null) return default(Offset<SCHALE.Common.FlatData.AcademyFavorScheduleExcelTable>);
|
||||||
var _data_list = default(VectorOffset);
|
var _DataList = default(VectorOffset);
|
||||||
if (_o.DataList != null) {
|
if (_o.DataList != null) {
|
||||||
var __data_list = new Offset<SCHALE.Common.FlatData.AcademyFavorScheduleExcel>[_o.DataList.Count];
|
var __DataList = new Offset<SCHALE.Common.FlatData.AcademyFavorScheduleExcel>[_o.DataList.Count];
|
||||||
for (var _j = 0; _j < __data_list.Length; ++_j) { __data_list[_j] = SCHALE.Common.FlatData.AcademyFavorScheduleExcel.Pack(builder, _o.DataList[_j]); }
|
for (var _j = 0; _j < __DataList.Length; ++_j) { __DataList[_j] = SCHALE.Common.FlatData.AcademyFavorScheduleExcel.Pack(builder, _o.DataList[_j]); }
|
||||||
_data_list = CreateDataListVector(builder, __data_list);
|
_DataList = CreateDataListVector(builder, __DataList);
|
||||||
}
|
}
|
||||||
return CreateAcademyFavorScheduleExcelTable(
|
return CreateAcademyFavorScheduleExcelTable(
|
||||||
builder,
|
builder,
|
||||||
_data_list);
|
_DataList);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -52,7 +52,7 @@ public struct AcademyLocationExcel : IFlatbufferObject
|
||||||
public ArraySegment<byte>? GetOpenConditionCountBytes() { return __p.__vector_as_arraysegment(14); }
|
public ArraySegment<byte>? GetOpenConditionCountBytes() { return __p.__vector_as_arraysegment(14); }
|
||||||
#endif
|
#endif
|
||||||
public long[] GetOpenConditionCountArray() { return __p.__vector_as_array<long>(14); }
|
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 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; } }
|
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),
|
StringOffset IconImagePathOffset = default(StringOffset),
|
||||||
VectorOffset OpenConditionOffset = default(VectorOffset),
|
VectorOffset OpenConditionOffset = default(VectorOffset),
|
||||||
VectorOffset OpenConditionCountOffset = 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 RewardParcelId = 0,
|
||||||
long OpenTeacherRank = 0) {
|
long OpenTeacherRank = 0) {
|
||||||
builder.StartTable(9);
|
builder.StartTable(9);
|
||||||
|
@ -169,7 +169,7 @@ public class AcademyLocationExcelT
|
||||||
this.IconImagePath = null;
|
this.IconImagePath = null;
|
||||||
this.OpenCondition = null;
|
this.OpenCondition = null;
|
||||||
this.OpenConditionCount = null;
|
this.OpenConditionCount = null;
|
||||||
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.RewardParcelId = 0;
|
this.RewardParcelId = 0;
|
||||||
this.OpenTeacherRank = 0;
|
this.OpenTeacherRank = 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum AcademyMessageConditions : int
|
public enum AcademyMessageConditions : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
FavorRankUp = 1,
|
FavorRankUp = 1,
|
||||||
AcademySchedule = 2,
|
AcademySchedule = 2,
|
||||||
Answer = 3,
|
Answer = 3,
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum AcademyMessageTypes : int
|
public enum AcademyMessageTypes : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Text = 1,
|
Text = 1,
|
||||||
Image = 2,
|
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 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 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 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 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 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 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 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 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 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; } }
|
public string ImagePath { get { int o = __p.__offset(26); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
public Span<byte> GetImagePathBytes() { return __p.__vector_as_span<byte>(26, 1); }
|
public Span<byte> GetImagePathBytes() { return __p.__vector_as_span<byte>(26, 1); }
|
||||||
|
@ -57,14 +57,14 @@ public struct AcademyMessanger1Excel : IFlatbufferObject
|
||||||
long MessageGroupId = 0,
|
long MessageGroupId = 0,
|
||||||
long Id = 0,
|
long Id = 0,
|
||||||
long CharacterId = 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 ConditionValue = 0,
|
||||||
long PreConditionGroupId = 0,
|
long PreConditionGroupId = 0,
|
||||||
long PreConditionFavorScheduleId = 0,
|
long PreConditionFavorScheduleId = 0,
|
||||||
long FavorScheduleId = 0,
|
long FavorScheduleId = 0,
|
||||||
long NextGroupId = 0,
|
long NextGroupId = 0,
|
||||||
long FeedbackTimeMillisec = 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 ImagePathOffset = default(StringOffset),
|
||||||
StringOffset MessageKROffset = default(StringOffset),
|
StringOffset MessageKROffset = default(StringOffset),
|
||||||
StringOffset MessageJPOffset = default(StringOffset)) {
|
StringOffset MessageJPOffset = default(StringOffset)) {
|
||||||
|
@ -172,14 +172,14 @@ public class AcademyMessanger1ExcelT
|
||||||
this.MessageGroupId = 0;
|
this.MessageGroupId = 0;
|
||||||
this.Id = 0;
|
this.Id = 0;
|
||||||
this.CharacterId = 0;
|
this.CharacterId = 0;
|
||||||
this.MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None;
|
this.MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None_;
|
||||||
this.ConditionValue = 0;
|
this.ConditionValue = 0;
|
||||||
this.PreConditionGroupId = 0;
|
this.PreConditionGroupId = 0;
|
||||||
this.PreConditionFavorScheduleId = 0;
|
this.PreConditionFavorScheduleId = 0;
|
||||||
this.FavorScheduleId = 0;
|
this.FavorScheduleId = 0;
|
||||||
this.NextGroupId = 0;
|
this.NextGroupId = 0;
|
||||||
this.FeedbackTimeMillisec = 0;
|
this.FeedbackTimeMillisec = 0;
|
||||||
this.MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None;
|
this.MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None_;
|
||||||
this.ImagePath = null;
|
this.ImagePath = null;
|
||||||
this.MessageKR = null;
|
this.MessageKR = null;
|
||||||
this.MessageJP = 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 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 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 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 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 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 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 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 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 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; } }
|
public string ImagePath { get { int o = __p.__offset(26); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
public Span<byte> GetImagePathBytes() { return __p.__vector_as_span<byte>(26, 1); }
|
public Span<byte> GetImagePathBytes() { return __p.__vector_as_span<byte>(26, 1); }
|
||||||
|
@ -57,14 +57,14 @@ public struct AcademyMessanger2Excel : IFlatbufferObject
|
||||||
long MessageGroupId = 0,
|
long MessageGroupId = 0,
|
||||||
long Id = 0,
|
long Id = 0,
|
||||||
long CharacterId = 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 ConditionValue = 0,
|
||||||
long PreConditionGroupId = 0,
|
long PreConditionGroupId = 0,
|
||||||
long PreConditionFavorScheduleId = 0,
|
long PreConditionFavorScheduleId = 0,
|
||||||
long FavorScheduleId = 0,
|
long FavorScheduleId = 0,
|
||||||
long NextGroupId = 0,
|
long NextGroupId = 0,
|
||||||
long FeedbackTimeMillisec = 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 ImagePathOffset = default(StringOffset),
|
||||||
StringOffset MessageKROffset = default(StringOffset),
|
StringOffset MessageKROffset = default(StringOffset),
|
||||||
StringOffset MessageJPOffset = default(StringOffset)) {
|
StringOffset MessageJPOffset = default(StringOffset)) {
|
||||||
|
@ -172,14 +172,14 @@ public class AcademyMessanger2ExcelT
|
||||||
this.MessageGroupId = 0;
|
this.MessageGroupId = 0;
|
||||||
this.Id = 0;
|
this.Id = 0;
|
||||||
this.CharacterId = 0;
|
this.CharacterId = 0;
|
||||||
this.MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None;
|
this.MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None_;
|
||||||
this.ConditionValue = 0;
|
this.ConditionValue = 0;
|
||||||
this.PreConditionGroupId = 0;
|
this.PreConditionGroupId = 0;
|
||||||
this.PreConditionFavorScheduleId = 0;
|
this.PreConditionFavorScheduleId = 0;
|
||||||
this.FavorScheduleId = 0;
|
this.FavorScheduleId = 0;
|
||||||
this.NextGroupId = 0;
|
this.NextGroupId = 0;
|
||||||
this.FeedbackTimeMillisec = 0;
|
this.FeedbackTimeMillisec = 0;
|
||||||
this.MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None;
|
this.MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None_;
|
||||||
this.ImagePath = null;
|
this.ImagePath = null;
|
||||||
this.MessageKR = null;
|
this.MessageKR = null;
|
||||||
this.MessageJP = 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 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 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 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 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 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 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 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 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 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; } }
|
public string ImagePath { get { int o = __p.__offset(26); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
public Span<byte> GetImagePathBytes() { return __p.__vector_as_span<byte>(26, 1); }
|
public Span<byte> GetImagePathBytes() { return __p.__vector_as_span<byte>(26, 1); }
|
||||||
|
@ -57,14 +57,14 @@ public struct AcademyMessanger3Excel : IFlatbufferObject
|
||||||
long MessageGroupId = 0,
|
long MessageGroupId = 0,
|
||||||
long Id = 0,
|
long Id = 0,
|
||||||
long CharacterId = 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 ConditionValue = 0,
|
||||||
long PreConditionGroupId = 0,
|
long PreConditionGroupId = 0,
|
||||||
long PreConditionFavorScheduleId = 0,
|
long PreConditionFavorScheduleId = 0,
|
||||||
long FavorScheduleId = 0,
|
long FavorScheduleId = 0,
|
||||||
long NextGroupId = 0,
|
long NextGroupId = 0,
|
||||||
long FeedbackTimeMillisec = 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 ImagePathOffset = default(StringOffset),
|
||||||
StringOffset MessageKROffset = default(StringOffset),
|
StringOffset MessageKROffset = default(StringOffset),
|
||||||
StringOffset MessageJPOffset = default(StringOffset)) {
|
StringOffset MessageJPOffset = default(StringOffset)) {
|
||||||
|
@ -172,14 +172,14 @@ public class AcademyMessanger3ExcelT
|
||||||
this.MessageGroupId = 0;
|
this.MessageGroupId = 0;
|
||||||
this.Id = 0;
|
this.Id = 0;
|
||||||
this.CharacterId = 0;
|
this.CharacterId = 0;
|
||||||
this.MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None;
|
this.MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None_;
|
||||||
this.ConditionValue = 0;
|
this.ConditionValue = 0;
|
||||||
this.PreConditionGroupId = 0;
|
this.PreConditionGroupId = 0;
|
||||||
this.PreConditionFavorScheduleId = 0;
|
this.PreConditionFavorScheduleId = 0;
|
||||||
this.FavorScheduleId = 0;
|
this.FavorScheduleId = 0;
|
||||||
this.NextGroupId = 0;
|
this.NextGroupId = 0;
|
||||||
this.FeedbackTimeMillisec = 0;
|
this.FeedbackTimeMillisec = 0;
|
||||||
this.MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None;
|
this.MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None_;
|
||||||
this.ImagePath = null;
|
this.ImagePath = null;
|
||||||
this.MessageKR = null;
|
this.MessageKR = null;
|
||||||
this.MessageJP = 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 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 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 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 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 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 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 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 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 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; } }
|
public string ImagePath { get { int o = __p.__offset(26); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
public Span<byte> GetImagePathBytes() { return __p.__vector_as_span<byte>(26, 1); }
|
public Span<byte> GetImagePathBytes() { return __p.__vector_as_span<byte>(26, 1); }
|
||||||
|
@ -57,14 +57,14 @@ public struct AcademyMessangerExcel : IFlatbufferObject
|
||||||
long MessageGroupId = 0,
|
long MessageGroupId = 0,
|
||||||
long Id = 0,
|
long Id = 0,
|
||||||
long CharacterId = 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 ConditionValue = 0,
|
||||||
long PreConditionGroupId = 0,
|
long PreConditionGroupId = 0,
|
||||||
long PreConditionFavorScheduleId = 0,
|
long PreConditionFavorScheduleId = 0,
|
||||||
long FavorScheduleId = 0,
|
long FavorScheduleId = 0,
|
||||||
long NextGroupId = 0,
|
long NextGroupId = 0,
|
||||||
long FeedbackTimeMillisec = 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 ImagePathOffset = default(StringOffset),
|
||||||
StringOffset MessageKROffset = default(StringOffset),
|
StringOffset MessageKROffset = default(StringOffset),
|
||||||
StringOffset MessageJPOffset = default(StringOffset)) {
|
StringOffset MessageJPOffset = default(StringOffset)) {
|
||||||
|
@ -172,14 +172,14 @@ public class AcademyMessangerExcelT
|
||||||
this.MessageGroupId = 0;
|
this.MessageGroupId = 0;
|
||||||
this.Id = 0;
|
this.Id = 0;
|
||||||
this.CharacterId = 0;
|
this.CharacterId = 0;
|
||||||
this.MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None;
|
this.MessageCondition = SCHALE.Common.FlatData.AcademyMessageConditions.None_;
|
||||||
this.ConditionValue = 0;
|
this.ConditionValue = 0;
|
||||||
this.PreConditionGroupId = 0;
|
this.PreConditionGroupId = 0;
|
||||||
this.PreConditionFavorScheduleId = 0;
|
this.PreConditionFavorScheduleId = 0;
|
||||||
this.FavorScheduleId = 0;
|
this.FavorScheduleId = 0;
|
||||||
this.NextGroupId = 0;
|
this.NextGroupId = 0;
|
||||||
this.FeedbackTimeMillisec = 0;
|
this.FeedbackTimeMillisec = 0;
|
||||||
this.MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None;
|
this.MessageType = SCHALE.Common.FlatData.AcademyMessageTypes.None_;
|
||||||
this.ImagePath = null;
|
this.ImagePath = null;
|
||||||
this.MessageKR = null;
|
this.MessageKR = null;
|
||||||
this.MessageJP = null;
|
this.MessageJP = null;
|
||||||
|
|
|
@ -1,88 +0,0 @@
|
||||||
// <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;
|
|
||||||
using global::SCHALE.Common.Crypto;
|
|
||||||
using global::Google.FlatBuffers;
|
|
||||||
|
|
||||||
public struct AccountLevelExcelTable : IFlatbufferObject
|
|
||||||
{
|
|
||||||
private Table __p;
|
|
||||||
public ByteBuffer ByteBuffer { get { return __p.bb; } }
|
|
||||||
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_24_3_25(); }
|
|
||||||
public static AccountLevelExcelTable GetRootAsAccountLevelExcelTable(ByteBuffer _bb) { return GetRootAsAccountLevelExcelTable(_bb, new AccountLevelExcelTable()); }
|
|
||||||
public static AccountLevelExcelTable GetRootAsAccountLevelExcelTable(ByteBuffer _bb, AccountLevelExcelTable obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
|
|
||||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
|
||||||
public AccountLevelExcelTable __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
|
||||||
|
|
||||||
public SCHALE.Common.FlatData.AccountLevelExcel? DataList(int j) { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.AccountLevelExcel?)(new SCHALE.Common.FlatData.AccountLevelExcel()).__assign(__p.__indirect(__p.__vector(o) + j * 4), __p.bb) : null; }
|
|
||||||
public int DataListLength { get { int o = __p.__offset(4); return o != 0 ? __p.__vector_len(o) : 0; } }
|
|
||||||
|
|
||||||
public static Offset<SCHALE.Common.FlatData.AccountLevelExcelTable> CreateAccountLevelExcelTable(FlatBufferBuilder builder,
|
|
||||||
VectorOffset DataListOffset = default(VectorOffset)) {
|
|
||||||
builder.StartTable(1);
|
|
||||||
AccountLevelExcelTable.AddDataList(builder, DataListOffset);
|
|
||||||
return AccountLevelExcelTable.EndAccountLevelExcelTable(builder);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void StartAccountLevelExcelTable(FlatBufferBuilder builder) { builder.StartTable(1); }
|
|
||||||
public static void AddDataList(FlatBufferBuilder builder, VectorOffset dataListOffset) { builder.AddOffset(0, dataListOffset.Value, 0); }
|
|
||||||
public static VectorOffset CreateDataListVector(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.AccountLevelExcel>[] data) { builder.StartVector(4, data.Length, 4); for (int i = data.Length - 1; i >= 0; i--) builder.AddOffset(data[i].Value); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.AccountLevelExcel>[] data) { builder.StartVector(4, data.Length, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, ArraySegment<Offset<SCHALE.Common.FlatData.AccountLevelExcel>> data) { builder.StartVector(4, data.Count, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<Offset<SCHALE.Common.FlatData.AccountLevelExcel>>(dataPtr, sizeInBytes); return builder.EndVector(); }
|
|
||||||
public static void StartDataListVector(FlatBufferBuilder builder, int numElems) { builder.StartVector(4, numElems, 4); }
|
|
||||||
public static Offset<SCHALE.Common.FlatData.AccountLevelExcelTable> EndAccountLevelExcelTable(FlatBufferBuilder builder) {
|
|
||||||
int o = builder.EndTable();
|
|
||||||
return new Offset<SCHALE.Common.FlatData.AccountLevelExcelTable>(o);
|
|
||||||
}
|
|
||||||
public AccountLevelExcelTableT UnPack() {
|
|
||||||
var _o = new AccountLevelExcelTableT();
|
|
||||||
this.UnPackTo(_o);
|
|
||||||
return _o;
|
|
||||||
}
|
|
||||||
public void UnPackTo(AccountLevelExcelTableT _o) {
|
|
||||||
byte[] key = TableEncryptionService.CreateKey("AccountLevelExcel");
|
|
||||||
_o.DataList = new List<SCHALE.Common.FlatData.AccountLevelExcelT>();
|
|
||||||
for (var _j = 0; _j < this.DataListLength; ++_j) {_o.DataList.Add(this.DataList(_j).HasValue ? this.DataList(_j).Value.UnPack() : null);}
|
|
||||||
}
|
|
||||||
public static Offset<SCHALE.Common.FlatData.AccountLevelExcelTable> Pack(FlatBufferBuilder builder, AccountLevelExcelTableT _o) {
|
|
||||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.AccountLevelExcelTable>);
|
|
||||||
var _DataList = default(VectorOffset);
|
|
||||||
if (_o.DataList != null) {
|
|
||||||
var __DataList = new Offset<SCHALE.Common.FlatData.AccountLevelExcel>[_o.DataList.Count];
|
|
||||||
for (var _j = 0; _j < __DataList.Length; ++_j) { __DataList[_j] = SCHALE.Common.FlatData.AccountLevelExcel.Pack(builder, _o.DataList[_j]); }
|
|
||||||
_DataList = CreateDataListVector(builder, __DataList);
|
|
||||||
}
|
|
||||||
return CreateAccountLevelExcelTable(
|
|
||||||
builder,
|
|
||||||
_DataList);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public class AccountLevelExcelTableT
|
|
||||||
{
|
|
||||||
public List<SCHALE.Common.FlatData.AccountLevelExcelT> DataList { get; set; }
|
|
||||||
|
|
||||||
public AccountLevelExcelTableT() {
|
|
||||||
this.DataList = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static public class AccountLevelExcelTableVerify
|
|
||||||
{
|
|
||||||
static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos)
|
|
||||||
{
|
|
||||||
return verifier.VerifyTableStart(tablePos)
|
|
||||||
&& verifier.VerifyVectorOfTables(tablePos, 4 /*DataList*/, SCHALE.Common.FlatData.AccountLevelExcelVerify.Verify, false)
|
|
||||||
&& verifier.VerifyTableEnd(tablePos);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum AimIKType : int
|
public enum AimIKType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
OneHandRight = 1,
|
OneHandRight = 1,
|
||||||
OneHandLeft = 2,
|
OneHandLeft = 2,
|
||||||
TwoHandRight = 3,
|
TwoHandRight = 3,
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum AmplifyDoTRemoveCondition : int
|
public enum AmplifyDoTRemoveCondition : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
ApplyCount = 1,
|
ApplyCount = 1,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum Anniversary : int
|
public enum Anniversary : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
UserBDay = 1,
|
UserBDay = 1,
|
||||||
StudentBDay = 2,
|
StudentBDay = 2,
|
||||||
};
|
};
|
||||||
|
|
|
@ -21,7 +21,7 @@ public struct ArenaRewardExcel : IFlatbufferObject
|
||||||
public ArenaRewardExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
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 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 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 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; } }
|
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,
|
public static Offset<SCHALE.Common.FlatData.ArenaRewardExcel> CreateArenaRewardExcel(FlatBufferBuilder builder,
|
||||||
long UniqueId = 0,
|
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 RankStart = 0,
|
||||||
long RankEnd = 0,
|
long RankEnd = 0,
|
||||||
StringOffset RankIconPathOffset = default(StringOffset),
|
StringOffset RankIconPathOffset = default(StringOffset),
|
||||||
|
@ -188,7 +188,7 @@ public class ArenaRewardExcelT
|
||||||
|
|
||||||
public ArenaRewardExcelT() {
|
public ArenaRewardExcelT() {
|
||||||
this.UniqueId = 0;
|
this.UniqueId = 0;
|
||||||
this.ArenaRewardType_ = SCHALE.Common.FlatData.ArenaRewardType.None;
|
this.ArenaRewardType_ = SCHALE.Common.FlatData.ArenaRewardType.None_;
|
||||||
this.RankStart = 0;
|
this.RankStart = 0;
|
||||||
this.RankEnd = 0;
|
this.RankEnd = 0;
|
||||||
this.RankIconPath = null;
|
this.RankIconPath = null;
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum ArenaRewardType : int
|
public enum ArenaRewardType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Time = 1,
|
Time = 1,
|
||||||
Daily = 2,
|
Daily = 2,
|
||||||
SeasonRecord = 3,
|
SeasonRecord = 3,
|
||||||
|
|
|
@ -20,12 +20,12 @@ public struct AssistEchelonTypeConvertExcel : IFlatbufferObject
|
||||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
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 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 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 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,
|
public static Offset<SCHALE.Common.FlatData.AssistEchelonTypeConvertExcel> CreateAssistEchelonTypeConvertExcel(FlatBufferBuilder builder,
|
||||||
SCHALE.Common.FlatData.EchelonType Contents = 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) {
|
SCHALE.Common.FlatData.EchelonType ConvertTo = SCHALE.Common.FlatData.EchelonType.None_) {
|
||||||
builder.StartTable(2);
|
builder.StartTable(2);
|
||||||
AssistEchelonTypeConvertExcel.AddConvertTo(builder, ConvertTo);
|
AssistEchelonTypeConvertExcel.AddConvertTo(builder, ConvertTo);
|
||||||
AssistEchelonTypeConvertExcel.AddContents(builder, Contents);
|
AssistEchelonTypeConvertExcel.AddContents(builder, Contents);
|
||||||
|
@ -64,8 +64,8 @@ public class AssistEchelonTypeConvertExcelT
|
||||||
public SCHALE.Common.FlatData.EchelonType ConvertTo { get; set; }
|
public SCHALE.Common.FlatData.EchelonType ConvertTo { get; set; }
|
||||||
|
|
||||||
public AssistEchelonTypeConvertExcelT() {
|
public AssistEchelonTypeConvertExcelT() {
|
||||||
this.Contents = SCHALE.Common.FlatData.EchelonType.None;
|
this.Contents = SCHALE.Common.FlatData.EchelonType.None_;
|
||||||
this.ConvertTo = SCHALE.Common.FlatData.EchelonType.None;
|
this.ConvertTo = SCHALE.Common.FlatData.EchelonType.None_;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,88 +0,0 @@
|
||||||
// <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;
|
|
||||||
using global::SCHALE.Common.Crypto;
|
|
||||||
using global::Google.FlatBuffers;
|
|
||||||
|
|
||||||
public struct AssistEchelonTypeConvertExcelTable : IFlatbufferObject
|
|
||||||
{
|
|
||||||
private Table __p;
|
|
||||||
public ByteBuffer ByteBuffer { get { return __p.bb; } }
|
|
||||||
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_24_3_25(); }
|
|
||||||
public static AssistEchelonTypeConvertExcelTable GetRootAsAssistEchelonTypeConvertExcelTable(ByteBuffer _bb) { return GetRootAsAssistEchelonTypeConvertExcelTable(_bb, new AssistEchelonTypeConvertExcelTable()); }
|
|
||||||
public static AssistEchelonTypeConvertExcelTable GetRootAsAssistEchelonTypeConvertExcelTable(ByteBuffer _bb, AssistEchelonTypeConvertExcelTable obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
|
|
||||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
|
||||||
public AssistEchelonTypeConvertExcelTable __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
|
||||||
|
|
||||||
public SCHALE.Common.FlatData.AssistEchelonTypeConvertExcel? DataList(int j) { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.AssistEchelonTypeConvertExcel?)(new SCHALE.Common.FlatData.AssistEchelonTypeConvertExcel()).__assign(__p.__indirect(__p.__vector(o) + j * 4), __p.bb) : null; }
|
|
||||||
public int DataListLength { get { int o = __p.__offset(4); return o != 0 ? __p.__vector_len(o) : 0; } }
|
|
||||||
|
|
||||||
public static Offset<SCHALE.Common.FlatData.AssistEchelonTypeConvertExcelTable> CreateAssistEchelonTypeConvertExcelTable(FlatBufferBuilder builder,
|
|
||||||
VectorOffset DataListOffset = default(VectorOffset)) {
|
|
||||||
builder.StartTable(1);
|
|
||||||
AssistEchelonTypeConvertExcelTable.AddDataList(builder, DataListOffset);
|
|
||||||
return AssistEchelonTypeConvertExcelTable.EndAssistEchelonTypeConvertExcelTable(builder);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void StartAssistEchelonTypeConvertExcelTable(FlatBufferBuilder builder) { builder.StartTable(1); }
|
|
||||||
public static void AddDataList(FlatBufferBuilder builder, VectorOffset dataListOffset) { builder.AddOffset(0, dataListOffset.Value, 0); }
|
|
||||||
public static VectorOffset CreateDataListVector(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.AssistEchelonTypeConvertExcel>[] data) { builder.StartVector(4, data.Length, 4); for (int i = data.Length - 1; i >= 0; i--) builder.AddOffset(data[i].Value); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.AssistEchelonTypeConvertExcel>[] data) { builder.StartVector(4, data.Length, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, ArraySegment<Offset<SCHALE.Common.FlatData.AssistEchelonTypeConvertExcel>> data) { builder.StartVector(4, data.Count, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<Offset<SCHALE.Common.FlatData.AssistEchelonTypeConvertExcel>>(dataPtr, sizeInBytes); return builder.EndVector(); }
|
|
||||||
public static void StartDataListVector(FlatBufferBuilder builder, int numElems) { builder.StartVector(4, numElems, 4); }
|
|
||||||
public static Offset<SCHALE.Common.FlatData.AssistEchelonTypeConvertExcelTable> EndAssistEchelonTypeConvertExcelTable(FlatBufferBuilder builder) {
|
|
||||||
int o = builder.EndTable();
|
|
||||||
return new Offset<SCHALE.Common.FlatData.AssistEchelonTypeConvertExcelTable>(o);
|
|
||||||
}
|
|
||||||
public AssistEchelonTypeConvertExcelTableT UnPack() {
|
|
||||||
var _o = new AssistEchelonTypeConvertExcelTableT();
|
|
||||||
this.UnPackTo(_o);
|
|
||||||
return _o;
|
|
||||||
}
|
|
||||||
public void UnPackTo(AssistEchelonTypeConvertExcelTableT _o) {
|
|
||||||
byte[] key = TableEncryptionService.CreateKey("AssistEchelonTypeConvertExcel");
|
|
||||||
_o.DataList = new List<SCHALE.Common.FlatData.AssistEchelonTypeConvertExcelT>();
|
|
||||||
for (var _j = 0; _j < this.DataListLength; ++_j) {_o.DataList.Add(this.DataList(_j).HasValue ? this.DataList(_j).Value.UnPack() : null);}
|
|
||||||
}
|
|
||||||
public static Offset<SCHALE.Common.FlatData.AssistEchelonTypeConvertExcelTable> Pack(FlatBufferBuilder builder, AssistEchelonTypeConvertExcelTableT _o) {
|
|
||||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.AssistEchelonTypeConvertExcelTable>);
|
|
||||||
var _DataList = default(VectorOffset);
|
|
||||||
if (_o.DataList != null) {
|
|
||||||
var __DataList = new Offset<SCHALE.Common.FlatData.AssistEchelonTypeConvertExcel>[_o.DataList.Count];
|
|
||||||
for (var _j = 0; _j < __DataList.Length; ++_j) { __DataList[_j] = SCHALE.Common.FlatData.AssistEchelonTypeConvertExcel.Pack(builder, _o.DataList[_j]); }
|
|
||||||
_DataList = CreateDataListVector(builder, __DataList);
|
|
||||||
}
|
|
||||||
return CreateAssistEchelonTypeConvertExcelTable(
|
|
||||||
builder,
|
|
||||||
_DataList);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public class AssistEchelonTypeConvertExcelTableT
|
|
||||||
{
|
|
||||||
public List<SCHALE.Common.FlatData.AssistEchelonTypeConvertExcelT> DataList { get; set; }
|
|
||||||
|
|
||||||
public AssistEchelonTypeConvertExcelTableT() {
|
|
||||||
this.DataList = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static public class AssistEchelonTypeConvertExcelTableVerify
|
|
||||||
{
|
|
||||||
static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos)
|
|
||||||
{
|
|
||||||
return verifier.VerifyTableStart(tablePos)
|
|
||||||
&& verifier.VerifyVectorOfTables(tablePos, 4 /*DataList*/, SCHALE.Common.FlatData.AssistEchelonTypeConvertExcelVerify.Verify, false)
|
|
||||||
&& verifier.VerifyTableEnd(tablePos);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,88 +0,0 @@
|
||||||
// <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;
|
|
||||||
using global::SCHALE.Common.Crypto;
|
|
||||||
using global::Google.FlatBuffers;
|
|
||||||
|
|
||||||
public struct AttendanceExcelTable : IFlatbufferObject
|
|
||||||
{
|
|
||||||
private Table __p;
|
|
||||||
public ByteBuffer ByteBuffer { get { return __p.bb; } }
|
|
||||||
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_24_3_25(); }
|
|
||||||
public static AttendanceExcelTable GetRootAsAttendanceExcelTable(ByteBuffer _bb) { return GetRootAsAttendanceExcelTable(_bb, new AttendanceExcelTable()); }
|
|
||||||
public static AttendanceExcelTable GetRootAsAttendanceExcelTable(ByteBuffer _bb, AttendanceExcelTable obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
|
|
||||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
|
||||||
public AttendanceExcelTable __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
|
||||||
|
|
||||||
public SCHALE.Common.FlatData.AttendanceExcel? DataList(int j) { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.AttendanceExcel?)(new SCHALE.Common.FlatData.AttendanceExcel()).__assign(__p.__indirect(__p.__vector(o) + j * 4), __p.bb) : null; }
|
|
||||||
public int DataListLength { get { int o = __p.__offset(4); return o != 0 ? __p.__vector_len(o) : 0; } }
|
|
||||||
|
|
||||||
public static Offset<SCHALE.Common.FlatData.AttendanceExcelTable> CreateAttendanceExcelTable(FlatBufferBuilder builder,
|
|
||||||
VectorOffset DataListOffset = default(VectorOffset)) {
|
|
||||||
builder.StartTable(1);
|
|
||||||
AttendanceExcelTable.AddDataList(builder, DataListOffset);
|
|
||||||
return AttendanceExcelTable.EndAttendanceExcelTable(builder);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void StartAttendanceExcelTable(FlatBufferBuilder builder) { builder.StartTable(1); }
|
|
||||||
public static void AddDataList(FlatBufferBuilder builder, VectorOffset dataListOffset) { builder.AddOffset(0, dataListOffset.Value, 0); }
|
|
||||||
public static VectorOffset CreateDataListVector(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.AttendanceExcel>[] data) { builder.StartVector(4, data.Length, 4); for (int i = data.Length - 1; i >= 0; i--) builder.AddOffset(data[i].Value); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.AttendanceExcel>[] data) { builder.StartVector(4, data.Length, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, ArraySegment<Offset<SCHALE.Common.FlatData.AttendanceExcel>> data) { builder.StartVector(4, data.Count, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<Offset<SCHALE.Common.FlatData.AttendanceExcel>>(dataPtr, sizeInBytes); return builder.EndVector(); }
|
|
||||||
public static void StartDataListVector(FlatBufferBuilder builder, int numElems) { builder.StartVector(4, numElems, 4); }
|
|
||||||
public static Offset<SCHALE.Common.FlatData.AttendanceExcelTable> EndAttendanceExcelTable(FlatBufferBuilder builder) {
|
|
||||||
int o = builder.EndTable();
|
|
||||||
return new Offset<SCHALE.Common.FlatData.AttendanceExcelTable>(o);
|
|
||||||
}
|
|
||||||
public AttendanceExcelTableT UnPack() {
|
|
||||||
var _o = new AttendanceExcelTableT();
|
|
||||||
this.UnPackTo(_o);
|
|
||||||
return _o;
|
|
||||||
}
|
|
||||||
public void UnPackTo(AttendanceExcelTableT _o) {
|
|
||||||
byte[] key = TableEncryptionService.CreateKey("AttendanceExcel");
|
|
||||||
_o.DataList = new List<SCHALE.Common.FlatData.AttendanceExcelT>();
|
|
||||||
for (var _j = 0; _j < this.DataListLength; ++_j) {_o.DataList.Add(this.DataList(_j).HasValue ? this.DataList(_j).Value.UnPack() : null);}
|
|
||||||
}
|
|
||||||
public static Offset<SCHALE.Common.FlatData.AttendanceExcelTable> Pack(FlatBufferBuilder builder, AttendanceExcelTableT _o) {
|
|
||||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.AttendanceExcelTable>);
|
|
||||||
var _DataList = default(VectorOffset);
|
|
||||||
if (_o.DataList != null) {
|
|
||||||
var __DataList = new Offset<SCHALE.Common.FlatData.AttendanceExcel>[_o.DataList.Count];
|
|
||||||
for (var _j = 0; _j < __DataList.Length; ++_j) { __DataList[_j] = SCHALE.Common.FlatData.AttendanceExcel.Pack(builder, _o.DataList[_j]); }
|
|
||||||
_DataList = CreateDataListVector(builder, __DataList);
|
|
||||||
}
|
|
||||||
return CreateAttendanceExcelTable(
|
|
||||||
builder,
|
|
||||||
_DataList);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public class AttendanceExcelTableT
|
|
||||||
{
|
|
||||||
public List<SCHALE.Common.FlatData.AttendanceExcelT> DataList { get; set; }
|
|
||||||
|
|
||||||
public AttendanceExcelTableT() {
|
|
||||||
this.DataList = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static public class AttendanceExcelTableVerify
|
|
||||||
{
|
|
||||||
static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos)
|
|
||||||
{
|
|
||||||
return verifier.VerifyTableStart(tablePos)
|
|
||||||
&& verifier.VerifyVectorOfTables(tablePos, 4 /*DataList*/, SCHALE.Common.FlatData.AttendanceExcelVerify.Verify, false)
|
|
||||||
&& verifier.VerifyTableEnd(tablePos);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,88 +0,0 @@
|
||||||
// <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;
|
|
||||||
using global::SCHALE.Common.Crypto;
|
|
||||||
using global::Google.FlatBuffers;
|
|
||||||
|
|
||||||
public struct AttendanceRewardExcelTable : IFlatbufferObject
|
|
||||||
{
|
|
||||||
private Table __p;
|
|
||||||
public ByteBuffer ByteBuffer { get { return __p.bb; } }
|
|
||||||
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_24_3_25(); }
|
|
||||||
public static AttendanceRewardExcelTable GetRootAsAttendanceRewardExcelTable(ByteBuffer _bb) { return GetRootAsAttendanceRewardExcelTable(_bb, new AttendanceRewardExcelTable()); }
|
|
||||||
public static AttendanceRewardExcelTable GetRootAsAttendanceRewardExcelTable(ByteBuffer _bb, AttendanceRewardExcelTable obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
|
|
||||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
|
||||||
public AttendanceRewardExcelTable __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
|
||||||
|
|
||||||
public SCHALE.Common.FlatData.AttendanceRewardExcel? DataList(int j) { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.AttendanceRewardExcel?)(new SCHALE.Common.FlatData.AttendanceRewardExcel()).__assign(__p.__indirect(__p.__vector(o) + j * 4), __p.bb) : null; }
|
|
||||||
public int DataListLength { get { int o = __p.__offset(4); return o != 0 ? __p.__vector_len(o) : 0; } }
|
|
||||||
|
|
||||||
public static Offset<SCHALE.Common.FlatData.AttendanceRewardExcelTable> CreateAttendanceRewardExcelTable(FlatBufferBuilder builder,
|
|
||||||
VectorOffset DataListOffset = default(VectorOffset)) {
|
|
||||||
builder.StartTable(1);
|
|
||||||
AttendanceRewardExcelTable.AddDataList(builder, DataListOffset);
|
|
||||||
return AttendanceRewardExcelTable.EndAttendanceRewardExcelTable(builder);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void StartAttendanceRewardExcelTable(FlatBufferBuilder builder) { builder.StartTable(1); }
|
|
||||||
public static void AddDataList(FlatBufferBuilder builder, VectorOffset dataListOffset) { builder.AddOffset(0, dataListOffset.Value, 0); }
|
|
||||||
public static VectorOffset CreateDataListVector(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.AttendanceRewardExcel>[] data) { builder.StartVector(4, data.Length, 4); for (int i = data.Length - 1; i >= 0; i--) builder.AddOffset(data[i].Value); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.AttendanceRewardExcel>[] data) { builder.StartVector(4, data.Length, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, ArraySegment<Offset<SCHALE.Common.FlatData.AttendanceRewardExcel>> data) { builder.StartVector(4, data.Count, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<Offset<SCHALE.Common.FlatData.AttendanceRewardExcel>>(dataPtr, sizeInBytes); return builder.EndVector(); }
|
|
||||||
public static void StartDataListVector(FlatBufferBuilder builder, int numElems) { builder.StartVector(4, numElems, 4); }
|
|
||||||
public static Offset<SCHALE.Common.FlatData.AttendanceRewardExcelTable> EndAttendanceRewardExcelTable(FlatBufferBuilder builder) {
|
|
||||||
int o = builder.EndTable();
|
|
||||||
return new Offset<SCHALE.Common.FlatData.AttendanceRewardExcelTable>(o);
|
|
||||||
}
|
|
||||||
public AttendanceRewardExcelTableT UnPack() {
|
|
||||||
var _o = new AttendanceRewardExcelTableT();
|
|
||||||
this.UnPackTo(_o);
|
|
||||||
return _o;
|
|
||||||
}
|
|
||||||
public void UnPackTo(AttendanceRewardExcelTableT _o) {
|
|
||||||
byte[] key = TableEncryptionService.CreateKey("AttendanceRewardExcel");
|
|
||||||
_o.DataList = new List<SCHALE.Common.FlatData.AttendanceRewardExcelT>();
|
|
||||||
for (var _j = 0; _j < this.DataListLength; ++_j) {_o.DataList.Add(this.DataList(_j).HasValue ? this.DataList(_j).Value.UnPack() : null);}
|
|
||||||
}
|
|
||||||
public static Offset<SCHALE.Common.FlatData.AttendanceRewardExcelTable> Pack(FlatBufferBuilder builder, AttendanceRewardExcelTableT _o) {
|
|
||||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.AttendanceRewardExcelTable>);
|
|
||||||
var _DataList = default(VectorOffset);
|
|
||||||
if (_o.DataList != null) {
|
|
||||||
var __DataList = new Offset<SCHALE.Common.FlatData.AttendanceRewardExcel>[_o.DataList.Count];
|
|
||||||
for (var _j = 0; _j < __DataList.Length; ++_j) { __DataList[_j] = SCHALE.Common.FlatData.AttendanceRewardExcel.Pack(builder, _o.DataList[_j]); }
|
|
||||||
_DataList = CreateDataListVector(builder, __DataList);
|
|
||||||
}
|
|
||||||
return CreateAttendanceRewardExcelTable(
|
|
||||||
builder,
|
|
||||||
_DataList);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public class AttendanceRewardExcelTableT
|
|
||||||
{
|
|
||||||
public List<SCHALE.Common.FlatData.AttendanceRewardExcelT> DataList { get; set; }
|
|
||||||
|
|
||||||
public AttendanceRewardExcelTableT() {
|
|
||||||
this.DataList = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static public class AttendanceRewardExcelTableVerify
|
|
||||||
{
|
|
||||||
static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos)
|
|
||||||
{
|
|
||||||
return verifier.VerifyTableStart(tablePos)
|
|
||||||
&& verifier.VerifyVectorOfTables(tablePos, 4 /*DataList*/, SCHALE.Common.FlatData.AttendanceRewardExcelVerify.Verify, false)
|
|
||||||
&& verifier.VerifyTableEnd(tablePos);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
// <auto-generated>
|
||||||
|
// automatically generated by the FlatBuffers compiler, do not modify
|
||||||
|
// </auto-generated>
|
||||||
|
|
||||||
|
namespace SCHALE.Common.FlatData
|
||||||
|
{
|
||||||
|
|
||||||
|
public enum BattleDialogType : int
|
||||||
|
{
|
||||||
|
Talk = 0,
|
||||||
|
Think = 1,
|
||||||
|
Shout = 2,
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
}
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum BillingTransactionEndType : int
|
public enum BillingTransactionEndType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Success = 1,
|
Success = 1,
|
||||||
Cancel = 2,
|
Cancel = 2,
|
||||||
};
|
};
|
||||||
|
|
|
@ -23,7 +23,7 @@ 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 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 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.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.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; } }
|
public string TriggerArgument { get { int o = __p.__offset(12); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
public Span<byte> GetTriggerArgumentBytes() { return __p.__vector_as_span<byte>(12, 1); }
|
public Span<byte> GetTriggerArgumentBytes() { return __p.__vector_as_span<byte>(12, 1); }
|
||||||
|
@ -45,7 +45,7 @@ public struct BossExternalBTExcel : IFlatbufferObject
|
||||||
long ExternalBTId = 0,
|
long ExternalBTId = 0,
|
||||||
long AIPhase = 0,
|
long AIPhase = 0,
|
||||||
SCHALE.Common.FlatData.ExternalBTNodeType ExternalBTNodeType_ = SCHALE.Common.FlatData.ExternalBTNodeType.Sequence,
|
SCHALE.Common.FlatData.ExternalBTNodeType ExternalBTNodeType_ = SCHALE.Common.FlatData.ExternalBTNodeType.Sequence,
|
||||||
SCHALE.Common.FlatData.ExternalBTTrigger ExternalBTTrigger_ = SCHALE.Common.FlatData.ExternalBTTrigger.None,
|
SCHALE.Common.FlatData.ExternalBTTrigger ExternalBTTrigger_ = SCHALE.Common.FlatData.ExternalBTTrigger.None_,
|
||||||
StringOffset TriggerArgumentOffset = default(StringOffset),
|
StringOffset TriggerArgumentOffset = default(StringOffset),
|
||||||
long BehaviorRate = 0,
|
long BehaviorRate = 0,
|
||||||
SCHALE.Common.FlatData.ExternalBehavior ExternalBehavior_ = SCHALE.Common.FlatData.ExternalBehavior.UseNextExSkill,
|
SCHALE.Common.FlatData.ExternalBehavior ExternalBehavior_ = SCHALE.Common.FlatData.ExternalBehavior.UseNextExSkill,
|
||||||
|
@ -123,7 +123,7 @@ public class BossExternalBTExcelT
|
||||||
this.ExternalBTId = 0;
|
this.ExternalBTId = 0;
|
||||||
this.AIPhase = 0;
|
this.AIPhase = 0;
|
||||||
this.ExternalBTNodeType_ = SCHALE.Common.FlatData.ExternalBTNodeType.Sequence;
|
this.ExternalBTNodeType_ = SCHALE.Common.FlatData.ExternalBTNodeType.Sequence;
|
||||||
this.ExternalBTTrigger_ = SCHALE.Common.FlatData.ExternalBTTrigger.None;
|
this.ExternalBTTrigger_ = SCHALE.Common.FlatData.ExternalBTTrigger.None_;
|
||||||
this.TriggerArgument = null;
|
this.TriggerArgument = null;
|
||||||
this.BehaviorRate = 0;
|
this.BehaviorRate = 0;
|
||||||
this.ExternalBehavior_ = SCHALE.Common.FlatData.ExternalBehavior.UseNextExSkill;
|
this.ExternalBehavior_ = SCHALE.Common.FlatData.ExternalBehavior.UseNextExSkill;
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum BuffIconType : int
|
public enum BuffIconType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Debuff_DyingPenalty = 1,
|
Debuff_DyingPenalty = 1,
|
||||||
CC_MindControl = 2,
|
CC_MindControl = 2,
|
||||||
CC_Inoperative = 3,
|
CC_Inoperative = 3,
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum BuffType : int
|
public enum BuffType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Buff_AttackPower = 1,
|
Buff_AttackPower = 1,
|
||||||
Buff_CriticalChance = 2,
|
Buff_CriticalChance = 2,
|
||||||
Buff_CriticalDamage = 3,
|
Buff_CriticalDamage = 3,
|
||||||
|
|
|
@ -12,7 +12,7 @@ public enum BulletType : int
|
||||||
Explosion = 2,
|
Explosion = 2,
|
||||||
Siege = 3,
|
Siege = 3,
|
||||||
Mystic = 4,
|
Mystic = 4,
|
||||||
None = 5,
|
None_ = 5,
|
||||||
Sonic = 6,
|
Sonic = 6,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum CafeCharacterState : int
|
public enum CafeCharacterState : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Idle = 1,
|
Idle = 1,
|
||||||
Walk = 2,
|
Walk = 2,
|
||||||
Reaction = 3,
|
Reaction = 3,
|
||||||
|
|
|
@ -52,7 +52,7 @@ public struct CafeInteractionExcel : IFlatbufferObject
|
||||||
public ArraySegment<byte>? GetBubbleDurationBytes() { return __p.__vector_as_arraysegment(14); }
|
public ArraySegment<byte>? GetBubbleDurationBytes() { return __p.__vector_as_arraysegment(14); }
|
||||||
#endif
|
#endif
|
||||||
public long[] GetBubbleDurationArray() { return __p.__vector_as_array<long>(14); }
|
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 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 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; }
|
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),
|
StringOffset IgnoreIfUnobtainedEndDateOffset = default(StringOffset),
|
||||||
VectorOffset BubbleType_Offset = default(VectorOffset),
|
VectorOffset BubbleType_Offset = default(VectorOffset),
|
||||||
VectorOffset BubbleDurationOffset = 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 FavorEmoticonRewardId = 0,
|
||||||
long FavorEmoticonRewardAmount = 0,
|
long FavorEmoticonRewardAmount = 0,
|
||||||
VectorOffset CafeCharacterStateOffset = default(VectorOffset)) {
|
VectorOffset CafeCharacterStateOffset = default(VectorOffset)) {
|
||||||
|
@ -189,7 +189,7 @@ public class CafeInteractionExcelT
|
||||||
this.IgnoreIfUnobtainedEndDate = null;
|
this.IgnoreIfUnobtainedEndDate = null;
|
||||||
this.BubbleType_ = null;
|
this.BubbleType_ = null;
|
||||||
this.BubbleDuration = null;
|
this.BubbleDuration = null;
|
||||||
this.FavorEmoticonRewardParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
this.FavorEmoticonRewardParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.FavorEmoticonRewardId = 0;
|
this.FavorEmoticonRewardId = 0;
|
||||||
this.FavorEmoticonRewardAmount = 0;
|
this.FavorEmoticonRewardAmount = 0;
|
||||||
this.CafeCharacterState = null;
|
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 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 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 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 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; } }
|
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,
|
public static Offset<SCHALE.Common.FlatData.CafeProductionExcel> CreateCafeProductionExcel(FlatBufferBuilder builder,
|
||||||
long CafeId = 0,
|
long CafeId = 0,
|
||||||
long Rank = 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 CafeProductionParcelId = 0,
|
||||||
long ParcelProductionCoefficient = 0,
|
long ParcelProductionCoefficient = 0,
|
||||||
long ParcelProductionCorrectionValue = 0,
|
long ParcelProductionCorrectionValue = 0,
|
||||||
|
@ -101,7 +101,7 @@ public class CafeProductionExcelT
|
||||||
public CafeProductionExcelT() {
|
public CafeProductionExcelT() {
|
||||||
this.CafeId = 0;
|
this.CafeId = 0;
|
||||||
this.Rank = 0;
|
this.Rank = 0;
|
||||||
this.CafeProductionParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
this.CafeProductionParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.CafeProductionParcelId = 0;
|
this.CafeProductionParcelId = 0;
|
||||||
this.ParcelProductionCoefficient = 0;
|
this.ParcelProductionCoefficient = 0;
|
||||||
this.ParcelProductionCorrectionValue = 0;
|
this.ParcelProductionCorrectionValue = 0;
|
||||||
|
|
|
@ -38,7 +38,7 @@ public struct CampaignStageExcel : IFlatbufferObject
|
||||||
public byte[] GetStageNumberArray() { return __p.__vector_as_array<byte>(10); }
|
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 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 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 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 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; } }
|
public int StageEnterEchelonCount { get { int o = __p.__offset(22); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||||
|
@ -85,10 +85,10 @@ public struct CampaignStageExcel : IFlatbufferObject
|
||||||
public ArraySegment<byte>? GetBgmIdBytes() { return __p.__vector_as_arraysegment(44); }
|
public ArraySegment<byte>? GetBgmIdBytes() { return __p.__vector_as_arraysegment(44); }
|
||||||
#endif
|
#endif
|
||||||
public byte[] GetBgmIdArray() { return __p.__vector_as_array<byte>(44); }
|
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 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 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 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; } }
|
public string FirstClearReportEventName { get { int o = __p.__offset(56); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
|
@ -108,7 +108,7 @@ public struct CampaignStageExcel : IFlatbufferObject
|
||||||
StringOffset StageNumberOffset = default(StringOffset),
|
StringOffset StageNumberOffset = default(StringOffset),
|
||||||
long CleardScenarioId = 0,
|
long CleardScenarioId = 0,
|
||||||
long BattleDuration = 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,
|
long StageEnterCostId = 0,
|
||||||
int StageEnterCostAmount = 0,
|
int StageEnterCostAmount = 0,
|
||||||
int StageEnterEchelonCount = 0,
|
int StageEnterEchelonCount = 0,
|
||||||
|
@ -123,10 +123,10 @@ public struct CampaignStageExcel : IFlatbufferObject
|
||||||
SCHALE.Common.FlatData.StageTopography StageTopography_ = SCHALE.Common.FlatData.StageTopography.Street,
|
SCHALE.Common.FlatData.StageTopography StageTopography_ = SCHALE.Common.FlatData.StageTopography.Street,
|
||||||
int RecommandLevel = 0,
|
int RecommandLevel = 0,
|
||||||
StringOffset BgmIdOffset = default(StringOffset),
|
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,
|
long GroundId = 0,
|
||||||
int StrategySkipGroundId = 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,
|
long BGMId = 0,
|
||||||
StringOffset FirstClearReportEventNameOffset = default(StringOffset),
|
StringOffset FirstClearReportEventNameOffset = default(StringOffset),
|
||||||
long TacticRewardExp = 0,
|
long TacticRewardExp = 0,
|
||||||
|
@ -344,7 +344,7 @@ public class CampaignStageExcelT
|
||||||
this.StageNumber = null;
|
this.StageNumber = null;
|
||||||
this.CleardScenarioId = 0;
|
this.CleardScenarioId = 0;
|
||||||
this.BattleDuration = 0;
|
this.BattleDuration = 0;
|
||||||
this.StageEnterCostType = SCHALE.Common.FlatData.ParcelType.None;
|
this.StageEnterCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.StageEnterCostId = 0;
|
this.StageEnterCostId = 0;
|
||||||
this.StageEnterCostAmount = 0;
|
this.StageEnterCostAmount = 0;
|
||||||
this.StageEnterEchelonCount = 0;
|
this.StageEnterEchelonCount = 0;
|
||||||
|
@ -359,10 +359,10 @@ public class CampaignStageExcelT
|
||||||
this.StageTopography_ = SCHALE.Common.FlatData.StageTopography.Street;
|
this.StageTopography_ = SCHALE.Common.FlatData.StageTopography.Street;
|
||||||
this.RecommandLevel = 0;
|
this.RecommandLevel = 0;
|
||||||
this.BgmId = null;
|
this.BgmId = null;
|
||||||
this.StrategyEnvironment_ = SCHALE.Common.FlatData.StrategyEnvironment.None;
|
this.StrategyEnvironment_ = SCHALE.Common.FlatData.StrategyEnvironment.None_;
|
||||||
this.GroundId = 0;
|
this.GroundId = 0;
|
||||||
this.StrategySkipGroundId = 0;
|
this.StrategySkipGroundId = 0;
|
||||||
this.ContentType_ = SCHALE.Common.FlatData.ContentType.None;
|
this.ContentType_ = SCHALE.Common.FlatData.ContentType.None_;
|
||||||
this.BGMId = 0;
|
this.BGMId = 0;
|
||||||
this.FirstClearReportEventName = null;
|
this.FirstClearReportEventName = null;
|
||||||
this.TacticRewardExp = 0;
|
this.TacticRewardExp = 0;
|
||||||
|
|
|
@ -23,7 +23,7 @@ public struct CampaignStageRewardExcel : IFlatbufferObject
|
||||||
public long GroupId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
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 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 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 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 bool IsDisplayed { get { int o = __p.__offset(16); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||||
|
@ -32,7 +32,7 @@ public struct CampaignStageRewardExcel : IFlatbufferObject
|
||||||
long GroupId = 0,
|
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,
|
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,
|
long StageRewardId = 0,
|
||||||
int StageRewardAmount = 0,
|
int StageRewardAmount = 0,
|
||||||
bool IsDisplayed = false) {
|
bool IsDisplayed = false) {
|
||||||
|
@ -102,7 +102,7 @@ public class CampaignStageRewardExcelT
|
||||||
this.GroupId = 0;
|
this.GroupId = 0;
|
||||||
this.RewardTag_ = SCHALE.Common.FlatData.RewardTag.Default;
|
this.RewardTag_ = SCHALE.Common.FlatData.RewardTag.Default;
|
||||||
this.StageRewardProb = 0;
|
this.StageRewardProb = 0;
|
||||||
this.StageRewardParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
this.StageRewardParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.StageRewardId = 0;
|
this.StageRewardId = 0;
|
||||||
this.StageRewardAmount = 0;
|
this.StageRewardAmount = 0;
|
||||||
this.IsDisplayed = false;
|
this.IsDisplayed = false;
|
||||||
|
|
|
@ -36,8 +36,8 @@ public struct CampaignStrategyObjectExcel : IFlatbufferObject
|
||||||
public ArraySegment<byte>? GetPrefabNameBytes() { return __p.__vector_as_arraysegment(10); }
|
public ArraySegment<byte>? GetPrefabNameBytes() { return __p.__vector_as_arraysegment(10); }
|
||||||
#endif
|
#endif
|
||||||
public byte[] GetPrefabNameArray() { return __p.__vector_as_array<byte>(10); }
|
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.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.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 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; } }
|
public string StrategyRewardName { get { int o = __p.__offset(18); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
|
@ -59,8 +59,8 @@ public struct CampaignStrategyObjectExcel : IFlatbufferObject
|
||||||
uint Key = 0,
|
uint Key = 0,
|
||||||
StringOffset NameOffset = default(StringOffset),
|
StringOffset NameOffset = default(StringOffset),
|
||||||
StringOffset PrefabNameOffset = default(StringOffset),
|
StringOffset PrefabNameOffset = default(StringOffset),
|
||||||
SCHALE.Common.FlatData.StrategyObjectType StrategyObjectType_ = SCHALE.Common.FlatData.StrategyObjectType.None,
|
SCHALE.Common.FlatData.StrategyObjectType StrategyObjectType_ = SCHALE.Common.FlatData.StrategyObjectType.None_,
|
||||||
SCHALE.Common.FlatData.ParcelType StrategyRewardParcelType = SCHALE.Common.FlatData.ParcelType.None,
|
SCHALE.Common.FlatData.ParcelType StrategyRewardParcelType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||||
long StrategyRewardID = 0,
|
long StrategyRewardID = 0,
|
||||||
StringOffset StrategyRewardNameOffset = default(StringOffset),
|
StringOffset StrategyRewardNameOffset = default(StringOffset),
|
||||||
int StrategyRewardAmount = 0,
|
int StrategyRewardAmount = 0,
|
||||||
|
@ -180,8 +180,8 @@ public class CampaignStrategyObjectExcelT
|
||||||
this.Key = 0;
|
this.Key = 0;
|
||||||
this.Name = null;
|
this.Name = null;
|
||||||
this.PrefabName = null;
|
this.PrefabName = null;
|
||||||
this.StrategyObjectType_ = SCHALE.Common.FlatData.StrategyObjectType.None;
|
this.StrategyObjectType_ = SCHALE.Common.FlatData.StrategyObjectType.None_;
|
||||||
this.StrategyRewardParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
this.StrategyRewardParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.StrategyRewardID = 0;
|
this.StrategyRewardID = 0;
|
||||||
this.StrategyRewardName = null;
|
this.StrategyRewardName = null;
|
||||||
this.StrategyRewardAmount = 0;
|
this.StrategyRewardAmount = 0;
|
||||||
|
|
|
@ -61,9 +61,9 @@ public struct CampaignUnitExcel : IFlatbufferObject
|
||||||
public long[] GetClearScenarioGroupIdArray() { return __p.__vector_as_array<long>(16); }
|
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 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 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.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 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; } }
|
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),
|
VectorOffset ClearScenarioGroupIdOffset = default(VectorOffset),
|
||||||
long GroundId = 0,
|
long GroundId = 0,
|
||||||
int MoveRange = 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.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,
|
float Scale = 0.0f,
|
||||||
bool IsTacticSkip = false) {
|
bool IsTacticSkip = false) {
|
||||||
builder.StartTable(14);
|
builder.StartTable(14);
|
||||||
|
@ -214,9 +214,9 @@ public class CampaignUnitExcelT
|
||||||
this.ClearScenarioGroupId = null;
|
this.ClearScenarioGroupId = null;
|
||||||
this.GroundId = 0;
|
this.GroundId = 0;
|
||||||
this.MoveRange = 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.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.Scale = 0.0f;
|
||||||
this.IsTacticSkip = false;
|
this.IsTacticSkip = false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,32 +21,64 @@ public struct CharacterCalculationLimitExcel : IFlatbufferObject
|
||||||
public CharacterCalculationLimitExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
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 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 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 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; } }
|
public long MaxValue { get { int o = __p.__offset(12); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||||
|
public long LimitStartValue(int j) { int o = __p.__offset(14); return o != 0 ? __p.bb.GetLong(__p.__vector(o) + j * 8) : (long)0; }
|
||||||
|
public int LimitStartValueLength { get { int o = __p.__offset(14); return o != 0 ? __p.__vector_len(o) : 0; } }
|
||||||
|
#if ENABLE_SPAN_T
|
||||||
|
public Span<long> GetLimitStartValueBytes() { return __p.__vector_as_span<long>(14, 8); }
|
||||||
|
#else
|
||||||
|
public ArraySegment<byte>? GetLimitStartValueBytes() { return __p.__vector_as_arraysegment(14); }
|
||||||
|
#endif
|
||||||
|
public long[] GetLimitStartValueArray() { return __p.__vector_as_array<long>(14); }
|
||||||
|
public long DecreaseRate(int j) { int o = __p.__offset(16); return o != 0 ? __p.bb.GetLong(__p.__vector(o) + j * 8) : (long)0; }
|
||||||
|
public int DecreaseRateLength { get { int o = __p.__offset(16); return o != 0 ? __p.__vector_len(o) : 0; } }
|
||||||
|
#if ENABLE_SPAN_T
|
||||||
|
public Span<long> GetDecreaseRateBytes() { return __p.__vector_as_span<long>(16, 8); }
|
||||||
|
#else
|
||||||
|
public ArraySegment<byte>? GetDecreaseRateBytes() { return __p.__vector_as_arraysegment(16); }
|
||||||
|
#endif
|
||||||
|
public long[] GetDecreaseRateArray() { return __p.__vector_as_array<long>(16); }
|
||||||
|
|
||||||
public static Offset<SCHALE.Common.FlatData.CharacterCalculationLimitExcel> CreateCharacterCalculationLimitExcel(FlatBufferBuilder builder,
|
public static Offset<SCHALE.Common.FlatData.CharacterCalculationLimitExcel> CreateCharacterCalculationLimitExcel(FlatBufferBuilder builder,
|
||||||
long Id = 0,
|
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,
|
SCHALE.Common.FlatData.BattleCalculationStat CalculationValue = SCHALE.Common.FlatData.BattleCalculationStat.FinalDamage,
|
||||||
long MinValue = 0,
|
long MinValue = 0,
|
||||||
long MaxValue = 0) {
|
long MaxValue = 0,
|
||||||
builder.StartTable(5);
|
VectorOffset LimitStartValueOffset = default(VectorOffset),
|
||||||
|
VectorOffset DecreaseRateOffset = default(VectorOffset)) {
|
||||||
|
builder.StartTable(7);
|
||||||
CharacterCalculationLimitExcel.AddMaxValue(builder, MaxValue);
|
CharacterCalculationLimitExcel.AddMaxValue(builder, MaxValue);
|
||||||
CharacterCalculationLimitExcel.AddMinValue(builder, MinValue);
|
CharacterCalculationLimitExcel.AddMinValue(builder, MinValue);
|
||||||
CharacterCalculationLimitExcel.AddId(builder, Id);
|
CharacterCalculationLimitExcel.AddId(builder, Id);
|
||||||
|
CharacterCalculationLimitExcel.AddDecreaseRate(builder, DecreaseRateOffset);
|
||||||
|
CharacterCalculationLimitExcel.AddLimitStartValue(builder, LimitStartValueOffset);
|
||||||
CharacterCalculationLimitExcel.AddCalculationValue(builder, CalculationValue);
|
CharacterCalculationLimitExcel.AddCalculationValue(builder, CalculationValue);
|
||||||
CharacterCalculationLimitExcel.AddTacticEntityType_(builder, TacticEntityType_);
|
CharacterCalculationLimitExcel.AddTacticEntityType_(builder, TacticEntityType_);
|
||||||
return CharacterCalculationLimitExcel.EndCharacterCalculationLimitExcel(builder);
|
return CharacterCalculationLimitExcel.EndCharacterCalculationLimitExcel(builder);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void StartCharacterCalculationLimitExcel(FlatBufferBuilder builder) { builder.StartTable(5); }
|
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 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 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 AddMinValue(FlatBufferBuilder builder, long minValue) { builder.AddLong(3, minValue, 0); }
|
||||||
public static void AddMaxValue(FlatBufferBuilder builder, long maxValue) { builder.AddLong(4, maxValue, 0); }
|
public static void AddMaxValue(FlatBufferBuilder builder, long maxValue) { builder.AddLong(4, maxValue, 0); }
|
||||||
|
public static void AddLimitStartValue(FlatBufferBuilder builder, VectorOffset limitStartValueOffset) { builder.AddOffset(5, limitStartValueOffset.Value, 0); }
|
||||||
|
public static VectorOffset CreateLimitStartValueVector(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 CreateLimitStartValueVectorBlock(FlatBufferBuilder builder, long[] data) { builder.StartVector(8, data.Length, 8); builder.Add(data); return builder.EndVector(); }
|
||||||
|
public static VectorOffset CreateLimitStartValueVectorBlock(FlatBufferBuilder builder, ArraySegment<long> data) { builder.StartVector(8, data.Count, 8); builder.Add(data); return builder.EndVector(); }
|
||||||
|
public static VectorOffset CreateLimitStartValueVectorBlock(FlatBufferBuilder builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<long>(dataPtr, sizeInBytes); return builder.EndVector(); }
|
||||||
|
public static void StartLimitStartValueVector(FlatBufferBuilder builder, int numElems) { builder.StartVector(8, numElems, 8); }
|
||||||
|
public static void AddDecreaseRate(FlatBufferBuilder builder, VectorOffset decreaseRateOffset) { builder.AddOffset(6, decreaseRateOffset.Value, 0); }
|
||||||
|
public static VectorOffset CreateDecreaseRateVector(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 CreateDecreaseRateVectorBlock(FlatBufferBuilder builder, long[] data) { builder.StartVector(8, data.Length, 8); builder.Add(data); return builder.EndVector(); }
|
||||||
|
public static VectorOffset CreateDecreaseRateVectorBlock(FlatBufferBuilder builder, ArraySegment<long> data) { builder.StartVector(8, data.Count, 8); builder.Add(data); return builder.EndVector(); }
|
||||||
|
public static VectorOffset CreateDecreaseRateVectorBlock(FlatBufferBuilder builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<long>(dataPtr, sizeInBytes); return builder.EndVector(); }
|
||||||
|
public static void StartDecreaseRateVector(FlatBufferBuilder builder, int numElems) { builder.StartVector(8, numElems, 8); }
|
||||||
public static Offset<SCHALE.Common.FlatData.CharacterCalculationLimitExcel> EndCharacterCalculationLimitExcel(FlatBufferBuilder builder) {
|
public static Offset<SCHALE.Common.FlatData.CharacterCalculationLimitExcel> EndCharacterCalculationLimitExcel(FlatBufferBuilder builder) {
|
||||||
int o = builder.EndTable();
|
int o = builder.EndTable();
|
||||||
return new Offset<SCHALE.Common.FlatData.CharacterCalculationLimitExcel>(o);
|
return new Offset<SCHALE.Common.FlatData.CharacterCalculationLimitExcel>(o);
|
||||||
|
@ -63,16 +95,32 @@ public struct CharacterCalculationLimitExcel : IFlatbufferObject
|
||||||
_o.CalculationValue = TableEncryptionService.Convert(this.CalculationValue, key);
|
_o.CalculationValue = TableEncryptionService.Convert(this.CalculationValue, key);
|
||||||
_o.MinValue = TableEncryptionService.Convert(this.MinValue, key);
|
_o.MinValue = TableEncryptionService.Convert(this.MinValue, key);
|
||||||
_o.MaxValue = TableEncryptionService.Convert(this.MaxValue, key);
|
_o.MaxValue = TableEncryptionService.Convert(this.MaxValue, key);
|
||||||
|
_o.LimitStartValue = new List<long>();
|
||||||
|
for (var _j = 0; _j < this.LimitStartValueLength; ++_j) {_o.LimitStartValue.Add(TableEncryptionService.Convert(this.LimitStartValue(_j), key));}
|
||||||
|
_o.DecreaseRate = new List<long>();
|
||||||
|
for (var _j = 0; _j < this.DecreaseRateLength; ++_j) {_o.DecreaseRate.Add(TableEncryptionService.Convert(this.DecreaseRate(_j), key));}
|
||||||
}
|
}
|
||||||
public static Offset<SCHALE.Common.FlatData.CharacterCalculationLimitExcel> Pack(FlatBufferBuilder builder, CharacterCalculationLimitExcelT _o) {
|
public static Offset<SCHALE.Common.FlatData.CharacterCalculationLimitExcel> Pack(FlatBufferBuilder builder, CharacterCalculationLimitExcelT _o) {
|
||||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.CharacterCalculationLimitExcel>);
|
if (_o == null) return default(Offset<SCHALE.Common.FlatData.CharacterCalculationLimitExcel>);
|
||||||
|
var _LimitStartValue = default(VectorOffset);
|
||||||
|
if (_o.LimitStartValue != null) {
|
||||||
|
var __LimitStartValue = _o.LimitStartValue.ToArray();
|
||||||
|
_LimitStartValue = CreateLimitStartValueVector(builder, __LimitStartValue);
|
||||||
|
}
|
||||||
|
var _DecreaseRate = default(VectorOffset);
|
||||||
|
if (_o.DecreaseRate != null) {
|
||||||
|
var __DecreaseRate = _o.DecreaseRate.ToArray();
|
||||||
|
_DecreaseRate = CreateDecreaseRateVector(builder, __DecreaseRate);
|
||||||
|
}
|
||||||
return CreateCharacterCalculationLimitExcel(
|
return CreateCharacterCalculationLimitExcel(
|
||||||
builder,
|
builder,
|
||||||
_o.Id,
|
_o.Id,
|
||||||
_o.TacticEntityType_,
|
_o.TacticEntityType_,
|
||||||
_o.CalculationValue,
|
_o.CalculationValue,
|
||||||
_o.MinValue,
|
_o.MinValue,
|
||||||
_o.MaxValue);
|
_o.MaxValue,
|
||||||
|
_LimitStartValue,
|
||||||
|
_DecreaseRate);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -83,13 +131,17 @@ public class CharacterCalculationLimitExcelT
|
||||||
public SCHALE.Common.FlatData.BattleCalculationStat CalculationValue { get; set; }
|
public SCHALE.Common.FlatData.BattleCalculationStat CalculationValue { get; set; }
|
||||||
public long MinValue { get; set; }
|
public long MinValue { get; set; }
|
||||||
public long MaxValue { get; set; }
|
public long MaxValue { get; set; }
|
||||||
|
public List<long> LimitStartValue { get; set; }
|
||||||
|
public List<long> DecreaseRate { get; set; }
|
||||||
|
|
||||||
public CharacterCalculationLimitExcelT() {
|
public CharacterCalculationLimitExcelT() {
|
||||||
this.Id = 0;
|
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.CalculationValue = SCHALE.Common.FlatData.BattleCalculationStat.FinalDamage;
|
||||||
this.MinValue = 0;
|
this.MinValue = 0;
|
||||||
this.MaxValue = 0;
|
this.MaxValue = 0;
|
||||||
|
this.LimitStartValue = null;
|
||||||
|
this.DecreaseRate = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -104,6 +156,8 @@ static public class CharacterCalculationLimitExcelVerify
|
||||||
&& verifier.VerifyField(tablePos, 8 /*CalculationValue*/, 4 /*SCHALE.Common.FlatData.BattleCalculationStat*/, 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, 10 /*MinValue*/, 8 /*long*/, 8, false)
|
||||||
&& verifier.VerifyField(tablePos, 12 /*MaxValue*/, 8 /*long*/, 8, false)
|
&& verifier.VerifyField(tablePos, 12 /*MaxValue*/, 8 /*long*/, 8, false)
|
||||||
|
&& verifier.VerifyVectorOfData(tablePos, 14 /*LimitStartValue*/, 8 /*long*/, false)
|
||||||
|
&& verifier.VerifyVectorOfData(tablePos, 16 /*DecreaseRate*/, 8 /*long*/, false)
|
||||||
&& verifier.VerifyTableEnd(tablePos);
|
&& verifier.VerifyTableEnd(tablePos);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,7 +27,7 @@ public struct CharacterDialogEventExcel : IFlatbufferObject
|
||||||
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 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.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.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.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 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 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; } }
|
||||||
|
@ -88,7 +88,7 @@ public struct CharacterDialogEventExcel : IFlatbufferObject
|
||||||
SCHALE.Common.FlatData.ProductionStep ProductionStep_ = SCHALE.Common.FlatData.ProductionStep.ToDo,
|
SCHALE.Common.FlatData.ProductionStep ProductionStep_ = SCHALE.Common.FlatData.ProductionStep.ToDo,
|
||||||
SCHALE.Common.FlatData.DialogCategory DialogCategory_ = SCHALE.Common.FlatData.DialogCategory.Cafe,
|
SCHALE.Common.FlatData.DialogCategory DialogCategory_ = SCHALE.Common.FlatData.DialogCategory.Cafe,
|
||||||
SCHALE.Common.FlatData.DialogCondition DialogCondition_ = SCHALE.Common.FlatData.DialogCondition.Idle,
|
SCHALE.Common.FlatData.DialogCondition DialogCondition_ = SCHALE.Common.FlatData.DialogCondition.Idle,
|
||||||
SCHALE.Common.FlatData.DialogConditionDetail DialogConditionDetail_ = SCHALE.Common.FlatData.DialogConditionDetail.None,
|
SCHALE.Common.FlatData.DialogConditionDetail DialogConditionDetail_ = SCHALE.Common.FlatData.DialogConditionDetail.None_,
|
||||||
long DialogConditionDetailValue = 0,
|
long DialogConditionDetailValue = 0,
|
||||||
long GroupId = 0,
|
long GroupId = 0,
|
||||||
SCHALE.Common.FlatData.DialogType DialogType_ = SCHALE.Common.FlatData.DialogType.Talk,
|
SCHALE.Common.FlatData.DialogType DialogType_ = SCHALE.Common.FlatData.DialogType.Talk,
|
||||||
|
@ -264,7 +264,7 @@ public class CharacterDialogEventExcelT
|
||||||
this.ProductionStep_ = SCHALE.Common.FlatData.ProductionStep.ToDo;
|
this.ProductionStep_ = SCHALE.Common.FlatData.ProductionStep.ToDo;
|
||||||
this.DialogCategory_ = SCHALE.Common.FlatData.DialogCategory.Cafe;
|
this.DialogCategory_ = SCHALE.Common.FlatData.DialogCategory.Cafe;
|
||||||
this.DialogCondition_ = SCHALE.Common.FlatData.DialogCondition.Idle;
|
this.DialogCondition_ = SCHALE.Common.FlatData.DialogCondition.Idle;
|
||||||
this.DialogConditionDetail_ = SCHALE.Common.FlatData.DialogConditionDetail.None;
|
this.DialogConditionDetail_ = SCHALE.Common.FlatData.DialogConditionDetail.None_;
|
||||||
this.DialogConditionDetailValue = 0;
|
this.DialogConditionDetailValue = 0;
|
||||||
this.GroupId = 0;
|
this.GroupId = 0;
|
||||||
this.DialogType_ = SCHALE.Common.FlatData.DialogType.Talk;
|
this.DialogType_ = SCHALE.Common.FlatData.DialogType.Talk;
|
||||||
|
|
|
@ -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 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 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 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.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.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.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.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; } }
|
public string StartDate { get { int o = __p.__offset(18); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
public Span<byte> GetStartDateBytes() { return __p.__vector_as_span<byte>(18, 1); }
|
public Span<byte> GetStartDateBytes() { return __p.__vector_as_span<byte>(18, 1); }
|
||||||
|
@ -42,7 +42,7 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
||||||
#endif
|
#endif
|
||||||
public byte[] GetEndDateArray() { return __p.__vector_as_array<byte>(20); }
|
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 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; } }
|
public string ActionName { get { int o = __p.__offset(26); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
public Span<byte> GetActionNameBytes() { return __p.__vector_as_span<byte>(26, 1); }
|
public Span<byte> GetActionNameBytes() { return __p.__vector_as_span<byte>(26, 1); }
|
||||||
|
@ -58,20 +58,20 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
||||||
public ArraySegment<byte>? GetAnimationNameBytes() { return __p.__vector_as_arraysegment(30); }
|
public ArraySegment<byte>? GetAnimationNameBytes() { return __p.__vector_as_arraysegment(30); }
|
||||||
#endif
|
#endif
|
||||||
public byte[] GetAnimationNameArray() { return __p.__vector_as_array<byte>(30); }
|
public byte[] GetAnimationNameArray() { return __p.__vector_as_array<byte>(30); }
|
||||||
public string LocalizeKr { get { int o = __p.__offset(32); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
public string LocalizeKR { get { int o = __p.__offset(32); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
public Span<byte> GetLocalizeKrBytes() { return __p.__vector_as_span<byte>(32, 1); }
|
public Span<byte> GetLocalizeKRBytes() { return __p.__vector_as_span<byte>(32, 1); }
|
||||||
#else
|
#else
|
||||||
public ArraySegment<byte>? GetLocalizeKrBytes() { return __p.__vector_as_arraysegment(32); }
|
public ArraySegment<byte>? GetLocalizeKRBytes() { return __p.__vector_as_arraysegment(32); }
|
||||||
#endif
|
#endif
|
||||||
public byte[] GetLocalizeKrArray() { return __p.__vector_as_array<byte>(32); }
|
public byte[] GetLocalizeKRArray() { return __p.__vector_as_array<byte>(32); }
|
||||||
public string LocalizeJp { get { int o = __p.__offset(34); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
public string LocalizeJP { get { int o = __p.__offset(34); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
public Span<byte> GetLocalizeJpBytes() { return __p.__vector_as_span<byte>(34, 1); }
|
public Span<byte> GetLocalizeJPBytes() { return __p.__vector_as_span<byte>(34, 1); }
|
||||||
#else
|
#else
|
||||||
public ArraySegment<byte>? GetLocalizeJpBytes() { return __p.__vector_as_arraysegment(34); }
|
public ArraySegment<byte>? GetLocalizeJPBytes() { return __p.__vector_as_arraysegment(34); }
|
||||||
#endif
|
#endif
|
||||||
public byte[] GetLocalizeJpArray() { return __p.__vector_as_array<byte>(34); }
|
public byte[] GetLocalizeJPArray() { return __p.__vector_as_array<byte>(34); }
|
||||||
public uint VoiceId(int j) { int o = __p.__offset(36); return o != 0 ? __p.bb.GetUint(__p.__vector(o) + j * 4) : (uint)0; }
|
public uint VoiceId(int j) { int o = __p.__offset(36); return o != 0 ? __p.bb.GetUint(__p.__vector(o) + j * 4) : (uint)0; }
|
||||||
public int VoiceIdLength { get { int o = __p.__offset(36); return o != 0 ? __p.__vector_len(o) : 0; } }
|
public int VoiceIdLength { get { int o = __p.__offset(36); return o != 0 ? __p.__vector_len(o) : 0; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
|
@ -84,69 +84,69 @@ 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 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 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 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 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 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; } }
|
public string LocalizeCVGroup { get { int o = __p.__offset(52); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
public Span<byte> GetLocalizeCvGroupBytes() { return __p.__vector_as_span<byte>(52, 1); }
|
public Span<byte> GetLocalizeCVGroupBytes() { return __p.__vector_as_span<byte>(52, 1); }
|
||||||
#else
|
#else
|
||||||
public ArraySegment<byte>? GetLocalizeCvGroupBytes() { return __p.__vector_as_arraysegment(52); }
|
public ArraySegment<byte>? GetLocalizeCVGroupBytes() { return __p.__vector_as_arraysegment(52); }
|
||||||
#endif
|
#endif
|
||||||
public byte[] GetLocalizeCvGroupArray() { return __p.__vector_as_array<byte>(52); }
|
public byte[] GetLocalizeCVGroupArray() { return __p.__vector_as_array<byte>(52); }
|
||||||
|
|
||||||
public static Offset<SCHALE.Common.FlatData.CharacterDialogExcel> CreateCharacterDialogExcel(FlatBufferBuilder builder,
|
public static Offset<SCHALE.Common.FlatData.CharacterDialogExcel> CreateCharacterDialogExcel(FlatBufferBuilder builder,
|
||||||
long character_id = 0,
|
long CharacterId = 0,
|
||||||
long costume_unique_id = 0,
|
long CostumeUniqueId = 0,
|
||||||
long display_order = 0,
|
long DisplayOrder = 0,
|
||||||
SCHALE.Common.FlatData.ProductionStep production_step = SCHALE.Common.FlatData.ProductionStep.ToDo,
|
SCHALE.Common.FlatData.ProductionStep ProductionStep_ = SCHALE.Common.FlatData.ProductionStep.ToDo,
|
||||||
SCHALE.Common.FlatData.DialogCategory dialog_category = SCHALE.Common.FlatData.DialogCategory.Cafe,
|
SCHALE.Common.FlatData.DialogCategory DialogCategory_ = SCHALE.Common.FlatData.DialogCategory.Cafe,
|
||||||
SCHALE.Common.FlatData.DialogCondition dialog_condition = SCHALE.Common.FlatData.DialogCondition.Idle,
|
SCHALE.Common.FlatData.DialogCondition DialogCondition_ = SCHALE.Common.FlatData.DialogCondition.Idle,
|
||||||
SCHALE.Common.FlatData.Anniversary anniversary = SCHALE.Common.FlatData.Anniversary.None,
|
SCHALE.Common.FlatData.Anniversary Anniversary_ = SCHALE.Common.FlatData.Anniversary.None_,
|
||||||
StringOffset start_dateOffset = default(StringOffset),
|
StringOffset StartDateOffset = default(StringOffset),
|
||||||
StringOffset end_dateOffset = default(StringOffset),
|
StringOffset EndDateOffset = default(StringOffset),
|
||||||
long group_id = 0,
|
long GroupId = 0,
|
||||||
SCHALE.Common.FlatData.DialogType dialog_type = SCHALE.Common.FlatData.DialogType.Talk,
|
SCHALE.Common.FlatData.DialogType DialogType_ = SCHALE.Common.FlatData.DialogType.Talk,
|
||||||
StringOffset action_nameOffset = default(StringOffset),
|
StringOffset ActionNameOffset = default(StringOffset),
|
||||||
long duration = 0,
|
long Duration = 0,
|
||||||
StringOffset animation_nameOffset = default(StringOffset),
|
StringOffset AnimationNameOffset = default(StringOffset),
|
||||||
StringOffset localize_krOffset = default(StringOffset),
|
StringOffset LocalizeKROffset = default(StringOffset),
|
||||||
StringOffset localize_jpOffset = default(StringOffset),
|
StringOffset LocalizeJPOffset = default(StringOffset),
|
||||||
VectorOffset voice_idOffset = default(VectorOffset),
|
VectorOffset VoiceIdOffset = default(VectorOffset),
|
||||||
bool apply_position = false,
|
bool ApplyPosition = false,
|
||||||
float pos_x = 0.0f,
|
float PosX = 0.0f,
|
||||||
float pos_y = 0.0f,
|
float PosY = 0.0f,
|
||||||
bool collection_visible = false,
|
bool CollectionVisible = false,
|
||||||
SCHALE.Common.FlatData.CVCollectionType cv_collection_type = SCHALE.Common.FlatData.CVCollectionType.CVNormal,
|
SCHALE.Common.FlatData.CVCollectionType CVCollectionType_ = SCHALE.Common.FlatData.CVCollectionType.CVNormal,
|
||||||
long unlock_favor_rank = 0,
|
long UnlockFavorRank = 0,
|
||||||
bool unlock_equip_weapon = false,
|
bool UnlockEquipWeapon = false,
|
||||||
StringOffset localize_cv_groupOffset = default(StringOffset)) {
|
StringOffset LocalizeCVGroupOffset = default(StringOffset)) {
|
||||||
builder.StartTable(25);
|
builder.StartTable(25);
|
||||||
CharacterDialogExcel.AddUnlockFavorRank(builder, unlock_favor_rank);
|
CharacterDialogExcel.AddUnlockFavorRank(builder, UnlockFavorRank);
|
||||||
CharacterDialogExcel.AddDuration(builder, duration);
|
CharacterDialogExcel.AddDuration(builder, Duration);
|
||||||
CharacterDialogExcel.AddGroupId(builder, group_id);
|
CharacterDialogExcel.AddGroupId(builder, GroupId);
|
||||||
CharacterDialogExcel.AddDisplayOrder(builder, display_order);
|
CharacterDialogExcel.AddDisplayOrder(builder, DisplayOrder);
|
||||||
CharacterDialogExcel.AddCostumeUniqueId(builder, costume_unique_id);
|
CharacterDialogExcel.AddCostumeUniqueId(builder, CostumeUniqueId);
|
||||||
CharacterDialogExcel.AddCharacterId(builder, character_id);
|
CharacterDialogExcel.AddCharacterId(builder, CharacterId);
|
||||||
CharacterDialogExcel.AddLocalizeCvGroup(builder, localize_cv_groupOffset);
|
CharacterDialogExcel.AddLocalizeCVGroup(builder, LocalizeCVGroupOffset);
|
||||||
CharacterDialogExcel.AddCvCollectionType(builder, cv_collection_type);
|
CharacterDialogExcel.AddCVCollectionType_(builder, CVCollectionType_);
|
||||||
CharacterDialogExcel.AddPosY(builder, pos_y);
|
CharacterDialogExcel.AddPosY(builder, PosY);
|
||||||
CharacterDialogExcel.AddPosX(builder, pos_x);
|
CharacterDialogExcel.AddPosX(builder, PosX);
|
||||||
CharacterDialogExcel.AddVoiceId(builder, voice_idOffset);
|
CharacterDialogExcel.AddVoiceId(builder, VoiceIdOffset);
|
||||||
CharacterDialogExcel.AddLocalizeJp(builder, localize_jpOffset);
|
CharacterDialogExcel.AddLocalizeJP(builder, LocalizeJPOffset);
|
||||||
CharacterDialogExcel.AddLocalizeKr(builder, localize_krOffset);
|
CharacterDialogExcel.AddLocalizeKR(builder, LocalizeKROffset);
|
||||||
CharacterDialogExcel.AddAnimationName(builder, animation_nameOffset);
|
CharacterDialogExcel.AddAnimationName(builder, AnimationNameOffset);
|
||||||
CharacterDialogExcel.AddActionName(builder, action_nameOffset);
|
CharacterDialogExcel.AddActionName(builder, ActionNameOffset);
|
||||||
CharacterDialogExcel.AddDialogType(builder, dialog_type);
|
CharacterDialogExcel.AddDialogType_(builder, DialogType_);
|
||||||
CharacterDialogExcel.AddEndDate(builder, end_dateOffset);
|
CharacterDialogExcel.AddEndDate(builder, EndDateOffset);
|
||||||
CharacterDialogExcel.AddStartDate(builder, start_dateOffset);
|
CharacterDialogExcel.AddStartDate(builder, StartDateOffset);
|
||||||
CharacterDialogExcel.AddAnniversary(builder, anniversary);
|
CharacterDialogExcel.AddAnniversary_(builder, Anniversary_);
|
||||||
CharacterDialogExcel.AddDialogCondition(builder, dialog_condition);
|
CharacterDialogExcel.AddDialogCondition_(builder, DialogCondition_);
|
||||||
CharacterDialogExcel.AddDialogCategory(builder, dialog_category);
|
CharacterDialogExcel.AddDialogCategory_(builder, DialogCategory_);
|
||||||
CharacterDialogExcel.AddProductionStep(builder, production_step);
|
CharacterDialogExcel.AddProductionStep_(builder, ProductionStep_);
|
||||||
CharacterDialogExcel.AddUnlockEquipWeapon(builder, unlock_equip_weapon);
|
CharacterDialogExcel.AddUnlockEquipWeapon(builder, UnlockEquipWeapon);
|
||||||
CharacterDialogExcel.AddCollectionVisible(builder, collection_visible);
|
CharacterDialogExcel.AddCollectionVisible(builder, CollectionVisible);
|
||||||
CharacterDialogExcel.AddApplyPosition(builder, apply_position);
|
CharacterDialogExcel.AddApplyPosition(builder, ApplyPosition);
|
||||||
return CharacterDialogExcel.EndCharacterDialogExcel(builder);
|
return CharacterDialogExcel.EndCharacterDialogExcel(builder);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -154,19 +154,19 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
||||||
public static void AddCharacterId(FlatBufferBuilder builder, long characterId) { builder.AddLong(0, characterId, 0); }
|
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 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 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 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 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 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 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 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 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 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 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 AddDuration(FlatBufferBuilder builder, long duration) { builder.AddLong(12, duration, 0); }
|
||||||
public static void AddAnimationName(FlatBufferBuilder builder, StringOffset animationNameOffset) { builder.AddOffset(13, animationNameOffset.Value, 0); }
|
public static void AddAnimationName(FlatBufferBuilder builder, StringOffset animationNameOffset) { builder.AddOffset(13, animationNameOffset.Value, 0); }
|
||||||
public static void AddLocalizeKr(FlatBufferBuilder builder, StringOffset localizeKrOffset) { builder.AddOffset(14, localizeKrOffset.Value, 0); }
|
public static void AddLocalizeKR(FlatBufferBuilder builder, StringOffset localizeKROffset) { builder.AddOffset(14, localizeKROffset.Value, 0); }
|
||||||
public static void AddLocalizeJp(FlatBufferBuilder builder, StringOffset localizeJpOffset) { builder.AddOffset(15, localizeJpOffset.Value, 0); }
|
public static void AddLocalizeJP(FlatBufferBuilder builder, StringOffset localizeJPOffset) { builder.AddOffset(15, localizeJPOffset.Value, 0); }
|
||||||
public static void AddVoiceId(FlatBufferBuilder builder, VectorOffset voiceIdOffset) { builder.AddOffset(16, voiceIdOffset.Value, 0); }
|
public static void AddVoiceId(FlatBufferBuilder builder, VectorOffset voiceIdOffset) { builder.AddOffset(16, voiceIdOffset.Value, 0); }
|
||||||
public static VectorOffset CreateVoiceIdVector(FlatBufferBuilder builder, uint[] data) { builder.StartVector(4, data.Length, 4); for (int i = data.Length - 1; i >= 0; i--) builder.AddUint(data[i]); return builder.EndVector(); }
|
public static VectorOffset CreateVoiceIdVector(FlatBufferBuilder builder, uint[] data) { builder.StartVector(4, data.Length, 4); for (int i = data.Length - 1; i >= 0; i--) builder.AddUint(data[i]); return builder.EndVector(); }
|
||||||
public static VectorOffset CreateVoiceIdVectorBlock(FlatBufferBuilder builder, uint[] data) { builder.StartVector(4, data.Length, 4); builder.Add(data); return builder.EndVector(); }
|
public static VectorOffset CreateVoiceIdVectorBlock(FlatBufferBuilder builder, uint[] data) { builder.StartVector(4, data.Length, 4); builder.Add(data); return builder.EndVector(); }
|
||||||
|
@ -177,10 +177,10 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
||||||
public static void AddPosX(FlatBufferBuilder builder, float posX) { builder.AddFloat(18, posX, 0.0f); }
|
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 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 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 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 AddUnlockEquipWeapon(FlatBufferBuilder builder, bool unlockEquipWeapon) { builder.AddBool(23, unlockEquipWeapon, false); }
|
||||||
public static void AddLocalizeCvGroup(FlatBufferBuilder builder, StringOffset localizeCvGroupOffset) { builder.AddOffset(24, localizeCvGroupOffset.Value, 0); }
|
public static void AddLocalizeCVGroup(FlatBufferBuilder builder, StringOffset localizeCVGroupOffset) { builder.AddOffset(24, localizeCVGroupOffset.Value, 0); }
|
||||||
public static Offset<SCHALE.Common.FlatData.CharacterDialogExcel> EndCharacterDialogExcel(FlatBufferBuilder builder) {
|
public static Offset<SCHALE.Common.FlatData.CharacterDialogExcel> EndCharacterDialogExcel(FlatBufferBuilder builder) {
|
||||||
int o = builder.EndTable();
|
int o = builder.EndTable();
|
||||||
return new Offset<SCHALE.Common.FlatData.CharacterDialogExcel>(o);
|
return new Offset<SCHALE.Common.FlatData.CharacterDialogExcel>(o);
|
||||||
|
@ -195,71 +195,71 @@ public struct CharacterDialogExcel : IFlatbufferObject
|
||||||
_o.CharacterId = TableEncryptionService.Convert(this.CharacterId, key);
|
_o.CharacterId = TableEncryptionService.Convert(this.CharacterId, key);
|
||||||
_o.CostumeUniqueId = TableEncryptionService.Convert(this.CostumeUniqueId, key);
|
_o.CostumeUniqueId = TableEncryptionService.Convert(this.CostumeUniqueId, key);
|
||||||
_o.DisplayOrder = TableEncryptionService.Convert(this.DisplayOrder, key);
|
_o.DisplayOrder = TableEncryptionService.Convert(this.DisplayOrder, key);
|
||||||
_o.ProductionStep = TableEncryptionService.Convert(this.ProductionStep, key);
|
_o.ProductionStep_ = TableEncryptionService.Convert(this.ProductionStep_, key);
|
||||||
_o.DialogCategory = TableEncryptionService.Convert(this.DialogCategory, key);
|
_o.DialogCategory_ = TableEncryptionService.Convert(this.DialogCategory_, key);
|
||||||
_o.DialogCondition = TableEncryptionService.Convert(this.DialogCondition, key);
|
_o.DialogCondition_ = TableEncryptionService.Convert(this.DialogCondition_, key);
|
||||||
_o.Anniversary = TableEncryptionService.Convert(this.Anniversary, key);
|
_o.Anniversary_ = TableEncryptionService.Convert(this.Anniversary_, key);
|
||||||
_o.StartDate = TableEncryptionService.Convert(this.StartDate, key);
|
_o.StartDate = TableEncryptionService.Convert(this.StartDate, key);
|
||||||
_o.EndDate = TableEncryptionService.Convert(this.EndDate, key);
|
_o.EndDate = TableEncryptionService.Convert(this.EndDate, key);
|
||||||
_o.GroupId = TableEncryptionService.Convert(this.GroupId, 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.ActionName = TableEncryptionService.Convert(this.ActionName, key);
|
||||||
_o.Duration = TableEncryptionService.Convert(this.Duration, key);
|
_o.Duration = TableEncryptionService.Convert(this.Duration, key);
|
||||||
_o.AnimationName = TableEncryptionService.Convert(this.AnimationName, key);
|
_o.AnimationName = TableEncryptionService.Convert(this.AnimationName, key);
|
||||||
_o.LocalizeKr = TableEncryptionService.Convert(this.LocalizeKr, key);
|
_o.LocalizeKR = TableEncryptionService.Convert(this.LocalizeKR, key);
|
||||||
_o.LocalizeJp = TableEncryptionService.Convert(this.LocalizeJp, key);
|
_o.LocalizeJP = TableEncryptionService.Convert(this.LocalizeJP, key);
|
||||||
_o.VoiceId = new List<uint>();
|
_o.VoiceId = new List<uint>();
|
||||||
for (var _j = 0; _j < this.VoiceIdLength; ++_j) {_o.VoiceId.Add(TableEncryptionService.Convert(this.VoiceId(_j), key));}
|
for (var _j = 0; _j < this.VoiceIdLength; ++_j) {_o.VoiceId.Add(TableEncryptionService.Convert(this.VoiceId(_j), key));}
|
||||||
_o.ApplyPosition = TableEncryptionService.Convert(this.ApplyPosition, key);
|
_o.ApplyPosition = TableEncryptionService.Convert(this.ApplyPosition, key);
|
||||||
_o.PosX = TableEncryptionService.Convert(this.PosX, key);
|
_o.PosX = TableEncryptionService.Convert(this.PosX, key);
|
||||||
_o.PosY = TableEncryptionService.Convert(this.PosY, key);
|
_o.PosY = TableEncryptionService.Convert(this.PosY, key);
|
||||||
_o.CollectionVisible = TableEncryptionService.Convert(this.CollectionVisible, 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.UnlockFavorRank = TableEncryptionService.Convert(this.UnlockFavorRank, key);
|
||||||
_o.UnlockEquipWeapon = TableEncryptionService.Convert(this.UnlockEquipWeapon, key);
|
_o.UnlockEquipWeapon = TableEncryptionService.Convert(this.UnlockEquipWeapon, key);
|
||||||
_o.LocalizeCvGroup = TableEncryptionService.Convert(this.LocalizeCvGroup, key);
|
_o.LocalizeCVGroup = TableEncryptionService.Convert(this.LocalizeCVGroup, key);
|
||||||
}
|
}
|
||||||
public static Offset<SCHALE.Common.FlatData.CharacterDialogExcel> Pack(FlatBufferBuilder builder, CharacterDialogExcelT _o) {
|
public static Offset<SCHALE.Common.FlatData.CharacterDialogExcel> Pack(FlatBufferBuilder builder, CharacterDialogExcelT _o) {
|
||||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.CharacterDialogExcel>);
|
if (_o == null) return default(Offset<SCHALE.Common.FlatData.CharacterDialogExcel>);
|
||||||
var _start_date = _o.StartDate == null ? default(StringOffset) : builder.CreateString(_o.StartDate);
|
var _StartDate = _o.StartDate == null ? default(StringOffset) : builder.CreateString(_o.StartDate);
|
||||||
var _end_date = _o.EndDate == null ? default(StringOffset) : builder.CreateString(_o.EndDate);
|
var _EndDate = _o.EndDate == null ? default(StringOffset) : builder.CreateString(_o.EndDate);
|
||||||
var _action_name = _o.ActionName == null ? default(StringOffset) : builder.CreateString(_o.ActionName);
|
var _ActionName = _o.ActionName == null ? default(StringOffset) : builder.CreateString(_o.ActionName);
|
||||||
var _animation_name = _o.AnimationName == null ? default(StringOffset) : builder.CreateString(_o.AnimationName);
|
var _AnimationName = _o.AnimationName == null ? default(StringOffset) : builder.CreateString(_o.AnimationName);
|
||||||
var _localize_kr = _o.LocalizeKr == null ? default(StringOffset) : builder.CreateString(_o.LocalizeKr);
|
var _LocalizeKR = _o.LocalizeKR == null ? default(StringOffset) : builder.CreateString(_o.LocalizeKR);
|
||||||
var _localize_jp = _o.LocalizeJp == null ? default(StringOffset) : builder.CreateString(_o.LocalizeJp);
|
var _LocalizeJP = _o.LocalizeJP == null ? default(StringOffset) : builder.CreateString(_o.LocalizeJP);
|
||||||
var _voice_id = default(VectorOffset);
|
var _VoiceId = default(VectorOffset);
|
||||||
if (_o.VoiceId != null) {
|
if (_o.VoiceId != null) {
|
||||||
var __voice_id = _o.VoiceId.ToArray();
|
var __VoiceId = _o.VoiceId.ToArray();
|
||||||
_voice_id = CreateVoiceIdVector(builder, __voice_id);
|
_VoiceId = CreateVoiceIdVector(builder, __VoiceId);
|
||||||
}
|
}
|
||||||
var _localize_cv_group = _o.LocalizeCvGroup == null ? default(StringOffset) : builder.CreateString(_o.LocalizeCvGroup);
|
var _LocalizeCVGroup = _o.LocalizeCVGroup == null ? default(StringOffset) : builder.CreateString(_o.LocalizeCVGroup);
|
||||||
return CreateCharacterDialogExcel(
|
return CreateCharacterDialogExcel(
|
||||||
builder,
|
builder,
|
||||||
_o.CharacterId,
|
_o.CharacterId,
|
||||||
_o.CostumeUniqueId,
|
_o.CostumeUniqueId,
|
||||||
_o.DisplayOrder,
|
_o.DisplayOrder,
|
||||||
_o.ProductionStep,
|
_o.ProductionStep_,
|
||||||
_o.DialogCategory,
|
_o.DialogCategory_,
|
||||||
_o.DialogCondition,
|
_o.DialogCondition_,
|
||||||
_o.Anniversary,
|
_o.Anniversary_,
|
||||||
_start_date,
|
_StartDate,
|
||||||
_end_date,
|
_EndDate,
|
||||||
_o.GroupId,
|
_o.GroupId,
|
||||||
_o.DialogType,
|
_o.DialogType_,
|
||||||
_action_name,
|
_ActionName,
|
||||||
_o.Duration,
|
_o.Duration,
|
||||||
_animation_name,
|
_AnimationName,
|
||||||
_localize_kr,
|
_LocalizeKR,
|
||||||
_localize_jp,
|
_LocalizeJP,
|
||||||
_voice_id,
|
_VoiceId,
|
||||||
_o.ApplyPosition,
|
_o.ApplyPosition,
|
||||||
_o.PosX,
|
_o.PosX,
|
||||||
_o.PosY,
|
_o.PosY,
|
||||||
_o.CollectionVisible,
|
_o.CollectionVisible,
|
||||||
_o.CvCollectionType,
|
_o.CVCollectionType_,
|
||||||
_o.UnlockFavorRank,
|
_o.UnlockFavorRank,
|
||||||
_o.UnlockEquipWeapon,
|
_o.UnlockEquipWeapon,
|
||||||
_localize_cv_group);
|
_LocalizeCVGroup);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -268,55 +268,55 @@ public class CharacterDialogExcelT
|
||||||
public long CharacterId { get; set; }
|
public long CharacterId { get; set; }
|
||||||
public long CostumeUniqueId { get; set; }
|
public long CostumeUniqueId { get; set; }
|
||||||
public long DisplayOrder { get; set; }
|
public long DisplayOrder { get; set; }
|
||||||
public SCHALE.Common.FlatData.ProductionStep ProductionStep { get; set; }
|
public SCHALE.Common.FlatData.ProductionStep ProductionStep_ { get; set; }
|
||||||
public SCHALE.Common.FlatData.DialogCategory DialogCategory { get; set; }
|
public SCHALE.Common.FlatData.DialogCategory DialogCategory_ { get; set; }
|
||||||
public SCHALE.Common.FlatData.DialogCondition DialogCondition { get; set; }
|
public SCHALE.Common.FlatData.DialogCondition DialogCondition_ { get; set; }
|
||||||
public SCHALE.Common.FlatData.Anniversary Anniversary { get; set; }
|
public SCHALE.Common.FlatData.Anniversary Anniversary_ { get; set; }
|
||||||
public string StartDate { get; set; }
|
public string StartDate { get; set; }
|
||||||
public string EndDate { get; set; }
|
public string EndDate { get; set; }
|
||||||
public long GroupId { 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 string ActionName { get; set; }
|
||||||
public long Duration { get; set; }
|
public long Duration { get; set; }
|
||||||
public string AnimationName { get; set; }
|
public string AnimationName { get; set; }
|
||||||
public string LocalizeKr { get; set; }
|
public string LocalizeKR { get; set; }
|
||||||
public string LocalizeJp { get; set; }
|
public string LocalizeJP { get; set; }
|
||||||
public List<uint> VoiceId { get; set; }
|
public List<uint> VoiceId { get; set; }
|
||||||
public bool ApplyPosition { get; set; }
|
public bool ApplyPosition { get; set; }
|
||||||
public float PosX { get; set; }
|
public float PosX { get; set; }
|
||||||
public float PosY { get; set; }
|
public float PosY { get; set; }
|
||||||
public bool CollectionVisible { 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 long UnlockFavorRank { get; set; }
|
||||||
public bool UnlockEquipWeapon { get; set; }
|
public bool UnlockEquipWeapon { get; set; }
|
||||||
public string LocalizeCvGroup { get; set; }
|
public string LocalizeCVGroup { get; set; }
|
||||||
|
|
||||||
public CharacterDialogExcelT() {
|
public CharacterDialogExcelT() {
|
||||||
this.CharacterId = 0;
|
this.CharacterId = 0;
|
||||||
this.CostumeUniqueId = 0;
|
this.CostumeUniqueId = 0;
|
||||||
this.DisplayOrder = 0;
|
this.DisplayOrder = 0;
|
||||||
this.ProductionStep = SCHALE.Common.FlatData.ProductionStep.ToDo;
|
this.ProductionStep_ = SCHALE.Common.FlatData.ProductionStep.ToDo;
|
||||||
this.DialogCategory = SCHALE.Common.FlatData.DialogCategory.Cafe;
|
this.DialogCategory_ = SCHALE.Common.FlatData.DialogCategory.Cafe;
|
||||||
this.DialogCondition = SCHALE.Common.FlatData.DialogCondition.Idle;
|
this.DialogCondition_ = SCHALE.Common.FlatData.DialogCondition.Idle;
|
||||||
this.Anniversary = SCHALE.Common.FlatData.Anniversary.None;
|
this.Anniversary_ = SCHALE.Common.FlatData.Anniversary.None_;
|
||||||
this.StartDate = null;
|
this.StartDate = null;
|
||||||
this.EndDate = null;
|
this.EndDate = null;
|
||||||
this.GroupId = 0;
|
this.GroupId = 0;
|
||||||
this.DialogType = SCHALE.Common.FlatData.DialogType.Talk;
|
this.DialogType_ = SCHALE.Common.FlatData.DialogType.Talk;
|
||||||
this.ActionName = null;
|
this.ActionName = null;
|
||||||
this.Duration = 0;
|
this.Duration = 0;
|
||||||
this.AnimationName = null;
|
this.AnimationName = null;
|
||||||
this.LocalizeKr = null;
|
this.LocalizeKR = null;
|
||||||
this.LocalizeJp = null;
|
this.LocalizeJP = null;
|
||||||
this.VoiceId = null;
|
this.VoiceId = null;
|
||||||
this.ApplyPosition = false;
|
this.ApplyPosition = false;
|
||||||
this.PosX = 0.0f;
|
this.PosX = 0.0f;
|
||||||
this.PosY = 0.0f;
|
this.PosY = 0.0f;
|
||||||
this.CollectionVisible = false;
|
this.CollectionVisible = false;
|
||||||
this.CvCollectionType = SCHALE.Common.FlatData.CVCollectionType.CVNormal;
|
this.CVCollectionType_ = SCHALE.Common.FlatData.CVCollectionType.CVNormal;
|
||||||
this.UnlockFavorRank = 0;
|
this.UnlockFavorRank = 0;
|
||||||
this.UnlockEquipWeapon = false;
|
this.UnlockEquipWeapon = false;
|
||||||
this.LocalizeCvGroup = null;
|
this.LocalizeCVGroup = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -329,28 +329,28 @@ static public class CharacterDialogExcelVerify
|
||||||
&& verifier.VerifyField(tablePos, 4 /*CharacterId*/, 8 /*long*/, 8, false)
|
&& verifier.VerifyField(tablePos, 4 /*CharacterId*/, 8 /*long*/, 8, false)
|
||||||
&& verifier.VerifyField(tablePos, 6 /*CostumeUniqueId*/, 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, 8 /*DisplayOrder*/, 8 /*long*/, 8, 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 /*DialogCategory*/, 4 /*SCHALE.Common.FlatData.DialogCategory*/, 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, 14 /*DialogCondition_*/, 4 /*SCHALE.Common.FlatData.DialogCondition*/, 4, false)
|
||||||
&& verifier.VerifyField(tablePos, 16 /*Anniversary*/, 4 /*SCHALE.Common.FlatData.Anniversary*/, 4, false)
|
&& verifier.VerifyField(tablePos, 16 /*Anniversary_*/, 4 /*SCHALE.Common.FlatData.Anniversary*/, 4, false)
|
||||||
&& verifier.VerifyString(tablePos, 18 /*StartDate*/, false)
|
&& verifier.VerifyString(tablePos, 18 /*StartDate*/, false)
|
||||||
&& verifier.VerifyString(tablePos, 20 /*EndDate*/, false)
|
&& verifier.VerifyString(tablePos, 20 /*EndDate*/, false)
|
||||||
&& verifier.VerifyField(tablePos, 22 /*GroupId*/, 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.VerifyString(tablePos, 26 /*ActionName*/, false)
|
||||||
&& verifier.VerifyField(tablePos, 28 /*Duration*/, 8 /*long*/, 8, false)
|
&& verifier.VerifyField(tablePos, 28 /*Duration*/, 8 /*long*/, 8, false)
|
||||||
&& verifier.VerifyString(tablePos, 30 /*AnimationName*/, false)
|
&& verifier.VerifyString(tablePos, 30 /*AnimationName*/, false)
|
||||||
&& verifier.VerifyString(tablePos, 32 /*LocalizeKr*/, false)
|
&& verifier.VerifyString(tablePos, 32 /*LocalizeKR*/, false)
|
||||||
&& verifier.VerifyString(tablePos, 34 /*LocalizeJp*/, false)
|
&& verifier.VerifyString(tablePos, 34 /*LocalizeJP*/, false)
|
||||||
&& verifier.VerifyVectorOfData(tablePos, 36 /*VoiceId*/, 4 /*uint*/, false)
|
&& verifier.VerifyVectorOfData(tablePos, 36 /*VoiceId*/, 4 /*uint*/, false)
|
||||||
&& verifier.VerifyField(tablePos, 38 /*ApplyPosition*/, 1 /*bool*/, 1, false)
|
&& verifier.VerifyField(tablePos, 38 /*ApplyPosition*/, 1 /*bool*/, 1, false)
|
||||||
&& verifier.VerifyField(tablePos, 40 /*PosX*/, 4 /*float*/, 4, false)
|
&& verifier.VerifyField(tablePos, 40 /*PosX*/, 4 /*float*/, 4, false)
|
||||||
&& verifier.VerifyField(tablePos, 42 /*PosY*/, 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, 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, 48 /*UnlockFavorRank*/, 8 /*long*/, 8, false)
|
||||||
&& verifier.VerifyField(tablePos, 50 /*UnlockEquipWeapon*/, 1 /*bool*/, 1, false)
|
&& verifier.VerifyField(tablePos, 50 /*UnlockEquipWeapon*/, 1 /*bool*/, 1, false)
|
||||||
&& verifier.VerifyString(tablePos, 52 /*LocalizeCvGroup*/, false)
|
&& verifier.VerifyString(tablePos, 52 /*LocalizeCVGroup*/, false)
|
||||||
&& verifier.VerifyTableEnd(tablePos);
|
&& verifier.VerifyTableEnd(tablePos);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 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 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 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 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; } }
|
public string MotionName { get { int o = __p.__offset(14); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
|
@ -53,7 +53,7 @@ public struct CharacterDialogFieldExcel : IFlatbufferObject
|
||||||
long GroupId = 0,
|
long GroupId = 0,
|
||||||
int Phase = 0,
|
int Phase = 0,
|
||||||
int TargetIndex = 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,
|
long Duration = 0,
|
||||||
StringOffset MotionNameOffset = default(StringOffset),
|
StringOffset MotionNameOffset = default(StringOffset),
|
||||||
bool IsInteractionDialog = false,
|
bool IsInteractionDialog = false,
|
||||||
|
@ -144,7 +144,7 @@ public class CharacterDialogFieldExcelT
|
||||||
this.GroupId = 0;
|
this.GroupId = 0;
|
||||||
this.Phase = 0;
|
this.Phase = 0;
|
||||||
this.TargetIndex = 0;
|
this.TargetIndex = 0;
|
||||||
this.DialogType = SCHALE.Common.FlatData.FieldDialogType.None;
|
this.DialogType = SCHALE.Common.FlatData.FieldDialogType.None_;
|
||||||
this.Duration = 0;
|
this.Duration = 0;
|
||||||
this.MotionName = null;
|
this.MotionName = null;
|
||||||
this.IsInteractionDialog = false;
|
this.IsInteractionDialog = false;
|
||||||
|
|
|
@ -30,7 +30,7 @@ namespace SCHALE.Common.FlatData
|
||||||
public byte[] GetDevNameArray() { return __p.__vector_as_array<byte>(6); }
|
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 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 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 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; } }
|
public string ReleaseDate { get { int o = __p.__offset(16); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
|
@ -55,28 +55,28 @@ namespace SCHALE.Common.FlatData
|
||||||
public byte[] GetCollectionVisibleEndDateArray() { return __p.__vector_as_array<byte>(20); }
|
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 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 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 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 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 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 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.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.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.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.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.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.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.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.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 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 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.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.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 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 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; } }
|
public long CharacterAIId { get { int o = __p.__offset(66); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||||
public long ExternalBtId { get { int o = __p.__offset(68); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
public long ExternalBTId { get { int o = __p.__offset(68); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||||
public long MainCombatStyleId { get { int o = __p.__offset(70); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
public long MainCombatStyleId { get { int o = __p.__offset(70); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||||
public int CombatStyleIndex { get { int o = __p.__offset(72); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
public int CombatStyleIndex { get { int o = __p.__offset(72); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||||
public string ScenarioCharacter { get { int o = __p.__offset(74); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
public string ScenarioCharacter { get { int o = __p.__offset(74); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
|
@ -100,7 +100,7 @@ namespace SCHALE.Common.FlatData
|
||||||
public bool DisplayEnemyInfo { get { int o = __p.__offset(84); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
public bool DisplayEnemyInfo { get { int o = __p.__offset(84); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||||
public long BodyRadius { get { int o = __p.__offset(86); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
public long BodyRadius { get { int o = __p.__offset(86); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||||
public long RandomEffectRadius { get { int o = __p.__offset(88); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
public long RandomEffectRadius { get { int o = __p.__offset(88); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||||
public bool HpBarHide { get { int o = __p.__offset(90); return o != 0 ? 0 != __p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
public bool HPBarHide { get { int o = __p.__offset(90); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||||
public float HpBarHeight { get { int o = __p.__offset(92); return o != 0 ? __p.bb.GetFloat(o + __p.bb_pos) : (float)0.0f; } }
|
public float HpBarHeight { get { int o = __p.__offset(92); return o != 0 ? __p.bb.GetFloat(o + __p.bb_pos) : (float)0.0f; } }
|
||||||
public float HighlightFloaterHeight { get { int o = __p.__offset(94); return o != 0 ? __p.bb.GetFloat(o + __p.bb_pos) : (float)0.0f; } }
|
public float HighlightFloaterHeight { get { int o = __p.__offset(94); return o != 0 ? __p.bb.GetFloat(o + __p.bb_pos) : (float)0.0f; } }
|
||||||
public float EmojiOffsetX { get { int o = __p.__offset(96); return o != 0 ? __p.bb.GetFloat(o + __p.bb_pos) : (float)0.0f; } }
|
public float EmojiOffsetX { get { int o = __p.__offset(96); return o != 0 ? __p.bb.GetFloat(o + __p.bb_pos) : (float)0.0f; } }
|
||||||
|
@ -130,136 +130,135 @@ namespace SCHALE.Common.FlatData
|
||||||
public long CombineRecipeId { get { int o = __p.__offset(130); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
public long CombineRecipeId { get { int o = __p.__offset(130); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||||
|
|
||||||
public static Offset<SCHALE.Common.FlatData.CharacterExcel> CreateCharacterExcel(FlatBufferBuilder builder,
|
public static Offset<SCHALE.Common.FlatData.CharacterExcel> CreateCharacterExcel(FlatBufferBuilder builder,
|
||||||
long id = 0,
|
long Id = 0,
|
||||||
StringOffset dev_nameOffset = default(StringOffset),
|
StringOffset DevNameOffset = default(StringOffset),
|
||||||
long costume_group_id = 0,
|
long CostumeGroupId = 0,
|
||||||
bool is_playable = false,
|
bool IsPlayable = false,
|
||||||
SCHALE.Common.FlatData.ProductionStep production_step = SCHALE.Common.FlatData.ProductionStep.ToDo,
|
SCHALE.Common.FlatData.ProductionStep ProductionStep_ = SCHALE.Common.FlatData.ProductionStep.ToDo,
|
||||||
bool collection_visible = false,
|
bool CollectionVisible = false,
|
||||||
StringOffset release_dateOffset = default(StringOffset),
|
StringOffset ReleaseDateOffset = default(StringOffset),
|
||||||
StringOffset collection_visible_start_dateOffset = default(StringOffset),
|
StringOffset CollectionVisibleStartDateOffset = default(StringOffset),
|
||||||
StringOffset collection_visible_end_dateOffset = default(StringOffset),
|
StringOffset CollectionVisibleEndDateOffset = default(StringOffset),
|
||||||
bool is_playable_character = false,
|
bool IsPlayableCharacter = false,
|
||||||
uint localize_etc_id = 0,
|
uint LocalizeEtcId = 0,
|
||||||
SCHALE.Common.FlatData.Rarity rarity = SCHALE.Common.FlatData.Rarity.N,
|
SCHALE.Common.FlatData.Rarity Rarity_ = SCHALE.Common.FlatData.Rarity.N,
|
||||||
bool is_npc = false,
|
bool IsNPC = false,
|
||||||
SCHALE.Common.FlatData.TacticEntityType tactic_entity_type = SCHALE.Common.FlatData.TacticEntityType.None,
|
SCHALE.Common.FlatData.TacticEntityType TacticEntityType_ = SCHALE.Common.FlatData.TacticEntityType.None_,
|
||||||
bool can_survive = false,
|
bool CanSurvive = false,
|
||||||
bool is_dummy = false,
|
bool IsDummy = false,
|
||||||
int sub_parts_count = 0,
|
int SubPartsCount = 0,
|
||||||
SCHALE.Common.FlatData.TacticRole tactic_role = SCHALE.Common.FlatData.TacticRole.None,
|
SCHALE.Common.FlatData.TacticRole TacticRole_ = SCHALE.Common.FlatData.TacticRole.None_,
|
||||||
SCHALE.Common.FlatData.WeaponType weapon_type = SCHALE.Common.FlatData.WeaponType.None,
|
SCHALE.Common.FlatData.WeaponType WeaponType_ = SCHALE.Common.FlatData.WeaponType.None_,
|
||||||
SCHALE.Common.FlatData.TacticRange tactic_range = SCHALE.Common.FlatData.TacticRange.Back,
|
SCHALE.Common.FlatData.TacticRange TacticRange_ = SCHALE.Common.FlatData.TacticRange.Back,
|
||||||
SCHALE.Common.FlatData.BulletType bullet_type = SCHALE.Common.FlatData.BulletType.Normal,
|
SCHALE.Common.FlatData.BulletType BulletType_ = SCHALE.Common.FlatData.BulletType.Normal,
|
||||||
SCHALE.Common.FlatData.ArmorType armor_type = SCHALE.Common.FlatData.ArmorType.LightArmor,
|
SCHALE.Common.FlatData.ArmorType ArmorType_ = SCHALE.Common.FlatData.ArmorType.LightArmor,
|
||||||
SCHALE.Common.FlatData.AimIKType aim_ik_type = SCHALE.Common.FlatData.AimIKType.None,
|
SCHALE.Common.FlatData.AimIKType AimIKType_ = SCHALE.Common.FlatData.AimIKType.None_,
|
||||||
SCHALE.Common.FlatData.School school = SCHALE.Common.FlatData.School.None,
|
SCHALE.Common.FlatData.School School_ = SCHALE.Common.FlatData.School.None_,
|
||||||
SCHALE.Common.FlatData.Club club = SCHALE.Common.FlatData.Club.None,
|
SCHALE.Common.FlatData.Club Club_ = SCHALE.Common.FlatData.Club.None_,
|
||||||
int default_star_grade = 0,
|
int DefaultStarGrade = 0,
|
||||||
int max_star_grade = 0,
|
int MaxStarGrade = 0,
|
||||||
SCHALE.Common.FlatData.StatLevelUpType stat_level_up_type = SCHALE.Common.FlatData.StatLevelUpType.Standard,
|
SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType_ = SCHALE.Common.FlatData.StatLevelUpType.Standard,
|
||||||
SCHALE.Common.FlatData.SquadType squad_type = SCHALE.Common.FlatData.SquadType.None,
|
SCHALE.Common.FlatData.SquadType SquadType_ = SCHALE.Common.FlatData.SquadType.None_,
|
||||||
bool jumpable = false,
|
bool Jumpable = false,
|
||||||
long personality_id = 0,
|
long PersonalityId = 0,
|
||||||
long character_ai_id = 0,
|
long CharacterAIId = 0,
|
||||||
long external_bt_id = 0,
|
long ExternalBTId = 0,
|
||||||
long main_combat_style_id = 0,
|
long MainCombatStyleId = 0,
|
||||||
int combat_style_index = 0,
|
int CombatStyleIndex = 0,
|
||||||
StringOffset scenario_characterOffset = default(StringOffset),
|
StringOffset ScenarioCharacterOffset = default(StringOffset),
|
||||||
uint spawn_template_id = 0,
|
uint SpawnTemplateId = 0,
|
||||||
int favor_levelup_type = 0,
|
int FavorLevelupType = 0,
|
||||||
VectorOffset equipment_slotOffset = default(VectorOffset),
|
VectorOffset EquipmentSlotOffset = default(VectorOffset),
|
||||||
uint weapon_localize_id = 0,
|
uint WeaponLocalizeId = 0,
|
||||||
bool display_enemy_info = false,
|
bool DisplayEnemyInfo = false,
|
||||||
long body_radius = 0,
|
long BodyRadius = 0,
|
||||||
long random_effect_radius = 0,
|
long RandomEffectRadius = 0,
|
||||||
bool hp_bar_hide = false,
|
bool HPBarHide = false,
|
||||||
float hp_bar_height = 0.0f,
|
float HpBarHeight = 0.0f,
|
||||||
float highlight_floater_height = 0.0f,
|
float HighlightFloaterHeight = 0.0f,
|
||||||
float emoji_offset_x = 0.0f,
|
float EmojiOffsetX = 0.0f,
|
||||||
float emoji_offset_y = 0.0f,
|
float EmojiOffsetY = 0.0f,
|
||||||
int move_start_frame = 0,
|
int MoveStartFrame = 0,
|
||||||
int move_end_frame = 0,
|
int MoveEndFrame = 0,
|
||||||
int jump_motion_frame = 0,
|
int JumpMotionFrame = 0,
|
||||||
int appear_frame = 0,
|
int AppearFrame = 0,
|
||||||
bool can_move = false,
|
bool CanMove = false,
|
||||||
bool can_fix = false,
|
bool CanFix = false,
|
||||||
bool can_crowd_control = false,
|
bool CanCrowdControl = false,
|
||||||
bool can_battle_item_move = false,
|
bool CanBattleItemMove = false,
|
||||||
bool is_air_unit = false,
|
bool IsAirUnit = false,
|
||||||
long air_unit_height = 0,
|
long AirUnitHeight = 0,
|
||||||
VectorOffset tagsOffset = default(VectorOffset),
|
VectorOffset TagsOffset = default(VectorOffset),
|
||||||
long secret_stone_item_id = 0,
|
long SecretStoneItemId = 0,
|
||||||
int secret_stone_item_amount = 0,
|
int SecretStoneItemAmount = 0,
|
||||||
long character_piece_item_id = 0,
|
long CharacterPieceItemId = 0,
|
||||||
int character_piece_item_amount = 0,
|
int CharacterPieceItemAmount = 0,
|
||||||
long combine_recipe_id = 0)
|
long CombineRecipeId = 0) {
|
||||||
{
|
|
||||||
builder.StartTable(64);
|
builder.StartTable(64);
|
||||||
CharacterExcel.AddCombineRecipeId(builder, combine_recipe_id);
|
CharacterExcel.AddCombineRecipeId(builder, CombineRecipeId);
|
||||||
CharacterExcel.AddCharacterPieceItemId(builder, character_piece_item_id);
|
CharacterExcel.AddCharacterPieceItemId(builder, CharacterPieceItemId);
|
||||||
CharacterExcel.AddSecretStoneItemId(builder, secret_stone_item_id);
|
CharacterExcel.AddSecretStoneItemId(builder, SecretStoneItemId);
|
||||||
CharacterExcel.AddAirUnitHeight(builder, air_unit_height);
|
CharacterExcel.AddAirUnitHeight(builder, AirUnitHeight);
|
||||||
CharacterExcel.AddRandomEffectRadius(builder, random_effect_radius);
|
CharacterExcel.AddRandomEffectRadius(builder, RandomEffectRadius);
|
||||||
CharacterExcel.AddBodyRadius(builder, body_radius);
|
CharacterExcel.AddBodyRadius(builder, BodyRadius);
|
||||||
CharacterExcel.AddMainCombatStyleId(builder, main_combat_style_id);
|
CharacterExcel.AddMainCombatStyleId(builder, MainCombatStyleId);
|
||||||
CharacterExcel.AddExternalBtId(builder, external_bt_id);
|
CharacterExcel.AddExternalBTId(builder, ExternalBTId);
|
||||||
CharacterExcel.AddCharacterAiId(builder, character_ai_id);
|
CharacterExcel.AddCharacterAIId(builder, CharacterAIId);
|
||||||
CharacterExcel.AddPersonalityId(builder, personality_id);
|
CharacterExcel.AddPersonalityId(builder, PersonalityId);
|
||||||
CharacterExcel.AddCostumeGroupId(builder, costume_group_id);
|
CharacterExcel.AddCostumeGroupId(builder, CostumeGroupId);
|
||||||
CharacterExcel.AddId(builder, id);
|
CharacterExcel.AddId(builder, Id);
|
||||||
CharacterExcel.AddCharacterPieceItemAmount(builder, character_piece_item_amount);
|
CharacterExcel.AddCharacterPieceItemAmount(builder, CharacterPieceItemAmount);
|
||||||
CharacterExcel.AddSecretStoneItemAmount(builder, secret_stone_item_amount);
|
CharacterExcel.AddSecretStoneItemAmount(builder, SecretStoneItemAmount);
|
||||||
CharacterExcel.AddTags(builder, tagsOffset);
|
CharacterExcel.AddTags(builder, TagsOffset);
|
||||||
CharacterExcel.AddAppearFrame(builder, appear_frame);
|
CharacterExcel.AddAppearFrame(builder, AppearFrame);
|
||||||
CharacterExcel.AddJumpMotionFrame(builder, jump_motion_frame);
|
CharacterExcel.AddJumpMotionFrame(builder, JumpMotionFrame);
|
||||||
CharacterExcel.AddMoveEndFrame(builder, move_end_frame);
|
CharacterExcel.AddMoveEndFrame(builder, MoveEndFrame);
|
||||||
CharacterExcel.AddMoveStartFrame(builder, move_start_frame);
|
CharacterExcel.AddMoveStartFrame(builder, MoveStartFrame);
|
||||||
CharacterExcel.AddEmojiOffsetY(builder, emoji_offset_y);
|
CharacterExcel.AddEmojiOffsetY(builder, EmojiOffsetY);
|
||||||
CharacterExcel.AddEmojiOffsetX(builder, emoji_offset_x);
|
CharacterExcel.AddEmojiOffsetX(builder, EmojiOffsetX);
|
||||||
CharacterExcel.AddHighlightFloaterHeight(builder, highlight_floater_height);
|
CharacterExcel.AddHighlightFloaterHeight(builder, HighlightFloaterHeight);
|
||||||
CharacterExcel.AddHpBarHeight(builder, hp_bar_height);
|
CharacterExcel.AddHpBarHeight(builder, HpBarHeight);
|
||||||
CharacterExcel.AddWeaponLocalizeId(builder, weapon_localize_id);
|
CharacterExcel.AddWeaponLocalizeId(builder, WeaponLocalizeId);
|
||||||
CharacterExcel.AddEquipmentSlot(builder, equipment_slotOffset);
|
CharacterExcel.AddEquipmentSlot(builder, EquipmentSlotOffset);
|
||||||
CharacterExcel.AddFavorLevelupType(builder, favor_levelup_type);
|
CharacterExcel.AddFavorLevelupType(builder, FavorLevelupType);
|
||||||
CharacterExcel.AddSpawnTemplateId(builder, spawn_template_id);
|
CharacterExcel.AddSpawnTemplateId(builder, SpawnTemplateId);
|
||||||
CharacterExcel.AddScenarioCharacter(builder, scenario_characterOffset);
|
CharacterExcel.AddScenarioCharacter(builder, ScenarioCharacterOffset);
|
||||||
CharacterExcel.AddCombatStyleIndex(builder, combat_style_index);
|
CharacterExcel.AddCombatStyleIndex(builder, CombatStyleIndex);
|
||||||
CharacterExcel.AddSquadType(builder, squad_type);
|
CharacterExcel.AddSquadType_(builder, SquadType_);
|
||||||
CharacterExcel.AddStatLevelUpType(builder, stat_level_up_type);
|
CharacterExcel.AddStatLevelUpType_(builder, StatLevelUpType_);
|
||||||
CharacterExcel.AddMaxStarGrade(builder, max_star_grade);
|
CharacterExcel.AddMaxStarGrade(builder, MaxStarGrade);
|
||||||
CharacterExcel.AddDefaultStarGrade(builder, default_star_grade);
|
CharacterExcel.AddDefaultStarGrade(builder, DefaultStarGrade);
|
||||||
CharacterExcel.AddClub(builder, club);
|
CharacterExcel.AddClub_(builder, Club_);
|
||||||
CharacterExcel.AddSchool(builder, school);
|
CharacterExcel.AddSchool_(builder, School_);
|
||||||
CharacterExcel.AddAimIkType(builder, aim_ik_type);
|
CharacterExcel.AddAimIKType_(builder, AimIKType_);
|
||||||
CharacterExcel.AddArmorType(builder, armor_type);
|
CharacterExcel.AddArmorType_(builder, ArmorType_);
|
||||||
CharacterExcel.AddBulletType(builder, bullet_type);
|
CharacterExcel.AddBulletType_(builder, BulletType_);
|
||||||
CharacterExcel.AddTacticRange(builder, tactic_range);
|
CharacterExcel.AddTacticRange_(builder, TacticRange_);
|
||||||
CharacterExcel.AddWeaponType(builder, weapon_type);
|
CharacterExcel.AddWeaponType_(builder, WeaponType_);
|
||||||
CharacterExcel.AddTacticRole(builder, tactic_role);
|
CharacterExcel.AddTacticRole_(builder, TacticRole_);
|
||||||
CharacterExcel.AddSubPartsCount(builder, sub_parts_count);
|
CharacterExcel.AddSubPartsCount(builder, SubPartsCount);
|
||||||
CharacterExcel.AddTacticEntityType(builder, tactic_entity_type);
|
CharacterExcel.AddTacticEntityType_(builder, TacticEntityType_);
|
||||||
CharacterExcel.AddRarity(builder, rarity);
|
CharacterExcel.AddRarity_(builder, Rarity_);
|
||||||
CharacterExcel.AddLocalizeEtcId(builder, localize_etc_id);
|
CharacterExcel.AddLocalizeEtcId(builder, LocalizeEtcId);
|
||||||
CharacterExcel.AddCollectionVisibleEndDate(builder, collection_visible_end_dateOffset);
|
CharacterExcel.AddCollectionVisibleEndDate(builder, CollectionVisibleEndDateOffset);
|
||||||
CharacterExcel.AddCollectionVisibleStartDate(builder, collection_visible_start_dateOffset);
|
CharacterExcel.AddCollectionVisibleStartDate(builder, CollectionVisibleStartDateOffset);
|
||||||
CharacterExcel.AddReleaseDate(builder, release_dateOffset);
|
CharacterExcel.AddReleaseDate(builder, ReleaseDateOffset);
|
||||||
CharacterExcel.AddProductionStep(builder, production_step);
|
CharacterExcel.AddProductionStep_(builder, ProductionStep_);
|
||||||
CharacterExcel.AddDevName(builder, dev_nameOffset);
|
CharacterExcel.AddDevName(builder, DevNameOffset);
|
||||||
CharacterExcel.AddIsAirUnit(builder, is_air_unit);
|
CharacterExcel.AddIsAirUnit(builder, IsAirUnit);
|
||||||
CharacterExcel.AddCanBattleItemMove(builder, can_battle_item_move);
|
CharacterExcel.AddCanBattleItemMove(builder, CanBattleItemMove);
|
||||||
CharacterExcel.AddCanCrowdControl(builder, can_crowd_control);
|
CharacterExcel.AddCanCrowdControl(builder, CanCrowdControl);
|
||||||
CharacterExcel.AddCanFix(builder, can_fix);
|
CharacterExcel.AddCanFix(builder, CanFix);
|
||||||
CharacterExcel.AddCanMove(builder, can_move);
|
CharacterExcel.AddCanMove(builder, CanMove);
|
||||||
CharacterExcel.AddHpBarHide(builder, hp_bar_hide);
|
CharacterExcel.AddHPBarHide(builder, HPBarHide);
|
||||||
CharacterExcel.AddDisplayEnemyInfo(builder, display_enemy_info);
|
CharacterExcel.AddDisplayEnemyInfo(builder, DisplayEnemyInfo);
|
||||||
CharacterExcel.AddJumpable(builder, jumpable);
|
CharacterExcel.AddJumpable(builder, Jumpable);
|
||||||
CharacterExcel.AddIsDummy(builder, is_dummy);
|
CharacterExcel.AddIsDummy(builder, IsDummy);
|
||||||
CharacterExcel.AddCanSurvive(builder, can_survive);
|
CharacterExcel.AddCanSurvive(builder, CanSurvive);
|
||||||
CharacterExcel.AddIsNpc(builder, is_npc);
|
CharacterExcel.AddIsNPC(builder, IsNPC);
|
||||||
CharacterExcel.AddIsPlayableCharacter(builder, is_playable_character);
|
CharacterExcel.AddIsPlayableCharacter(builder, IsPlayableCharacter);
|
||||||
CharacterExcel.AddCollectionVisible(builder, collection_visible);
|
CharacterExcel.AddCollectionVisible(builder, CollectionVisible);
|
||||||
CharacterExcel.AddIsPlayable(builder, is_playable);
|
CharacterExcel.AddIsPlayable(builder, IsPlayable);
|
||||||
return CharacterExcel.EndCharacterExcel(builder);
|
return CharacterExcel.EndCharacterExcel(builder);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -268,35 +267,35 @@ namespace SCHALE.Common.FlatData
|
||||||
public static void AddDevName(FlatBufferBuilder builder, StringOffset devNameOffset) { builder.AddOffset(1, devNameOffset.Value, 0); }
|
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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 AddPersonalityId(FlatBufferBuilder builder, long personalityId) { builder.AddLong(30, personalityId, 0); }
|
||||||
public static void AddCharacterAiId(FlatBufferBuilder builder, long characterAiId) { builder.AddLong(31, characterAiId, 0); }
|
public static void AddCharacterAIId(FlatBufferBuilder builder, long characterAIId) { builder.AddLong(31, characterAIId, 0); }
|
||||||
public static void AddExternalBtId(FlatBufferBuilder builder, long externalBtId) { builder.AddLong(32, externalBtId, 0); }
|
public static void AddExternalBTId(FlatBufferBuilder builder, long externalBTId) { builder.AddLong(32, externalBTId, 0); }
|
||||||
public static void AddMainCombatStyleId(FlatBufferBuilder builder, long mainCombatStyleId) { builder.AddLong(33, mainCombatStyleId, 0); }
|
public static void AddMainCombatStyleId(FlatBufferBuilder builder, long mainCombatStyleId) { builder.AddLong(33, mainCombatStyleId, 0); }
|
||||||
public static void AddCombatStyleIndex(FlatBufferBuilder builder, int combatStyleIndex) { builder.AddInt(34, combatStyleIndex, 0); }
|
public static void AddCombatStyleIndex(FlatBufferBuilder builder, int combatStyleIndex) { builder.AddInt(34, combatStyleIndex, 0); }
|
||||||
public static void AddScenarioCharacter(FlatBufferBuilder builder, StringOffset scenarioCharacterOffset) { builder.AddOffset(35, scenarioCharacterOffset.Value, 0); }
|
public static void AddScenarioCharacter(FlatBufferBuilder builder, StringOffset scenarioCharacterOffset) { builder.AddOffset(35, scenarioCharacterOffset.Value, 0); }
|
||||||
|
@ -312,7 +311,7 @@ namespace SCHALE.Common.FlatData
|
||||||
public static void AddDisplayEnemyInfo(FlatBufferBuilder builder, bool displayEnemyInfo) { builder.AddBool(40, displayEnemyInfo, false); }
|
public static void AddDisplayEnemyInfo(FlatBufferBuilder builder, bool displayEnemyInfo) { builder.AddBool(40, displayEnemyInfo, false); }
|
||||||
public static void AddBodyRadius(FlatBufferBuilder builder, long bodyRadius) { builder.AddLong(41, bodyRadius, 0); }
|
public static void AddBodyRadius(FlatBufferBuilder builder, long bodyRadius) { builder.AddLong(41, bodyRadius, 0); }
|
||||||
public static void AddRandomEffectRadius(FlatBufferBuilder builder, long randomEffectRadius) { builder.AddLong(42, randomEffectRadius, 0); }
|
public static void AddRandomEffectRadius(FlatBufferBuilder builder, long randomEffectRadius) { builder.AddLong(42, randomEffectRadius, 0); }
|
||||||
public static void AddHpBarHide(FlatBufferBuilder builder, bool hpBarHide) { builder.AddBool(43, hpBarHide, false); }
|
public static void AddHPBarHide(FlatBufferBuilder builder, bool hPBarHide) { builder.AddBool(43, hPBarHide, false); }
|
||||||
public static void AddHpBarHeight(FlatBufferBuilder builder, float hpBarHeight) { builder.AddFloat(44, hpBarHeight, 0.0f); }
|
public static void AddHpBarHeight(FlatBufferBuilder builder, float hpBarHeight) { builder.AddFloat(44, hpBarHeight, 0.0f); }
|
||||||
public static void AddHighlightFloaterHeight(FlatBufferBuilder builder, float highlightFloaterHeight) { builder.AddFloat(45, highlightFloaterHeight, 0.0f); }
|
public static void AddHighlightFloaterHeight(FlatBufferBuilder builder, float highlightFloaterHeight) { builder.AddFloat(45, highlightFloaterHeight, 0.0f); }
|
||||||
public static void AddEmojiOffsetX(FlatBufferBuilder builder, float emojiOffsetX) { builder.AddFloat(46, emojiOffsetX, 0.0f); }
|
public static void AddEmojiOffsetX(FlatBufferBuilder builder, float emojiOffsetX) { builder.AddFloat(46, emojiOffsetX, 0.0f); }
|
||||||
|
@ -338,53 +337,50 @@ namespace SCHALE.Common.FlatData
|
||||||
public static void AddCharacterPieceItemId(FlatBufferBuilder builder, long characterPieceItemId) { builder.AddLong(61, characterPieceItemId, 0); }
|
public static void AddCharacterPieceItemId(FlatBufferBuilder builder, long characterPieceItemId) { builder.AddLong(61, characterPieceItemId, 0); }
|
||||||
public static void AddCharacterPieceItemAmount(FlatBufferBuilder builder, int characterPieceItemAmount) { builder.AddInt(62, characterPieceItemAmount, 0); }
|
public static void AddCharacterPieceItemAmount(FlatBufferBuilder builder, int characterPieceItemAmount) { builder.AddInt(62, characterPieceItemAmount, 0); }
|
||||||
public static void AddCombineRecipeId(FlatBufferBuilder builder, long combineRecipeId) { builder.AddLong(63, combineRecipeId, 0); }
|
public static void AddCombineRecipeId(FlatBufferBuilder builder, long combineRecipeId) { builder.AddLong(63, combineRecipeId, 0); }
|
||||||
public static Offset<SCHALE.Common.FlatData.CharacterExcel> EndCharacterExcel(FlatBufferBuilder builder)
|
public static Offset<SCHALE.Common.FlatData.CharacterExcel> EndCharacterExcel(FlatBufferBuilder builder) {
|
||||||
{
|
|
||||||
int o = builder.EndTable();
|
int o = builder.EndTable();
|
||||||
return new Offset<SCHALE.Common.FlatData.CharacterExcel>(o);
|
return new Offset<SCHALE.Common.FlatData.CharacterExcel>(o);
|
||||||
}
|
}
|
||||||
public CharacterExcelT UnPack()
|
public CharacterExcelT UnPack() {
|
||||||
{
|
|
||||||
var _o = new CharacterExcelT();
|
var _o = new CharacterExcelT();
|
||||||
this.UnPackTo(_o);
|
this.UnPackTo(_o);
|
||||||
return _o;
|
return _o;
|
||||||
}
|
}
|
||||||
public void UnPackTo(CharacterExcelT _o)
|
public void UnPackTo(CharacterExcelT _o) {
|
||||||
{
|
|
||||||
byte[] key = TableEncryptionService.CreateKey("Character");
|
byte[] key = TableEncryptionService.CreateKey("Character");
|
||||||
_o.Id = TableEncryptionService.Convert(this.Id, key);
|
_o.Id = TableEncryptionService.Convert(this.Id, key);
|
||||||
_o.DevName = TableEncryptionService.Convert(this.DevName, key);
|
_o.DevName = TableEncryptionService.Convert(this.DevName, key);
|
||||||
_o.CostumeGroupId = TableEncryptionService.Convert(this.CostumeGroupId, key);
|
_o.CostumeGroupId = TableEncryptionService.Convert(this.CostumeGroupId, key);
|
||||||
_o.IsPlayable = TableEncryptionService.Convert(this.IsPlayable, 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.CollectionVisible = TableEncryptionService.Convert(this.CollectionVisible, key);
|
||||||
_o.ReleaseDate = TableEncryptionService.Convert(this.ReleaseDate, key);
|
_o.ReleaseDate = TableEncryptionService.Convert(this.ReleaseDate, key);
|
||||||
_o.CollectionVisibleStartDate = TableEncryptionService.Convert(this.CollectionVisibleStartDate, key);
|
_o.CollectionVisibleStartDate = TableEncryptionService.Convert(this.CollectionVisibleStartDate, key);
|
||||||
_o.CollectionVisibleEndDate = TableEncryptionService.Convert(this.CollectionVisibleEndDate, key);
|
_o.CollectionVisibleEndDate = TableEncryptionService.Convert(this.CollectionVisibleEndDate, key);
|
||||||
_o.IsPlayableCharacter = TableEncryptionService.Convert(this.IsPlayableCharacter, key);
|
_o.IsPlayableCharacter = TableEncryptionService.Convert(this.IsPlayableCharacter, key);
|
||||||
_o.LocalizeEtcId = TableEncryptionService.Convert(this.LocalizeEtcId, 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.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.CanSurvive = TableEncryptionService.Convert(this.CanSurvive, key);
|
||||||
_o.IsDummy = TableEncryptionService.Convert(this.IsDummy, key);
|
_o.IsDummy = TableEncryptionService.Convert(this.IsDummy, key);
|
||||||
_o.SubPartsCount = TableEncryptionService.Convert(this.SubPartsCount, key);
|
_o.SubPartsCount = TableEncryptionService.Convert(this.SubPartsCount, key);
|
||||||
_o.TacticRole = TableEncryptionService.Convert(this.TacticRole, key);
|
_o.TacticRole_ = TableEncryptionService.Convert(this.TacticRole_, key);
|
||||||
_o.WeaponType = TableEncryptionService.Convert(this.WeaponType, key);
|
_o.WeaponType_ = TableEncryptionService.Convert(this.WeaponType_, key);
|
||||||
_o.TacticRange = TableEncryptionService.Convert(this.TacticRange, key);
|
_o.TacticRange_ = TableEncryptionService.Convert(this.TacticRange_, key);
|
||||||
_o.BulletType = TableEncryptionService.Convert(this.BulletType, key);
|
_o.BulletType_ = TableEncryptionService.Convert(this.BulletType_, key);
|
||||||
_o.ArmorType = TableEncryptionService.Convert(this.ArmorType, key);
|
_o.ArmorType_ = TableEncryptionService.Convert(this.ArmorType_, key);
|
||||||
_o.AimIkType = TableEncryptionService.Convert(this.AimIkType, key);
|
_o.AimIKType_ = TableEncryptionService.Convert(this.AimIKType_, key);
|
||||||
_o.School = TableEncryptionService.Convert(this.School, key);
|
_o.School_ = TableEncryptionService.Convert(this.School_, key);
|
||||||
_o.Club = TableEncryptionService.Convert(this.Club, key);
|
_o.Club_ = TableEncryptionService.Convert(this.Club_, key);
|
||||||
_o.DefaultStarGrade = TableEncryptionService.Convert(this.DefaultStarGrade, key);
|
_o.DefaultStarGrade = TableEncryptionService.Convert(this.DefaultStarGrade, key);
|
||||||
_o.MaxStarGrade = TableEncryptionService.Convert(this.MaxStarGrade, key);
|
_o.MaxStarGrade = TableEncryptionService.Convert(this.MaxStarGrade, key);
|
||||||
_o.StatLevelUpType = TableEncryptionService.Convert(this.StatLevelUpType, key);
|
_o.StatLevelUpType_ = TableEncryptionService.Convert(this.StatLevelUpType_, key);
|
||||||
_o.SquadType = TableEncryptionService.Convert(this.SquadType, key);
|
_o.SquadType_ = TableEncryptionService.Convert(this.SquadType_, key);
|
||||||
_o.Jumpable = TableEncryptionService.Convert(this.Jumpable, key);
|
_o.Jumpable = TableEncryptionService.Convert(this.Jumpable, key);
|
||||||
_o.PersonalityId = TableEncryptionService.Convert(this.PersonalityId, key);
|
_o.PersonalityId = TableEncryptionService.Convert(this.PersonalityId, key);
|
||||||
_o.CharacterAiId = TableEncryptionService.Convert(this.CharacterAiId, key);
|
_o.CharacterAIId = TableEncryptionService.Convert(this.CharacterAIId, key);
|
||||||
_o.ExternalBtId = TableEncryptionService.Convert(this.ExternalBtId, key);
|
_o.ExternalBTId = TableEncryptionService.Convert(this.ExternalBTId, key);
|
||||||
_o.MainCombatStyleId = TableEncryptionService.Convert(this.MainCombatStyleId, key);
|
_o.MainCombatStyleId = TableEncryptionService.Convert(this.MainCombatStyleId, key);
|
||||||
_o.CombatStyleIndex = TableEncryptionService.Convert(this.CombatStyleIndex, key);
|
_o.CombatStyleIndex = TableEncryptionService.Convert(this.CombatStyleIndex, key);
|
||||||
_o.ScenarioCharacter = TableEncryptionService.Convert(this.ScenarioCharacter, key);
|
_o.ScenarioCharacter = TableEncryptionService.Convert(this.ScenarioCharacter, key);
|
||||||
|
@ -396,7 +392,7 @@ namespace SCHALE.Common.FlatData
|
||||||
_o.DisplayEnemyInfo = TableEncryptionService.Convert(this.DisplayEnemyInfo, key);
|
_o.DisplayEnemyInfo = TableEncryptionService.Convert(this.DisplayEnemyInfo, key);
|
||||||
_o.BodyRadius = TableEncryptionService.Convert(this.BodyRadius, key);
|
_o.BodyRadius = TableEncryptionService.Convert(this.BodyRadius, key);
|
||||||
_o.RandomEffectRadius = TableEncryptionService.Convert(this.RandomEffectRadius, key);
|
_o.RandomEffectRadius = TableEncryptionService.Convert(this.RandomEffectRadius, key);
|
||||||
_o.HpBarHide = TableEncryptionService.Convert(this.HpBarHide, key);
|
_o.HPBarHide = TableEncryptionService.Convert(this.HPBarHide, key);
|
||||||
_o.HpBarHeight = TableEncryptionService.Convert(this.HpBarHeight, key);
|
_o.HpBarHeight = TableEncryptionService.Convert(this.HpBarHeight, key);
|
||||||
_o.HighlightFloaterHeight = TableEncryptionService.Convert(this.HighlightFloaterHeight, key);
|
_o.HighlightFloaterHeight = TableEncryptionService.Convert(this.HighlightFloaterHeight, key);
|
||||||
_o.EmojiOffsetX = TableEncryptionService.Convert(this.EmojiOffsetX, key);
|
_o.EmojiOffsetX = TableEncryptionService.Convert(this.EmojiOffsetX, key);
|
||||||
|
@ -419,72 +415,69 @@ namespace SCHALE.Common.FlatData
|
||||||
_o.CharacterPieceItemAmount = TableEncryptionService.Convert(this.CharacterPieceItemAmount, key);
|
_o.CharacterPieceItemAmount = TableEncryptionService.Convert(this.CharacterPieceItemAmount, key);
|
||||||
_o.CombineRecipeId = TableEncryptionService.Convert(this.CombineRecipeId, key);
|
_o.CombineRecipeId = TableEncryptionService.Convert(this.CombineRecipeId, key);
|
||||||
}
|
}
|
||||||
public static Offset<SCHALE.Common.FlatData.CharacterExcel> Pack(FlatBufferBuilder builder, CharacterExcelT _o)
|
public static Offset<SCHALE.Common.FlatData.CharacterExcel> Pack(FlatBufferBuilder builder, CharacterExcelT _o) {
|
||||||
{
|
|
||||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.CharacterExcel>);
|
if (_o == null) return default(Offset<SCHALE.Common.FlatData.CharacterExcel>);
|
||||||
var _dev_name = _o.DevName == null ? default(StringOffset) : builder.CreateString(_o.DevName);
|
var _DevName = _o.DevName == null ? default(StringOffset) : builder.CreateString(_o.DevName);
|
||||||
var _release_date = _o.ReleaseDate == null ? default(StringOffset) : builder.CreateString(_o.ReleaseDate);
|
var _ReleaseDate = _o.ReleaseDate == null ? default(StringOffset) : builder.CreateString(_o.ReleaseDate);
|
||||||
var _collection_visible_start_date = _o.CollectionVisibleStartDate == null ? default(StringOffset) : builder.CreateString(_o.CollectionVisibleStartDate);
|
var _CollectionVisibleStartDate = _o.CollectionVisibleStartDate == null ? default(StringOffset) : builder.CreateString(_o.CollectionVisibleStartDate);
|
||||||
var _collection_visible_end_date = _o.CollectionVisibleEndDate == null ? default(StringOffset) : builder.CreateString(_o.CollectionVisibleEndDate);
|
var _CollectionVisibleEndDate = _o.CollectionVisibleEndDate == null ? default(StringOffset) : builder.CreateString(_o.CollectionVisibleEndDate);
|
||||||
var _scenario_character = _o.ScenarioCharacter == null ? default(StringOffset) : builder.CreateString(_o.ScenarioCharacter);
|
var _ScenarioCharacter = _o.ScenarioCharacter == null ? default(StringOffset) : builder.CreateString(_o.ScenarioCharacter);
|
||||||
var _equipment_slot = default(VectorOffset);
|
var _EquipmentSlot = default(VectorOffset);
|
||||||
if (_o.EquipmentSlot != null)
|
if (_o.EquipmentSlot != null) {
|
||||||
{
|
var __EquipmentSlot = _o.EquipmentSlot.ToArray();
|
||||||
var __equipment_slot = _o.EquipmentSlot.ToArray();
|
_EquipmentSlot = CreateEquipmentSlotVector(builder, __EquipmentSlot);
|
||||||
_equipment_slot = CreateEquipmentSlotVector(builder, __equipment_slot);
|
|
||||||
}
|
}
|
||||||
var _tags = default(VectorOffset);
|
var _Tags = default(VectorOffset);
|
||||||
if (_o.Tags != null)
|
if (_o.Tags != null) {
|
||||||
{
|
var __Tags = _o.Tags.ToArray();
|
||||||
var __tags = _o.Tags.ToArray();
|
_Tags = CreateTagsVector(builder, __Tags);
|
||||||
_tags = CreateTagsVector(builder, __tags);
|
|
||||||
}
|
}
|
||||||
return CreateCharacterExcel(
|
return CreateCharacterExcel(
|
||||||
builder,
|
builder,
|
||||||
_o.Id,
|
_o.Id,
|
||||||
_dev_name,
|
_DevName,
|
||||||
_o.CostumeGroupId,
|
_o.CostumeGroupId,
|
||||||
_o.IsPlayable,
|
_o.IsPlayable,
|
||||||
_o.ProductionStep,
|
_o.ProductionStep_,
|
||||||
_o.CollectionVisible,
|
_o.CollectionVisible,
|
||||||
_release_date,
|
_ReleaseDate,
|
||||||
_collection_visible_start_date,
|
_CollectionVisibleStartDate,
|
||||||
_collection_visible_end_date,
|
_CollectionVisibleEndDate,
|
||||||
_o.IsPlayableCharacter,
|
_o.IsPlayableCharacter,
|
||||||
_o.LocalizeEtcId,
|
_o.LocalizeEtcId,
|
||||||
_o.Rarity,
|
_o.Rarity_,
|
||||||
_o.IsNpc,
|
_o.IsNPC,
|
||||||
_o.TacticEntityType,
|
_o.TacticEntityType_,
|
||||||
_o.CanSurvive,
|
_o.CanSurvive,
|
||||||
_o.IsDummy,
|
_o.IsDummy,
|
||||||
_o.SubPartsCount,
|
_o.SubPartsCount,
|
||||||
_o.TacticRole,
|
_o.TacticRole_,
|
||||||
_o.WeaponType,
|
_o.WeaponType_,
|
||||||
_o.TacticRange,
|
_o.TacticRange_,
|
||||||
_o.BulletType,
|
_o.BulletType_,
|
||||||
_o.ArmorType,
|
_o.ArmorType_,
|
||||||
_o.AimIkType,
|
_o.AimIKType_,
|
||||||
_o.School,
|
_o.School_,
|
||||||
_o.Club,
|
_o.Club_,
|
||||||
_o.DefaultStarGrade,
|
_o.DefaultStarGrade,
|
||||||
_o.MaxStarGrade,
|
_o.MaxStarGrade,
|
||||||
_o.StatLevelUpType,
|
_o.StatLevelUpType_,
|
||||||
_o.SquadType,
|
_o.SquadType_,
|
||||||
_o.Jumpable,
|
_o.Jumpable,
|
||||||
_o.PersonalityId,
|
_o.PersonalityId,
|
||||||
_o.CharacterAiId,
|
_o.CharacterAIId,
|
||||||
_o.ExternalBtId,
|
_o.ExternalBTId,
|
||||||
_o.MainCombatStyleId,
|
_o.MainCombatStyleId,
|
||||||
_o.CombatStyleIndex,
|
_o.CombatStyleIndex,
|
||||||
_scenario_character,
|
_ScenarioCharacter,
|
||||||
_o.SpawnTemplateId,
|
_o.SpawnTemplateId,
|
||||||
_o.FavorLevelupType,
|
_o.FavorLevelupType,
|
||||||
_equipment_slot,
|
_EquipmentSlot,
|
||||||
_o.WeaponLocalizeId,
|
_o.WeaponLocalizeId,
|
||||||
_o.DisplayEnemyInfo,
|
_o.DisplayEnemyInfo,
|
||||||
_o.BodyRadius,
|
_o.BodyRadius,
|
||||||
_o.RandomEffectRadius,
|
_o.RandomEffectRadius,
|
||||||
_o.HpBarHide,
|
_o.HPBarHide,
|
||||||
_o.HpBarHeight,
|
_o.HpBarHeight,
|
||||||
_o.HighlightFloaterHeight,
|
_o.HighlightFloaterHeight,
|
||||||
_o.EmojiOffsetX,
|
_o.EmojiOffsetX,
|
||||||
|
@ -499,7 +492,7 @@ namespace SCHALE.Common.FlatData
|
||||||
_o.CanBattleItemMove,
|
_o.CanBattleItemMove,
|
||||||
_o.IsAirUnit,
|
_o.IsAirUnit,
|
||||||
_o.AirUnitHeight,
|
_o.AirUnitHeight,
|
||||||
_tags,
|
_Tags,
|
||||||
_o.SecretStoneItemId,
|
_o.SecretStoneItemId,
|
||||||
_o.SecretStoneItemAmount,
|
_o.SecretStoneItemAmount,
|
||||||
_o.CharacterPieceItemId,
|
_o.CharacterPieceItemId,
|
||||||
|
@ -514,35 +507,35 @@ namespace SCHALE.Common.FlatData
|
||||||
public string DevName { get; set; }
|
public string DevName { get; set; }
|
||||||
public long CostumeGroupId { get; set; }
|
public long CostumeGroupId { get; set; }
|
||||||
public bool IsPlayable { 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 bool CollectionVisible { get; set; }
|
||||||
public string ReleaseDate { get; set; }
|
public string ReleaseDate { get; set; }
|
||||||
public string CollectionVisibleStartDate { get; set; }
|
public string CollectionVisibleStartDate { get; set; }
|
||||||
public string CollectionVisibleEndDate { get; set; }
|
public string CollectionVisibleEndDate { get; set; }
|
||||||
public bool IsPlayableCharacter { get; set; }
|
public bool IsPlayableCharacter { get; set; }
|
||||||
public uint LocalizeEtcId { 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 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 CanSurvive { get; set; }
|
||||||
public bool IsDummy { get; set; }
|
public bool IsDummy { get; set; }
|
||||||
public int SubPartsCount { get; set; }
|
public int SubPartsCount { get; set; }
|
||||||
public SCHALE.Common.FlatData.TacticRole TacticRole { get; set; }
|
public SCHALE.Common.FlatData.TacticRole TacticRole_ { get; set; }
|
||||||
public SCHALE.Common.FlatData.WeaponType WeaponType { get; set; }
|
public SCHALE.Common.FlatData.WeaponType WeaponType_ { get; set; }
|
||||||
public SCHALE.Common.FlatData.TacticRange TacticRange { get; set; }
|
public SCHALE.Common.FlatData.TacticRange TacticRange_ { get; set; }
|
||||||
public SCHALE.Common.FlatData.BulletType BulletType { get; set; }
|
public SCHALE.Common.FlatData.BulletType BulletType_ { get; set; }
|
||||||
public SCHALE.Common.FlatData.ArmorType ArmorType { get; set; }
|
public SCHALE.Common.FlatData.ArmorType ArmorType_ { get; set; }
|
||||||
public SCHALE.Common.FlatData.AimIKType AimIkType { get; set; }
|
public SCHALE.Common.FlatData.AimIKType AimIKType_ { get; set; }
|
||||||
public SCHALE.Common.FlatData.School School { get; set; }
|
public SCHALE.Common.FlatData.School School_ { get; set; }
|
||||||
public SCHALE.Common.FlatData.Club Club { get; set; }
|
public SCHALE.Common.FlatData.Club Club_ { get; set; }
|
||||||
public int DefaultStarGrade { get; set; }
|
public int DefaultStarGrade { get; set; }
|
||||||
public int MaxStarGrade { get; set; }
|
public int MaxStarGrade { get; set; }
|
||||||
public SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType { get; set; }
|
public SCHALE.Common.FlatData.StatLevelUpType StatLevelUpType_ { get; set; }
|
||||||
public SCHALE.Common.FlatData.SquadType SquadType { get; set; }
|
public SCHALE.Common.FlatData.SquadType SquadType_ { get; set; }
|
||||||
public bool Jumpable { get; set; }
|
public bool Jumpable { get; set; }
|
||||||
public long PersonalityId { get; set; }
|
public long PersonalityId { get; set; }
|
||||||
public long CharacterAiId { get; set; }
|
public long CharacterAIId { get; set; }
|
||||||
public long ExternalBtId { get; set; }
|
public long ExternalBTId { get; set; }
|
||||||
public long MainCombatStyleId { get; set; }
|
public long MainCombatStyleId { get; set; }
|
||||||
public int CombatStyleIndex { get; set; }
|
public int CombatStyleIndex { get; set; }
|
||||||
public string ScenarioCharacter { get; set; }
|
public string ScenarioCharacter { get; set; }
|
||||||
|
@ -553,7 +546,7 @@ namespace SCHALE.Common.FlatData
|
||||||
public bool DisplayEnemyInfo { get; set; }
|
public bool DisplayEnemyInfo { get; set; }
|
||||||
public long BodyRadius { get; set; }
|
public long BodyRadius { get; set; }
|
||||||
public long RandomEffectRadius { get; set; }
|
public long RandomEffectRadius { get; set; }
|
||||||
public bool HpBarHide { get; set; }
|
public bool HPBarHide { get; set; }
|
||||||
public float HpBarHeight { get; set; }
|
public float HpBarHeight { get; set; }
|
||||||
public float HighlightFloaterHeight { get; set; }
|
public float HighlightFloaterHeight { get; set; }
|
||||||
public float EmojiOffsetX { get; set; }
|
public float EmojiOffsetX { get; set; }
|
||||||
|
@ -575,41 +568,40 @@ namespace SCHALE.Common.FlatData
|
||||||
public int CharacterPieceItemAmount { get; set; }
|
public int CharacterPieceItemAmount { get; set; }
|
||||||
public long CombineRecipeId { get; set; }
|
public long CombineRecipeId { get; set; }
|
||||||
|
|
||||||
public CharacterExcelT()
|
public CharacterExcelT() {
|
||||||
{
|
|
||||||
this.Id = 0;
|
this.Id = 0;
|
||||||
this.DevName = null;
|
this.DevName = null;
|
||||||
this.CostumeGroupId = 0;
|
this.CostumeGroupId = 0;
|
||||||
this.IsPlayable = false;
|
this.IsPlayable = false;
|
||||||
this.ProductionStep = SCHALE.Common.FlatData.ProductionStep.ToDo;
|
this.ProductionStep_ = SCHALE.Common.FlatData.ProductionStep.ToDo;
|
||||||
this.CollectionVisible = false;
|
this.CollectionVisible = false;
|
||||||
this.ReleaseDate = null;
|
this.ReleaseDate = null;
|
||||||
this.CollectionVisibleStartDate = null;
|
this.CollectionVisibleStartDate = null;
|
||||||
this.CollectionVisibleEndDate = null;
|
this.CollectionVisibleEndDate = null;
|
||||||
this.IsPlayableCharacter = false;
|
this.IsPlayableCharacter = false;
|
||||||
this.LocalizeEtcId = 0;
|
this.LocalizeEtcId = 0;
|
||||||
this.Rarity = SCHALE.Common.FlatData.Rarity.N;
|
this.Rarity_ = SCHALE.Common.FlatData.Rarity.N;
|
||||||
this.IsNpc = false;
|
this.IsNPC = false;
|
||||||
this.TacticEntityType = SCHALE.Common.FlatData.TacticEntityType.None;
|
this.TacticEntityType_ = SCHALE.Common.FlatData.TacticEntityType.None_;
|
||||||
this.CanSurvive = false;
|
this.CanSurvive = false;
|
||||||
this.IsDummy = false;
|
this.IsDummy = false;
|
||||||
this.SubPartsCount = 0;
|
this.SubPartsCount = 0;
|
||||||
this.TacticRole = SCHALE.Common.FlatData.TacticRole.None;
|
this.TacticRole_ = SCHALE.Common.FlatData.TacticRole.None_;
|
||||||
this.WeaponType = SCHALE.Common.FlatData.WeaponType.None;
|
this.WeaponType_ = SCHALE.Common.FlatData.WeaponType.None_;
|
||||||
this.TacticRange = SCHALE.Common.FlatData.TacticRange.Back;
|
this.TacticRange_ = SCHALE.Common.FlatData.TacticRange.Back;
|
||||||
this.BulletType = SCHALE.Common.FlatData.BulletType.Normal;
|
this.BulletType_ = SCHALE.Common.FlatData.BulletType.Normal;
|
||||||
this.ArmorType = SCHALE.Common.FlatData.ArmorType.LightArmor;
|
this.ArmorType_ = SCHALE.Common.FlatData.ArmorType.LightArmor;
|
||||||
this.AimIkType = SCHALE.Common.FlatData.AimIKType.None;
|
this.AimIKType_ = SCHALE.Common.FlatData.AimIKType.None_;
|
||||||
this.School = SCHALE.Common.FlatData.School.None;
|
this.School_ = SCHALE.Common.FlatData.School.None_;
|
||||||
this.Club = SCHALE.Common.FlatData.Club.None;
|
this.Club_ = SCHALE.Common.FlatData.Club.None_;
|
||||||
this.DefaultStarGrade = 0;
|
this.DefaultStarGrade = 0;
|
||||||
this.MaxStarGrade = 0;
|
this.MaxStarGrade = 0;
|
||||||
this.StatLevelUpType = SCHALE.Common.FlatData.StatLevelUpType.Standard;
|
this.StatLevelUpType_ = SCHALE.Common.FlatData.StatLevelUpType.Standard;
|
||||||
this.SquadType = SCHALE.Common.FlatData.SquadType.None;
|
this.SquadType_ = SCHALE.Common.FlatData.SquadType.None_;
|
||||||
this.Jumpable = false;
|
this.Jumpable = false;
|
||||||
this.PersonalityId = 0;
|
this.PersonalityId = 0;
|
||||||
this.CharacterAiId = 0;
|
this.CharacterAIId = 0;
|
||||||
this.ExternalBtId = 0;
|
this.ExternalBTId = 0;
|
||||||
this.MainCombatStyleId = 0;
|
this.MainCombatStyleId = 0;
|
||||||
this.CombatStyleIndex = 0;
|
this.CombatStyleIndex = 0;
|
||||||
this.ScenarioCharacter = null;
|
this.ScenarioCharacter = null;
|
||||||
|
@ -620,7 +612,7 @@ namespace SCHALE.Common.FlatData
|
||||||
this.DisplayEnemyInfo = false;
|
this.DisplayEnemyInfo = false;
|
||||||
this.BodyRadius = 0;
|
this.BodyRadius = 0;
|
||||||
this.RandomEffectRadius = 0;
|
this.RandomEffectRadius = 0;
|
||||||
this.HpBarHide = false;
|
this.HPBarHide = false;
|
||||||
this.HpBarHeight = 0.0f;
|
this.HpBarHeight = 0.0f;
|
||||||
this.HighlightFloaterHeight = 0.0f;
|
this.HighlightFloaterHeight = 0.0f;
|
||||||
this.EmojiOffsetX = 0.0f;
|
this.EmojiOffsetX = 0.0f;
|
||||||
|
@ -654,35 +646,35 @@ namespace SCHALE.Common.FlatData
|
||||||
&& verifier.VerifyString(tablePos, 6 /*DevName*/, false)
|
&& verifier.VerifyString(tablePos, 6 /*DevName*/, false)
|
||||||
&& verifier.VerifyField(tablePos, 8 /*CostumeGroupId*/, 8 /*long*/, 8, false)
|
&& verifier.VerifyField(tablePos, 8 /*CostumeGroupId*/, 8 /*long*/, 8, false)
|
||||||
&& verifier.VerifyField(tablePos, 10 /*IsPlayable*/, 1 /*bool*/, 1, 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.VerifyField(tablePos, 14 /*CollectionVisible*/, 1 /*bool*/, 1, false)
|
||||||
&& verifier.VerifyString(tablePos, 16 /*ReleaseDate*/, false)
|
&& verifier.VerifyString(tablePos, 16 /*ReleaseDate*/, false)
|
||||||
&& verifier.VerifyString(tablePos, 18 /*CollectionVisibleStartDate*/, false)
|
&& verifier.VerifyString(tablePos, 18 /*CollectionVisibleStartDate*/, false)
|
||||||
&& verifier.VerifyString(tablePos, 20 /*CollectionVisibleEndDate*/, false)
|
&& verifier.VerifyString(tablePos, 20 /*CollectionVisibleEndDate*/, false)
|
||||||
&& verifier.VerifyField(tablePos, 22 /*IsPlayableCharacter*/, 1 /*bool*/, 1, false)
|
&& verifier.VerifyField(tablePos, 22 /*IsPlayableCharacter*/, 1 /*bool*/, 1, false)
|
||||||
&& verifier.VerifyField(tablePos, 24 /*LocalizeEtcId*/, 4 /*uint*/, 4, 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, 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, 32 /*CanSurvive*/, 1 /*bool*/, 1, false)
|
||||||
&& verifier.VerifyField(tablePos, 34 /*IsDummy*/, 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, 36 /*SubPartsCount*/, 4 /*int*/, 4, false)
|
||||||
&& verifier.VerifyField(tablePos, 38 /*TacticRole*/, 4 /*SCHALE.Common.FlatData.TacticRole*/, 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, 40 /*WeaponType_*/, 4 /*SCHALE.Common.FlatData.WeaponType*/, 4, false)
|
||||||
&& verifier.VerifyField(tablePos, 42 /*TacticRange*/, 4 /*SCHALE.Common.FlatData.TacticRange*/, 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, 44 /*BulletType_*/, 4 /*SCHALE.Common.FlatData.BulletType*/, 4, false)
|
||||||
&& verifier.VerifyField(tablePos, 46 /*ArmorType*/, 4 /*SCHALE.Common.FlatData.ArmorType*/, 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, 48 /*AimIKType_*/, 4 /*SCHALE.Common.FlatData.AimIKType*/, 4, false)
|
||||||
&& verifier.VerifyField(tablePos, 50 /*School*/, 4 /*SCHALE.Common.FlatData.School*/, 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, 52 /*Club_*/, 4 /*SCHALE.Common.FlatData.Club*/, 4, false)
|
||||||
&& verifier.VerifyField(tablePos, 54 /*DefaultStarGrade*/, 4 /*int*/, 4, false)
|
&& verifier.VerifyField(tablePos, 54 /*DefaultStarGrade*/, 4 /*int*/, 4, false)
|
||||||
&& verifier.VerifyField(tablePos, 56 /*MaxStarGrade*/, 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, 58 /*StatLevelUpType_*/, 4 /*SCHALE.Common.FlatData.StatLevelUpType*/, 4, false)
|
||||||
&& verifier.VerifyField(tablePos, 60 /*SquadType*/, 4 /*SCHALE.Common.FlatData.SquadType*/, 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, 62 /*Jumpable*/, 1 /*bool*/, 1, false)
|
||||||
&& verifier.VerifyField(tablePos, 64 /*PersonalityId*/, 8 /*long*/, 8, false)
|
&& verifier.VerifyField(tablePos, 64 /*PersonalityId*/, 8 /*long*/, 8, false)
|
||||||
&& verifier.VerifyField(tablePos, 66 /*CharacterAiId*/, 8 /*long*/, 8, false)
|
&& verifier.VerifyField(tablePos, 66 /*CharacterAIId*/, 8 /*long*/, 8, false)
|
||||||
&& verifier.VerifyField(tablePos, 68 /*ExternalBtId*/, 8 /*long*/, 8, false)
|
&& verifier.VerifyField(tablePos, 68 /*ExternalBTId*/, 8 /*long*/, 8, false)
|
||||||
&& verifier.VerifyField(tablePos, 70 /*MainCombatStyleId*/, 8 /*long*/, 8, false)
|
&& verifier.VerifyField(tablePos, 70 /*MainCombatStyleId*/, 8 /*long*/, 8, false)
|
||||||
&& verifier.VerifyField(tablePos, 72 /*CombatStyleIndex*/, 4 /*int*/, 4, false)
|
&& verifier.VerifyField(tablePos, 72 /*CombatStyleIndex*/, 4 /*int*/, 4, false)
|
||||||
&& verifier.VerifyString(tablePos, 74 /*ScenarioCharacter*/, false)
|
&& verifier.VerifyString(tablePos, 74 /*ScenarioCharacter*/, false)
|
||||||
|
@ -693,7 +685,7 @@ namespace SCHALE.Common.FlatData
|
||||||
&& verifier.VerifyField(tablePos, 84 /*DisplayEnemyInfo*/, 1 /*bool*/, 1, false)
|
&& verifier.VerifyField(tablePos, 84 /*DisplayEnemyInfo*/, 1 /*bool*/, 1, false)
|
||||||
&& verifier.VerifyField(tablePos, 86 /*BodyRadius*/, 8 /*long*/, 8, false)
|
&& verifier.VerifyField(tablePos, 86 /*BodyRadius*/, 8 /*long*/, 8, false)
|
||||||
&& verifier.VerifyField(tablePos, 88 /*RandomEffectRadius*/, 8 /*long*/, 8, false)
|
&& verifier.VerifyField(tablePos, 88 /*RandomEffectRadius*/, 8 /*long*/, 8, false)
|
||||||
&& verifier.VerifyField(tablePos, 90 /*HpBarHide*/, 1 /*bool*/, 1, false)
|
&& verifier.VerifyField(tablePos, 90 /*HPBarHide*/, 1 /*bool*/, 1, false)
|
||||||
&& verifier.VerifyField(tablePos, 92 /*HpBarHeight*/, 4 /*float*/, 4, false)
|
&& verifier.VerifyField(tablePos, 92 /*HpBarHeight*/, 4 /*float*/, 4, false)
|
||||||
&& verifier.VerifyField(tablePos, 94 /*HighlightFloaterHeight*/, 4 /*float*/, 4, false)
|
&& verifier.VerifyField(tablePos, 94 /*HighlightFloaterHeight*/, 4 /*float*/, 4, false)
|
||||||
&& verifier.VerifyField(tablePos, 96 /*EmojiOffsetX*/, 4 /*float*/, 4, false)
|
&& verifier.VerifyField(tablePos, 96 /*EmojiOffsetX*/, 4 /*float*/, 4, false)
|
||||||
|
|
|
@ -24,9 +24,9 @@ public struct CharacterExcelTable : IFlatbufferObject
|
||||||
public int DataListLength { get { int o = __p.__offset(4); return o != 0 ? __p.__vector_len(o) : 0; } }
|
public int DataListLength { get { int o = __p.__offset(4); return o != 0 ? __p.__vector_len(o) : 0; } }
|
||||||
|
|
||||||
public static Offset<SCHALE.Common.FlatData.CharacterExcelTable> CreateCharacterExcelTable(FlatBufferBuilder builder,
|
public static Offset<SCHALE.Common.FlatData.CharacterExcelTable> CreateCharacterExcelTable(FlatBufferBuilder builder,
|
||||||
VectorOffset data_listOffset = default(VectorOffset)) {
|
VectorOffset DataListOffset = default(VectorOffset)) {
|
||||||
builder.StartTable(1);
|
builder.StartTable(1);
|
||||||
CharacterExcelTable.AddDataList(builder, data_listOffset);
|
CharacterExcelTable.AddDataList(builder, DataListOffset);
|
||||||
return CharacterExcelTable.EndCharacterExcelTable(builder);
|
return CharacterExcelTable.EndCharacterExcelTable(builder);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -53,15 +53,15 @@ public struct CharacterExcelTable : IFlatbufferObject
|
||||||
}
|
}
|
||||||
public static Offset<SCHALE.Common.FlatData.CharacterExcelTable> Pack(FlatBufferBuilder builder, CharacterExcelTableT _o) {
|
public static Offset<SCHALE.Common.FlatData.CharacterExcelTable> Pack(FlatBufferBuilder builder, CharacterExcelTableT _o) {
|
||||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.CharacterExcelTable>);
|
if (_o == null) return default(Offset<SCHALE.Common.FlatData.CharacterExcelTable>);
|
||||||
var _data_list = default(VectorOffset);
|
var _DataList = default(VectorOffset);
|
||||||
if (_o.DataList != null) {
|
if (_o.DataList != null) {
|
||||||
var __data_list = new Offset<SCHALE.Common.FlatData.CharacterExcel>[_o.DataList.Count];
|
var __DataList = new Offset<SCHALE.Common.FlatData.CharacterExcel>[_o.DataList.Count];
|
||||||
for (var _j = 0; _j < __data_list.Length; ++_j) { __data_list[_j] = SCHALE.Common.FlatData.CharacterExcel.Pack(builder, _o.DataList[_j]); }
|
for (var _j = 0; _j < __DataList.Length; ++_j) { __DataList[_j] = SCHALE.Common.FlatData.CharacterExcel.Pack(builder, _o.DataList[_j]); }
|
||||||
_data_list = CreateDataListVector(builder, __data_list);
|
_DataList = CreateDataListVector(builder, __DataList);
|
||||||
}
|
}
|
||||||
return CreateCharacterExcelTable(
|
return CreateCharacterExcelTable(
|
||||||
builder,
|
builder,
|
||||||
_data_list);
|
_DataList);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,88 +0,0 @@
|
||||||
// <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;
|
|
||||||
using global::SCHALE.Common.Crypto;
|
|
||||||
using global::Google.FlatBuffers;
|
|
||||||
|
|
||||||
public struct CharacterGearExcelTable : IFlatbufferObject
|
|
||||||
{
|
|
||||||
private Table __p;
|
|
||||||
public ByteBuffer ByteBuffer { get { return __p.bb; } }
|
|
||||||
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_24_3_25(); }
|
|
||||||
public static CharacterGearExcelTable GetRootAsCharacterGearExcelTable(ByteBuffer _bb) { return GetRootAsCharacterGearExcelTable(_bb, new CharacterGearExcelTable()); }
|
|
||||||
public static CharacterGearExcelTable GetRootAsCharacterGearExcelTable(ByteBuffer _bb, CharacterGearExcelTable obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
|
|
||||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
|
||||||
public CharacterGearExcelTable __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
|
||||||
|
|
||||||
public SCHALE.Common.FlatData.CharacterGearExcel? DataList(int j) { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.CharacterGearExcel?)(new SCHALE.Common.FlatData.CharacterGearExcel()).__assign(__p.__indirect(__p.__vector(o) + j * 4), __p.bb) : null; }
|
|
||||||
public int DataListLength { get { int o = __p.__offset(4); return o != 0 ? __p.__vector_len(o) : 0; } }
|
|
||||||
|
|
||||||
public static Offset<SCHALE.Common.FlatData.CharacterGearExcelTable> CreateCharacterGearExcelTable(FlatBufferBuilder builder,
|
|
||||||
VectorOffset DataListOffset = default(VectorOffset)) {
|
|
||||||
builder.StartTable(1);
|
|
||||||
CharacterGearExcelTable.AddDataList(builder, DataListOffset);
|
|
||||||
return CharacterGearExcelTable.EndCharacterGearExcelTable(builder);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void StartCharacterGearExcelTable(FlatBufferBuilder builder) { builder.StartTable(1); }
|
|
||||||
public static void AddDataList(FlatBufferBuilder builder, VectorOffset dataListOffset) { builder.AddOffset(0, dataListOffset.Value, 0); }
|
|
||||||
public static VectorOffset CreateDataListVector(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.CharacterGearExcel>[] data) { builder.StartVector(4, data.Length, 4); for (int i = data.Length - 1; i >= 0; i--) builder.AddOffset(data[i].Value); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.CharacterGearExcel>[] data) { builder.StartVector(4, data.Length, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, ArraySegment<Offset<SCHALE.Common.FlatData.CharacterGearExcel>> data) { builder.StartVector(4, data.Count, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<Offset<SCHALE.Common.FlatData.CharacterGearExcel>>(dataPtr, sizeInBytes); return builder.EndVector(); }
|
|
||||||
public static void StartDataListVector(FlatBufferBuilder builder, int numElems) { builder.StartVector(4, numElems, 4); }
|
|
||||||
public static Offset<SCHALE.Common.FlatData.CharacterGearExcelTable> EndCharacterGearExcelTable(FlatBufferBuilder builder) {
|
|
||||||
int o = builder.EndTable();
|
|
||||||
return new Offset<SCHALE.Common.FlatData.CharacterGearExcelTable>(o);
|
|
||||||
}
|
|
||||||
public CharacterGearExcelTableT UnPack() {
|
|
||||||
var _o = new CharacterGearExcelTableT();
|
|
||||||
this.UnPackTo(_o);
|
|
||||||
return _o;
|
|
||||||
}
|
|
||||||
public void UnPackTo(CharacterGearExcelTableT _o) {
|
|
||||||
byte[] key = TableEncryptionService.CreateKey("CharacterGearExcel");
|
|
||||||
_o.DataList = new List<SCHALE.Common.FlatData.CharacterGearExcelT>();
|
|
||||||
for (var _j = 0; _j < this.DataListLength; ++_j) {_o.DataList.Add(this.DataList(_j).HasValue ? this.DataList(_j).Value.UnPack() : null);}
|
|
||||||
}
|
|
||||||
public static Offset<SCHALE.Common.FlatData.CharacterGearExcelTable> Pack(FlatBufferBuilder builder, CharacterGearExcelTableT _o) {
|
|
||||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.CharacterGearExcelTable>);
|
|
||||||
var _DataList = default(VectorOffset);
|
|
||||||
if (_o.DataList != null) {
|
|
||||||
var __DataList = new Offset<SCHALE.Common.FlatData.CharacterGearExcel>[_o.DataList.Count];
|
|
||||||
for (var _j = 0; _j < __DataList.Length; ++_j) { __DataList[_j] = SCHALE.Common.FlatData.CharacterGearExcel.Pack(builder, _o.DataList[_j]); }
|
|
||||||
_DataList = CreateDataListVector(builder, __DataList);
|
|
||||||
}
|
|
||||||
return CreateCharacterGearExcelTable(
|
|
||||||
builder,
|
|
||||||
_DataList);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public class CharacterGearExcelTableT
|
|
||||||
{
|
|
||||||
public List<SCHALE.Common.FlatData.CharacterGearExcelT> DataList { get; set; }
|
|
||||||
|
|
||||||
public CharacterGearExcelTableT() {
|
|
||||||
this.DataList = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static public class CharacterGearExcelTableVerify
|
|
||||||
{
|
|
||||||
static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos)
|
|
||||||
{
|
|
||||||
return verifier.VerifyTableStart(tablePos)
|
|
||||||
&& verifier.VerifyVectorOfTables(tablePos, 4 /*DataList*/, SCHALE.Common.FlatData.CharacterGearExcelVerify.Verify, false)
|
|
||||||
&& verifier.VerifyTableEnd(tablePos);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,88 +0,0 @@
|
||||||
// <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;
|
|
||||||
using global::SCHALE.Common.Crypto;
|
|
||||||
using global::Google.FlatBuffers;
|
|
||||||
|
|
||||||
public struct CharacterGearLevelExcelTable : IFlatbufferObject
|
|
||||||
{
|
|
||||||
private Table __p;
|
|
||||||
public ByteBuffer ByteBuffer { get { return __p.bb; } }
|
|
||||||
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_24_3_25(); }
|
|
||||||
public static CharacterGearLevelExcelTable GetRootAsCharacterGearLevelExcelTable(ByteBuffer _bb) { return GetRootAsCharacterGearLevelExcelTable(_bb, new CharacterGearLevelExcelTable()); }
|
|
||||||
public static CharacterGearLevelExcelTable GetRootAsCharacterGearLevelExcelTable(ByteBuffer _bb, CharacterGearLevelExcelTable obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
|
|
||||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
|
||||||
public CharacterGearLevelExcelTable __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
|
||||||
|
|
||||||
public SCHALE.Common.FlatData.CharacterGearLevelExcel? DataList(int j) { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.CharacterGearLevelExcel?)(new SCHALE.Common.FlatData.CharacterGearLevelExcel()).__assign(__p.__indirect(__p.__vector(o) + j * 4), __p.bb) : null; }
|
|
||||||
public int DataListLength { get { int o = __p.__offset(4); return o != 0 ? __p.__vector_len(o) : 0; } }
|
|
||||||
|
|
||||||
public static Offset<SCHALE.Common.FlatData.CharacterGearLevelExcelTable> CreateCharacterGearLevelExcelTable(FlatBufferBuilder builder,
|
|
||||||
VectorOffset DataListOffset = default(VectorOffset)) {
|
|
||||||
builder.StartTable(1);
|
|
||||||
CharacterGearLevelExcelTable.AddDataList(builder, DataListOffset);
|
|
||||||
return CharacterGearLevelExcelTable.EndCharacterGearLevelExcelTable(builder);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void StartCharacterGearLevelExcelTable(FlatBufferBuilder builder) { builder.StartTable(1); }
|
|
||||||
public static void AddDataList(FlatBufferBuilder builder, VectorOffset dataListOffset) { builder.AddOffset(0, dataListOffset.Value, 0); }
|
|
||||||
public static VectorOffset CreateDataListVector(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.CharacterGearLevelExcel>[] data) { builder.StartVector(4, data.Length, 4); for (int i = data.Length - 1; i >= 0; i--) builder.AddOffset(data[i].Value); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.CharacterGearLevelExcel>[] data) { builder.StartVector(4, data.Length, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, ArraySegment<Offset<SCHALE.Common.FlatData.CharacterGearLevelExcel>> data) { builder.StartVector(4, data.Count, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<Offset<SCHALE.Common.FlatData.CharacterGearLevelExcel>>(dataPtr, sizeInBytes); return builder.EndVector(); }
|
|
||||||
public static void StartDataListVector(FlatBufferBuilder builder, int numElems) { builder.StartVector(4, numElems, 4); }
|
|
||||||
public static Offset<SCHALE.Common.FlatData.CharacterGearLevelExcelTable> EndCharacterGearLevelExcelTable(FlatBufferBuilder builder) {
|
|
||||||
int o = builder.EndTable();
|
|
||||||
return new Offset<SCHALE.Common.FlatData.CharacterGearLevelExcelTable>(o);
|
|
||||||
}
|
|
||||||
public CharacterGearLevelExcelTableT UnPack() {
|
|
||||||
var _o = new CharacterGearLevelExcelTableT();
|
|
||||||
this.UnPackTo(_o);
|
|
||||||
return _o;
|
|
||||||
}
|
|
||||||
public void UnPackTo(CharacterGearLevelExcelTableT _o) {
|
|
||||||
byte[] key = TableEncryptionService.CreateKey("CharacterGearLevelExcel");
|
|
||||||
_o.DataList = new List<SCHALE.Common.FlatData.CharacterGearLevelExcelT>();
|
|
||||||
for (var _j = 0; _j < this.DataListLength; ++_j) {_o.DataList.Add(this.DataList(_j).HasValue ? this.DataList(_j).Value.UnPack() : null);}
|
|
||||||
}
|
|
||||||
public static Offset<SCHALE.Common.FlatData.CharacterGearLevelExcelTable> Pack(FlatBufferBuilder builder, CharacterGearLevelExcelTableT _o) {
|
|
||||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.CharacterGearLevelExcelTable>);
|
|
||||||
var _DataList = default(VectorOffset);
|
|
||||||
if (_o.DataList != null) {
|
|
||||||
var __DataList = new Offset<SCHALE.Common.FlatData.CharacterGearLevelExcel>[_o.DataList.Count];
|
|
||||||
for (var _j = 0; _j < __DataList.Length; ++_j) { __DataList[_j] = SCHALE.Common.FlatData.CharacterGearLevelExcel.Pack(builder, _o.DataList[_j]); }
|
|
||||||
_DataList = CreateDataListVector(builder, __DataList);
|
|
||||||
}
|
|
||||||
return CreateCharacterGearLevelExcelTable(
|
|
||||||
builder,
|
|
||||||
_DataList);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public class CharacterGearLevelExcelTableT
|
|
||||||
{
|
|
||||||
public List<SCHALE.Common.FlatData.CharacterGearLevelExcelT> DataList { get; set; }
|
|
||||||
|
|
||||||
public CharacterGearLevelExcelTableT() {
|
|
||||||
this.DataList = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static public class CharacterGearLevelExcelTableVerify
|
|
||||||
{
|
|
||||||
static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos)
|
|
||||||
{
|
|
||||||
return verifier.VerifyTableStart(tablePos)
|
|
||||||
&& verifier.VerifyVectorOfTables(tablePos, 4 /*DataList*/, SCHALE.Common.FlatData.CharacterGearLevelExcelVerify.Verify, false)
|
|
||||||
&& verifier.VerifyTableEnd(tablePos);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -22,13 +22,13 @@ 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 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 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 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,
|
public static Offset<SCHALE.Common.FlatData.CharacterPotentialExcel> CreateCharacterPotentialExcel(FlatBufferBuilder builder,
|
||||||
long Id = 0,
|
long Id = 0,
|
||||||
long PotentialStatGroupId = 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) {
|
bool IsUnnecessaryStat = false) {
|
||||||
builder.StartTable(4);
|
builder.StartTable(4);
|
||||||
CharacterPotentialExcel.AddPotentialStatGroupId(builder, PotentialStatGroupId);
|
CharacterPotentialExcel.AddPotentialStatGroupId(builder, PotentialStatGroupId);
|
||||||
|
@ -80,7 +80,7 @@ public class CharacterPotentialExcelT
|
||||||
public CharacterPotentialExcelT() {
|
public CharacterPotentialExcelT() {
|
||||||
this.Id = 0;
|
this.Id = 0;
|
||||||
this.PotentialStatGroupId = 0;
|
this.PotentialStatGroupId = 0;
|
||||||
this.PotentialStatBonusRateType_ = SCHALE.Common.FlatData.PotentialStatBonusRateType.None;
|
this.PotentialStatBonusRateType_ = SCHALE.Common.FlatData.PotentialStatBonusRateType.None_;
|
||||||
this.IsUnnecessaryStat = false;
|
this.IsUnnecessaryStat = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,7 +37,7 @@ public struct CharacterPotentialRewardExcel : IFlatbufferObject
|
||||||
public ArraySegment<byte>? GetRequirePotentialStatLevelBytes() { return __p.__vector_as_arraysegment(8); }
|
public ArraySegment<byte>? GetRequirePotentialStatLevelBytes() { return __p.__vector_as_arraysegment(8); }
|
||||||
#endif
|
#endif
|
||||||
public long[] GetRequirePotentialStatLevelArray() { return __p.__vector_as_array<long>(8); }
|
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 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 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,
|
long Id = 0,
|
||||||
VectorOffset RequirePotentialStatTypeOffset = default(VectorOffset),
|
VectorOffset RequirePotentialStatTypeOffset = default(VectorOffset),
|
||||||
VectorOffset RequirePotentialStatLevelOffset = 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,
|
long RewardId = 0,
|
||||||
int RewardAmount = 0) {
|
int RewardAmount = 0) {
|
||||||
builder.StartTable(6);
|
builder.StartTable(6);
|
||||||
|
@ -131,7 +131,7 @@ public class CharacterPotentialRewardExcelT
|
||||||
this.Id = 0;
|
this.Id = 0;
|
||||||
this.RequirePotentialStatType = null;
|
this.RequirePotentialStatType = null;
|
||||||
this.RequirePotentialStatLevel = null;
|
this.RequirePotentialStatLevel = null;
|
||||||
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.RewardId = 0;
|
this.RewardId = 0;
|
||||||
this.RewardAmount = 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 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 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.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.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 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 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; } }
|
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,
|
public static Offset<SCHALE.Common.FlatData.CharacterStatLimitExcel> CreateCharacterStatLimitExcel(FlatBufferBuilder builder,
|
||||||
long Id = 0,
|
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.StatType StatType_ = SCHALE.Common.FlatData.StatType.None,
|
SCHALE.Common.FlatData.StatType StatType_ = SCHALE.Common.FlatData.StatType.None_,
|
||||||
long StatMinValue = 0,
|
long StatMinValue = 0,
|
||||||
long StatMaxValue = 0,
|
long StatMaxValue = 0,
|
||||||
long StatRatioMinValue = 0,
|
long StatRatioMinValue = 0,
|
||||||
|
@ -100,8 +100,8 @@ public class CharacterStatLimitExcelT
|
||||||
|
|
||||||
public CharacterStatLimitExcelT() {
|
public CharacterStatLimitExcelT() {
|
||||||
this.Id = 0;
|
this.Id = 0;
|
||||||
this.TacticEntityType_ = SCHALE.Common.FlatData.TacticEntityType.None;
|
this.TacticEntityType_ = SCHALE.Common.FlatData.TacticEntityType.None_;
|
||||||
this.StatType_ = SCHALE.Common.FlatData.StatType.None;
|
this.StatType_ = SCHALE.Common.FlatData.StatType.None_;
|
||||||
this.StatMinValue = 0;
|
this.StatMinValue = 0;
|
||||||
this.StatMaxValue = 0;
|
this.StatMaxValue = 0;
|
||||||
this.StatRatioMinValue = 0;
|
this.StatRatioMinValue = 0;
|
||||||
|
|
|
@ -20,13 +20,13 @@ public struct CharacterStatsTransExcel : IFlatbufferObject
|
||||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
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 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.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.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 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,
|
public static Offset<SCHALE.Common.FlatData.CharacterStatsTransExcel> CreateCharacterStatsTransExcel(FlatBufferBuilder builder,
|
||||||
SCHALE.Common.FlatData.StatType TransSupportStats = SCHALE.Common.FlatData.StatType.None,
|
SCHALE.Common.FlatData.StatType TransSupportStats = SCHALE.Common.FlatData.StatType.None_,
|
||||||
SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType_ = SCHALE.Common.FlatData.EchelonExtensionType.Base,
|
SCHALE.Common.FlatData.EchelonExtensionType EchelonExtensionType_ = SCHALE.Common.FlatData.EchelonExtensionType.Base,
|
||||||
int TransSupportStatsFactor = 0,
|
int TransSupportStatsFactor = 0,
|
||||||
SCHALE.Common.FlatData.StatTransType StatTransType_ = SCHALE.Common.FlatData.StatTransType.SpecialTransStat) {
|
SCHALE.Common.FlatData.StatTransType StatTransType_ = SCHALE.Common.FlatData.StatTransType.SpecialTransStat) {
|
||||||
|
@ -78,7 +78,7 @@ public class CharacterStatsTransExcelT
|
||||||
public SCHALE.Common.FlatData.StatTransType StatTransType_ { get; set; }
|
public SCHALE.Common.FlatData.StatTransType StatTransType_ { get; set; }
|
||||||
|
|
||||||
public CharacterStatsTransExcelT() {
|
public CharacterStatsTransExcelT() {
|
||||||
this.TransSupportStats = SCHALE.Common.FlatData.StatType.None;
|
this.TransSupportStats = SCHALE.Common.FlatData.StatType.None_;
|
||||||
this.EchelonExtensionType_ = SCHALE.Common.FlatData.EchelonExtensionType.Base;
|
this.EchelonExtensionType_ = SCHALE.Common.FlatData.EchelonExtensionType.Base;
|
||||||
this.TransSupportStatsFactor = 0;
|
this.TransSupportStatsFactor = 0;
|
||||||
this.StatTransType_ = SCHALE.Common.FlatData.StatTransType.SpecialTransStat;
|
this.StatTransType_ = SCHALE.Common.FlatData.StatTransType.SpecialTransStat;
|
||||||
|
|
|
@ -20,14 +20,14 @@ public struct CharacterWeaponExpBonusExcel : IFlatbufferObject
|
||||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
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 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 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 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 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 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,
|
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 WeaponExpGrowthA = 0,
|
||||||
int WeaponExpGrowthB = 0,
|
int WeaponExpGrowthB = 0,
|
||||||
int WeaponExpGrowthC = 0,
|
int WeaponExpGrowthC = 0,
|
||||||
|
@ -85,7 +85,7 @@ public class CharacterWeaponExpBonusExcelT
|
||||||
public int WeaponExpGrowthZ { get; set; }
|
public int WeaponExpGrowthZ { get; set; }
|
||||||
|
|
||||||
public CharacterWeaponExpBonusExcelT() {
|
public CharacterWeaponExpBonusExcelT() {
|
||||||
this.WeaponType_ = SCHALE.Common.FlatData.WeaponType.None;
|
this.WeaponType_ = SCHALE.Common.FlatData.WeaponType.None_;
|
||||||
this.WeaponExpGrowthA = 0;
|
this.WeaponExpGrowthA = 0;
|
||||||
this.WeaponExpGrowthB = 0;
|
this.WeaponExpGrowthB = 0;
|
||||||
this.WeaponExpGrowthC = 0;
|
this.WeaponExpGrowthC = 0;
|
||||||
|
|
|
@ -21,7 +21,7 @@ public struct ClanAssistSlotExcel : IFlatbufferObject
|
||||||
public ClanAssistSlotExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
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 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 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 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; } }
|
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,
|
public static Offset<SCHALE.Common.FlatData.ClanAssistSlotExcel> CreateClanAssistSlotExcel(FlatBufferBuilder builder,
|
||||||
long SlotId = 0,
|
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 SlotNumber = 0,
|
||||||
long AssistTermRewardPeriodFromSec = 0,
|
long AssistTermRewardPeriodFromSec = 0,
|
||||||
long AssistRewardLimit = 0,
|
long AssistRewardLimit = 0,
|
||||||
|
@ -107,7 +107,7 @@ public class ClanAssistSlotExcelT
|
||||||
|
|
||||||
public ClanAssistSlotExcelT() {
|
public ClanAssistSlotExcelT() {
|
||||||
this.SlotId = 0;
|
this.SlotId = 0;
|
||||||
this.EchelonType_ = SCHALE.Common.FlatData.EchelonType.None;
|
this.EchelonType_ = SCHALE.Common.FlatData.EchelonType.None_;
|
||||||
this.SlotNumber = 0;
|
this.SlotNumber = 0;
|
||||||
this.AssistTermRewardPeriodFromSec = 0;
|
this.AssistTermRewardPeriodFromSec = 0;
|
||||||
this.AssistRewardLimit = 0;
|
this.AssistRewardLimit = 0;
|
||||||
|
|
|
@ -1,88 +0,0 @@
|
||||||
// <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;
|
|
||||||
using global::SCHALE.Common.Crypto;
|
|
||||||
using global::Google.FlatBuffers;
|
|
||||||
|
|
||||||
public struct ClanAssistSlotExcelTable : IFlatbufferObject
|
|
||||||
{
|
|
||||||
private Table __p;
|
|
||||||
public ByteBuffer ByteBuffer { get { return __p.bb; } }
|
|
||||||
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_24_3_25(); }
|
|
||||||
public static ClanAssistSlotExcelTable GetRootAsClanAssistSlotExcelTable(ByteBuffer _bb) { return GetRootAsClanAssistSlotExcelTable(_bb, new ClanAssistSlotExcelTable()); }
|
|
||||||
public static ClanAssistSlotExcelTable GetRootAsClanAssistSlotExcelTable(ByteBuffer _bb, ClanAssistSlotExcelTable obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
|
|
||||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
|
||||||
public ClanAssistSlotExcelTable __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
|
||||||
|
|
||||||
public SCHALE.Common.FlatData.ClanAssistSlotExcel? DataList(int j) { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.ClanAssistSlotExcel?)(new SCHALE.Common.FlatData.ClanAssistSlotExcel()).__assign(__p.__indirect(__p.__vector(o) + j * 4), __p.bb) : null; }
|
|
||||||
public int DataListLength { get { int o = __p.__offset(4); return o != 0 ? __p.__vector_len(o) : 0; } }
|
|
||||||
|
|
||||||
public static Offset<SCHALE.Common.FlatData.ClanAssistSlotExcelTable> CreateClanAssistSlotExcelTable(FlatBufferBuilder builder,
|
|
||||||
VectorOffset DataListOffset = default(VectorOffset)) {
|
|
||||||
builder.StartTable(1);
|
|
||||||
ClanAssistSlotExcelTable.AddDataList(builder, DataListOffset);
|
|
||||||
return ClanAssistSlotExcelTable.EndClanAssistSlotExcelTable(builder);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void StartClanAssistSlotExcelTable(FlatBufferBuilder builder) { builder.StartTable(1); }
|
|
||||||
public static void AddDataList(FlatBufferBuilder builder, VectorOffset dataListOffset) { builder.AddOffset(0, dataListOffset.Value, 0); }
|
|
||||||
public static VectorOffset CreateDataListVector(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.ClanAssistSlotExcel>[] data) { builder.StartVector(4, data.Length, 4); for (int i = data.Length - 1; i >= 0; i--) builder.AddOffset(data[i].Value); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.ClanAssistSlotExcel>[] data) { builder.StartVector(4, data.Length, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, ArraySegment<Offset<SCHALE.Common.FlatData.ClanAssistSlotExcel>> data) { builder.StartVector(4, data.Count, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<Offset<SCHALE.Common.FlatData.ClanAssistSlotExcel>>(dataPtr, sizeInBytes); return builder.EndVector(); }
|
|
||||||
public static void StartDataListVector(FlatBufferBuilder builder, int numElems) { builder.StartVector(4, numElems, 4); }
|
|
||||||
public static Offset<SCHALE.Common.FlatData.ClanAssistSlotExcelTable> EndClanAssistSlotExcelTable(FlatBufferBuilder builder) {
|
|
||||||
int o = builder.EndTable();
|
|
||||||
return new Offset<SCHALE.Common.FlatData.ClanAssistSlotExcelTable>(o);
|
|
||||||
}
|
|
||||||
public ClanAssistSlotExcelTableT UnPack() {
|
|
||||||
var _o = new ClanAssistSlotExcelTableT();
|
|
||||||
this.UnPackTo(_o);
|
|
||||||
return _o;
|
|
||||||
}
|
|
||||||
public void UnPackTo(ClanAssistSlotExcelTableT _o) {
|
|
||||||
byte[] key = TableEncryptionService.CreateKey("ClanAssistSlotExcel");
|
|
||||||
_o.DataList = new List<SCHALE.Common.FlatData.ClanAssistSlotExcelT>();
|
|
||||||
for (var _j = 0; _j < this.DataListLength; ++_j) {_o.DataList.Add(this.DataList(_j).HasValue ? this.DataList(_j).Value.UnPack() : null);}
|
|
||||||
}
|
|
||||||
public static Offset<SCHALE.Common.FlatData.ClanAssistSlotExcelTable> Pack(FlatBufferBuilder builder, ClanAssistSlotExcelTableT _o) {
|
|
||||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.ClanAssistSlotExcelTable>);
|
|
||||||
var _DataList = default(VectorOffset);
|
|
||||||
if (_o.DataList != null) {
|
|
||||||
var __DataList = new Offset<SCHALE.Common.FlatData.ClanAssistSlotExcel>[_o.DataList.Count];
|
|
||||||
for (var _j = 0; _j < __DataList.Length; ++_j) { __DataList[_j] = SCHALE.Common.FlatData.ClanAssistSlotExcel.Pack(builder, _o.DataList[_j]); }
|
|
||||||
_DataList = CreateDataListVector(builder, __DataList);
|
|
||||||
}
|
|
||||||
return CreateClanAssistSlotExcelTable(
|
|
||||||
builder,
|
|
||||||
_DataList);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public class ClanAssistSlotExcelTableT
|
|
||||||
{
|
|
||||||
public List<SCHALE.Common.FlatData.ClanAssistSlotExcelT> DataList { get; set; }
|
|
||||||
|
|
||||||
public ClanAssistSlotExcelTableT() {
|
|
||||||
this.DataList = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static public class ClanAssistSlotExcelTableVerify
|
|
||||||
{
|
|
||||||
static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos)
|
|
||||||
{
|
|
||||||
return verifier.VerifyTableStart(tablePos)
|
|
||||||
&& verifier.VerifyVectorOfTables(tablePos, 4 /*DataList*/, SCHALE.Common.FlatData.ClanAssistSlotExcelVerify.Verify, false)
|
|
||||||
&& verifier.VerifyTableEnd(tablePos);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -20,16 +20,16 @@ public struct ClanRewardExcel : IFlatbufferObject
|
||||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
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 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.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.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.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 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 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,
|
public static Offset<SCHALE.Common.FlatData.ClanRewardExcel> CreateClanRewardExcel(FlatBufferBuilder builder,
|
||||||
SCHALE.Common.FlatData.ClanRewardType ClanRewardType_ = SCHALE.Common.FlatData.ClanRewardType.None,
|
SCHALE.Common.FlatData.ClanRewardType ClanRewardType_ = SCHALE.Common.FlatData.ClanRewardType.None_,
|
||||||
SCHALE.Common.FlatData.EchelonType EchelonType_ = SCHALE.Common.FlatData.EchelonType.None,
|
SCHALE.Common.FlatData.EchelonType EchelonType_ = SCHALE.Common.FlatData.EchelonType.None_,
|
||||||
SCHALE.Common.FlatData.ParcelType RewardParcelType = SCHALE.Common.FlatData.ParcelType.None,
|
SCHALE.Common.FlatData.ParcelType RewardParcelType = SCHALE.Common.FlatData.ParcelType.None_,
|
||||||
long RewardParcelId = 0,
|
long RewardParcelId = 0,
|
||||||
long RewardParcelAmount = 0) {
|
long RewardParcelAmount = 0) {
|
||||||
builder.StartTable(5);
|
builder.StartTable(5);
|
||||||
|
@ -85,9 +85,9 @@ public class ClanRewardExcelT
|
||||||
public long RewardParcelAmount { get; set; }
|
public long RewardParcelAmount { get; set; }
|
||||||
|
|
||||||
public ClanRewardExcelT() {
|
public ClanRewardExcelT() {
|
||||||
this.ClanRewardType_ = SCHALE.Common.FlatData.ClanRewardType.None;
|
this.ClanRewardType_ = SCHALE.Common.FlatData.ClanRewardType.None_;
|
||||||
this.EchelonType_ = SCHALE.Common.FlatData.EchelonType.None;
|
this.EchelonType_ = SCHALE.Common.FlatData.EchelonType.None_;
|
||||||
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.RewardParcelId = 0;
|
this.RewardParcelId = 0;
|
||||||
this.RewardParcelAmount = 0;
|
this.RewardParcelAmount = 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,88 +0,0 @@
|
||||||
// <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;
|
|
||||||
using global::SCHALE.Common.Crypto;
|
|
||||||
using global::Google.FlatBuffers;
|
|
||||||
|
|
||||||
public struct ClanRewardExcelTable : IFlatbufferObject
|
|
||||||
{
|
|
||||||
private Table __p;
|
|
||||||
public ByteBuffer ByteBuffer { get { return __p.bb; } }
|
|
||||||
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_24_3_25(); }
|
|
||||||
public static ClanRewardExcelTable GetRootAsClanRewardExcelTable(ByteBuffer _bb) { return GetRootAsClanRewardExcelTable(_bb, new ClanRewardExcelTable()); }
|
|
||||||
public static ClanRewardExcelTable GetRootAsClanRewardExcelTable(ByteBuffer _bb, ClanRewardExcelTable obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
|
|
||||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
|
||||||
public ClanRewardExcelTable __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
|
||||||
|
|
||||||
public SCHALE.Common.FlatData.ClanRewardExcel? DataList(int j) { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.ClanRewardExcel?)(new SCHALE.Common.FlatData.ClanRewardExcel()).__assign(__p.__indirect(__p.__vector(o) + j * 4), __p.bb) : null; }
|
|
||||||
public int DataListLength { get { int o = __p.__offset(4); return o != 0 ? __p.__vector_len(o) : 0; } }
|
|
||||||
|
|
||||||
public static Offset<SCHALE.Common.FlatData.ClanRewardExcelTable> CreateClanRewardExcelTable(FlatBufferBuilder builder,
|
|
||||||
VectorOffset DataListOffset = default(VectorOffset)) {
|
|
||||||
builder.StartTable(1);
|
|
||||||
ClanRewardExcelTable.AddDataList(builder, DataListOffset);
|
|
||||||
return ClanRewardExcelTable.EndClanRewardExcelTable(builder);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void StartClanRewardExcelTable(FlatBufferBuilder builder) { builder.StartTable(1); }
|
|
||||||
public static void AddDataList(FlatBufferBuilder builder, VectorOffset dataListOffset) { builder.AddOffset(0, dataListOffset.Value, 0); }
|
|
||||||
public static VectorOffset CreateDataListVector(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.ClanRewardExcel>[] data) { builder.StartVector(4, data.Length, 4); for (int i = data.Length - 1; i >= 0; i--) builder.AddOffset(data[i].Value); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.ClanRewardExcel>[] data) { builder.StartVector(4, data.Length, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, ArraySegment<Offset<SCHALE.Common.FlatData.ClanRewardExcel>> data) { builder.StartVector(4, data.Count, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<Offset<SCHALE.Common.FlatData.ClanRewardExcel>>(dataPtr, sizeInBytes); return builder.EndVector(); }
|
|
||||||
public static void StartDataListVector(FlatBufferBuilder builder, int numElems) { builder.StartVector(4, numElems, 4); }
|
|
||||||
public static Offset<SCHALE.Common.FlatData.ClanRewardExcelTable> EndClanRewardExcelTable(FlatBufferBuilder builder) {
|
|
||||||
int o = builder.EndTable();
|
|
||||||
return new Offset<SCHALE.Common.FlatData.ClanRewardExcelTable>(o);
|
|
||||||
}
|
|
||||||
public ClanRewardExcelTableT UnPack() {
|
|
||||||
var _o = new ClanRewardExcelTableT();
|
|
||||||
this.UnPackTo(_o);
|
|
||||||
return _o;
|
|
||||||
}
|
|
||||||
public void UnPackTo(ClanRewardExcelTableT _o) {
|
|
||||||
byte[] key = TableEncryptionService.CreateKey("ClanRewardExcel");
|
|
||||||
_o.DataList = new List<SCHALE.Common.FlatData.ClanRewardExcelT>();
|
|
||||||
for (var _j = 0; _j < this.DataListLength; ++_j) {_o.DataList.Add(this.DataList(_j).HasValue ? this.DataList(_j).Value.UnPack() : null);}
|
|
||||||
}
|
|
||||||
public static Offset<SCHALE.Common.FlatData.ClanRewardExcelTable> Pack(FlatBufferBuilder builder, ClanRewardExcelTableT _o) {
|
|
||||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.ClanRewardExcelTable>);
|
|
||||||
var _DataList = default(VectorOffset);
|
|
||||||
if (_o.DataList != null) {
|
|
||||||
var __DataList = new Offset<SCHALE.Common.FlatData.ClanRewardExcel>[_o.DataList.Count];
|
|
||||||
for (var _j = 0; _j < __DataList.Length; ++_j) { __DataList[_j] = SCHALE.Common.FlatData.ClanRewardExcel.Pack(builder, _o.DataList[_j]); }
|
|
||||||
_DataList = CreateDataListVector(builder, __DataList);
|
|
||||||
}
|
|
||||||
return CreateClanRewardExcelTable(
|
|
||||||
builder,
|
|
||||||
_DataList);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public class ClanRewardExcelTableT
|
|
||||||
{
|
|
||||||
public List<SCHALE.Common.FlatData.ClanRewardExcelT> DataList { get; set; }
|
|
||||||
|
|
||||||
public ClanRewardExcelTableT() {
|
|
||||||
this.DataList = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static public class ClanRewardExcelTableVerify
|
|
||||||
{
|
|
||||||
static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos)
|
|
||||||
{
|
|
||||||
return verifier.VerifyTableStart(tablePos)
|
|
||||||
&& verifier.VerifyVectorOfTables(tablePos, 4 /*DataList*/, SCHALE.Common.FlatData.ClanRewardExcelVerify.Verify, false)
|
|
||||||
&& verifier.VerifyTableEnd(tablePos);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum ClanRewardType : int
|
public enum ClanRewardType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
AssistTerm = 1,
|
AssistTerm = 1,
|
||||||
AssistRent = 2,
|
AssistRent = 2,
|
||||||
Attendance = 3,
|
Attendance = 3,
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum ClanSocialGrade : int
|
public enum ClanSocialGrade : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
President = 1,
|
President = 1,
|
||||||
Manager = 2,
|
Manager = 2,
|
||||||
Member = 3,
|
Member = 3,
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum ClearCheck : int
|
public enum ClearCheck : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Success_Play = 1,
|
Success_Play = 1,
|
||||||
Success_Sweep = 2,
|
Success_Sweep = 2,
|
||||||
Fail_Timeout = 3,
|
Fail_Timeout = 3,
|
||||||
|
|
|
@ -20,11 +20,11 @@ public struct ClearDeckRuleExcel : IFlatbufferObject
|
||||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
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 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 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,
|
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) {
|
long SizeLimit = 0) {
|
||||||
builder.StartTable(2);
|
builder.StartTable(2);
|
||||||
ClearDeckRuleExcel.AddSizeLimit(builder, SizeLimit);
|
ClearDeckRuleExcel.AddSizeLimit(builder, SizeLimit);
|
||||||
|
@ -64,7 +64,7 @@ public class ClearDeckRuleExcelT
|
||||||
public long SizeLimit { get; set; }
|
public long SizeLimit { get; set; }
|
||||||
|
|
||||||
public ClearDeckRuleExcelT() {
|
public ClearDeckRuleExcelT() {
|
||||||
this.ContentType_ = SCHALE.Common.FlatData.ContentType.None;
|
this.ContentType_ = SCHALE.Common.FlatData.ContentType.None_;
|
||||||
this.SizeLimit = 0;
|
this.SizeLimit = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum Club : int
|
public enum Club : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Engineer = 1,
|
Engineer = 1,
|
||||||
CleanNClearing = 2,
|
CleanNClearing = 2,
|
||||||
KnightsHospitaller = 3,
|
KnightsHospitaller = 3,
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum CollectionUnlockType : int
|
public enum CollectionUnlockType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
ClearSpecificEventStage = 1,
|
ClearSpecificEventStage = 1,
|
||||||
ClearSpecificEventScenario = 2,
|
ClearSpecificEventScenario = 2,
|
||||||
ClearSpecificEventMission = 3,
|
ClearSpecificEventMission = 3,
|
||||||
|
|
|
@ -21,13 +21,13 @@ public struct ConquestCalculateExcel : IFlatbufferObject
|
||||||
public ConquestCalculateExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
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 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 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 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,
|
public static Offset<SCHALE.Common.FlatData.ConquestCalculateExcel> CreateConquestCalculateExcel(FlatBufferBuilder builder,
|
||||||
long EventContentId = 0,
|
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 CalculateConditionParcelUniqueId = 0,
|
||||||
long CalculateConditionParcelAmount = 0) {
|
long CalculateConditionParcelAmount = 0) {
|
||||||
builder.StartTable(4);
|
builder.StartTable(4);
|
||||||
|
@ -79,7 +79,7 @@ public class ConquestCalculateExcelT
|
||||||
|
|
||||||
public ConquestCalculateExcelT() {
|
public ConquestCalculateExcelT() {
|
||||||
this.EventContentId = 0;
|
this.EventContentId = 0;
|
||||||
this.CalculateConditionParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
this.CalculateConditionParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.CalculateConditionParcelUniqueId = 0;
|
this.CalculateConditionParcelUniqueId = 0;
|
||||||
this.CalculateConditionParcelAmount = 0;
|
this.CalculateConditionParcelAmount = 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum ConquestConditionType : int
|
public enum ConquestConditionType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
OpenDateOffset = 1,
|
OpenDateOffset = 1,
|
||||||
ItemAcquire = 2,
|
ItemAcquire = 2,
|
||||||
ParcelUse = 3,
|
ParcelUse = 3,
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum ConquestEnemyType : int
|
public enum ConquestEnemyType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Normal = 1,
|
Normal = 1,
|
||||||
MiddleBoss = 2,
|
MiddleBoss = 2,
|
||||||
Boss = 3,
|
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 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 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 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 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; } }
|
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 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 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 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 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 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; } }
|
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,
|
public static Offset<SCHALE.Common.FlatData.ConquestErosionExcel> CreateConquestErosionExcel(FlatBufferBuilder builder,
|
||||||
long EventContentId = 0,
|
long EventContentId = 0,
|
||||||
long Id = 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,
|
int Phase = 0,
|
||||||
bool PhaseAlarm = false,
|
bool PhaseAlarm = false,
|
||||||
int StepIndex = 0,
|
int StepIndex = 0,
|
||||||
|
@ -62,7 +62,7 @@ public struct ConquestErosionExcel : IFlatbufferObject
|
||||||
VectorOffset PhaseStartConditionParameterOffset = default(VectorOffset),
|
VectorOffset PhaseStartConditionParameterOffset = default(VectorOffset),
|
||||||
VectorOffset PhaseBeforeExposeConditionTypeOffset = default(VectorOffset),
|
VectorOffset PhaseBeforeExposeConditionTypeOffset = default(VectorOffset),
|
||||||
VectorOffset PhaseBeforeExposeConditionParameterOffset = 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 ErosionBattleConditionParcelUniqueId = 0,
|
||||||
long ErosionBattleConditionParcelAmount = 0,
|
long ErosionBattleConditionParcelAmount = 0,
|
||||||
long ConquestRewardId = 0) {
|
long ConquestRewardId = 0) {
|
||||||
|
@ -212,7 +212,7 @@ public class ConquestErosionExcelT
|
||||||
public ConquestErosionExcelT() {
|
public ConquestErosionExcelT() {
|
||||||
this.EventContentId = 0;
|
this.EventContentId = 0;
|
||||||
this.Id = 0;
|
this.Id = 0;
|
||||||
this.ErosionType = SCHALE.Common.FlatData.ConquestErosionType.None;
|
this.ErosionType = SCHALE.Common.FlatData.ConquestErosionType.None_;
|
||||||
this.Phase = 0;
|
this.Phase = 0;
|
||||||
this.PhaseAlarm = false;
|
this.PhaseAlarm = false;
|
||||||
this.StepIndex = 0;
|
this.StepIndex = 0;
|
||||||
|
@ -220,7 +220,7 @@ public class ConquestErosionExcelT
|
||||||
this.PhaseStartConditionParameter = null;
|
this.PhaseStartConditionParameter = null;
|
||||||
this.PhaseBeforeExposeConditionType = null;
|
this.PhaseBeforeExposeConditionType = null;
|
||||||
this.PhaseBeforeExposeConditionParameter = null;
|
this.PhaseBeforeExposeConditionParameter = null;
|
||||||
this.ErosionBattleConditionParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
this.ErosionBattleConditionParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.ErosionBattleConditionParcelUniqueId = 0;
|
this.ErosionBattleConditionParcelUniqueId = 0;
|
||||||
this.ErosionBattleConditionParcelAmount = 0;
|
this.ErosionBattleConditionParcelAmount = 0;
|
||||||
this.ConquestRewardId = 0;
|
this.ConquestRewardId = 0;
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum ConquestErosionType : int
|
public enum ConquestErosionType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
IndividualErosion = 1,
|
IndividualErosion = 1,
|
||||||
MassErosion = 2,
|
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 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 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 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 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; } }
|
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,
|
public static Offset<SCHALE.Common.FlatData.ConquestEventExcel> CreateConquestEventExcel(FlatBufferBuilder builder,
|
||||||
long EventContentId = 0,
|
long EventContentId = 0,
|
||||||
long MainStoryEventContentId = 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 UseErosion = false,
|
||||||
bool UseUnexpectedEvent = false,
|
bool UseUnexpectedEvent = false,
|
||||||
bool UseCalculate = false,
|
bool UseCalculate = false,
|
||||||
|
@ -311,7 +311,7 @@ public class ConquestEventExcelT
|
||||||
public ConquestEventExcelT() {
|
public ConquestEventExcelT() {
|
||||||
this.EventContentId = 0;
|
this.EventContentId = 0;
|
||||||
this.MainStoryEventContentId = 0;
|
this.MainStoryEventContentId = 0;
|
||||||
this.ConquestEventType_ = SCHALE.Common.FlatData.ConquestEventType.None;
|
this.ConquestEventType_ = SCHALE.Common.FlatData.ConquestEventType.None_;
|
||||||
this.UseErosion = false;
|
this.UseErosion = false;
|
||||||
this.UseUnexpectedEvent = false;
|
this.UseUnexpectedEvent = false;
|
||||||
this.UseCalculate = false;
|
this.UseCalculate = false;
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum ConquestEventType : int
|
public enum ConquestEventType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Event01 = 1,
|
Event01 = 1,
|
||||||
Event02 = 2,
|
Event02 = 2,
|
||||||
};
|
};
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum ConquestItemType : int
|
public enum ConquestItemType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
EventPoint = 1,
|
EventPoint = 1,
|
||||||
EventToken1 = 2,
|
EventToken1 = 2,
|
||||||
EventToken2 = 3,
|
EventToken2 = 3,
|
||||||
|
|
|
@ -28,7 +28,7 @@ public struct ConquestMapExcel : IFlatbufferObject
|
||||||
public ArraySegment<byte>? GetDevNameBytes() { return __p.__vector_as_arraysegment(6); }
|
public ArraySegment<byte>? GetDevNameBytes() { return __p.__vector_as_arraysegment(6); }
|
||||||
#endif
|
#endif
|
||||||
public byte[] GetDevNameArray() { return __p.__vector_as_array<byte>(6); }
|
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 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; } }
|
public string ConquestMap { get { int o = __p.__offset(12); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
|
@ -81,7 +81,7 @@ public struct ConquestMapExcel : IFlatbufferObject
|
||||||
public static Offset<SCHALE.Common.FlatData.ConquestMapExcel> CreateConquestMapExcel(FlatBufferBuilder builder,
|
public static Offset<SCHALE.Common.FlatData.ConquestMapExcel> CreateConquestMapExcel(FlatBufferBuilder builder,
|
||||||
long EventContentId = 0,
|
long EventContentId = 0,
|
||||||
StringOffset DevNameOffset = default(StringOffset),
|
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,
|
int StepIndex = 0,
|
||||||
StringOffset ConquestMapOffset = default(StringOffset),
|
StringOffset ConquestMapOffset = default(StringOffset),
|
||||||
long StepEnterScenarioGroupId = 0,
|
long StepEnterScenarioGroupId = 0,
|
||||||
|
@ -216,7 +216,7 @@ public class ConquestMapExcelT
|
||||||
public ConquestMapExcelT() {
|
public ConquestMapExcelT() {
|
||||||
this.EventContentId = 0;
|
this.EventContentId = 0;
|
||||||
this.DevName = null;
|
this.DevName = null;
|
||||||
this.MapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None;
|
this.MapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None_;
|
||||||
this.StepIndex = 0;
|
this.StepIndex = 0;
|
||||||
this.ConquestMap = null;
|
this.ConquestMap = null;
|
||||||
this.StepEnterScenarioGroupId = 0;
|
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 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 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 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; } }
|
public string Name { get { int o = __p.__offset(12); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
|
@ -38,7 +38,7 @@ public struct ConquestObjectExcel : IFlatbufferObject
|
||||||
public ArraySegment<byte>? GetPrefabNameBytes() { return __p.__vector_as_arraysegment(14); }
|
public ArraySegment<byte>? GetPrefabNameBytes() { return __p.__vector_as_arraysegment(14); }
|
||||||
#endif
|
#endif
|
||||||
public byte[] GetPrefabNameArray() { return __p.__vector_as_array<byte>(14); }
|
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 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 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; } }
|
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,
|
public static Offset<SCHALE.Common.FlatData.ConquestObjectExcel> CreateConquestObjectExcel(FlatBufferBuilder builder,
|
||||||
long Id = 0,
|
long Id = 0,
|
||||||
long EventContentId = 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,
|
uint Key = 0,
|
||||||
StringOffset NameOffset = default(StringOffset),
|
StringOffset NameOffset = default(StringOffset),
|
||||||
StringOffset PrefabNameOffset = 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,
|
long ConquestRewardID = 0,
|
||||||
int ConquestRewardAmount = 0,
|
int ConquestRewardAmount = 0,
|
||||||
bool Disposable = false,
|
bool Disposable = false,
|
||||||
|
@ -150,11 +150,11 @@ public class ConquestObjectExcelT
|
||||||
public ConquestObjectExcelT() {
|
public ConquestObjectExcelT() {
|
||||||
this.Id = 0;
|
this.Id = 0;
|
||||||
this.EventContentId = 0;
|
this.EventContentId = 0;
|
||||||
this.ConquestObjectType_ = SCHALE.Common.FlatData.ConquestObjectType.None;
|
this.ConquestObjectType_ = SCHALE.Common.FlatData.ConquestObjectType.None_;
|
||||||
this.Key = 0;
|
this.Key = 0;
|
||||||
this.Name = null;
|
this.Name = null;
|
||||||
this.PrefabName = null;
|
this.PrefabName = null;
|
||||||
this.ConquestRewardParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
this.ConquestRewardParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.ConquestRewardID = 0;
|
this.ConquestRewardID = 0;
|
||||||
this.ConquestRewardAmount = 0;
|
this.ConquestRewardAmount = 0;
|
||||||
this.Disposable = false;
|
this.Disposable = false;
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum ConquestObjectType : int
|
public enum ConquestObjectType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
ParcelOneTimePerAccount = 1,
|
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 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 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; } }
|
public string ProgressResource { get { int o = __p.__offset(10); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
public Span<byte> GetProgressResourceBytes() { return __p.__vector_as_span<byte>(10, 1); }
|
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,
|
public static Offset<SCHALE.Common.FlatData.ConquestProgressResourceExcel> CreateConquestProgressResourceExcel(FlatBufferBuilder builder,
|
||||||
long Id = 0,
|
long Id = 0,
|
||||||
long EventContentId = 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),
|
StringOffset ProgressResourceOffset = default(StringOffset),
|
||||||
VectorOffset VoiceIdOffset = default(VectorOffset),
|
VectorOffset VoiceIdOffset = default(VectorOffset),
|
||||||
StringOffset ProgressLocalizeCodeOffset = default(StringOffset)) {
|
StringOffset ProgressLocalizeCodeOffset = default(StringOffset)) {
|
||||||
|
@ -126,7 +126,7 @@ public class ConquestProgressResourceExcelT
|
||||||
public ConquestProgressResourceExcelT() {
|
public ConquestProgressResourceExcelT() {
|
||||||
this.Id = 0;
|
this.Id = 0;
|
||||||
this.EventContentId = 0;
|
this.EventContentId = 0;
|
||||||
this.Group = SCHALE.Common.FlatData.ConquestProgressType.None;
|
this.Group = SCHALE.Common.FlatData.ConquestProgressType.None_;
|
||||||
this.ProgressResource = null;
|
this.ProgressResource = null;
|
||||||
this.VoiceId = null;
|
this.VoiceId = null;
|
||||||
this.ProgressLocalizeCode = null;
|
this.ProgressLocalizeCode = null;
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum ConquestProgressType : int
|
public enum ConquestProgressType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Upgrade = 1,
|
Upgrade = 1,
|
||||||
Manage = 2,
|
Manage = 2,
|
||||||
};
|
};
|
||||||
|
|
|
@ -23,7 +23,7 @@ public struct ConquestRewardExcel : IFlatbufferObject
|
||||||
public long GroupId { get { int o = __p.__offset(4); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
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 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 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 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 bool IsDisplayed { get { int o = __p.__offset(16); return o != 0 ? 0!=__p.bb.Get(o + __p.bb_pos) : (bool)false; } }
|
||||||
|
@ -32,7 +32,7 @@ public struct ConquestRewardExcel : IFlatbufferObject
|
||||||
long GroupId = 0,
|
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,
|
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,
|
long RewardId = 0,
|
||||||
int RewardAmount = 0,
|
int RewardAmount = 0,
|
||||||
bool IsDisplayed = false) {
|
bool IsDisplayed = false) {
|
||||||
|
@ -102,7 +102,7 @@ public class ConquestRewardExcelT
|
||||||
this.GroupId = 0;
|
this.GroupId = 0;
|
||||||
this.RewardTag_ = SCHALE.Common.FlatData.RewardTag.Default;
|
this.RewardTag_ = SCHALE.Common.FlatData.RewardTag.Default;
|
||||||
this.RewardProb = 0;
|
this.RewardProb = 0;
|
||||||
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
this.RewardParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.RewardId = 0;
|
this.RewardId = 0;
|
||||||
this.RewardAmount = 0;
|
this.RewardAmount = 0;
|
||||||
this.IsDisplayed = false;
|
this.IsDisplayed = false;
|
||||||
|
|
|
@ -21,7 +21,7 @@ public struct ConquestStepExcel : IFlatbufferObject
|
||||||
public ConquestStepExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
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 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 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; } }
|
public string StepGoalLocalize { get { int o = __p.__offset(10); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
|
@ -31,7 +31,7 @@ public struct ConquestStepExcel : IFlatbufferObject
|
||||||
#endif
|
#endif
|
||||||
public byte[] GetStepGoalLocalizeArray() { return __p.__vector_as_array<byte>(10); }
|
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 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 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 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; }
|
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,
|
public static Offset<SCHALE.Common.FlatData.ConquestStepExcel> CreateConquestStepExcel(FlatBufferBuilder builder,
|
||||||
long EventContentId = 0,
|
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,
|
int Step = 0,
|
||||||
StringOffset StepGoalLocalizeOffset = default(StringOffset),
|
StringOffset StepGoalLocalizeOffset = default(StringOffset),
|
||||||
long StepEnterScenarioGroupId = 0,
|
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 StepEnterItemUniqueId = 0,
|
||||||
long StepEnterItemAmount = 0,
|
long StepEnterItemAmount = 0,
|
||||||
VectorOffset UnexpectedEventUnitIdOffset = default(VectorOffset),
|
VectorOffset UnexpectedEventUnitIdOffset = default(VectorOffset),
|
||||||
|
@ -167,11 +167,11 @@ public class ConquestStepExcelT
|
||||||
|
|
||||||
public ConquestStepExcelT() {
|
public ConquestStepExcelT() {
|
||||||
this.EventContentId = 0;
|
this.EventContentId = 0;
|
||||||
this.MapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None;
|
this.MapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None_;
|
||||||
this.Step = 0;
|
this.Step = 0;
|
||||||
this.StepGoalLocalize = null;
|
this.StepGoalLocalize = null;
|
||||||
this.StepEnterScenarioGroupId = 0;
|
this.StepEnterScenarioGroupId = 0;
|
||||||
this.StepEnterItemType = SCHALE.Common.FlatData.ParcelType.None;
|
this.StepEnterItemType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.StepEnterItemUniqueId = 0;
|
this.StepEnterItemUniqueId = 0;
|
||||||
this.StepEnterItemAmount = 0;
|
this.StepEnterItemAmount = 0;
|
||||||
this.UnexpectedEventUnitId = null;
|
this.UnexpectedEventUnitId = null;
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum ConquestTeamType : int
|
public enum ConquestTeamType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Team1 = 1,
|
Team1 = 1,
|
||||||
Team2 = 2,
|
Team2 = 2,
|
||||||
Team3 = 3,
|
Team3 = 3,
|
||||||
|
|
|
@ -52,21 +52,21 @@ public struct ConquestTileExcel : IFlatbufferObject
|
||||||
#endif
|
#endif
|
||||||
public byte[] GetTileImageNameArray() { return __p.__vector_as_array<byte>(16); }
|
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 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 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 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 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 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 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 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 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 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 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 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 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; } }
|
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 TileNameLocalizeOffset = default(StringOffset),
|
||||||
StringOffset TileImageNameOffset = default(StringOffset),
|
StringOffset TileImageNameOffset = default(StringOffset),
|
||||||
bool Playable = false,
|
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,
|
bool NotMapFog = false,
|
||||||
long GroupBonusId = 0,
|
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,
|
long ConquestCostId = 0,
|
||||||
int ConquestCostAmount = 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,
|
long ManageCostId = 0,
|
||||||
int ManageCostAmount = 0,
|
int ManageCostAmount = 0,
|
||||||
long ConquestRewardId = 0,
|
long ConquestRewardId = 0,
|
||||||
long MassErosionId = 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,
|
long Upgrade2CostId = 0,
|
||||||
int Upgrade2CostAmount = 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,
|
long Upgrade3CostId = 0,
|
||||||
int Upgrade3CostAmount = 0) {
|
int Upgrade3CostAmount = 0) {
|
||||||
builder.StartTable(25);
|
builder.StartTable(25);
|
||||||
|
@ -261,21 +261,21 @@ public class ConquestTileExcelT
|
||||||
this.TileNameLocalize = null;
|
this.TileNameLocalize = null;
|
||||||
this.TileImageName = null;
|
this.TileImageName = null;
|
||||||
this.Playable = false;
|
this.Playable = false;
|
||||||
this.TileType = SCHALE.Common.FlatData.ConquestTileType.None;
|
this.TileType = SCHALE.Common.FlatData.ConquestTileType.None_;
|
||||||
this.NotMapFog = false;
|
this.NotMapFog = false;
|
||||||
this.GroupBonusId = 0;
|
this.GroupBonusId = 0;
|
||||||
this.ConquestCostType = SCHALE.Common.FlatData.ParcelType.None;
|
this.ConquestCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.ConquestCostId = 0;
|
this.ConquestCostId = 0;
|
||||||
this.ConquestCostAmount = 0;
|
this.ConquestCostAmount = 0;
|
||||||
this.ManageCostType = SCHALE.Common.FlatData.ParcelType.None;
|
this.ManageCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.ManageCostId = 0;
|
this.ManageCostId = 0;
|
||||||
this.ManageCostAmount = 0;
|
this.ManageCostAmount = 0;
|
||||||
this.ConquestRewardId = 0;
|
this.ConquestRewardId = 0;
|
||||||
this.MassErosionId = 0;
|
this.MassErosionId = 0;
|
||||||
this.Upgrade2CostType = SCHALE.Common.FlatData.ParcelType.None;
|
this.Upgrade2CostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.Upgrade2CostId = 0;
|
this.Upgrade2CostId = 0;
|
||||||
this.Upgrade2CostAmount = 0;
|
this.Upgrade2CostAmount = 0;
|
||||||
this.Upgrade3CostType = SCHALE.Common.FlatData.ParcelType.None;
|
this.Upgrade3CostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.Upgrade3CostId = 0;
|
this.Upgrade3CostId = 0;
|
||||||
this.Upgrade3CostAmount = 0;
|
this.Upgrade3CostAmount = 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum ConquestTileType : int
|
public enum ConquestTileType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Start = 1,
|
Start = 1,
|
||||||
Normal = 2,
|
Normal = 2,
|
||||||
Battle = 3,
|
Battle = 3,
|
||||||
|
|
|
@ -21,7 +21,7 @@ public struct ConquestUnexpectedEventExcel : IFlatbufferObject
|
||||||
public ConquestUnexpectedEventExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
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 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 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 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; } }
|
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,
|
public static Offset<SCHALE.Common.FlatData.ConquestUnexpectedEventExcel> CreateConquestUnexpectedEventExcel(FlatBufferBuilder builder,
|
||||||
long EventContentId = 0,
|
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 UnexpectedEventConditionUniqueId = 0,
|
||||||
long UnexpectedEventConditionAmount = 0,
|
long UnexpectedEventConditionAmount = 0,
|
||||||
int UnexpectedEventOccurDailyLimitCount = 0,
|
int UnexpectedEventOccurDailyLimitCount = 0,
|
||||||
|
@ -138,7 +138,7 @@ public class ConquestUnexpectedEventExcelT
|
||||||
|
|
||||||
public ConquestUnexpectedEventExcelT() {
|
public ConquestUnexpectedEventExcelT() {
|
||||||
this.EventContentId = 0;
|
this.EventContentId = 0;
|
||||||
this.UnexpectedEventConditionType = SCHALE.Common.FlatData.ParcelType.None;
|
this.UnexpectedEventConditionType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.UnexpectedEventConditionUniqueId = 0;
|
this.UnexpectedEventConditionUniqueId = 0;
|
||||||
this.UnexpectedEventConditionAmount = 0;
|
this.UnexpectedEventConditionAmount = 0;
|
||||||
this.UnexpectedEventOccurDailyLimitCount = 0;
|
this.UnexpectedEventOccurDailyLimitCount = 0;
|
||||||
|
|
|
@ -59,8 +59,8 @@ public struct ConquestUnitExcel : IFlatbufferObject
|
||||||
public ArraySegment<byte>? GetPointAnimationBytes() { return __p.__vector_as_arraysegment(20); }
|
public ArraySegment<byte>? GetPointAnimationBytes() { return __p.__vector_as_arraysegment(20); }
|
||||||
#endif
|
#endif
|
||||||
public byte[] GetPointAnimationArray() { return __p.__vector_as_array<byte>(20); }
|
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.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.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 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 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; } }
|
public long BattleDuration { get { int o = __p.__offset(30); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||||
|
@ -82,10 +82,10 @@ public struct ConquestUnitExcel : IFlatbufferObject
|
||||||
#endif
|
#endif
|
||||||
public int[] GetStarGoalAmountArray() { return __p.__vector_as_array<int>(36); }
|
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 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 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 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 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 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 EnterScenarioGroupId { get { int o = __p.__offset(52); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||||
|
@ -107,8 +107,8 @@ public struct ConquestUnitExcel : IFlatbufferObject
|
||||||
float ShieldEffectScale = 0.0f,
|
float ShieldEffectScale = 0.0f,
|
||||||
StringOffset UnitFxPrefabNameOffset = default(StringOffset),
|
StringOffset UnitFxPrefabNameOffset = default(StringOffset),
|
||||||
StringOffset PointAnimationOffset = default(StringOffset),
|
StringOffset PointAnimationOffset = default(StringOffset),
|
||||||
SCHALE.Common.FlatData.ConquestEnemyType EnemyType = SCHALE.Common.FlatData.ConquestEnemyType.None,
|
SCHALE.Common.FlatData.ConquestEnemyType EnemyType = SCHALE.Common.FlatData.ConquestEnemyType.None_,
|
||||||
SCHALE.Common.FlatData.ConquestTeamType Team = SCHALE.Common.FlatData.ConquestTeamType.None,
|
SCHALE.Common.FlatData.ConquestTeamType Team = SCHALE.Common.FlatData.ConquestTeamType.None_,
|
||||||
long UnitGroup = 0,
|
long UnitGroup = 0,
|
||||||
long PrevUnitGroup = 0,
|
long PrevUnitGroup = 0,
|
||||||
long BattleDuration = 0,
|
long BattleDuration = 0,
|
||||||
|
@ -116,10 +116,10 @@ public struct ConquestUnitExcel : IFlatbufferObject
|
||||||
VectorOffset StarGoalOffset = default(VectorOffset),
|
VectorOffset StarGoalOffset = default(VectorOffset),
|
||||||
VectorOffset StarGoalAmountOffset = default(VectorOffset),
|
VectorOffset StarGoalAmountOffset = default(VectorOffset),
|
||||||
long GroupBuffId = 0,
|
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,
|
long StageEnterCostId = 0,
|
||||||
int StageEnterCostAmount = 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,
|
long ManageEchelonStageEnterCostId = 0,
|
||||||
int ManageEchelonStageEnterCostAmount = 0,
|
int ManageEchelonStageEnterCostAmount = 0,
|
||||||
long EnterScenarioGroupId = 0,
|
long EnterScenarioGroupId = 0,
|
||||||
|
@ -354,8 +354,8 @@ public class ConquestUnitExcelT
|
||||||
this.ShieldEffectScale = 0.0f;
|
this.ShieldEffectScale = 0.0f;
|
||||||
this.UnitFxPrefabName = null;
|
this.UnitFxPrefabName = null;
|
||||||
this.PointAnimation = null;
|
this.PointAnimation = null;
|
||||||
this.EnemyType = SCHALE.Common.FlatData.ConquestEnemyType.None;
|
this.EnemyType = SCHALE.Common.FlatData.ConquestEnemyType.None_;
|
||||||
this.Team = SCHALE.Common.FlatData.ConquestTeamType.None;
|
this.Team = SCHALE.Common.FlatData.ConquestTeamType.None_;
|
||||||
this.UnitGroup = 0;
|
this.UnitGroup = 0;
|
||||||
this.PrevUnitGroup = 0;
|
this.PrevUnitGroup = 0;
|
||||||
this.BattleDuration = 0;
|
this.BattleDuration = 0;
|
||||||
|
@ -363,10 +363,10 @@ public class ConquestUnitExcelT
|
||||||
this.StarGoal = null;
|
this.StarGoal = null;
|
||||||
this.StarGoalAmount = null;
|
this.StarGoalAmount = null;
|
||||||
this.GroupBuffId = 0;
|
this.GroupBuffId = 0;
|
||||||
this.StageEnterCostType = SCHALE.Common.FlatData.ParcelType.None;
|
this.StageEnterCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.StageEnterCostId = 0;
|
this.StageEnterCostId = 0;
|
||||||
this.StageEnterCostAmount = 0;
|
this.StageEnterCostAmount = 0;
|
||||||
this.ManageEchelonStageEnterCostType = SCHALE.Common.FlatData.ParcelType.None;
|
this.ManageEchelonStageEnterCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.ManageEchelonStageEnterCostId = 0;
|
this.ManageEchelonStageEnterCostId = 0;
|
||||||
this.ManageEchelonStageEnterCostAmount = 0;
|
this.ManageEchelonStageEnterCostAmount = 0;
|
||||||
this.EnterScenarioGroupId = 0;
|
this.EnterScenarioGroupId = 0;
|
||||||
|
|
|
@ -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 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 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 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 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 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; } }
|
public string DailyRewardResetTime { get { int o = __p.__offset(22); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
|
@ -125,6 +125,7 @@ public struct ConstArenaExcel : IFlatbufferObject
|
||||||
#endif
|
#endif
|
||||||
public byte[] GetShowSeasonChangeInfoEndTimeArray() { return __p.__vector_as_array<byte>(64); }
|
public byte[] GetShowSeasonChangeInfoEndTimeArray() { return __p.__vector_as_array<byte>(64); }
|
||||||
public long ShowSeasonId { get { int o = __p.__offset(66); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
public long ShowSeasonId { get { int o = __p.__offset(66); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||||
|
public int ArenaHistoryQueryLimitDays { get { int o = __p.__offset(68); return o != 0 ? __p.bb.GetInt(o + __p.bb_pos) : (int)0; } }
|
||||||
|
|
||||||
public static Offset<SCHALE.Common.FlatData.ConstArenaExcel> CreateConstArenaExcel(FlatBufferBuilder builder,
|
public static Offset<SCHALE.Common.FlatData.ConstArenaExcel> CreateConstArenaExcel(FlatBufferBuilder builder,
|
||||||
long AttackCoolTime = 0,
|
long AttackCoolTime = 0,
|
||||||
|
@ -133,7 +134,7 @@ public struct ConstArenaExcel : IFlatbufferObject
|
||||||
long TSSStartCoolTime = 0,
|
long TSSStartCoolTime = 0,
|
||||||
long EndAlarm = 0,
|
long EndAlarm = 0,
|
||||||
long TimeRewardMaxAmount = 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 EnterCostId = 0,
|
||||||
long TicketCost = 0,
|
long TicketCost = 0,
|
||||||
StringOffset DailyRewardResetTimeOffset = default(StringOffset),
|
StringOffset DailyRewardResetTimeOffset = default(StringOffset),
|
||||||
|
@ -158,8 +159,9 @@ public struct ConstArenaExcel : IFlatbufferObject
|
||||||
long SkipAllowedTimeMilliSeconds = 0,
|
long SkipAllowedTimeMilliSeconds = 0,
|
||||||
StringOffset ShowSeasonChangeInfoStartTimeOffset = default(StringOffset),
|
StringOffset ShowSeasonChangeInfoStartTimeOffset = default(StringOffset),
|
||||||
StringOffset ShowSeasonChangeInfoEndTimeOffset = default(StringOffset),
|
StringOffset ShowSeasonChangeInfoEndTimeOffset = default(StringOffset),
|
||||||
long ShowSeasonId = 0) {
|
long ShowSeasonId = 0,
|
||||||
builder.StartTable(32);
|
int ArenaHistoryQueryLimitDays = 0) {
|
||||||
|
builder.StartTable(33);
|
||||||
ConstArenaExcel.AddShowSeasonId(builder, ShowSeasonId);
|
ConstArenaExcel.AddShowSeasonId(builder, ShowSeasonId);
|
||||||
ConstArenaExcel.AddSkipAllowedTimeMilliSeconds(builder, SkipAllowedTimeMilliSeconds);
|
ConstArenaExcel.AddSkipAllowedTimeMilliSeconds(builder, SkipAllowedTimeMilliSeconds);
|
||||||
ConstArenaExcel.AddEchelonSettingIntervalMilliSeconds(builder, EchelonSettingIntervalMilliSeconds);
|
ConstArenaExcel.AddEchelonSettingIntervalMilliSeconds(builder, EchelonSettingIntervalMilliSeconds);
|
||||||
|
@ -179,6 +181,7 @@ public struct ConstArenaExcel : IFlatbufferObject
|
||||||
ConstArenaExcel.AddDefenseCoolTime(builder, DefenseCoolTime);
|
ConstArenaExcel.AddDefenseCoolTime(builder, DefenseCoolTime);
|
||||||
ConstArenaExcel.AddBattleDuration(builder, BattleDuration);
|
ConstArenaExcel.AddBattleDuration(builder, BattleDuration);
|
||||||
ConstArenaExcel.AddAttackCoolTime(builder, AttackCoolTime);
|
ConstArenaExcel.AddAttackCoolTime(builder, AttackCoolTime);
|
||||||
|
ConstArenaExcel.AddArenaHistoryQueryLimitDays(builder, ArenaHistoryQueryLimitDays);
|
||||||
ConstArenaExcel.AddShowSeasonChangeInfoEndTime(builder, ShowSeasonChangeInfoEndTimeOffset);
|
ConstArenaExcel.AddShowSeasonChangeInfoEndTime(builder, ShowSeasonChangeInfoEndTimeOffset);
|
||||||
ConstArenaExcel.AddShowSeasonChangeInfoStartTime(builder, ShowSeasonChangeInfoStartTimeOffset);
|
ConstArenaExcel.AddShowSeasonChangeInfoStartTime(builder, ShowSeasonChangeInfoStartTimeOffset);
|
||||||
ConstArenaExcel.AddHiddenCharacterImagePath(builder, HiddenCharacterImagePathOffset);
|
ConstArenaExcel.AddHiddenCharacterImagePath(builder, HiddenCharacterImagePathOffset);
|
||||||
|
@ -195,7 +198,7 @@ public struct ConstArenaExcel : IFlatbufferObject
|
||||||
return ConstArenaExcel.EndConstArenaExcel(builder);
|
return ConstArenaExcel.EndConstArenaExcel(builder);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void StartConstArenaExcel(FlatBufferBuilder builder) { builder.StartTable(32); }
|
public static void StartConstArenaExcel(FlatBufferBuilder builder) { builder.StartTable(33); }
|
||||||
public static void AddAttackCoolTime(FlatBufferBuilder builder, long attackCoolTime) { builder.AddLong(0, attackCoolTime, 0); }
|
public static void AddAttackCoolTime(FlatBufferBuilder builder, long attackCoolTime) { builder.AddLong(0, attackCoolTime, 0); }
|
||||||
public static void AddBattleDuration(FlatBufferBuilder builder, long battleDuration) { builder.AddLong(1, battleDuration, 0); }
|
public static void AddBattleDuration(FlatBufferBuilder builder, long battleDuration) { builder.AddLong(1, battleDuration, 0); }
|
||||||
public static void AddDefenseCoolTime(FlatBufferBuilder builder, long defenseCoolTime) { builder.AddLong(2, defenseCoolTime, 0); }
|
public static void AddDefenseCoolTime(FlatBufferBuilder builder, long defenseCoolTime) { builder.AddLong(2, defenseCoolTime, 0); }
|
||||||
|
@ -263,6 +266,7 @@ public struct ConstArenaExcel : IFlatbufferObject
|
||||||
public static void AddShowSeasonChangeInfoStartTime(FlatBufferBuilder builder, StringOffset showSeasonChangeInfoStartTimeOffset) { builder.AddOffset(29, showSeasonChangeInfoStartTimeOffset.Value, 0); }
|
public static void AddShowSeasonChangeInfoStartTime(FlatBufferBuilder builder, StringOffset showSeasonChangeInfoStartTimeOffset) { builder.AddOffset(29, showSeasonChangeInfoStartTimeOffset.Value, 0); }
|
||||||
public static void AddShowSeasonChangeInfoEndTime(FlatBufferBuilder builder, StringOffset showSeasonChangeInfoEndTimeOffset) { builder.AddOffset(30, showSeasonChangeInfoEndTimeOffset.Value, 0); }
|
public static void AddShowSeasonChangeInfoEndTime(FlatBufferBuilder builder, StringOffset showSeasonChangeInfoEndTimeOffset) { builder.AddOffset(30, showSeasonChangeInfoEndTimeOffset.Value, 0); }
|
||||||
public static void AddShowSeasonId(FlatBufferBuilder builder, long showSeasonId) { builder.AddLong(31, showSeasonId, 0); }
|
public static void AddShowSeasonId(FlatBufferBuilder builder, long showSeasonId) { builder.AddLong(31, showSeasonId, 0); }
|
||||||
|
public static void AddArenaHistoryQueryLimitDays(FlatBufferBuilder builder, int arenaHistoryQueryLimitDays) { builder.AddInt(32, arenaHistoryQueryLimitDays, 0); }
|
||||||
public static Offset<SCHALE.Common.FlatData.ConstArenaExcel> EndConstArenaExcel(FlatBufferBuilder builder) {
|
public static Offset<SCHALE.Common.FlatData.ConstArenaExcel> EndConstArenaExcel(FlatBufferBuilder builder) {
|
||||||
int o = builder.EndTable();
|
int o = builder.EndTable();
|
||||||
return new Offset<SCHALE.Common.FlatData.ConstArenaExcel>(o);
|
return new Offset<SCHALE.Common.FlatData.ConstArenaExcel>(o);
|
||||||
|
@ -313,6 +317,7 @@ public struct ConstArenaExcel : IFlatbufferObject
|
||||||
_o.ShowSeasonChangeInfoStartTime = TableEncryptionService.Convert(this.ShowSeasonChangeInfoStartTime, key);
|
_o.ShowSeasonChangeInfoStartTime = TableEncryptionService.Convert(this.ShowSeasonChangeInfoStartTime, key);
|
||||||
_o.ShowSeasonChangeInfoEndTime = TableEncryptionService.Convert(this.ShowSeasonChangeInfoEndTime, key);
|
_o.ShowSeasonChangeInfoEndTime = TableEncryptionService.Convert(this.ShowSeasonChangeInfoEndTime, key);
|
||||||
_o.ShowSeasonId = TableEncryptionService.Convert(this.ShowSeasonId, key);
|
_o.ShowSeasonId = TableEncryptionService.Convert(this.ShowSeasonId, key);
|
||||||
|
_o.ArenaHistoryQueryLimitDays = TableEncryptionService.Convert(this.ArenaHistoryQueryLimitDays, key);
|
||||||
}
|
}
|
||||||
public static Offset<SCHALE.Common.FlatData.ConstArenaExcel> Pack(FlatBufferBuilder builder, ConstArenaExcelT _o) {
|
public static Offset<SCHALE.Common.FlatData.ConstArenaExcel> Pack(FlatBufferBuilder builder, ConstArenaExcelT _o) {
|
||||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.ConstArenaExcel>);
|
if (_o == null) return default(Offset<SCHALE.Common.FlatData.ConstArenaExcel>);
|
||||||
|
@ -390,7 +395,8 @@ public struct ConstArenaExcel : IFlatbufferObject
|
||||||
_o.SkipAllowedTimeMilliSeconds,
|
_o.SkipAllowedTimeMilliSeconds,
|
||||||
_ShowSeasonChangeInfoStartTime,
|
_ShowSeasonChangeInfoStartTime,
|
||||||
_ShowSeasonChangeInfoEndTime,
|
_ShowSeasonChangeInfoEndTime,
|
||||||
_o.ShowSeasonId);
|
_o.ShowSeasonId,
|
||||||
|
_o.ArenaHistoryQueryLimitDays);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -428,6 +434,7 @@ public class ConstArenaExcelT
|
||||||
public string ShowSeasonChangeInfoStartTime { get; set; }
|
public string ShowSeasonChangeInfoStartTime { get; set; }
|
||||||
public string ShowSeasonChangeInfoEndTime { get; set; }
|
public string ShowSeasonChangeInfoEndTime { get; set; }
|
||||||
public long ShowSeasonId { get; set; }
|
public long ShowSeasonId { get; set; }
|
||||||
|
public int ArenaHistoryQueryLimitDays { get; set; }
|
||||||
|
|
||||||
public ConstArenaExcelT() {
|
public ConstArenaExcelT() {
|
||||||
this.AttackCoolTime = 0;
|
this.AttackCoolTime = 0;
|
||||||
|
@ -436,7 +443,7 @@ public class ConstArenaExcelT
|
||||||
this.TSSStartCoolTime = 0;
|
this.TSSStartCoolTime = 0;
|
||||||
this.EndAlarm = 0;
|
this.EndAlarm = 0;
|
||||||
this.TimeRewardMaxAmount = 0;
|
this.TimeRewardMaxAmount = 0;
|
||||||
this.EnterCostType = SCHALE.Common.FlatData.ParcelType.None;
|
this.EnterCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.EnterCostId = 0;
|
this.EnterCostId = 0;
|
||||||
this.TicketCost = 0;
|
this.TicketCost = 0;
|
||||||
this.DailyRewardResetTime = null;
|
this.DailyRewardResetTime = null;
|
||||||
|
@ -462,6 +469,7 @@ public class ConstArenaExcelT
|
||||||
this.ShowSeasonChangeInfoStartTime = null;
|
this.ShowSeasonChangeInfoStartTime = null;
|
||||||
this.ShowSeasonChangeInfoEndTime = null;
|
this.ShowSeasonChangeInfoEndTime = null;
|
||||||
this.ShowSeasonId = 0;
|
this.ShowSeasonId = 0;
|
||||||
|
this.ArenaHistoryQueryLimitDays = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -503,6 +511,7 @@ static public class ConstArenaExcelVerify
|
||||||
&& verifier.VerifyString(tablePos, 62 /*ShowSeasonChangeInfoStartTime*/, false)
|
&& verifier.VerifyString(tablePos, 62 /*ShowSeasonChangeInfoStartTime*/, false)
|
||||||
&& verifier.VerifyString(tablePos, 64 /*ShowSeasonChangeInfoEndTime*/, false)
|
&& verifier.VerifyString(tablePos, 64 /*ShowSeasonChangeInfoEndTime*/, false)
|
||||||
&& verifier.VerifyField(tablePos, 66 /*ShowSeasonId*/, 8 /*long*/, 8, false)
|
&& verifier.VerifyField(tablePos, 66 /*ShowSeasonId*/, 8 /*long*/, 8, false)
|
||||||
|
&& verifier.VerifyField(tablePos, 68 /*ArenaHistoryQueryLimitDays*/, 4 /*int*/, 4, false)
|
||||||
&& verifier.VerifyTableEnd(tablePos);
|
&& verifier.VerifyTableEnd(tablePos);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -21,17 +21,17 @@ public struct ContentEnterCostReduceExcel : IFlatbufferObject
|
||||||
public ContentEnterCostReduceExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
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 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 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 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 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,
|
public static Offset<SCHALE.Common.FlatData.ContentEnterCostReduceExcel> CreateContentEnterCostReduceExcel(FlatBufferBuilder builder,
|
||||||
long EnterCostReduceGroupId = 0,
|
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,
|
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 ReduceEnterCostId = 0,
|
||||||
long ReduceAmount = 0) {
|
long ReduceAmount = 0) {
|
||||||
builder.StartTable(6);
|
builder.StartTable(6);
|
||||||
|
@ -93,9 +93,9 @@ public class ContentEnterCostReduceExcelT
|
||||||
|
|
||||||
public ContentEnterCostReduceExcelT() {
|
public ContentEnterCostReduceExcelT() {
|
||||||
this.EnterCostReduceGroupId = 0;
|
this.EnterCostReduceGroupId = 0;
|
||||||
this.ContentType_ = SCHALE.Common.FlatData.ContentType.None;
|
this.ContentType_ = SCHALE.Common.FlatData.ContentType.None_;
|
||||||
this.StageId = 0;
|
this.StageId = 0;
|
||||||
this.ReduceEnterCostType = SCHALE.Common.FlatData.ParcelType.None;
|
this.ReduceEnterCostType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.ReduceEnterCostId = 0;
|
this.ReduceEnterCostId = 0;
|
||||||
this.ReduceAmount = 0;
|
this.ReduceAmount = 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,88 +0,0 @@
|
||||||
// <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;
|
|
||||||
using global::SCHALE.Common.Crypto;
|
|
||||||
using global::Google.FlatBuffers;
|
|
||||||
|
|
||||||
public struct ContentEnterCostReduceExcelTable : IFlatbufferObject
|
|
||||||
{
|
|
||||||
private Table __p;
|
|
||||||
public ByteBuffer ByteBuffer { get { return __p.bb; } }
|
|
||||||
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_24_3_25(); }
|
|
||||||
public static ContentEnterCostReduceExcelTable GetRootAsContentEnterCostReduceExcelTable(ByteBuffer _bb) { return GetRootAsContentEnterCostReduceExcelTable(_bb, new ContentEnterCostReduceExcelTable()); }
|
|
||||||
public static ContentEnterCostReduceExcelTable GetRootAsContentEnterCostReduceExcelTable(ByteBuffer _bb, ContentEnterCostReduceExcelTable obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
|
|
||||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
|
||||||
public ContentEnterCostReduceExcelTable __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
|
||||||
|
|
||||||
public SCHALE.Common.FlatData.ContentEnterCostReduceExcel? DataList(int j) { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.ContentEnterCostReduceExcel?)(new SCHALE.Common.FlatData.ContentEnterCostReduceExcel()).__assign(__p.__indirect(__p.__vector(o) + j * 4), __p.bb) : null; }
|
|
||||||
public int DataListLength { get { int o = __p.__offset(4); return o != 0 ? __p.__vector_len(o) : 0; } }
|
|
||||||
|
|
||||||
public static Offset<SCHALE.Common.FlatData.ContentEnterCostReduceExcelTable> CreateContentEnterCostReduceExcelTable(FlatBufferBuilder builder,
|
|
||||||
VectorOffset DataListOffset = default(VectorOffset)) {
|
|
||||||
builder.StartTable(1);
|
|
||||||
ContentEnterCostReduceExcelTable.AddDataList(builder, DataListOffset);
|
|
||||||
return ContentEnterCostReduceExcelTable.EndContentEnterCostReduceExcelTable(builder);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void StartContentEnterCostReduceExcelTable(FlatBufferBuilder builder) { builder.StartTable(1); }
|
|
||||||
public static void AddDataList(FlatBufferBuilder builder, VectorOffset dataListOffset) { builder.AddOffset(0, dataListOffset.Value, 0); }
|
|
||||||
public static VectorOffset CreateDataListVector(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.ContentEnterCostReduceExcel>[] data) { builder.StartVector(4, data.Length, 4); for (int i = data.Length - 1; i >= 0; i--) builder.AddOffset(data[i].Value); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.ContentEnterCostReduceExcel>[] data) { builder.StartVector(4, data.Length, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, ArraySegment<Offset<SCHALE.Common.FlatData.ContentEnterCostReduceExcel>> data) { builder.StartVector(4, data.Count, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<Offset<SCHALE.Common.FlatData.ContentEnterCostReduceExcel>>(dataPtr, sizeInBytes); return builder.EndVector(); }
|
|
||||||
public static void StartDataListVector(FlatBufferBuilder builder, int numElems) { builder.StartVector(4, numElems, 4); }
|
|
||||||
public static Offset<SCHALE.Common.FlatData.ContentEnterCostReduceExcelTable> EndContentEnterCostReduceExcelTable(FlatBufferBuilder builder) {
|
|
||||||
int o = builder.EndTable();
|
|
||||||
return new Offset<SCHALE.Common.FlatData.ContentEnterCostReduceExcelTable>(o);
|
|
||||||
}
|
|
||||||
public ContentEnterCostReduceExcelTableT UnPack() {
|
|
||||||
var _o = new ContentEnterCostReduceExcelTableT();
|
|
||||||
this.UnPackTo(_o);
|
|
||||||
return _o;
|
|
||||||
}
|
|
||||||
public void UnPackTo(ContentEnterCostReduceExcelTableT _o) {
|
|
||||||
byte[] key = TableEncryptionService.CreateKey("ContentEnterCostReduceExcel");
|
|
||||||
_o.DataList = new List<SCHALE.Common.FlatData.ContentEnterCostReduceExcelT>();
|
|
||||||
for (var _j = 0; _j < this.DataListLength; ++_j) {_o.DataList.Add(this.DataList(_j).HasValue ? this.DataList(_j).Value.UnPack() : null);}
|
|
||||||
}
|
|
||||||
public static Offset<SCHALE.Common.FlatData.ContentEnterCostReduceExcelTable> Pack(FlatBufferBuilder builder, ContentEnterCostReduceExcelTableT _o) {
|
|
||||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.ContentEnterCostReduceExcelTable>);
|
|
||||||
var _DataList = default(VectorOffset);
|
|
||||||
if (_o.DataList != null) {
|
|
||||||
var __DataList = new Offset<SCHALE.Common.FlatData.ContentEnterCostReduceExcel>[_o.DataList.Count];
|
|
||||||
for (var _j = 0; _j < __DataList.Length; ++_j) { __DataList[_j] = SCHALE.Common.FlatData.ContentEnterCostReduceExcel.Pack(builder, _o.DataList[_j]); }
|
|
||||||
_DataList = CreateDataListVector(builder, __DataList);
|
|
||||||
}
|
|
||||||
return CreateContentEnterCostReduceExcelTable(
|
|
||||||
builder,
|
|
||||||
_DataList);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public class ContentEnterCostReduceExcelTableT
|
|
||||||
{
|
|
||||||
public List<SCHALE.Common.FlatData.ContentEnterCostReduceExcelT> DataList { get; set; }
|
|
||||||
|
|
||||||
public ContentEnterCostReduceExcelTableT() {
|
|
||||||
this.DataList = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static public class ContentEnterCostReduceExcelTableVerify
|
|
||||||
{
|
|
||||||
static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos)
|
|
||||||
{
|
|
||||||
return verifier.VerifyTableStart(tablePos)
|
|
||||||
&& verifier.VerifyVectorOfTables(tablePos, 4 /*DataList*/, SCHALE.Common.FlatData.ContentEnterCostReduceExcelVerify.Verify, false)
|
|
||||||
&& verifier.VerifyTableEnd(tablePos);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum ContentLockType : int
|
public enum ContentLockType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
NotUseControlledByOtherSetting = 1,
|
NotUseControlledByOtherSetting = 1,
|
||||||
Academy = 2,
|
Academy = 2,
|
||||||
MultiFloorRaid = 3,
|
MultiFloorRaid = 3,
|
||||||
|
|
|
@ -20,7 +20,7 @@ public struct ContentSpoilerPopupExcel : IFlatbufferObject
|
||||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _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; }
|
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; } }
|
public string SpoilerPopupTitle { get { int o = __p.__offset(6); return o != 0 ? __p.__string(o + __p.bb_pos) : null; } }
|
||||||
#if ENABLE_SPAN_T
|
#if ENABLE_SPAN_T
|
||||||
public Span<byte> GetSpoilerPopupTitleBytes() { return __p.__vector_as_span<byte>(6, 1); }
|
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 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,
|
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 SpoilerPopupTitleOffset = default(StringOffset),
|
||||||
StringOffset SpoilerPopupDescriptionOffset = default(StringOffset),
|
StringOffset SpoilerPopupDescriptionOffset = default(StringOffset),
|
||||||
bool IsWarningPopUp = false,
|
bool IsWarningPopUp = false,
|
||||||
|
@ -99,7 +99,7 @@ public class ContentSpoilerPopupExcelT
|
||||||
public long ConditionScenarioModeId { get; set; }
|
public long ConditionScenarioModeId { get; set; }
|
||||||
|
|
||||||
public ContentSpoilerPopupExcelT() {
|
public ContentSpoilerPopupExcelT() {
|
||||||
this.ContentType_ = SCHALE.Common.FlatData.ContentType.None;
|
this.ContentType_ = SCHALE.Common.FlatData.ContentType.None_;
|
||||||
this.SpoilerPopupTitle = null;
|
this.SpoilerPopupTitle = null;
|
||||||
this.SpoilerPopupDescription = null;
|
this.SpoilerPopupDescription = null;
|
||||||
this.IsWarningPopUp = false;
|
this.IsWarningPopUp = false;
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum ContentType : int
|
public enum ContentType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
CampaignMainStage = 1,
|
CampaignMainStage = 1,
|
||||||
CampaignSubStage = 2,
|
CampaignSubStage = 2,
|
||||||
WeekDungeon = 3,
|
WeekDungeon = 3,
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum ContentsChangeType : int
|
public enum ContentsChangeType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
WorldRaidBossDamageRatio = 1,
|
WorldRaidBossDamageRatio = 1,
|
||||||
WorldRaidBossGroupDate = 2,
|
WorldRaidBossGroupDate = 2,
|
||||||
};
|
};
|
||||||
|
|
|
@ -21,7 +21,7 @@ public struct ContentsShortcutExcel : IFlatbufferObject
|
||||||
public ContentsShortcutExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
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 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 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 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; } }
|
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
|
#endif
|
||||||
public byte[] GetShortcutCloseTimeArray() { return __p.__vector_as_array<byte>(16); }
|
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 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 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 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; }
|
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,
|
public static Offset<SCHALE.Common.FlatData.ContentsShortcutExcel> CreateContentsShortcutExcel(FlatBufferBuilder builder,
|
||||||
long UniqueId = 0,
|
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 EventContentId = 0,
|
||||||
long ScenarioModeVolume = 0,
|
long ScenarioModeVolume = 0,
|
||||||
long ScenarioModeChapter = 0,
|
long ScenarioModeChapter = 0,
|
||||||
StringOffset ShortcutOpenTimeOffset = default(StringOffset),
|
StringOffset ShortcutOpenTimeOffset = default(StringOffset),
|
||||||
StringOffset ShortcutCloseTimeOffset = default(StringOffset),
|
StringOffset ShortcutCloseTimeOffset = default(StringOffset),
|
||||||
long ConditionContentId = 0,
|
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,
|
int ConquestStepIndex = 0,
|
||||||
long ShortcutContentId = 0,
|
long ShortcutContentId = 0,
|
||||||
VectorOffset ShortcutUINameOffset = default(VectorOffset),
|
VectorOffset ShortcutUINameOffset = default(VectorOffset),
|
||||||
|
@ -176,14 +176,14 @@ public class ContentsShortcutExcelT
|
||||||
|
|
||||||
public ContentsShortcutExcelT() {
|
public ContentsShortcutExcelT() {
|
||||||
this.UniqueId = 0;
|
this.UniqueId = 0;
|
||||||
this.ContentType_ = SCHALE.Common.FlatData.ContentType.None;
|
this.ContentType_ = SCHALE.Common.FlatData.ContentType.None_;
|
||||||
this.EventContentId = 0;
|
this.EventContentId = 0;
|
||||||
this.ScenarioModeVolume = 0;
|
this.ScenarioModeVolume = 0;
|
||||||
this.ScenarioModeChapter = 0;
|
this.ScenarioModeChapter = 0;
|
||||||
this.ShortcutOpenTime = null;
|
this.ShortcutOpenTime = null;
|
||||||
this.ShortcutCloseTime = null;
|
this.ShortcutCloseTime = null;
|
||||||
this.ConditionContentId = 0;
|
this.ConditionContentId = 0;
|
||||||
this.ConquestMapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None;
|
this.ConquestMapDifficulty = SCHALE.Common.FlatData.StageDifficulty.None_;
|
||||||
this.ConquestStepIndex = 0;
|
this.ConquestStepIndex = 0;
|
||||||
this.ShortcutContentId = 0;
|
this.ShortcutContentId = 0;
|
||||||
this.ShortcutUIName = null;
|
this.ShortcutUIName = null;
|
||||||
|
|
|
@ -21,7 +21,7 @@ public struct CouponStuffExcel : IFlatbufferObject
|
||||||
public CouponStuffExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
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 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 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 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; } }
|
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,
|
public static Offset<SCHALE.Common.FlatData.CouponStuffExcel> CreateCouponStuffExcel(FlatBufferBuilder builder,
|
||||||
long StuffId = 0,
|
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,
|
long ParcelId = 0,
|
||||||
int LimitAmount = 0,
|
int LimitAmount = 0,
|
||||||
StringOffset CouponStuffNameLocalizeKeyOffset = default(StringOffset)) {
|
StringOffset CouponStuffNameLocalizeKeyOffset = default(StringOffset)) {
|
||||||
|
@ -93,7 +93,7 @@ public class CouponStuffExcelT
|
||||||
|
|
||||||
public CouponStuffExcelT() {
|
public CouponStuffExcelT() {
|
||||||
this.StuffId = 0;
|
this.StuffId = 0;
|
||||||
this.ParcelType_ = SCHALE.Common.FlatData.ParcelType.None;
|
this.ParcelType_ = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.ParcelId = 0;
|
this.ParcelId = 0;
|
||||||
this.LimitAmount = 0;
|
this.LimitAmount = 0;
|
||||||
this.CouponStuffNameLocalizeKey = null;
|
this.CouponStuffNameLocalizeKey = null;
|
||||||
|
|
|
@ -51,7 +51,7 @@ public struct CurrencyExcel : IFlatbufferObject
|
||||||
public ArraySegment<byte>? GetSpriteNameBytes() { return __p.__vector_as_arraysegment(28); }
|
public ArraySegment<byte>? GetSpriteNameBytes() { return __p.__vector_as_arraysegment(28); }
|
||||||
#endif
|
#endif
|
||||||
public byte[] GetSpriteNameArray() { return __p.__vector_as_array<byte>(28); }
|
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 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 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; } }
|
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
|
#endif
|
||||||
public byte[] GetExpirationDateTimeArray() { return __p.__vector_as_array<byte>(36); }
|
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 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 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; } }
|
public long ExpiryChangeAmount { get { int o = __p.__offset(44); return o != 0 ? __p.bb.GetLong(o + __p.bb_pos) : (long)0; } }
|
||||||
|
|
||||||
|
@ -87,12 +87,12 @@ public struct CurrencyExcel : IFlatbufferObject
|
||||||
long ChargeLimit = 0,
|
long ChargeLimit = 0,
|
||||||
long OverChargeLimit = 0,
|
long OverChargeLimit = 0,
|
||||||
StringOffset SpriteNameOffset = default(StringOffset),
|
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,
|
long DailyRefillAmount = 0,
|
||||||
VectorOffset DailyRefillTimeOffset = default(VectorOffset),
|
VectorOffset DailyRefillTimeOffset = default(VectorOffset),
|
||||||
StringOffset ExpirationDateTimeOffset = default(StringOffset),
|
StringOffset ExpirationDateTimeOffset = default(StringOffset),
|
||||||
int ExpirationNotifyDateIn = 0,
|
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 ExpiryChangeId = 0,
|
||||||
long ExpiryChangeAmount = 0) {
|
long ExpiryChangeAmount = 0) {
|
||||||
builder.StartTable(21);
|
builder.StartTable(21);
|
||||||
|
@ -256,12 +256,12 @@ public class CurrencyExcelT
|
||||||
this.ChargeLimit = 0;
|
this.ChargeLimit = 0;
|
||||||
this.OverChargeLimit = 0;
|
this.OverChargeLimit = 0;
|
||||||
this.SpriteName = null;
|
this.SpriteName = null;
|
||||||
this.DailyRefillType_ = SCHALE.Common.FlatData.DailyRefillType.None;
|
this.DailyRefillType_ = SCHALE.Common.FlatData.DailyRefillType.None_;
|
||||||
this.DailyRefillAmount = 0;
|
this.DailyRefillAmount = 0;
|
||||||
this.DailyRefillTime = null;
|
this.DailyRefillTime = null;
|
||||||
this.ExpirationDateTime = null;
|
this.ExpirationDateTime = null;
|
||||||
this.ExpirationNotifyDateIn = 0;
|
this.ExpirationNotifyDateIn = 0;
|
||||||
this.ExpiryChangeParcelType = SCHALE.Common.FlatData.ParcelType.None;
|
this.ExpiryChangeParcelType = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.ExpiryChangeId = 0;
|
this.ExpiryChangeId = 0;
|
||||||
this.ExpiryChangeAmount = 0;
|
this.ExpiryChangeAmount = 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,88 +0,0 @@
|
||||||
// <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;
|
|
||||||
using global::SCHALE.Common.Crypto;
|
|
||||||
using global::Google.FlatBuffers;
|
|
||||||
|
|
||||||
public struct CurrencyExcelTable : IFlatbufferObject
|
|
||||||
{
|
|
||||||
private Table __p;
|
|
||||||
public ByteBuffer ByteBuffer { get { return __p.bb; } }
|
|
||||||
public static void ValidateVersion() { FlatBufferConstants.FLATBUFFERS_24_3_25(); }
|
|
||||||
public static CurrencyExcelTable GetRootAsCurrencyExcelTable(ByteBuffer _bb) { return GetRootAsCurrencyExcelTable(_bb, new CurrencyExcelTable()); }
|
|
||||||
public static CurrencyExcelTable GetRootAsCurrencyExcelTable(ByteBuffer _bb, CurrencyExcelTable obj) { return (obj.__assign(_bb.GetInt(_bb.Position) + _bb.Position, _bb)); }
|
|
||||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
|
||||||
public CurrencyExcelTable __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
|
||||||
|
|
||||||
public SCHALE.Common.FlatData.CurrencyExcel? DataList(int j) { int o = __p.__offset(4); return o != 0 ? (SCHALE.Common.FlatData.CurrencyExcel?)(new SCHALE.Common.FlatData.CurrencyExcel()).__assign(__p.__indirect(__p.__vector(o) + j * 4), __p.bb) : null; }
|
|
||||||
public int DataListLength { get { int o = __p.__offset(4); return o != 0 ? __p.__vector_len(o) : 0; } }
|
|
||||||
|
|
||||||
public static Offset<SCHALE.Common.FlatData.CurrencyExcelTable> CreateCurrencyExcelTable(FlatBufferBuilder builder,
|
|
||||||
VectorOffset DataListOffset = default(VectorOffset)) {
|
|
||||||
builder.StartTable(1);
|
|
||||||
CurrencyExcelTable.AddDataList(builder, DataListOffset);
|
|
||||||
return CurrencyExcelTable.EndCurrencyExcelTable(builder);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void StartCurrencyExcelTable(FlatBufferBuilder builder) { builder.StartTable(1); }
|
|
||||||
public static void AddDataList(FlatBufferBuilder builder, VectorOffset dataListOffset) { builder.AddOffset(0, dataListOffset.Value, 0); }
|
|
||||||
public static VectorOffset CreateDataListVector(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.CurrencyExcel>[] data) { builder.StartVector(4, data.Length, 4); for (int i = data.Length - 1; i >= 0; i--) builder.AddOffset(data[i].Value); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, Offset<SCHALE.Common.FlatData.CurrencyExcel>[] data) { builder.StartVector(4, data.Length, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, ArraySegment<Offset<SCHALE.Common.FlatData.CurrencyExcel>> data) { builder.StartVector(4, data.Count, 4); builder.Add(data); return builder.EndVector(); }
|
|
||||||
public static VectorOffset CreateDataListVectorBlock(FlatBufferBuilder builder, IntPtr dataPtr, int sizeInBytes) { builder.StartVector(1, sizeInBytes, 1); builder.Add<Offset<SCHALE.Common.FlatData.CurrencyExcel>>(dataPtr, sizeInBytes); return builder.EndVector(); }
|
|
||||||
public static void StartDataListVector(FlatBufferBuilder builder, int numElems) { builder.StartVector(4, numElems, 4); }
|
|
||||||
public static Offset<SCHALE.Common.FlatData.CurrencyExcelTable> EndCurrencyExcelTable(FlatBufferBuilder builder) {
|
|
||||||
int o = builder.EndTable();
|
|
||||||
return new Offset<SCHALE.Common.FlatData.CurrencyExcelTable>(o);
|
|
||||||
}
|
|
||||||
public CurrencyExcelTableT UnPack() {
|
|
||||||
var _o = new CurrencyExcelTableT();
|
|
||||||
this.UnPackTo(_o);
|
|
||||||
return _o;
|
|
||||||
}
|
|
||||||
public void UnPackTo(CurrencyExcelTableT _o) {
|
|
||||||
byte[] key = TableEncryptionService.CreateKey("CurrencyExcel");
|
|
||||||
_o.DataList = new List<SCHALE.Common.FlatData.CurrencyExcelT>();
|
|
||||||
for (var _j = 0; _j < this.DataListLength; ++_j) {_o.DataList.Add(this.DataList(_j).HasValue ? this.DataList(_j).Value.UnPack() : null);}
|
|
||||||
}
|
|
||||||
public static Offset<SCHALE.Common.FlatData.CurrencyExcelTable> Pack(FlatBufferBuilder builder, CurrencyExcelTableT _o) {
|
|
||||||
if (_o == null) return default(Offset<SCHALE.Common.FlatData.CurrencyExcelTable>);
|
|
||||||
var _DataList = default(VectorOffset);
|
|
||||||
if (_o.DataList != null) {
|
|
||||||
var __DataList = new Offset<SCHALE.Common.FlatData.CurrencyExcel>[_o.DataList.Count];
|
|
||||||
for (var _j = 0; _j < __DataList.Length; ++_j) { __DataList[_j] = SCHALE.Common.FlatData.CurrencyExcel.Pack(builder, _o.DataList[_j]); }
|
|
||||||
_DataList = CreateDataListVector(builder, __DataList);
|
|
||||||
}
|
|
||||||
return CreateCurrencyExcelTable(
|
|
||||||
builder,
|
|
||||||
_DataList);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public class CurrencyExcelTableT
|
|
||||||
{
|
|
||||||
public List<SCHALE.Common.FlatData.CurrencyExcelT> DataList { get; set; }
|
|
||||||
|
|
||||||
public CurrencyExcelTableT() {
|
|
||||||
this.DataList = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static public class CurrencyExcelTableVerify
|
|
||||||
{
|
|
||||||
static public bool Verify(Google.FlatBuffers.Verifier verifier, uint tablePos)
|
|
||||||
{
|
|
||||||
return verifier.VerifyTableStart(tablePos)
|
|
||||||
&& verifier.VerifyVectorOfTables(tablePos, 4 /*DataList*/, SCHALE.Common.FlatData.CurrencyExcelVerify.Verify, false)
|
|
||||||
&& verifier.VerifyTableEnd(tablePos);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum DailyRefillType : int
|
public enum DailyRefillType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Default = 1,
|
Default = 1,
|
||||||
Login = 2,
|
Login = 2,
|
||||||
};
|
};
|
||||||
|
|
|
@ -21,14 +21,14 @@ public struct DefaultFurnitureExcel : IFlatbufferObject
|
||||||
public DefaultFurnitureExcel __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
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 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 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 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 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,
|
public static Offset<SCHALE.Common.FlatData.DefaultFurnitureExcel> CreateDefaultFurnitureExcel(FlatBufferBuilder builder,
|
||||||
long Id = 0,
|
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 PositionX = 0.0f,
|
||||||
float PositionY = 0.0f,
|
float PositionY = 0.0f,
|
||||||
float Rotation = 0.0f) {
|
float Rotation = 0.0f) {
|
||||||
|
@ -86,7 +86,7 @@ public class DefaultFurnitureExcelT
|
||||||
|
|
||||||
public DefaultFurnitureExcelT() {
|
public DefaultFurnitureExcelT() {
|
||||||
this.Id = 0;
|
this.Id = 0;
|
||||||
this.Location = SCHALE.Common.FlatData.FurnitureLocation.None;
|
this.Location = SCHALE.Common.FlatData.FurnitureLocation.None_;
|
||||||
this.PositionX = 0.0f;
|
this.PositionX = 0.0f;
|
||||||
this.PositionY = 0.0f;
|
this.PositionY = 0.0f;
|
||||||
this.Rotation = 0.0f;
|
this.Rotation = 0.0f;
|
||||||
|
|
|
@ -20,12 +20,12 @@ public struct DefaultParcelExcel : IFlatbufferObject
|
||||||
public void __init(int _i, ByteBuffer _bb) { __p = new Table(_i, _bb); }
|
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 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 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 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,
|
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 ParcelId = 0,
|
||||||
long ParcelAmount = 0) {
|
long ParcelAmount = 0) {
|
||||||
builder.StartTable(3);
|
builder.StartTable(3);
|
||||||
|
@ -71,7 +71,7 @@ public class DefaultParcelExcelT
|
||||||
public long ParcelAmount { get; set; }
|
public long ParcelAmount { get; set; }
|
||||||
|
|
||||||
public DefaultParcelExcelT() {
|
public DefaultParcelExcelT() {
|
||||||
this.ParcelType_ = SCHALE.Common.FlatData.ParcelType.None;
|
this.ParcelType_ = SCHALE.Common.FlatData.ParcelType.None_;
|
||||||
this.ParcelId = 0;
|
this.ParcelId = 0;
|
||||||
this.ParcelAmount = 0;
|
this.ParcelAmount = 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum DialogConditionDetail : int
|
public enum DialogConditionDetail : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Day = 1,
|
Day = 1,
|
||||||
Close = 2,
|
Close = 2,
|
||||||
MiniGameDreamMakerDay = 3,
|
MiniGameDreamMakerDay = 3,
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum DreamMakerEndingCondition : int
|
public enum DreamMakerEndingCondition : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Param01 = 1,
|
Param01 = 1,
|
||||||
Param02 = 2,
|
Param02 = 2,
|
||||||
Param03 = 3,
|
Param03 = 3,
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum DreamMakerEndingRewardType : int
|
public enum DreamMakerEndingRewardType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
FirstEndingReward = 1,
|
FirstEndingReward = 1,
|
||||||
LoopEndingReward = 2,
|
LoopEndingReward = 2,
|
||||||
};
|
};
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum DreamMakerEndingType : int
|
public enum DreamMakerEndingType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Normal = 1,
|
Normal = 1,
|
||||||
Special = 2,
|
Special = 2,
|
||||||
};
|
};
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum DreamMakerMultiplierCondition : int
|
public enum DreamMakerMultiplierCondition : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
Round = 1,
|
Round = 1,
|
||||||
CollectionCount = 2,
|
CollectionCount = 2,
|
||||||
EndingCount = 3,
|
EndingCount = 3,
|
||||||
|
|
|
@ -7,7 +7,7 @@ namespace SCHALE.Common.FlatData
|
||||||
|
|
||||||
public enum DreamMakerParamOperationType : int
|
public enum DreamMakerParamOperationType : int
|
||||||
{
|
{
|
||||||
None = 0,
|
None_ = 0,
|
||||||
GrowUpHigh = 1,
|
GrowUpHigh = 1,
|
||||||
GrowUp = 2,
|
GrowUp = 2,
|
||||||
GrowDownHigh = 3,
|
GrowDownHigh = 3,
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue