ancient-projects

My earliest programs (2006-2010)
git clone https://git.tronto.net/ancient-projects
Download | Log | Files | Refs | README

Pannello.java (1964B)


      1 /*
      2 Copyright 2009 Sebastiano Tronto <sebastiano@luganega.org>
      3 
      4 This file is part of JBriscola.
      5 
      6     JBriscola is free software; you can redistribute it and/or modify
      7     it under the terms of the GNU General Public License as published by
      8     the Free Software Foundation; either version 2 of the License, or
      9     (at your option) any later version.
     10 
     11     JBriscola is distributed in the hope that it will be useful,
     12     but WITHOUT ANY WARRANTY; without even the implied warranty of
     13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     14     GNU General Public License for more details.
     15 
     16     You should have received a copy of the GNU General Public License
     17     along with JBriscola; if not, write to the Free Software
     18     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
     19 
     20 */
     21 
     22 import javax.swing.*;
     23 import java.awt.Graphics;
     24 
     25 public class Pannello extends JPanel {
     26 	public static Main main;
     27 	public Pannello() {
     28 	}
     29 	public void paint( Graphics g ) {
     30 		super.paint( g );
     31 		if ( main.frame.ultimaCarta != null )
     32 			main.frame.ultimaCarta.paintIcon( this, g, 50, 180 );
     33 		if ( main.frame.mazzo )
     34 			main.frame.retro2.paintIcon( this, g, 17, 256 );
     35 		if ( main.frame.carteCPU[0] != null )
     36 			main.frame.retro1.paintIcon( this, g, 230, 5 );
     37 		if ( main.frame.carteCPU[1] != null )
     38 			main.frame.retro1.paintIcon( this, g, 300, 5 );
     39 		if ( main.frame.carteCPU[2] != null )
     40 			main.frame.retro1.paintIcon( this, g, 370, 5 );
     41 		if ( main.frame.carteInMano[0] != null )
     42 			main.frame.carteInMano[0].paintIcon( this, g, 230, 340 );
     43 		if ( main.frame.carteInMano[1] != null )
     44 			main.frame.carteInMano[1].paintIcon( this, g, 300, 340 );
     45 		if ( main.frame.carteInMano[2] != null )
     46 			main.frame.carteInMano[2].paintIcon( this, g, 370, 340 );
     47 		if ( main.frame.giocata[0] != null )
     48 			main.frame.giocata[0].paintIcon( this, g, 250, 200 );
     49 		if ( main.frame.giocata[1] != null )
     50 			main.frame.giocata[1].paintIcon( this, g, 325, 150 );
     51 	}
     52 }
     53