コード例 #1
0
        bool ParseResultFile(string resultFile)
        {
            if (!File.Exists(resultFile))
            {
                return(false);
            }

            Console.WriteLine("Parsing file " + resultFile);
            try
            {
                string[]           lines = File.ReadAllLines(resultFile);
                TourneyResultModel t     = new TourneyResultModel();
                string[]           l     = lines[0].Split(',');
                string[]           l1    = l[0].Split(' ');
                t.SiteName  = l1[0].Trim();
                t.TourneyNo = l1[2].Replace(',', ' ').Replace('#', ' ').Trim();
                t.GameType  = l[1].Trim();

                string buyInLine = lines[1].Split(':')[1].Trim();
                t.BuyIn = buyInLine;

                if (buyInLine.Contains('/'))
                {
                    string[] b  = buyInLine.Split('/');
                    int      b1 = 0;
                    Int32.TryParse(b[0], out b1);
                    int b2 = 0;
                    Int32.TryParse(b[1], out b2);
                    t.BuyInTotal = b1 + b2;
                }

                int pc = 0;
                if (!Int32.TryParse(lines[2].Split(' ')[0].Trim(), out pc))
                {
                    return(false);
                }
                t.PlayerCount = pc;

                int pp = 0;
                if (!Int32.TryParse(lines[3].Split(':')[1].Trim(), out pp))
                {
                    return(false);
                }
                t.TotalPrizePool = pp;

                t.StartTime = lines[4].Substring(19);

                if (ParseFinish(t, lines))
                {
                    SaveResult(t);
                }

                return(true);
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.ToString());
                return(false);
            }
        }
コード例 #2
0
 void SaveResult(TourneyResultModel t)
 {
     using (CardStatsContext context = new CardStatsContext())
     {
         context.TourneyResults.Add(t);
         context.SaveChanges();
     }
 }
コード例 #3
0
        bool ParseFinish(TourneyResultModel t, string[] lines)
        {
            foreach (string line in lines.Skip(5).ToArray())
            {
                if (line.Contains(playerName))
                {
                    int fp = 0;
                    if (!Int32.TryParse(line.Split(':')[0], out fp))
                    {
                        return(false);
                    }
                    t.FinishPosition = fp;

                    if (line.Contains('%'))
                    {
                        int    firstComma = line.IndexOf(',');
                        string payout     = line.Substring(firstComma + 2);
                        int    firstParen = payout.IndexOf('(');

                        int winnings = 0;
                        if (!Int32.TryParse(payout.Substring(0, firstParen - 1), NumberStyles.Number, CultureInfo.InvariantCulture, out winnings))
                        {
                            return(false);
                        }
                        t.Winnings = winnings;

                        int percent = 0;
                        if (!Int32.TryParse(payout.Substring(firstParen + 1, payout.IndexOf('%') - firstParen - 1), out percent))
                        {
                            return(false);
                        }
                        t.WinPercent = percent;
                    }
                    break;
                }
            }

            return(true);
        }