vote up -4 vote down star

For each player imported from a file, before the player is added to the team's roster, their salaryCapFigure will be added to that team's Payroll. If the Payroll is greater than the salary cap, the player will instead be added to team 33 (which is free agency).

I was thinking of making the payroll a class and use List<T> in it for each team, unless it's easier to make it a property of the team class? I thought of it only because I've had trouble accessing multiple list properties of classes (I've got a player list in the team class already).

So how would I do this?

flag

60% accept rate
9  
I think you should actually try to build your application instead of getting people to pretty much build it for you...to which I am under no illusion you will take credit for. Google a tutorial or go buy a book on C# as you are obviously a complete novice. – James Nov 7 at 0:31
I am a novice. Atleast give me advice. – dhalberg Nov 7 at 0:35
11  
I just did..... – James Nov 7 at 0:42

closed as not a real question by Steven A. Lowe, Chris Lutz, Sinan Ünür, Ether, Craig Stuntz Nov 12 at 16:02

2 Answers

vote up -1 vote down check
public class Team
{
	public int TeamNumber { get; private set; }
	private List<Player> Players = new List<Player>();
	private int _SalaryCap;
	private int _CurrentSalaries;

	public Team(int teamNumber, int salaryCap)
	{
		TeamNumber = teamNumber;
		_SalaryCap = salaryCap;
	}

	public bool AddPlayer(Player player)
	{
		if (_SalaryCap - _CurrentSalaries >= player.Salary)
		{
			Players.Add(player);
			_CurrentSalaries += player.Salary;
			return true;
		}
		return false;
	}
}

public class Player
{
	public int Salary { get; private set; }
	public Player(int salary)
	{
		Salary = salary;
	}
}

public class FootballSim
{
	private List<Team> Teams = new List<Team>();

	public FootballSim()
	{
		Team teamOne = new Team(1, 100000);
		Teams.Add(teamOne);
		Team freeAgency = new Team(33, Int32.MaxValue);
		Teams.Add(freeAgency);

		// the first player ends up in teamOne
		Player firstPlayer = new Player(99999);
		if (!teamOne.AddPlayer(firstPlayer))
			freeAgency.AddPlayer(firstPlayer);
		// the second player exceeds teamOne's budget
		// and ends up in the 'free agency'
		Player secondPlayer = new Player(2);
		if (!teamOne.AddPlayer(secondPlayer))
			freeAgency.AddPlayer(secondPlayer);
	}
}
link|flag
2  
Downvoted not just for spoonfeeding, but doing so with no explanation at all. You have taught nothing. – Ether Nov 12 at 6:36
vote up 0 vote down

Consider making a team class with members representing the payroll, list of players, etc. Create instances of the class for each team. You can even write a SalaryCapCheck() method on it to implement your salary cap rule.

This sounds like homework. If so, please tag it. :)

link|flag
2  
@Parappa, I don't think its homework I think dhalberg is trying to implement a football management sim, however, I get the impression he wants SO users to do it for him! – James Nov 7 at 0:33

Not the answer you're looking for? Browse other questions tagged or ask your own question.