High score table feature

From TRCCompSci - AQA Computer Science
Revision as of 09:34, 19 February 2018 by Lewis Appleyard (talk | contribs)
Jump to: navigation, search

At the end of the game, take the high score and check the current table of high scores to see if it can go on the table. Then, add in the result and move or remove any other high scores lower in the table or that have fallen off the table. This text file could save every score played from the game, but I'll do top ten to add the removing feature. The scores also need a name attributed to them, so let the user input some letters to save with their score, and then add a way to display the table.

1 static void HSUpdate()
2 {
3     StreamReader UpdateHSTable = new StreamReader("highscores.txt");
4     string[10] HSTable = System.IO.File.ReadAllLines("highscores.txt");;
5     
6 }