Java名字打架小游戲代碼_第1頁
Java名字打架小游戲代碼_第2頁
Java名字打架小游戲代碼_第3頁
Java名字打架小游戲代碼_第4頁
Java名字打架小游戲代碼_第5頁
已閱讀5頁,還剩6頁未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

Java名字打架小游戲代碼一、截圖如下:1、初始界面:游戲中界面:游戲結(jié)束界面:程序代碼如下:importjava.awt.*;importjava.awt.event.*;classGameextendsFrameimplementsActionListener{ Labell1,l2,label0,label1,label2,label3,label4,label5,label6,label7; TextFieldtext1,text2,text3,text4,text5,text6; Buttonbutton,button1,button2; Panelp1,p2,p3,p4; TextAreaarea; Menumenu; MenuBarmenubar; MenuItemitem1,item2; intHP,gongji,fangyv; intcount1=0,count2=0,count3=0,count4=0; Threadthread1; Game(Strings) { super(s); thread1=newThread(); label0=newLabel("初始血量在2000-3000之間隨機(jī)產(chǎn)生!"); l1=newLabel("姓名1",Label.CENTER); l2=newLabel("姓名2",Label.CENTER); label1=newLabel("姓名1",Label.CENTER); label2=newLabel("姓名2",Label.CENTER); label3=newLabel("屬性1",Label.CENTER); label4=newLabel("屬性2",Label.CENTER); label5=newLabel("PK狀態(tài)",Label.CENTER); label6=newLabel("被治療次數(shù):"+count1+"被攻擊次數(shù):"+count2); label7=newLabel("被治療次數(shù):"+count3+"被攻擊次數(shù):"+count4); p1=newPanel(); p2=newPanel(); p3=newPanel(); p4=newPanel(); area=newTextArea(10,30); text1=newTextField(5); text2=newTextField(5); text3=newTextField(34); text4=newTextField(34); text5=newTextField(27); text6=newTextField(27); button=newButton("確定"); button1=newButton("重新輸入"); button2=newButton("退出"); thread1.start(); add(p1,BorderLayout.NORTH); add(p2,BorderLayout.CENTER); p1.add(label0); p2.add(label1); p2.add(text1); p2.add(button); p2.add(label2); p2.add(text2); p2.add(label3); p2.add(text3); p2.add(label4); p2.add(text4); p2.add(label5); p2.add(p3); p2.add(label6); p2.add(p4); p2.add(label7); p2.add(area); p2.add(button1); p2.add(button2); p3.add(l1); p3.add(text5); p4.add(l2); p4.add(text6); l1.setLocation(0,0); text5.setLocation(20,0); area.setEditable(false); text3.setEditable(false); text4.setEditable(false); text5.setEditable(false); text6.setEditable(false); button.setBackground(Color.LIGHT_GRAY); button1.setBackground(Color.LIGHT_GRAY); button2.setBackground(Color.LIGHT_GRAY); label0.setBackground(Color.orange); label3.setBackground(Color.cyan); label4.setBackground(Color.cyan); label5.setBackground(Color.cyan); button.addActionListener(this); button1.addActionListener(this); button2.addActionListener(this); menu=newMenu("菜單"); item1=newMenuItem("打開"); item2=newMenuItem("退出"); p2.setBackground(Color.pink); p1.setBackground(Color.orange); menubar=newMenuBar(); menu.add(item1); menu.addSeparator(); menu.add(item2); menubar.add(menu); setMenuBar(menubar); item2.addActionListener(this); area.setBackground(Color.yellow); addWindowListener(newWindowAdapter() { publicvoidwindowClosing(WindowEvente) { System.exit(0); } }); setBounds(500,100,285,590); setResizable(false);//設(shè)置窗口不可調(diào)整大小 setVisible(true); validate(); } publicvoidactionPerformed(ActionEvente) { if(e.getSource()==item2||e.getSource()==button2) System.exit(0); elseif(e.getSource()==button) { Stringname1=text1.getText(); Stringname2=text2.getText(); NPCCnpc1=newNPCC(name1); NPCCnpc2=newNPCC(name2); npc1.shuxing(); npc2.shuxing(); l1.setText(name1); l2.setText(name2); inth1,h2; h1=npc1.HP; h2=npc2.HP; text3.setText(name1+":HP:"+npc1.HP+"攻擊:"+npc1.gongji+"防御:"+npc1.fangyv); text4.setText(name2+":HP:"+npc2.HP+"攻擊:"+npc2.gongji+"防御:"+npc2.fangyv); inti=0; while(npc1.HP>0&&npc2.HP>0) { if(i%2==0) { Strings1=npc1.damage(npc2.gongji); if(npc1.HPP!=0) { count1++; } else { count2++; } label6.setText("被治療次數(shù):"+count1+"被攻擊次數(shù):"+count2); Strings=s1; npc1.HP=npc1.HP+npc1.HPP+npc1.fangyv-npc1.hurt; if(npc1.HP>h1) { area.append(name1+s+'\n'); text5.setText(name1+s); try { thread1.sleep(1000); } catch(InterruptedExceptionee){} npc1.HP=h1; s1="血量已達(dá)最大值!!"; } if(npc1.HP<0) { npc1.HP=0; } text3.setText(name1+":HP:"+npc1.HP+"攻擊:"+npc1.gongji+"防御:"+npc1.fangyv); text5.setText(name1+s1); area.append(name1+s1+'\n'); area.append(name1+"剩余生命值:"+npc1.HP+'\n'); } else { Strings2=npc2.damage(npc1.gongji); if(npc2.HPP!=0) { count3++; } else { count4++; } label7.setText("被治療次數(shù):"+count3+"被攻擊次數(shù):"+count4); Strings=s2; npc2.HP=npc2.HP+npc2.HPP+npc2.fangyv-npc2.hurt; if(npc2.HP>h2) { text6.setText(name2+s); area.append(name2+s+'\n'); try { thread1.sleep(1000); } catch(InterruptedExceptionee){} npc2.HP=h2; s2="血量已達(dá)最大值!!"; } if(npc2.HP<0) { npc2.HP=0; } text4.setText(name2+":HP:"+npc2.HP+"攻擊:"+npc2.gongji+"防御:"+npc2.fangyv); text6.setText(name2+s2); area.append(name2+s2+'\n'); area.append(name2+"剩余生命值:"+npc2.HP+'\n'); } try { thread1.sleep(1000); } catch(InterruptedExceptionee){} i++; } if(npc1.HP<=0) { text5.setText(name1+"掛了!?。n"); text6.setText(name1+"掛了?。?!\n"); area.append(name1+"掛了!?。n"); } elseif(npc2.HP<=0) { text5.setText(name2+"掛了?。。n"); text6.setText(name2+"掛了?。。n"); area.append(name2+"掛了?。?!\n"); } } elseif(e.getSource()==button1) { text1.setText(null); text2.setText(null); text3.setText(null); text4.setText(null); text5.setText(null); text6.setText(null); area.setText(null); label6.setText("被治療次數(shù):"+0+"被攻擊次數(shù):"+0); label7.setText("被治療次數(shù):"+0+"被攻擊次數(shù):"+0); l1.setText("姓名1"); l2.setText("姓名2"); } }}classNPCC{ Stringname,s; intHP,gongji,fangyv; intHPP=0; inthurt=0; NPCC(Stringname) { =name; } publicvoidshuxing() { HP=(int)(Math.random()*1000)+2000; gongji=(int)(Math.random()*150)+80; fangyv=(int)(Math.random()*30)+50; } publicStringdamage(intgongji) { inta=(int)(Math.random()*10); switch(a) { case1: s="受到普通攻擊"; hurt=gongji; HPP=0; break;

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

最新文檔

評(píng)論

0/150

提交評(píng)論