Closed chrisnienart closed 2 weeks ago
Created a metric called performance for won games. Still need to test whether this metric properly balances difficulty and completion time. There is currently no tracking or assessment for games lost.
Performance should scale at less than a linear rate with board size. Consider using log(boardSize)
instead.
Possible solution for tracking lost games: scale performance by completed percentage metric. This metric would be a function of cells revealed, board size, number of mines, etc.
Completed percentage added in Commit b25a882
Used completed percentage squared adffa13. Difficulty for increasing mine percentage still understated, but good enough for now.
Currently top scores are indicated by lowest completion time, but do not account for game difficulty. A new single value metric should be recorded that combines time elapsed, size of the board, percentage of mines. The score should be defined in a way so that a higher value indicates better performance.
Constraints