• 大小: 62KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-01-06
  • 语言: Java
  • 标签: java  

资源简介

在完成面向对象、Swing、线程的课程后,可以开始练习本项目的部署安排。安排本练习的主要目的理解面向对象、能够用面向对象的思路去思考问题,结合Swing和现成的知识完成本项目。

资源截图

代码片段和文件信息

//class Animation will define the Eater as well as the enemies...be careful with the 
//objects passed to the constructors..as unwary external modifination will cause problems..
//Finishing www.codefans.net
//setting size and location of an Animation object will be responsibility of the 
//class where this object will be created...


import javax.swing.*;
import java.awt.*;
import java.util.*;

public class Animation extends JPanel implements GameConstants {

private int direction;
private int id;
private int velocity;
private int oldDirection;
private boolean changeImage = true;
private ImageIcon icons [];

private int [] imageSequence;
private int currentImage =0;//its value can be 0 to 1 less thatn imageSequence.length


//constructor...

public

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-05-25 16:06  java吃豆子游戏源代码\
     文件        1679  2007-01-06 20:39  java吃豆子游戏源代码\Animation.class
     文件        2058  2008-11-26 22:19  java吃豆子游戏源代码\Animation.java
     文件        1371  2007-01-06 20:39  java吃豆子游戏源代码\Background$Dot.class
     文件         487  2007-01-06 20:39  java吃豆子游戏源代码\Background$Gate.class
     文件       12127  2007-01-06 20:39  java吃豆子游戏源代码\Background.class
     文件       16161  2008-11-26 22:20  java吃豆子游戏源代码\Background.java
     文件         371  2007-01-06 20:39  java吃豆子游戏源代码\GameConstants.class
     文件         201  2006-09-19 04:17  java吃豆子游戏源代码\GameConstants.java
     文件        1909  2007-01-06 20:39  java吃豆子游戏源代码\GameController.class
     文件        1558  2006-12-29 00:25  java吃豆子游戏源代码\GameController.java
     文件        2741  2007-01-06 20:39  java吃豆子游戏源代码\GameView.class
     文件        2359  2008-11-26 22:20  java吃豆子游戏源代码\GameView.java
     目录           0  2015-05-25 16:06  java吃豆子游戏源代码\images\
     文件       14378  2006-09-13 05:37  java吃豆子游戏源代码\images\Backup_of_eater.cdr
     文件         828  2006-09-13 05:37  java吃豆子游戏源代码\images\dot.gif
     文件       15774  2006-09-24 22:50  java吃豆子游戏源代码\images\eater.cdr
     文件        1041  2006-09-05 15:23  java吃豆子游戏源代码\images\eater_0_1.gif
     文件        1067  2006-09-05 15:39  java吃豆子游戏源代码\images\eater_0_2.gif
     文件        1063  2006-09-05 15:44  java吃豆子游戏源代码\images\eater_0_3.gif
     文件        1040  2006-09-05 15:38  java吃豆子游戏源代码\images\eater_0_4.gif
     文件        1057  2006-09-05 15:39  java吃豆子游戏源代码\images\eater_0_5.gif
     文件        1057  2006-09-05 15:44  java吃豆子游戏源代码\images\eater_0_6.gif
     文件        1039  2006-09-05 15:35  java吃豆子游戏源代码\images\eater_1_1.gif
     文件        1062  2006-09-05 15:40  java吃豆子游戏源代码\images\eater_1_2.gif
     文件        1057  2006-09-05 15:43  java吃豆子游戏源代码\images\eater_1_3.gif
     文件        1037  2006-09-05 15:37  java吃豆子游戏源代码\images\eater_1_4.gif
     文件        1067  2006-09-05 15:40  java吃豆子游戏源代码\images\eater_1_5.gif
     文件        1062  2006-09-05 15:43  java吃豆子游戏源代码\images\eater_1_6.gif
     文件        1057  2006-09-05 15:36  java吃豆子游戏源代码\images\eater_2_1.gif
     文件        1081  2006-09-05 15:41  java吃豆子游戏源代码\images\eater_2_2.gif
............此处省略18个文件信息

评论

共有 条评论