Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am creating a board game and i have pretty much everything working fine. When i click the roll dice button everything works fine but then when i click it again all my integers and strings return to the default and nothing saves so none of the scores are recorded.

I am using methods and passing the integers into them and returning the results which is working fine, but only the 1st time because the return value does not save for the next time i click the roll button. Can anyone help please?

The problem here is that it is constantly given me player1, when after each click of the button it should be changing from player 1 and player 2

    int randomMethod;
    Random r = new Random();
    Life l = new Life();
    int [] p1 = l.firstPlayer;
    int [] p2 = l.secondPlayer;
    BoardGUI b = new BoardGUI();
    String player;
    String thePlayer = "player2";

    public String aCurrentPlayer(String thePlayer){

        if (thePlayer.equals("player1")){
            thePlayer = "player2";
        }
 else if (thePlayer.equals("player2")){
     thePlayer = "player1";
 }
     else{
            JOptionPane.showMessageDialog(null,"There is an error here!");
 }
        return thePlayer;

    }

    if (randomMethod == 23) {
            Life choices = new Life();
            thePlayer = aCurrentPlayer(thePlayer);
            JOptionPane.showMessageDialog(null,"?????????????????"+thePlayer);
            choices.foodshop(p1,thePlayer);
         //   choices.foodshop(p2, player);

        }
share|improve this question
Without posting some representative code, it's going to be hard to figure out what you're doing wrong... – Oli Charlesworth Aug 20 '11 at 13:21
Paste relevant code fragments if you want anyone to help you. It is rather hard to diagnose the problem in a form you presented it. – pkk Aug 20 '11 at 13:21
The bug is at line 265. At least, that's what my crystal ball tells me. – JB Nizet Aug 20 '11 at 13:22
@JB you'd better get your crystal ball inspected because mine is telling me line 42, not line 265. – Matt Ball Aug 20 '11 at 13:45
@Matt: Yes, I just noticed it had problems with Unix end of lines. On Windows it works fine :-). – JB Nizet Aug 20 '11 at 13:47

closed as not a real question by Pablo Fernandez, Sean Patrick Floyd, msw, brian d foy, Andrie Aug 20 '11 at 16:08

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

That's ugly code ... but it should work. The only thing that I can suggest is to check that thePlayer in:

`thePlayer = aCurrentPlayer(thePlayer);` 

is not a local variable or parameter. (Because if it is, the chances are that you are not updating the instance variable called thePlayer.)

share|improve this answer

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