How to design a leaderboard?

Posted by PeterK on Game Development See other posts from Game Development or by PeterK
Published on 2011-03-03T07:04:01Z Indexed on 2011/03/03 7:33 UTC
Read the original article Hit count: 299

Filed under:
|
|

This sounds like an easy thing but when i considering the following

  • Many players
  • Some have played many games and some just started
  • Different type of statistics

...on what information should the actual ranking be based on. I am planning to display the board in a UITableView so there is limited space available per player. However, I am not bound to the UITableView if there is a better solution.

This is a quiz game and the information i am currently capturing per player is:

  • #games played totally
  • #games played per game type (current version have only one game type)
  • #questions answered
  • #correct answers

Maybe i should include additional information.

I have been thinking about having a leaderboard property page where the player can decide on what basis the leaderboard should display information but would like to avoid the complexity in that. However, if that is needed i will do it.

Anyone that can give me some advice on how to design the presentation of this would be highly appreciated?

© Game Development or respective owner

Related posts about iphone

Related posts about objective-c