Example #1
0
    public void LoadStory(string storyName, Action <string> onComplete)
    {
        DataTableInterfaceProxy table = new DataTableInterfaceProxy(onComplete);
        DataLoadRequest         req   = CreateRequestLoadTable(storyName, table, false, null);

        Request(req);
    }
Example #2
0
    public void InitializeForDownload()
    {
        Clear();
        DataTableInterfaceProxy table = new DataTableInterfaceProxy(delegate
        {
        });

        RegisterTable("AvatarTable", table, null);
        RegisterTable("CreateEquipItemTable", table, null);
        RegisterTable("CreatePickupItemTable", table, null);
        RegisterTable("DeliveryTable", table, null);
        RegisterTable("EquipItemTable", table, null);
        RegisterTable("EquipModelTable", table, null);
        RegisterTable("GrowSkillItemTable", table, null);
        RegisterTable("HomeThemeTable", table, null);
        RegisterTable("CountdownTable", table, null);
        RegisterTable("NPCMessageTable", table, null);
        RegisterTable("NPCTable", table, null);
        RegisterTable("QuestTable", table, null);
        RegisterTable("SkillItemTable", table, null);
        RegisterTable("ExceedSkillItemTable", table, null);
        RegisterTable("StageTable", table, null);
        RegisterTable("TutorialMessageTable", table, null);
        RegisterTable("StampTypeTable", table, null);
        RegisterTable("EquipItemExceedParamTable", table, null);
        RegisterTable("AbilityDataTable", table, null);
        RegisterTable("AbilityTable", table, null);
        RegisterTable("AudioSettingTable", table, null);
        RegisterTable("DeliveryRewardTable", table, null);
        RegisterTable("EnemyTable", table, null);
        RegisterTable("EquipItemExceedTable", table, null);
        RegisterTable("EvolveEquipItemTable", table, null);
        RegisterTable("GrowEnemyTable", table, null);
        RegisterTable("ItemTable", table, null);
        RegisterTable("SETable", table, null);
        RegisterTable("StringTable", table, null);
        RegisterTable("TaskTable", table, null);
        RegisterTable("UserLevelTable", table, null);
        RegisterTable("GrowEquipItemTable", table, null);
        RegisterTable("GrowEquipItemNeedItemTable", table, null);
        RegisterTable("GrowEquipItemNeedUniqueItemTable", table, null);
        RegisterTable("MissionTable", table, null);
        RegisterTable("RegionTable", table, null);
        RegisterTable("FieldMapTable", table, null);
        RegisterTable("FieldMapPortalTable", table, null);
        RegisterTable("FieldMapEnemyPopTable", table, null);
        RegisterTable("FieldMapGatherPointTable", table, null);
        RegisterTable("FieldMapGatherPointViewTable", table, null);
        RegisterTable("FieldMapGimmickPointTable", table, null);
        RegisterTable("FieldMapGimmickActionTable", table, null);
        RegisterTable("QuestToFieldTable", table, null);
        RegisterTable("ItemToFieldTable", table, null);
        RegisterTable("EnemyHitTypeTable", table, null);
        RegisterTable("EnemyHitMaterialTable", table, null);
        RegisterTable("EnemyPersonalityTable", table, null);
        RegisterTable("PointShopGetPointTable", table, null);
        RegisterTable("DegreeTable", table, null);
        RegisterTable("DamageDistanceTable", table, null);
        RegisterTable("GachaSearchEnemyTable", table, null);
        RegisterTable("BuffTable", table, null);
        RegisterTable("FieldBuffTable", table, null);
        RegisterTable("LimitedEquipItemExceedTable", table, null);
        RegisterTable("PlayDataTable", table, null);
        RegisterTable("ArenaTable", table, null);
        RegisterTable("EnemyAngryTable", table, null);
        RegisterTable("EnemyActionTable", table, null);
        RegisterTable("NpcLevelTable", table, null);
        RegisterTable("FieldMapEnemyPopTimeZoneTable", table, null);
    }