Esempio n. 1
0
        public override async Task BuildCache(string scenario, CacheType cacheType, ResourceMapUsage resourceUsage, bool logTags, string cachePlatform, bool cacheCompress, bool cacheResourceSharing, bool cacheMultilingualSounds, bool cacheRemasteredSupport, bool cacheMPTagSharinge)
        {
            string path = scenario.Replace(".scenario", "");
            string audio_configuration = "";
            string target_language     = "";
            string dedicated_server    = "";
            string compression_type    = "";
            string use_fmod_data       = "";

            await RunTool(ToolType.Tool, new List <string>() { "build-cache-file", path, cachePlatform, audio_configuration, target_language, dedicated_server, compression_type, use_fmod_data });
        }
Esempio n. 2
0
        public override async Task BuildCache(string scenario, CacheType cache_type, ResourceMapUsage resourceUsage, bool log_tags)
        {
            string path = scenario.Replace(".scenario", "");

            await RunTool(ToolType.Tool, new List <string>() { "build-cache-file", path });
        }
Esempio n. 3
0
 public abstract Task BuildCache(string scenario, CacheType cacheType, ResourceMapUsage resourceUsage, bool logTags, string cachePlatform, bool cacheCompress, bool cacheResourceSharing, bool cacheMultilingualSounds, bool cacheRemasteredSupport, bool cacheMPTagSharing);
Esempio n. 4
0
 public abstract Task BuildCache(string scenario, CacheType cache_type, ResourceMapUsage resourceUsage, bool log_tags = false);
Esempio n. 5
0
        public override async Task BuildCache(string scenario, CacheType cacheType, ResourceMapUsage resourceUsage, bool logTags, string cachePlatform, bool cacheCompress, bool cacheResourceSharing, bool cacheMultilingualSounds, bool cacheRemasteredSupport, bool cacheMPTagSharing)
        {
            string path = scenario.Replace(".scenario", "");

            await RunTool(ToolType.Tool, new List <string>() { "build-cache-file", path });
        }