贪吃蛇新出来的游戏名字
创始人
2024-06-28 15:59:38
0

一、最近出了什么新游戏

推荐

LUNA

GT劲舞团2

伊苏战记

乌龙学员

炼狱

期待

剑3

指环王OL

今年新游戏:圣斗士OL

2009-6-20

内测

角色扮演

KO堂

2009-6-18

公测

运动/休闲

LUNA

2009-6-12

不删档内测

角色扮演

问鼎

2009-6-03

不删档内测

角色扮演

王者世界

2009-6-03

公测

角色扮演

炼狱ONLINE

2009-5-28

不删档内测

生死格斗OL

2009-5-27

公测

运动/休闲

兽血沸腾

2009-5-21

开放内测

角色扮演

勇者传说

2009-5-21

夺宝攻测

角色扮演

GT劲舞团2

2009-5-20

公测

运动/休闲

格斗10

2009-5-14

豪血公测

运动/休闲

巨星

2009-4-28

公测

运动/休闲

FIFA

ONLINE2

2009-4-22

公测

运动/休闲伊苏战记

2009-4-17

公测

角色扮演

笑闹天宫

2009-4-16

公测

角色扮演

纵横时空

2009-4-10

公测

角色扮演

反恐行动

2009-4-02

公测

FPS射击

神鬼传奇

2009-4-02

公测

角色扮演

星尘传说

2009-3-31

公测

角色扮演

冲锋岛

2009-3-24

公测

运动/休闲

十二之天2

2009-3-18

公测

角色扮演

新侠义道

2009-3-18

公测

角色扮演

开心OL

2009-3-07

公测

角色扮演

乌龙学院

2009-2-28

公测

角色扮演

路尼亚战记

2009-2-27

公测

角色扮演梦幻龙族

2009-2-26

公测

角色扮演

猛将传ONLINE

2009-2-25

公测

角色扮演

天道ONLINE

2009-2-20

公测

角色扮演

二、手机游戏怎么打空白名

以王者荣耀为例,用特殊符号打空白名字,具体步骤如下:

一、自动弹出输入法,用的是搜狗,点击笑脸图标,也就是表情。

二、会出来很多表情,选择最后一个,很多特殊字符那个。

三、找到代表星座的字符,点击输入几个。输入确定,就会发现已经变成空白名了。

四、也可能会提示名字重复,去掉一个特殊字符,再随便添加一个即可。

三、哪位能告诉我贪吃蛇游戏的全部代码

//package main;

import java.awt.Color;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.awt.event.KeyEvent;

import java.awt.event.KeyListener;

import java.awt.event.WindowAdapter;

import java.awt.event.WindowEvent;

import java.io.BufferedReader;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.io.InputStreamReader;

import javax.swing.ImageIcon;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JMenu;

import javax.swing.JMenuBar;

import javax.swing.JMenuItem;

import javax.swing.JOptionPane;

import javax.swing.JPanel;

