資源簡介
Java語言實現,實現過程來自網易課程,包含貪吃蛇基本操作、背景音樂等,游戲界面較美觀。
代碼片段和文件信息
package?com.zijin.snake;
import?java.awt.Image;
import?javax.swing.ImageIcon;
/*
?*?食物類
?*/
public?class?Food?{
//?屬性
int?foodx;
int?foody;
static?Image?foodImg;
static?{
foodImg?=?new?ImageIcon(“image/food.png“).getImage();
}
//?構造
public?Food()?{
foodx?=?(int)?(Math.random()?*?34)?*?25?+?25;
foody?=?(int)?(Math.random()?*?24)?*?25?+?75;
}
//刷新食物位置的方法
public?void?newfood()?{
foodx?=?(int)?(Math.random()?*?34)?*?25?+?25;
foody?=?(int)?(Math.random()?*?24)?*?25?+?75;
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2018-07-15?22:20??SNAKE\
?????文件?????????301??2018-07-15?18:04??SNAKE\.classpath
?????文件?????????381??2018-07-15?18:04??SNAKE\.project
?????目錄???????????0??2018-07-15?18:04??SNAKE\.settings\
?????文件?????????598??2018-07-15?18:04??SNAKE\.settings\org.eclipse.jdt.core.prefs
?????目錄???????????0??2018-07-15?18:45??SNAKE\Image\
?????文件???????22494??2018-07-15?18:32??SNAKE\Image\body.png
?????文件???????20710??2018-07-15?18:32??SNAKE\Image\down.png
?????文件???????20269??2018-07-15?18:32??SNAKE\Image\food.png
?????文件???????20785??2018-07-15?18:32??SNAKE\Image\left.png
?????文件???????20780??2018-07-15?18:32??SNAKE\Image\right.png
?????文件???????20531??2018-07-15?18:32??SNAKE\Image\ti
?????文件???????20722??2018-07-15?18:32??SNAKE\Image\up.png
?????目錄???????????0??2018-07-15?18:45??SNAKE\bin\
?????目錄???????????0??2018-07-15?18:05??SNAKE\bin\com\
?????目錄???????????0??2018-07-15?18:05??SNAKE\bin\com\zijin\
?????目錄???????????0??2018-07-15?22:22??SNAKE\bin\com\zijin\snake\
?????文件?????????794??2018-07-15?21:15??SNAKE\bin\com\zijin\snake\Food.class
?????文件?????????830??2018-07-15?22:55??SNAKE\bin\com\zijin\snake\Music.class
?????文件????????1467??2018-07-15?21:49??SNAKE\bin\com\zijin\snake\Snake.class
?????文件?????????992??2018-07-15?21:19??SNAKE\bin\com\zijin\snake\Snakefr
?????文件????????4503??2018-07-15?22:27??SNAKE\bin\com\zijin\snake\SnakePanel.class
?????目錄???????????0??2018-07-15?22:54??SNAKE\music\
?????文件????22686390??2018-07-10?16:15??SNAKE\music\Node.wav
?????文件????14684348??2018-07-10?15:55??SNAKE\music\Shotgun.wav
?????文件????22841910??2018-07-10?16:15??SNAKE\music\Vive.wav
?????文件????37232974??2018-07-15?22:54??SNAKE\music\what?for?.wav
?????目錄???????????0??2018-07-15?18:45??SNAKE\src\
?????目錄???????????0??2018-07-15?18:05??SNAKE\src\com\
?????目錄???????????0??2018-07-15?18:05??SNAKE\src\com\zijin\
?????目錄???????????0??2018-07-15?22:22??SNAKE\src\com\zijin\snake\
............此處省略5個文件信息
評論
共有 條評論