UEWBot / dipvis

Django-based visualiser for tournaments for the boardgame Diplomacy
GNU General Public License v3.0
7 stars 5 forks source link

Add graphs of score against time #249

Open UEWBot opened 1 year ago

UEWBot commented 1 year ago

Very similar to the new SC count graphs. The big difference is that we don't currently store old scores. Would be useful for games, rounds, and the tournament as a whole, but it's less clear what the "time" axis would be for rounds and tournaments unless games are synchronised (central clock).

UEWBot commented 4 months ago

It's easy to do for games, because we can recalculate the score at any time, but it's most interesting for rounds and tournaments. The time axis could be fairly abstract - scores change when any game scores change. In which case, we'd probably just have some kind of incrementing counter. That's still not ideal, because updates may actually be synchronised but won't look it (or the TD may just happen to update one game first).