Esempio n. 1
0
        public static void UpdateTournamentResults(TournamentModel tournament)
        {
            int startingRound = tournament.GetCurrentRound();

            List <MatchupModel> toScore = new List <MatchupModel>();

            foreach (List <MatchupModel> round in tournament.Rounds)
            {
                foreach (MatchupModel rm in round)
                {
                    if (rm.Winner == null && (rm.Entries.Any(x => x.Score != 0) || rm.Entries.Count == 1))
                    {
                        toScore.Add(rm);
                    }
                }
            }

            MarkWinnersInMatchup(toScore);

            AdvanceWinners(toScore, tournament);

            toScore.ForEach(x => GlobalConfig.Connection.UpdateMatchup(x));

            int endingRound = tournament.GetCurrentRound();

            if (endingRound > startingRound)
            {
                tournament.AlertUsersToNextRound();
            }
        }