public class TanChiShe implements KeyListener,ActionListener{

/**

*@param args

*/

int max= 300;//蛇长最大值

final int JianJu= 15;//设定蛇的运动网格间距(窗口最大32*28格)

byte fangXiang= 4;//控制蛇的运动方向,初始为右

int time= 500;//蛇的运动间隔时间

int jianTime= 2;//吃一个减少的时间

int x,y;//蛇的运动坐标,按网格来算

int x2,y2;//暂存蛇头的坐标

int jiFenQi= 0;//积分器

boolean isRuned= false;//没运行才可设级别

boolean out= false;//没开始运行?

boolean run= false;//暂停运行

String JiBie="中级";

JFrame f= new JFrame("贪吃蛇 V1.0");

JPanel show= new JPanel();

JLabel Message= new JLabel("级别:中级蛇长:5时间500ms分数:00");

// JButton play= new JButton("开始");

JLabel sheTou;

JLabel shiWu;

JLabel sheWei[]= new JLabel[max];

static int diJi= 4;//第几个下标的蛇尾要被加上

ImageIcon shang= new ImageIcon("tuPian\\isSheTouUp.png");//产生四个上下左右的蛇头图案

ImageIcon xia= new ImageIcon("tuPian\\isSheTouDown.png");

ImageIcon zhuo= new ImageIcon("tuPian\\isSheTouLeft.png");

ImageIcon you= new ImageIcon("tuPian\\isSheTouRight.png");

JMenuBar JMB= new JMenuBar();

JMenu file= new JMenu("开始游戏");

JMenuItem play= new JMenuItem("开始游戏");

JMenuItem pause= new JMenuItem("暂停游戏");

JMenu hard= new JMenu("游戏难度");

JMenuItem gao= new JMenuItem("高级");

JMenuItem zhong= new JMenuItem("中级");

JMenuItem di= new JMenuItem("低级");

JMenu about= new JMenu("关于");

JMenuItem GF= new JMenuItem("※高分榜");

JMenuItem ZZ= new JMenuItem("关于作者");

JMenuItem YX= new JMenuItem("关于游戏");

JMenuItem QK= new JMenuItem("清空记录");

static TanChiShe tcs= new TanChiShe();

public static void main(String[] args){

// TanChiShe tcs= new TanChiShe();

tcs.f();

}

public void f(){

f.setBounds(250,100,515,530);

f.setLayout(null);

f.setAlwaysOnTop(true);//窗口始终保持最前面

f.setBackground(new Color(0,0,0));

f.setDefaultCloseOperation(0);

f.setResizable(false);

f.setVisible(true);

// f.getContentPane().setBackground(Color.BLACK);

f.addWindowListener(new WindowAdapter(){

public void windowClosing(WindowEvent e){

System.exit(0);//退出程序

}

});

f.setJMenuBar(JMB);

JMB.add(file);

file.add(play);

file.add(pause);

JMB.add(hard);

hard.add(gao);

hard.add(zhong);

hard.add(di);

JMB.add(about);

about.add(GF);

GF.setForeground(Color.blue);

about.add(ZZ);

about.add(YX);

about.add(QK);

QK.setForeground(Color.red);

f.add(show);

show.setBounds(0,f.getHeight()-92,f.getWidth(),35);

// show.setBackground(Color.green);

// f.add(play);

// play.setBounds(240,240,80,25);

play.addActionListener(this);

pause.addActionListener(this);

gao.addActionListener(this);

zhong.addActionListener(this);

di.addActionListener(this);

GF.addActionListener(this);

ZZ.addActionListener(this);

YX.addActionListener(this);

QK.addActionListener(this);

show.add(Message);

Message.setForeground(Color.blue);

f.addKeyListener(this);

// show.addKeyListener(this);

play.addKeyListener(this);

sheChuShi();

}

public void sheChuShi(){//蛇初始化

sheTou= new JLabel(you);//用向右的图来初始蛇头

f.add(sheTou);

sheTou.setBounds(JianJu*0,JianJu*0,JianJu,JianJu);

// System.out.println("ishere");

shiWu= new JLabel("■");

f.add(shiWu);

shiWu.setBounds(10*JianJu,10*JianJu,JianJu,JianJu);

for(int i=0;i<=diJi;i++){

sheWei[i]= new JLabel("■");

f.add(sheWei[i]);

sheWei[i].setBounds(-1*JianJu,0*JianJu,JianJu,JianJu);

}

while(true){

if(out== true){

yunXing();

break;

}

try{

Thread.sleep(200);

}catch(Exception ex){

ex.printStackTrace();

}

}

}

public void sheJiaChang(){//蛇的长度增加

if(diJi< max){

sheWei[++diJi]= new JLabel(new ImageIcon("tuPian\\isSheWei.jpg"));

f.add(sheWei[diJi]);

sheWei[diJi].setBounds(sheWei[diJi-1].getX(),sheWei[diJi-1].getY(),JianJu,JianJu);

// System.out.println("diJi"+diJi);

}

}

public void pengZhuanJianCe(){//检测蛇的碰撞情况

if(sheTou.getX()<0|| sheTou.getY()<0||

sheTou.getX()>f.getWidth()-15|| sheTou.getY()>f.getHeight()-105){

gameOver();

// System.out.println("GameOVER");

}

if(sheTou.getX()== shiWu.getX()&& sheTou.getY()== shiWu.getY()){

out: while(true){

shiWu.setLocation((int)(Math.random()*32)*JianJu,(int)(Math.random()*28)*JianJu);

for(int i=0;i<=diJi;i++){

if(shiWu.getX()!= sheWei[i].getX()&& shiWu.getY()!=sheWei[i].getY()

&& sheTou.getX()!=shiWu.getX()&& sheTou.getY()!= shiWu.getY()){//如果食物不在蛇身上则退出循环,产生食物成功

break out;

}

}

}

sheJiaChang();

// System.out.println("吃了一个");

if(time>100){

time-= jianTime;

}

else{}

Message.setText("级别:"+JiBie+"蛇长:"+(diJi+2)+"时间:"+time+"ms分数:"+(jiFenQi+=10)+"");

}

for(int i=0;i<=diJi;i++){

if(sheTou.getX()== sheWei[i].getX()&& sheTou.getY()== sheWei[i].getY()){

gameOver();

// System.out.println("吃到尾巴了");

}

}

}

public void yunXing(){

while(true){

while(run){

if(fangXiang== 1){//上

y-=1;

}

if(fangXiang== 2){//下

y+=1;

}

if(fangXiang== 3){//左

x-=1;

}

if(fangXiang== 4){//右

x+=1;

}

x2= sheTou.getX();

y2= sheTou.getY();

sheTou.setLocation(x*JianJu,y*JianJu);//设置蛇头的坐标网格数*间隔

for(int i=diJi;i>=0;i--){

if(i==0){

sheWei[i].setLocation(x2,y2);

// System.out.println(i+""+sheTou.getX()+""+sheTou.getY());

}

else{

sheWei[i].setLocation(sheWei[i-1].getX(),sheWei[i-1].getY());

// System.out.println(i+""+sheWei[i].getX()+""+sheWei[i].getY());

}

}

pengZhuanJianCe();

try{

Thread.sleep(time);

}catch(Exception e){

e.printStackTrace();

}

}

Message.setText("级别:"+JiBie+"蛇长:"+(diJi+2)+"时间:"+time+"ms分数:"+(jiFenQi+=10)+"");

try{

Thread.sleep(200);

}catch(Exception e){

e.printStackTrace();

}

}

}

public void gameOver(){//游戏结束时处理

int in= JOptionPane.showConfirmDialog(f,"游戏已经结束!\n是否要保存分数","提示",JOptionPane.YES_NO_OPTION);

if(in== JOptionPane.YES_OPTION){

// System.out.println("YES");

String s= JOptionPane.showInputDialog(f,"输入你的名字:");

try{

FileInputStream fis= new FileInputStream("GaoFen.ini");//先把以前的数据读出来加到写的数据前

InputStreamReader isr= new InputStreamReader(fis);

BufferedReader br= new BufferedReader(isr);

String s2,setOut="";

while((s2=br.readLine())!= null){

setOut=setOut+s2+"\n";

}

FileOutputStream fos= new FileOutputStream("GaoFen.ini");//输出到文件流

s= setOut+s+":"+jiFenQi+"\n";

fos.write(s.getBytes());

}catch(Exception e){}

}

System.exit(0);

}

public void keyTyped(KeyEvent arg0){

// TODO自动生成方法存根

}

public void keyPressed(KeyEvent arg0){

// System.out.println(arg0.getSource());

if(arg0.getKeyCode()== KeyEvent.VK_UP){//按上下时方向的值相应改变

if(fangXiang!= 2){

fangXiang= 1;

// sheTou.setIcon(shang);//设置蛇的方向

}

// System.out.println("UP");

}

if(arg0.getKeyCode()== KeyEvent.VK_DOWN){

if(fangXiang!= 1){

fangXiang= 2;

// sheTou.setIcon(xia);

}

// System.out.println("DOWN");

}

if(arg0.getKeyCode()== KeyEvent.VK_LEFT){//按左右时方向的值相应改变

if(fangXiang!= 4){

fangXiang= 3;

// sheTou.setIcon(zhuo);

}

// System.out.println("LEFT");

}

if(arg0.getKeyCode()== KeyEvent.VK_RIGHT){

if(fangXiang!= 3){

fangXiang= 4;

// sheTou.setIcon(you);

}

// System.out.println("RIGHT");

}

}

public void keyReleased(KeyEvent arg0){

// TODO自动生成方法存根

}

public void actionPerformed(ActionEvent arg0){

// TODO自动生成方法存根

JMenuItem JI=(JMenuItem)arg0.getSource();

if(JI== play){

out= true;

run= true;

isRuned= true;

gao.setEnabled(false);

zhong.setEnabled(false);

di.setEnabled(false);

}

if(JI== pause){

run= false;

}

if(isRuned== false){//如果游戏还没运行,才可以设置级别

if(JI== gao){

time= 200;

jianTime= 1;

JiBie="高级";

Message.setText("级别:"+JiBie+"蛇长:"+(diJi+2)+"时间:"+time+"ms分数:"+jiFenQi);

}

if(JI== zhong){

time= 400;

jianTime= 2;

JiBie="中级";

Message.setText("级别:"+JiBie+"蛇长:"+(diJi+2)+"时间:"+time+"ms分数:"+jiFenQi);

}

if(JI== di){

time= 500;

jianTime= 3;

JiBie="低级";

Message.setText("级别:"+JiBie+"蛇长:"+(diJi+2)+"时间:"+time+"ms分数:"+jiFenQi);

}

}

if(JI== GF){

try{

FileInputStream fis= new FileInputStream("GaoFen.ini");

InputStreamReader isr= new InputStreamReader(fis);

BufferedReader br= new BufferedReader(isr);

String s,setOut="";

while((s=br.readLine())!= null){

setOut=setOut+s+"\n";

}

if(setOut.equals("")){

JOptionPane.showMessageDialog(f,"暂无保存记录!","高分榜",JOptionPane.INFORMATION_MESSAGE);

}

else{

JOptionPane.showMessageDialog(f,setOut);

}

}catch(Exception e){

e.printStackTrace();

}

}

if(JI== ZZ){//关于作者

JOptionPane.showMessageDialog(f,"软件作者:申志飞\n地址:四川省绵阳市\nQQ:898513806\nE-mail:shenzhifeiok@126.com","关于作者",JOptionPane.INFORMATION_MESSAGE);

}

if(JI== YX){//关于游戏

JOptionPane.showMessageDialog(f,"贪吃蛇游戏\n游戏版本 V1.0","关于游戏",JOptionPane.INFORMATION_MESSAGE);

}

if(JI== QK){

try{

int select= JOptionPane.showConfirmDialog(f,"确实要清空记录吗?","清空记录",JOptionPane.YES_OPTION);

if(select== JOptionPane.YES_OPTION){

String setOut="";

FileOutputStream fos= new FileOutputStream("GaoFen.ini");//输出到文件流

fos.write(setOut.getBytes());

}

}catch(Exception ex){}

}

}

}

