资源简介
大二刚学java时写的一个俄罗斯方块程序,整个项目都压缩放上来了,供有兴趣的朋友参考
代码片段和文件信息
/*
* To change this template choose Tools | Templates
* and open the template in the editor.
*/
package tezis;
public class Block implements Runnable {
//用二维数组保存
static int[][] blocks = {
{0x000f 0x8888 0x000f 0x8888}//用十六进至表示,本行表示长条四种状态
{0x004e 0x0464 0x00e4 0x04c4}
{0x0462 0x006c 0x0462 0x006c}
{0x0264 0x00c6 0x0264 0x00c6}
{0x0622 0x0017 0x0446 0x0074}
{0x0644 0x00e2 0x044c 0x008e}
{0x0066 0x0066 0x0066 0x0066}
};
int blockType; //块的模式号(0-6)
int turnState;
int X Y; //块在画布上的坐标
Tetris tetris;
//方块自由下落线程
Thread down = null;
//速度控制变量
int ymove = 1;
int seconds = 750;
int speed = 0;
//保存下一个方块
int nextType = 0;
int nextState = 0;
Block(Tetris tetris) {
this.tetris = tetris;
blockType = (int) (Math.random() * 1000) % 7;
turnState = (int) (Math.random() * 1000) % 4;
X = tetris.initX;
Y = tetris.initY;
this.dispBlock(1);
down = new Thread(this);
down.start();
}
//NEXT显示
public void next() {
nextType = (int) (Math.random() * 1000) % 7;
nextState = (int) (Math.random() * 1000) % 4;
int k = 0x8000;
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 4; j++) {
tetris.nextBlock[i][j] = 0;
}
}
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 4; j++) {
if (((int) blocks[nextType][nextState] & k) != 0) {
tetris.nextBlock[j][i] = 1;
}
k = k >> 1;
}
}
}
public synchronized void reset() {
blockType = nextType;
turnState = nextState;
X = tetris.initX;
Y = tetris.initY;
ymove = 1;
tetris.flag = 2;
tetris.fullLine.removeAllElements();
this.next();
}
//右移
public void rightMove() {
if (this.canRight(blockType turnState 0) && !this.pause()) {
dispBlock(0);
X++;
dispBlock(1);
}
}
//左移
public void leftMove() {
if (this.canLeft(blockType turnState 0) && !this.pause()) {
dispBlock(0);
X--;
dispBlock(1);
}
}
//翻转
public void turn() {
if (this.isActive(blockType turnState X Y) && this.canRight(blockType
(turnState+1) % 41) && this.canLeft(blockType (turnState+1) % 41)
&& !this.pause()) {
dispBlock(0);
turnState = (turnState + 1) % 4;
dispBlock(1);
}
}
//判断是否可以左移
public boolean canLeft(int t int sint type) {
int k = 0x8000;
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 4; j++) {
if (type == 0) {
if ((int) (blocks[t][
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 101 2010-06-25 22:31 Tezis\build\built-jar.properties
文件 0 2010-06-25 22:58 Tezis\build\classes\.netbeans_automatic_build
文件 4485 2010-08-21 22:46 Tezis\build\classes\tezis\Block.class
文件 1492 2010-08-21 22:46 Tezis\build\classes\tezis\SValue.class
文件 7823 2010-08-21 22:46 Tezis\build\classes\tezis\Tetris.class
文件 3710 2010-05-17 13:01 Tezis\build.xm
文件 1444 2010-06-25 22:31 Tezis\dist\README.TXT
文件 85 2010-05-17 13:01 Tezis\manifest.mf
文件 43230 2010-05-17 13:01 Tezis\nbproject\build-impl.xm
文件 475 2010-05-17 13:01 Tezis\nbproject\genfiles.properties
文件 175 2010-08-21 22:46 Tezis\nbproject\private\private.properties
文件 211 2010-07-18 09:58 Tezis\nbproject\private\private.xm
文件 2035 2010-05-17 19:50 Tezis\nbproject\project.properties
文件 513 2010-05-17 13:01 Tezis\nbproject\project.xm
文件 7270 2010-05-31 13:14 Tezis\src\tezis\Block.java
文件 1641 2010-07-18 09:58 Tezis\src\tezis\SValue.java
文件 10442 2010-07-18 08:47 Tezis\src\tezis\Tetris.java
文件 176389 2010-05-27 10:28 Tezis\src\俄罗斯方块\bg.jpg
文件 34224 2010-06-15 15:53 Tezis\src\俄罗斯方块\bg1.jpg
文件 111170 2010-05-23 11:26 Tezis\src\俄罗斯方块\bg2.jpg
文件 11698 2010-05-30 20:16 Tezis\src\俄罗斯方块\block.jpg
文件 10959 2010-05-20 10:32 Tezis\src\俄罗斯方块\block1 - 副本.jpg
文件 11653 2010-05-30 20:20 Tezis\src\俄罗斯方块\block1.jpg
文件 10956 2010-05-18 08:41 Tezis\src\俄罗斯方块\block2.jpg
文件 18169 2010-06-04 09:55 Tezis\src\俄罗斯方块\tetris.docx
文件 3374 2010-05-18 09:36 Tezis\src\俄罗斯方块\新建文本文档.txt
目录 0 2010-09-26 18:58 Tezis\build\classes\tezis
目录 0 2010-09-26 18:58 Tezis\build\classes
目录 0 2010-06-25 22:31 Tezis\build\empty
目录 0 2010-09-26 18:58 Tezis\nbproject\private
............此处省略11个文件信息
相关资源
- mysql数据处理,java用户登录处理
- 法律咨询信息系统(java+jsp+sqlserver)
- Java快速开发平台源码(renren-fast)
- 锐聘学院QST青软JavaWeb十二个打包
- 3.3.6微信支付JAVA版demo
- javaweb网上购物系统源码(附数据库脚
- javaweb校园宿舍系统(附数据库脚本)
- JavaWeb书城项目(附数据库脚本)
- 基于JAVA_JSP电子书系统(源码+数据库
- Java网络编程知识点总结.xmind
- 一站式Java网络编程 BIO-NIO-AIO资料源码
- jsp讲解
- 基于SSH框架的JavaWeb项目—人员信息管
- javaweb实现的邮件收发系统(附数据库
- Java 仿QQ(附客户端以及服务端源码)
- Java TCP IP Socket
- java定时发送邮件(基于quartz)
- Java Swing开发的《星际争霸》游戏
- java+数据库商品交易管理系统(附数据
- 使用java语言编译一个计算器
- java swing工资管理系统(源码+数据库
- JAVALibrary
- 微信企业号回调模式Java版
- 顺丰丰桥接口开发详细教程源码含下
- Java博客概要设计文档
- 药品进销存管理系统(论文范文_JSP
- 奖学金管理系统java+jsp+mysql
- 毕设参考——基于java酒店管理
- Java写的一个简单的字体更改程序
- java8学习教程之lambda表达式的使用方法
评论
共有 条评论