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

I'm creating a card game and using slick2d for graphics. When I call my method to draw a card from a deck in public void init it runs twice. Below method draws a card from the deck constructor and returns the index number.

public Card PlayerCardDraw()
{

    Card index = cards.remove(1);
    System.out.println("Cards left: " + cards.size());
    return index;
}

Deck constructor:

Deck()
{
    cards = new ArrayList<Card>();
    for (int a = 0; a < 52; a++)
    {           
            cards.add(new Card(a));         
    }
}
public class Play extends BasicGameState
{
Deck deck = new Deck ();
Image PlayScreen;
Image PauseButton;
Image FaceDown1, FaceDown2;

Image card[] = new Image [52];

public String mouse = "no input";


Card C;

public Play (int state)
{

}


public void init (GameContainer gc, StateBasedGame sbg) throws SlickException
{
    PlayScreen = new Image ("res/Play/PlayScreen.png");
    PauseButton = new Image ("res/Play/PauseButton.png");
    FaceDown1 = new Image("res/CardBacks/redback1.png");
    FaceDown2 = new Image("res/CardBacks/redback2.png");

    String fileLocation = new String ();
    for (int i = 0 ; i < 52 ; i++)
    {
        fileLocation = "res/cards/" + (i+1) + ".png";
        card [i] = new Image (fileLocation);
    }
       //should only run once, right?
    C = deck.PlayerCardDraw();

}

the output i get when ran is Cards left: 51 Cards left: 50

This means the PlayerCardDraw() was called twice. I added in a simple system out statement saying "hi" and it ran twice as well.

does anybody know why this is happening and how to fix it? By the way, this stuff is running before the program even enters the play state. It displays cards left and hi in the title state which doesn't include any of this.

share|improve this question
Please post the code which calls Play.. the only problem I can see that would cause that is you are creating more than 1 instance of the Play class... i.e new Play() – David Kroukamp Jan 25 at 17:19

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.