Exemplo n.º 1
0
        public static ThirdPartyGames Load()
        {
            XmlSerializer deserialize = new XmlSerializer(typeof(ThirdPartyGames));

            if (File.Exists(envFolderPath))
            {
                FileStream      stream     = new FileStream(envFolderPath, FileMode.Open, FileAccess.Read);
                ThirdPartyGames thirdGames = (ThirdPartyGames)deserialize.Deserialize(stream);
                stream.Close();

                return(thirdGames);
            }

            return(new ThirdPartyGames());
        }
Exemplo n.º 2
0
        public Games(String steamInstallDir)
        {
            gameListingParsers = new List <IGameListingParser>();
            games = new Dictionary <String, Game>();

            IGameListingParser parser = new SimpleValveGameParser(steamInstallDir);

            gameListingParsers.Add(parser);

            var thirdPartyParser = new ThirdPartyGameParser();

            thirdParty = thirdPartyParser.thirdPartyGames;

            gameListingParsers.Add(thirdPartyParser);

            MergeGamesLists();
        }
Exemplo n.º 3
0
        public Games()
        {
            gameListingParsers = new List <IGameListingParser>();
            games = new Dictionary <String, Game>();

            IGameListingParser parser = new SimpleValveGameParser(Properties.Settings.Default.SteamInstallDirectory);

            gameListingParsers.Add(parser);

            var thirdPartyParser = new ThirdPartyGameParser();

            thirdParty = thirdPartyParser.thirdPartyGames;

            gameListingParsers.Add(thirdPartyParser);

            MergeGamesLists();
        }
Exemplo n.º 4
0
 public ThirdPartyGameParser()
 {
     thirdPartyGames = ThirdPartyGames.Load();
 }