// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using System.IO; using osu.Framework.Logging; using osu.Framework.Platform; using osu.Game.Tournament.Components; namespace osu.Game.Tournament.Screens.Drawings.Components { public class StorageBackedTeamList : ITeamList { private const string teams_filename = "drawings.txt"; private readonly Storage storage; public StorageBackedTeamList(Storage storage) { this.storage = storage; } public IEnumerable Teams { get { var teams = new List(); try { using (Stream stream = storage.GetStream(teams_filename, FileAccess.Read, FileMode.Open)) using (var sr = new StreamReader(stream)) { while (sr.Peek() != -1) { string line = sr.ReadLine()?.Trim(); if (string.IsNullOrEmpty(line)) continue; // ReSharper disable once PossibleNullReferenceException string[] split = line.Split(':'); if (split.Length < 2) { Logger.Log($"Invalid team definition: {line}. Expected \"flag_name : team_name : team_acronym\"."); continue; } teams.Add(new TournamentTeam { FullName = split[1].Trim(), Acronym = split.Length >= 3 ? split[2].Trim() : null, FlagName = split[0].Trim() }); } } } catch (Exception ex) { Logger.Error(ex, "Failed to read teams."); } return teams; } } } }