freemarkerdor/src/main/java/cz/xelfi/quoridor/freemarkerdor/BoardImage.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 01 Jan 2010 20:53:17 +0100
changeset 177 2f8672ac9f1a
parent 176 700003474749
child 264 d60370059c3c
permissions -rw-r--r--
Using gray to indicate active player
     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * The contents of this file are subject to the terms of either the GNU
     5  * General Public License Version 2 only ("GPL") or the Common
     6  * Development and Distribution License("CDDL") (collectively, the
     7  * "License"). You may not use this file except in compliance with the
     8  * License. You can obtain a copy of the License at
     9  * http://www.netbeans.org/cddl-gplv2.html
    10  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    11  * specific language governing permissions and limitations under the
    12  * License.  When distributing the software, include this License Header
    13  * Notice in each file and include the License file at
    14  * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
    15  * particular file as subject to the "Classpath" exception as provided
    16  * by Sun in the GPL Version 2 section of the License file that
    17  * accompanied this code. If applicable, add the following below the
    18  * License Header, with the fields enclosed by brackets [] replaced by
    19  * your own identifying information:
    20  * "Portions Copyrighted [year] [name of copyright owner]"
    21  *
    22  * Contributor(s):
    23  *
    24  * Portions Copyrighted 2009 Jaroslav Tulach
    25  */
    26 
    27 package cz.xelfi.quoridor.freemarkerdor;
    28 
    29 import cz.xelfi.quoridor.Board;
    30 import cz.xelfi.quoridor.Fence;
    31 import cz.xelfi.quoridor.Player;
    32 import java.awt.Color;
    33 import java.awt.Font;
    34 import java.awt.Graphics2D;
    35 import java.awt.Image;
    36 import java.awt.Rectangle;
    37 import java.awt.image.BufferedImage;
    38 
    39 /** Convertor of a board to Image.
    40  *
    41  * @author Jaroslav Tulach <jtulach@netbeans.org>
    42  */
    43 final class BoardImage  {
    44     static Image draw(Board b, int fieldSize) {
    45         int fifth = fieldSize / 10;
    46 
    47         BufferedImage img = new BufferedImage(fieldSize * 9, fieldSize * 9, BufferedImage.TYPE_INT_ARGB);
    48         Graphics2D g = (Graphics2D) img.getGraphics();
    49 
    50         g.setColor(Color.lightGray);
    51         for (int i = 0; i < 9; i++) {
    52             for (int j = 0; j < 9; j++) {
    53                 final Rectangle r = new Rectangle(i * fieldSize, j * fieldSize, fieldSize, fieldSize);
    54                 g.fillRect(r.x + fifth, r.y + fifth, r.width - fifth * 2, r.height - fifth * 2);
    55             }
    56         }
    57 
    58 
    59         g.setColor(Color.BLACK);
    60         for (Fence f : b.getFences()) {
    61             int w, h;
    62             switch (f.getOrientation()) {
    63                 case HORIZONTAL: w = fieldSize - fifth; h = fifth; break;
    64                 case VERTICAL: w = fifth; h = fieldSize - fifth; break;
    65                 default: throw new IllegalStateException();
    66             }
    67             int column = (f.getColumn() - 'A') + 1;
    68             int row = 9 - f.getRow();
    69             Rectangle r = new Rectangle(
    70                 column * fieldSize - w,
    71                 row * fieldSize - h,
    72                 2 * w,
    73                 2 * h
    74             );
    75             g.fill(r);
    76         }
    77 
    78         int cnt = 0;
    79         Color[] colors = { Color.WHITE, Color.BLACK, Color.ORANGE, Color.MAGENTA };
    80         int diametr = fieldSize - fifth * 4;
    81         for (Player p : b.getPlayers()) {
    82             int column = p.getColumn();
    83             int row = 8 - p.getRow();
    84             final Rectangle r = new Rectangle(
    85                 column * fieldSize + 2 * fifth,
    86                 row * fieldSize + 2 * fifth,
    87                 diametr,
    88                 diametr
    89             );
    90             g.setColor(colors[cnt]);
    91             g.fillOval(r.x, r.y, r.width, r.height);
    92             if (p == b.getCurrentPlayer()) {
    93                 g.setColor(Color.lightGray);
    94                 g.fillOval(r.x + r.width / 3, r.y + r.height / 3, r.width / 3, r.height / 3);
    95             }
    96             cnt++;
    97         }
    98 
    99         g.setColor(Color.BLACK);
   100         final Font f = new Font("Monospace", Font.BOLD, fifth * 2);
   101         g.setFont(f);
   102         for (int i = 0; i < 8; i++) {
   103             final char ch = (char) ('A' + i);
   104             g.drawString(Character.toString(ch), i * fieldSize + fieldSize - fifth, fifth + f.getSize() - f.getBaselineFor(ch));
   105         }
   106         for (int i = 0; i < 8; i++) {
   107             String s = "" + (8 - i);
   108             g.drawString(s, fifth, i * fieldSize + fieldSize - fifth + f.getSize() - f.getBaselineFor(s.charAt(0)));
   109         }
   110 
   111         return img;
   112     }
   113 }