示例#1
0
        protected Standings(Standings prevStandings)
        {
            TeamRecords = prevStandings.TeamRecords;

            AdvanceWeek();
            SetIdsToZero();
        }
示例#2
0
 public PlayoffStandings(Standings prevStandings) :
     base(prevStandings)
 {
     foreach (var teamRecord in TeamRecords)
     {
         teamRecord.IsPlayoffs = true;
     }
 }
示例#3
0
        public static Utils.Standings CalculateStandings(int year, int week, bool force = false)
        {
            if (week < 1 || week > 16)
            {
                throw new ArgumentException();
            }

            var weekExists = TeamRecordHandler.WeekExists(year, week);

            if (weekExists)
            {
                if (force)
                {
                    TeamRecordHandler.DeleteTeamRecordsInWeek(year, week);
                }
                else
                {
                    return(Utils.Standings.GetStandings(year, week));
                }
            }

            var prevStandings = Utils.Standings.GetStandings(year, week - 1);

            if (!prevStandings.IsValid())
            {
                // previous week's standings does not exist yet
                prevStandings = CalculateStandings(year, week - 1, force: force);
            }

            Console.WriteLine("Calculating standings for {0} week {1}", year, week);

            Utils.Standings newStandings = null;

            var seasonInfo = SeasonInfoHandler.GetSeason(year);

            if (week <= seasonInfo.RegularSeasonLength)
            {
                newStandings = new Utils.RegularSeasonStandings(prevStandings);
            }
            else
            {
                newStandings = new Utils.PlayoffStandings(prevStandings);
            }

            var games = GameHandler.GetGamesByWeek(year, week);

            foreach (var game in games)
            {
                if (game.HasValidResult)
                {
                    newStandings.AddResult(game);
                }
            }

            newStandings.SortStandings();

            TeamRecordHandler.Add(newStandings.TeamRecords);

            // update season info
            if (week <= seasonInfo.RegularSeasonLength)
            {
                var highestPointsForRecord = newStandings.GetHighestPointsForRecord();
                seasonInfo.HighestPointsFor       = highestPointsForRecord.PointsFor;
                seasonInfo.HighestPointsForTeamId = highestPointsForRecord.TeamId;
                seasonInfo.HighestPointsForTeam   = highestPointsForRecord.Team;

                if (week == seasonInfo.RegularSeasonLength)
                {
                    seasonInfo.RegularSeasonChampionId = newStandings.TeamRecords[0].TeamId;
                }
            }
            else if (week == seasonInfo.SeasonLength)
            {
                seasonInfo.ChampionId    = newStandings.TeamRecords[0].TeamId;
                seasonInfo.SecondPlaceId = newStandings.TeamRecords[1].TeamId;
                seasonInfo.ThirdPlaceId  = newStandings.TeamRecords[2].TeamId;
                seasonInfo.SackoId       = newStandings.TeamRecords.Last().TeamId;
            }

            SeasonInfoHandler.Update(seasonInfo);

            return(newStandings);
        }
示例#4
0
 public RegularSeasonStandings(Standings prevStandings) :
     base(prevStandings)
 {
 }