Find the answer to your Linux question:
Results 1 to 6 of 6
Hello everyone!!!!!!!!!!! I was wondering if there were any good tutorials on the web that go through the development of a Java card game.... ie: blackjack......... I know there are ...
  1. #1
    Just Joined!
    Join Date
    Aug 2006
    Posts
    59

    java card game programming!?!?!



    Hello everyone!!!!!!!!!!! I was wondering if there were any good tutorials on the web that go through the development of a Java card game.... ie: blackjack.........

    I know there are alot of tutorials but sending me in the right direction with a GOOD SOLID tutorial would be very, very, helpful.....

    Thankyou in advance,
    Tom

  2. #2
    Linux Engineer Javasnob's Avatar
    Join Date
    Jul 2005
    Location
    Wisconsin
    Posts
    942
    Is this a homework question? Not many people ask for such specific tutorials...
    Flies of a particular kind, i.e. time-flies, are fond of an arrow.

    Registered Linux User #408794

  3. #3
    Just Joined!
    Join Date
    Aug 2006
    Posts
    59
    I've been wanting to design a black jack game.......... and i figured there was some tutorials out there that would help me...........

    tom

  4. #4
    Linux Engineer Javasnob's Avatar
    Join Date
    Jul 2005
    Location
    Wisconsin
    Posts
    942
    Here's a tutorial on basic Java graphics:

    http://java.sun.com/docs/books/tutor...swing/TOC.html
    Flies of a particular kind, i.e. time-flies, are fond of an arrow.

    Registered Linux User #408794

  5. #5
    Trusted Penguin Cabhan's Avatar
    Join Date
    Jan 2005
    Location
    Seattle, WA, USA
    Posts
    3,204
    I don't know of any exact tutorials, but if we sit down and think through the program, what we need to do should be simple.

    You're going to need, first and foremost, a way to store card data. Each card will have a name, value, suit, and (if you're doing this graphically), an image. So one class down.

    The only other thing I can think you would need is the main program. This program will need to initialize the deck, deal the initial hands, calculate scores, accept input from each user (or calculate what the dealer does, if you're doing it that way), and calculate the results.

    I very much recommend doing this all through command-line first, and you can then adjust it easily to graphics, since you will already have the backbone.
    DISTRO=Arch
    Registered Linux User #388732

  6. #6
    Just Joined!
    Join Date
    Aug 2006
    Posts
    59
    Alright, thankyou for the help..

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •