ancient-projects

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

Pannello.java (2015B)


      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.*;
     24 
     25 public class Pannello extends JPanel {
     26 	public static Main main;
     27 	public static Color color;
     28 	public Pannello() {	}
     29 	public void paint( Graphics g ) {
     30 		super.paint( g );
     31 		setBackground( main.color );
     32 		if ( main.frame.ultimaCarta != null )
     33 			main.frame.ultimaCarta.paintIcon( this, g, 50, 180 );
     34 		if ( main.frame.mazzo )
     35 			main.frame.retro2.paintIcon( this, g, 17, 256 );
     36 		if ( main.frame.carteCPU[0] != null )
     37 			main.frame.retro1.paintIcon( this, g, 230, 5 );
     38 		if ( main.frame.carteCPU[1] != null )
     39 			main.frame.retro1.paintIcon( this, g, 300, 5 );
     40 		if ( main.frame.carteCPU[2] != null )
     41 			main.frame.retro1.paintIcon( this, g, 370, 5 );
     42 		if ( main.frame.carteInMano[0] != null )
     43 			main.frame.carteInMano[0].paintIcon( this, g, 230, 340 );
     44 		if ( main.frame.carteInMano[1] != null )
     45 			main.frame.carteInMano[1].paintIcon( this, g, 300, 340 );
     46 		if ( main.frame.carteInMano[2] != null )
     47 			main.frame.carteInMano[2].paintIcon( this, g, 370, 340 );
     48 		if ( main.frame.giocata[0] != null )
     49 			main.frame.giocata[0].paintIcon( this, g, 250, 200 );
     50 		if ( main.frame.giocata[1] != null )
     51 			main.frame.giocata[1].paintIcon( this, g, 325, 150 );
     52 	}
     53 }
     54