//是我自己写的,本来里面有图片的,但无法上传,所以把图片去掉了,里面的ImageIcon等语句可以去掉。能正常运行。

相关内容

热门资讯

黄油养成类游戏,黄油手游推荐 各位老铁们,大家好,今天由我来为大家分享黄油养成类游戏,以及黄油手游推荐的相关问题知识,希望对大家有...
黄油圈游戏平台,推荐几个黄油手... 大家好,今天给各位分享黄油圈游戏平台的一些知识,其中也会对推荐几个黄油手游公众号进行解释,文章篇幅可...
20年新出的黄油游戏steam 一、steam有哪些黄油推荐steam黄油推荐《环世界》,《Mirror》,《节奏光剑》,《蔚蓝》,...
吃鸡新出的攀爬游戏有哪些 一、冷兵器吃鸡手游有哪些1、猎手之王《猎手之王》是网易2.5D冷兵器沙盒竞技手游,用刀剑枪斧回归快感...
变态手游游戏下载地址,大量变态... 大家好,关于变态手游游戏下载地址很多朋友都还不太明白,今天小编就来为大家分享关于大量变态手游网站推荐...
魔兽关服后新出的游戏 一、魔兽世界关服后去哪玩 超强同类游戏推荐魔兽世界国服由于暴雪与网易合作谈崩,将与1月23日停止运营...
完美新出的剧情游戏有哪些 一、《完美世界》出过什么游戏完美世界陆续推出了《完美世界》、《武林外传》、《完美世界国际版》、《诛仙...
游戏发行人做新出的小游戏 一、抖音游戏发行人的小游戏怎么制作1.登录到官方网站并下载相关的开发人员工具。未来的抖音游戏制作将在...
外服新出的射击游戏手游 一、使命召唤战区手游在哪下载使命召唤战区手游在哪下载?如果你对这作游戏感兴趣,想要体验刺激的射击玩法...
22年新出的游戏卡 一、2022年新出的显卡有哪些牌子2022年新出的显卡有华硕、技嘉、微星、蓝宝石、七彩虹、铭影等等。...