Java submarine vs. game source code project, java submarine vs. source code

Source: Internet
Author: User

Java submarine vs. game source code project, java submarine vs. source code

The Code is as follows:

 

Package com. util; import java. awt. borderLayout; import java. awt. color; import java. awt. dimension; import java. awt. graphics; import java. awt. graphics2D; import java. awt. gridLayout; import java. awt. image; import java. awt. toolkit; import java. awt. event. actionEvent; import java. awt. event. actionListener; import java. util. observable; import javax. swing. JLabel; import javax. swing. JPanel;/** main interface Panel of the graphic game */public class MainPanel extends JPanel {private static final long serialVersionUID = 1L; private MyButton startButton; private MyButton exitButton; private JLabel helpLabel; private JLabel helpLabel1; private JLabel helpLabel2; private JLabel helpLabel3; private Image image; private JLabel centerlabel; private boolean isStart; private boolean isExit; private Observable obs; public MainPanel (Observable ob) {obs = ob; startButton = new MyButton ("Enter game"); exitButton = new MyButton ("exit game"); helpLabel = new JLabel (); helpLabel1 = new JLabel (); helpLabel2 = new JLabel (); helpLabel3 = new JLabel (); centerlabel = new JLabel (); this. setLayout (new BorderLayout (); this. helpLabel. setPreferredSize (new Dimension (645,291); this. helpLabel1.setPreferredSize (new Dimension (180,80); this. helpLabel2.setPreferredSize (new Dimension (215,80); this. helpLabel3.setPreferredSize (new Dimension (645,80); this. centerlabel. setPreferredSize (new Dimension (460,80); centerlabel. setLayout (new GridLayout (2, 1); centerlabel. add (this. startButton); centerlabel. add (this. exitButton); this. centerlabel. setBackground (new Color (255,255, 0); this. add (helpLabel, BorderLayout. NORTH); this. add (helpLabel1, BorderLayout. EAST); this. add (helpLabel2, BorderLayout. WEST); this. add (helpLabel3, BorderLayout. SOUTH); this. add (centerlabel, BorderLayout. CENTER); image = Toolkit. getdefatooltoolkit (). getImage ("imgs/Main Interface 112.png"); // image = new ImageIcon (image ). getImage (); this. startButton. addActionListener (new ActionListener () {public void actionreceivmed (ActionEvent e) {boolean flag = true; MainPanel. this. setIsStart (flag); MainPanel. this. obs. policyobservers (MainPanel. this) ;}}); this. exitButton. addActionListener (new ActionListener () {public void actionreceivmed (ActionEvent e) {MainPanel. this. setExit (true) ;}}) ;}public void paint (Graphics g) {super. paint (g); Graphics2D g2 = (Graphics2D) g; g2.drawImage (image, 0, 0, this. getWidth (), this. getHeight (), this); super. paintComponents (g);} public boolean getIsStart () {return this. isStart;} public void setIsStart (boolean isStart) {this. isStart = isStart;} public boolean isExit () {return isExit;} public void setExit (boolean isExit) {this. isExit = isExit ;}}

 

 





Http://java.662p.com/thread-3188-1-1.html

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.