webidor/src/main/java/cz/xelfi/quoridor/webidor/resources/BoardImage.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 19 Sep 2009 14:38:29 +0200
changeset 100 8b899ed24f9f
parent 95 36ace6ba1dc1
child 102 bda5bd82b435
permissions -rw-r--r--
Browsable history of each game
     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.webidor.resources;
    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.Graphics2D;
    34 import java.awt.Image;
    35 import java.awt.Rectangle;
    36 import java.awt.image.BufferedImage;
    37 
    38 /** Convertor of a board to Image.
    39  *
    40  * @author Jaroslav Tulach <jtulach@netbeans.org>
    41  */
    42 final class BoardImage  {
    43     static Image draw(Board b, int fieldSize) {
    44         int fifth = fieldSize / 10;
    45 
    46         BufferedImage img = new BufferedImage(fieldSize * 9, fieldSize * 9, BufferedImage.TYPE_INT_ARGB);
    47         Graphics2D g = (Graphics2D) img.getGraphics();
    48 
    49         g.setColor(Color.lightGray);
    50         for (int i = 0; i < 9; i++) {
    51             for (int j = 0; j < 9; j++) {
    52                 final Rectangle r = new Rectangle(i * fieldSize, j * fieldSize, fieldSize, fieldSize);
    53                 g.fillRect(r.x + fifth, r.y + fifth, r.width - fifth * 2, r.height - fifth * 2);
    54             }
    55         }
    56 
    57 
    58         g.setColor(Color.BLACK);
    59         for (Fence f : b.getFences()) {
    60             int w, h;
    61             switch (f.getOrientation()) {
    62                 case HORIZONTAL: w = fieldSize - fifth; h = fifth; break;
    63                 case VERTICAL: w = fifth; h = fieldSize - fifth; break;
    64                 default: throw new IllegalStateException();
    65             }
    66             int column = (f.getColumn() - 'A') + 1;
    67             int row = 9 - f.getRow();
    68             Rectangle r = new Rectangle(
    69                 column * fieldSize - w,
    70                 row * fieldSize - h,
    71                 2 * w,
    72                 2 * h
    73             );
    74             g.fill(r);
    75         }
    76 
    77         int cnt = 0;
    78         Color[] colors = { Color.WHITE, Color.BLACK, Color.ORANGE, Color.MAGENTA };
    79         int diametr = fieldSize - fifth * 4;
    80         for (Player p : b.getPlayers()) {
    81             int column = p.getColumn();
    82             int row = 8 - p.getRow();
    83             final Rectangle r = new Rectangle(
    84                 column * fieldSize + 2 * fifth,
    85                 row * fieldSize + 2 * fifth,
    86                 diametr,
    87                 diametr
    88             );
    89             g.setColor(colors[cnt]);
    90             g.fillOval(r.x, r.y, r.width, r.height);
    91             cnt++;
    92         }
    93 
    94         return img;
    95     }
    96 }