• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

Sports Draw System: How would you code it?

mar_cuz

Member
Hi guys,

How would you create a sports draw system? So you have say 18 teams and need to create a random draw for the sports season so you have 9 games every round? Then the player plays each round against the drawn teams up to the play offs.

I'm stuck on how I would even attempt this. Please help.
 
R

Richie

Guest
Do you need to know the teams in every match, or just the one the player is participating in?
 

NightFrost

Member
If all you need to do is randomly pair teams... put all the teams into a ds list. Shuffle the list, so it is now in random order. Go through the list and pair every two teams you draw from it. Now, if each team should face other teams only once, it gets more complicated but this wasn't specified as requirement.
 

Smiechu

Member
I assume you're talking about something like Football Menager??

First you need to create a database system with teams, players, matches, seasons, statistics etc.

Than you need to create an algorithm which will manage the changes in the database - mach results, transfers in teams, playera development etc.

On top of that you'll need to create a gui controll system which will use the database to show the data and give player input to the controlling system.

Quite a lot of work... even in simplest variant.
 
Last edited:
Top