Results will be one of the building blocks for more interesting things we could potentially add in the app. Creating a tournament, placing players in a draw and then moving them based on results would a possible.
Results is a very generic concept though. There are at least a few of them in our domain:
fetching existing results from tournaments for the pro tours we follow (do Premier and FIP as they are the biggest ones)
Pista match results, these are for a future where Pista can manage tournaments, players, etc
placing players in a draw
Once you have the concept of draws for tournaments and you know that a match will happen between two teams, if you find the match result for that match you can MOVE that player in the draw, advancing the player in the draw. The logic to do this is described in this blog post I wrote a few years ago: https://pdgonzalez872.github.io/articles/010_20200921_draw_advance.html
Results will be one of the building blocks for more interesting things we could potentially add in the app. Creating a tournament, placing players in a draw and then moving them based on results would a possible.
Results is a very generic concept though. There are at least a few of them in our domain:
Once you have the concept of
draws
fortournaments
and you know that amatch
will happen between twoteams
, if you find the match result for that match you can MOVE that player in the draw, advancing the player in the draw. The logic to do this is described in this blog post I wrote a few years ago: https://pdgonzalez872.github.io/articles/010_20200921_draw_advance.html(I'll keep editing this issue with more details)