/* * Copyright (C) 2012 JPII and contributors * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package com.jpii.navalbattle.game.gui; import java.awt.*; import com.jpii.navalbattle.pavo.*; import com.jpii.navalbattle.pavo.gui.GameWindow; public class PlayerProfileWindow extends GameWindow { private static final long serialVersionUID = 1L; public PlayerProfileWindow() { super(); setSize(300,200); setTitle("Dave's player profile."); render(); } public void render() { super.render(); Graphics2D g = PavoHelper.createGraphics(getBuffer()); g.setColor(new Color(126,105,65)); g.fillRect(10,34,100,100); g.setColor(new Color(104,77,60)); g.drawRect(10,34,100,100); g.setColor(new Color(169,140,86)); g.fillRect(20,44,80,80); g.setColor(new Color(104,77,60)); g.drawRect(20,44,80,80); g.setColor(new Color(65,54,33)); for (int v = 0; v < 80; v+= 8) { g.drawLine(11,v+48,19,v+44); } for (int v = 0; v < 80; v+= 8) { g.drawLine(v+24,35,v+20,43); } for (int v = 0; v < 80; v+= 8) { g.drawLine(101,v+48,109,v+44); } for (int v = 0; v < 80; v+= 8) { g.drawLine(v+24,35+90,v+20,43+90); } g.setColor(Color.black); g.drawString("<no avatar>",27,87); g.drawString("Captain Dave", 21, 152); g.drawString("Rank: Captain", 135, 44); g.drawString("Money: �1 630 000", 135, 59); g.drawString("RG Id: shis-ka-bob1", 135, 74); g.dispose(); } }