Exemplo n.º 1
0
 public PlayerDetailPage(IEnumerable <PlayerData> playerData, GW2ApiData gw2ApiData, ITheme theme) : base("Players", true, theme)
 {
     this.playerData = playerData;
     this.gw2ApiData = gw2ApiData;
 }
Exemplo n.º 2
0
 public Task <GW2ApiData> GetApiDataAsync()
 {
     return(GW2ApiData.LoadFromFileAsync(filename));
 }
Exemplo n.º 3
0
        public static async Task Main(string[] args)
        {
            var logSources = new List <ILogSource>();

            IApiDataSource apiDataSource = new ApiApiDataSource();

            try
            {
                if (args.Contains("--help"))
                {
                    // Now this is just a dirty hack
                    throw new Exception("Help");
                }

                if (args.Contains("--saveapifile"))
                {
                    int index = Array.IndexOf(args, "--saveapifile");

                    if (index + 1 >= args.Length)
                    {
                        throw new Exception("--saveapifile was not followed by a filename");
                    }

                    string filename = args[index + 1];

                    try
                    {
                        var data = await GW2ApiData.LoadFromApiAsync(new ApiSkillRepository());

                        await data.SaveToFileAsync(filename);
                    }
                    catch (Exception e)
                    {
                        Console.WriteLine($"An error occured while saving api data: {e.Message}");
                        return;
                    }

                    Console.Error.WriteLine($"Saved api data to {filename}");

                    return;
                }

                for (var i = 0; i < args.Length; i++)
                {
                    if (args[i] == "--file")
                    {
                        i++;
                        if (i >= args.Length)
                        {
                            throw new Exception("--file was not followed by a filename");
                        }

                        logSources.Add(new FileLogSource(args[i]));
                    }
                    else if (args[i] == "--report")
                    {
                        i++;
                        if (i >= args.Length)
                        {
                            throw new Exception("--report was not followed by an url");
                        }

                        logSources.Add(new EliteInsightsUrlLogSource(args[i]));
                    }
                    else if (args[i] == "--name")
                    {
                        var source = logSources.LastOrDefault() ??
                                     throw new Exception("--name was specified, but there was no log mentioned before to apply it to");

                        i++;
                        if (i >= args.Length)
                        {
                            throw new Exception("--name was not followed by a character name");
                        }

                        source.SetCharacterNameFilter(args[i]);
                    }
                    else if (args[i] == "--apifile")
                    {
                        i++;
                        if (i >= args.Length)
                        {
                            throw new Exception("--apifile was not followed by a filename");
                        }

                        apiDataSource = new FileApiDataSource(args[i]);
                    }
                    else
                    {
                        throw new Exception($"Unrecognized argument: \"{args[i]}\"");
                    }
                }

                if (!logSources.Any())
                {
                    throw new Exception("No log sources provided");
                }
            }
            catch (Exception e)
            {
                Console.Error.WriteLine(e.Message);
                Console.Error.WriteLine($@"Usage examples:
	{AppDomain.CurrentDomain.FriendlyName} --file 20190121-181420.zevtc --file 20190122-141235.zevtc
	{AppDomain.CurrentDomain.FriendlyName} --file 20190121-181420.zevtc --report https://dps.report/example
	{AppDomain.CurrentDomain.FriendlyName} --file 20190121-181420.zevtc --report dps.report/example
	{AppDomain.CurrentDomain.FriendlyName} --file 20190121-181420.zevtc --name ""Character Name"" --report dps.report/example
	{AppDomain.CurrentDomain.FriendlyName} --file 20190121-181420.zevtc --name ""Character Name"" --report dps.report/example --name ""Character Name""
	{AppDomain.CurrentDomain.FriendlyName} --file 20190121-181420.zevtc --file 20190122-141235.zevtc --report https://dps.report/example

	{AppDomain.CurrentDomain.FriendlyName} --apifile apidata.json --file 20190121-181420.zevtc --file 20190122-141235.zevtc
	{AppDomain.CurrentDomain.FriendlyName} --saveapifile apidata.json

	--name is used to specify which character's rotation to use if multiple are present in the log
	--file is used to provide a path to an arcdps EVTC log to be used in the comparison
	--report is used to provide an url to an Elite Insights report to be used in the comparison

	API Data:
		Some data from the official Guild Wars 2 API is used to show icons and similar
		If no related option is specified, the data is downloaded from https://api.guildwars2.com/
		To avoid downloading this every time, you can run the program like this:
			{AppDomain.CurrentDomain.FriendlyName} --saveapifile <filename>
		All other options are ignored in this case and a file with the API data is produced.

		--apifile <filename> can then be used to use api data from a file with cached data from --saveapifile

		Keep in mind that the file needs to be updated from time to time with new GW2 releases or some data may be missing.

	Other notes:
		If no name is specified and multiple characters are present, all of their rotations are shown
		There is no limit on the amount of logs to compare
		You can use any encounter, although extra data is only available only for training golem logs"        );
                return;
            }

            GW2ApiData apiData;

            try
            {
                apiData = await apiDataSource.GetApiDataAsync();
            }
            catch (Exception e)
            {
                Console.Error.WriteLine($"Failed to get API data: {e.Message}");
                return;
            }

            try
            {
                var generator = new RotationComparisonGenerator(apiData);
                generator.WriteHtmlOutput(logSources, Console.Out);
            }
            catch (Exception e)
            {
                Console.Error.WriteLine($"Failed to generate rotation: {e.Message}");
                return;
            }
        }
Exemplo n.º 4
0
 public HtmlGenerator(GW2ApiData gw2ApiData, ITheme theme = null)
 {
     this.gw2ApiData = gw2ApiData;
     Theme           = theme ?? new DefaultTheme();
 }
Exemplo n.º 5
0
        private static void MeasureTimes(string filename, EVTCParser parser, LogProcessor processor, GW2ApiData apiData, TextWriter outputWriter)
        {
            var stopwatch = Stopwatch.StartNew();
            var log       = parser.ParseLog(filename);

            var parsedTime = stopwatch.Elapsed;

            stopwatch.Restart();
            var processedLog = processor.ProcessLog(log);

            var processedTime = stopwatch.Elapsed;

            stopwatch.Restart();
            var analyzer   = new LogAnalyzer(processedLog, apiData);
            var statistics = analyzer.GetStatistics();

            var statisticsTime = stopwatch.Elapsed;

            var totalTime = parsedTime + processedTime + statisticsTime;

            outputWriter.WriteLine(
                $"{filename},{parsedTime.TotalMilliseconds},{processedTime.TotalMilliseconds},{statisticsTime.TotalMilliseconds},{totalTime.TotalMilliseconds}");
            outputWriter.Flush();
        }
Exemplo n.º 6
0
 public RotationComparisonGenerator(GW2ApiData apiData)
 {
     this.apiData = apiData;
 }
Exemplo n.º 7
0
 public Task <GW2ApiData> GetApiDataAsync()
 {
     return(GW2ApiData.LoadFromApiAsync(new ApiSkillRepository()));
 }
Exemplo n.º 8
0
 public SquadRotationPage(IEnumerable <PlayerData> playerData, GW2ApiData gw2ApiData, ITheme theme) : base("Squad rotation", true, theme)
 {
     this.playerData = playerData;
     this.gw2ApiData = gw2ApiData;
 }