I was thinking about doing some simple boardgames. Unfortunately, most of the tutorials and books out there handle only arcade/applets … not my type 
(if anyone know of resources that handle these kind of games I’ll be glad to read them).
Anyway… there’s a lot to think about. Should my board be intelligent for example, or should I simply dram some thing and catch the XY coordinates? I was thinking about getting oput there as simple as possible… so I wrote a board like this:
public ChessBoard()
{
super(“Schack Arne”);
setBounds(0,0,400,400);
setLayout(new GridLayout(8,8));
for (int i=0; i<64; i++)
{
JPanel square = new JPanel();
if ((i+i/8)%2 == 0)
square.setBackground(Color.black);
else
square.setBackground(Color.white);
add(square);
and thought about doing the gamepieces like draggable JLabels… Do you have any thoughts about that, or any good resources for me to read? I’m really not into GUI programming at all, trying to add a simple JLabel with a picture made my Chessboard go whacky (the getcontentpane().add(Label) stuff I suppose…)
Happy New year to all of you
