finished Method tradeWithBankFourToOne

Modified Class Bank to work with mentioned Method
This commit is contained in:
leobr 2021-11-27 02:13:55 +01:00
parent 2f9f93d862
commit c4c30670b4
2 changed files with 7 additions and 6 deletions

View File

@ -21,10 +21,10 @@ public class Bank {
}
}
public boolean tradeWithBank(Config.Resource resourceToReceive, Config.Resource resourceToGive) {
if(resources.get(resourceToReceive) >= 1){
Integer newResourceReceived = resources.get(resourceToReceive) + 4;
Integer newResourcesGiven = resources.get(resourceToGive) - 1;
public boolean tradeWithBank(Config.Resource resourceToReceive, Config.Resource resourceToGive, int toWant, int toGive) {
if(resources.get(resourceToReceive) >= toWant){
Integer newResourceReceived = resources.get(resourceToReceive) + toGive;
Integer newResourcesGiven = resources.get(resourceToGive) - toWant;
resources.put(resourceToReceive, newResourceReceived);
resources.put(resourceToGive, newResourcesGiven);
return true;

View File

@ -27,7 +27,7 @@ public class SiedlerGame {
private SiedlerBoard board;
private Player[] allPlayers;
private int winPoints;
private Bank bank;
/**
* Constructs a SiedlerGame game state object.
*
@ -38,6 +38,7 @@ public class SiedlerGame {
* three or players is not between two and four
*/
public SiedlerGame(int winPoints, int numberOfPlayers) {
bank = new Bank();
board = new SiedlerBoard();
board.createFixGamefield();
allPlayers = new Player[numberOfPlayers];
@ -248,7 +249,7 @@ public class SiedlerGame {
*/
public boolean tradeWithBankFourToOne(Resource offer, Resource want) {
// TODO: Implement
return false;
return bank.tradeWithBank(want,offer, FOUR_TO_ONE_TRADE_WANT, FOUR_TO_ONE_TRADE_OFFER);
}
/**