view Ristipolku.java @ 4:e0e8fd08331e

Cleanups.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 28 Jan 2011 17:37:01 +0200
parents 1785f66a7beb
children be0bf7544069
line wrap: on
line source

/*
 * Ristipolku
 * (C) Copyright 2011 Matti 'ccr' Hämäläinen <ccr@tnsp.org>
 *
 * Ohjelmointiprojekti 2010-2011 Java-kurssille T740306.
 */
import java.awt.*;
import java.awt.geom.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.*;
import game.*;


class PathInfo
{
    public int in, inX, inY, out, outX, outY; 
   
    public PathInfo(int in, int inX, int inY, int out, int outX, int outY)
    {
        this.in = in;
        this.inX = inX;
        this.inY = inY;

        this.out = out;
        this.outX = outX;
        this.outY = outY;
    }
}


class GameBoard
{
    public static final int boardSize = 9;
    public static final int boardMiddle = 4;
    Piece[][] board;
    Piece current;
   
    public GameBoard()
    {
        board = new Piece[boardSize][boardSize];

        board[boardMiddle][boardMiddle] = new Piece(PieceType.START);

        moveX = boardMiddle;
        moveY = boardMiddle - 1;
    }

    public void paint(Graphics2D g, int sx, int sy, double scale)
    {
        for (int y = 0; y < boardSize; y++)
        for (int x = 0; x < boardSize; x++)
        if (board[x][y] != null)
        {
            board[x][y].paint(g,
                sx + (x * scale),
                sy + (y * scale),
                scale - scale / 10);
        }
    }
   
    private boolean isEmpty(int x, int y)
    {
        return (x >= 0 && x < boardSize && y >= 0 && y < boardSize && board[x][y] == null);
    }

    private Piece getPiece(int x, int y)
    {
        if (x >= 0 && x < boardSize && y >= 0 && y < boardSize)
            return board[x][y];
        else
            return null;
    }
   
    public Point resolvePath(int x, int y, int inpoint)
    {
    }
   
    public void pieceRotate(boolean dir)
    {
        current.rotate(dir);
    }

    public void pieceFinishTurn()
    {
        if (current != null)
            current.setType(PieceType.NORMAL);
      
        if (isEmpty(cx, cy))
        {
            current = new Piece(PieceType.ACTIVE);
            lauta.setPiece(cx, cy, current);
        }
   }
}


public class Ristipolku extends JApplet
                        implements KeyListener
{
    GameBoard lauta = null;
    BufferedImage lautaBG = null;

    public void init()
    {
        getContentPane().setBackground(Color.white);

        try
        {
            lautaBG = ImageIO.read(new File("tausta.png"));
        }
        catch (IOException e)
        {
            JOptionPane.showMessageDialog(null,
                "Could not load background image.",
                "Initialization error",
                JOptionPane.ERROR_MESSAGE);
        }
        
        lauta = new GameBoard();
        addKeyListener(this);
    }

    public void paint(Graphics g)
    {
        Graphics2D g2 = (Graphics2D) g;

        g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                            RenderingHints.VALUE_ANTIALIAS_ON);

        lauta.paint(g2, 15, 15, 60);
    }

    public void keyPressed(KeyEvent e)
    {
    }
   
    public void keyReleased(KeyEvent e)
    {
    }
   
    public void keyTyped(KeyEvent e)
    {
        switch (event.getKeyCode())
        {
            case VK_LEFT:
            case VK_UP:
                lauta.pieceRotate(false);
                break;

            case VK_RIGHT:
            case VK_DOWN:
                lauta.pieceRotate(true);
                break;

            case VK_ENTER:
                lauta.pieceFinishTurn();
                break;
        }
    }
}