Page 1 of 1

Steam ID Project - Another 63

Posted: 26 May 2013, 21:26
by LuckyNoS7evin
Today I finished the Ts in my initial 500+ Steam IDs this meant I had finished, so I thought I would revisit my code to try and get a few more matches...

I changed my "matching" a little and removed case and spaces. You may not care about the previous version but the initial version just removed punctuation.

So here is the new version


foreach (XElement wsgfGame in noMatch)
{
var name = wsgfGame.Element("Title").Value.ToLower();
name = new string(name.Where(c => !char.IsPunctuation(c)).ToArray());
name = name.Replace(" ", "");
if (steam.Descendants("name").Select(s => new string(s.Value.ToLower().Where(c => !char.IsPunctuation(c)).ToArray()).Replace(" ","")).Contains(name))
{
var theMatch = steam.Descendants("app").First(s => new string(s.Element("name").Value.ToLower().Where(c => !char.IsPunctuation(c)).ToArray()).Replace(" ","") == name);
reMatch.Add(wsgfGame, theMatch);
}
}


By the title of this blog guess what, I got 63 new matches.....Time to get these put in to WSGF!

Re: Steam ID Project - Another 63

Posted: 28 May 2013, 22:53
by nicereddy
Next you might think about added the PCGamingWiki link to all the pages that don't have it.

Would it be possible to make a list of every game on the WSGF?

Re: Steam ID Project - Another 63

Posted: 28 May 2013, 23:00
by LuckyNoS7evin
nicereddy wrote:Next you might think about added the PCGamingWiki link to all the pages that don't have it.

Would it be possible to make a list of every game on the WSGF?


I've got to have a word with the WSGF dev guys at some point in the near future, they have an xml version of the Master Games List but it only displays those WSGF games with Steam IDs. I would like a version which displays all games rather than those with just Steam IDs, the internet is about information these days and would love to use the info WSGF has :)