Java GUI制作双人对打游戏(上)

文章目录

  • 前言
  • 什么是Java GUI
  • 一、打开IDEA 新建一个Maven项目(后续可以打包、引入相关依赖也很容易)
  • 二、引入依赖
  • 三.绘制UI界面
  • 四.绘制JPanel面板
  • 总结


前言

什么是Java GUI

Java UI,即Java用户界面,是指使用Java编程语言创建的图形用户界面(GUI)。Java提供了多种工具和技术来创建和管理用户界面,使得开发者能够构建具有丰富交互性和吸引力的应用程序。

在Java中,用于构建UI的主要库和框架包括:

Swing:Swing是Java平台标准版(Java SE)的一部分,它提供了一组丰富的GUI组件和布局管理器,用于构建跨平台的桌面应用程序。Swing组件包括按钮、文本框、标签、滑块等,以及更复杂的组件如表格和树形结构。
JavaFX:JavaFX是一个用于构建富客户端应用程序的图形和媒体库。它提供了现代化的UI组件、动画、Web集成和媒体支持。与Swing相比,JavaFX更加现代和灵活,适用于构建复杂的用户界面和多媒体应用程序。
AWT:AWT(Abstract Window Toolkit)是Java中最早的GUI工具包,提供了基本的窗口、按钮和文本框等组件。然而,随着Swing和JavaFX的出现,AWT的使用逐渐减少,但仍在一些旧的或特定的应用程序中使用。
在构建Java UI时,开发者通常会遵循以下步骤:

设计界面:首先,开发者需要设计应用程序的用户界面,确定所需的组件、布局和交互方式。
选择库和框架:根据应用程序的需求和目标平台,选择适合的Java UI库和框架。
创建组件:使用所选库和框架提供的API创建所需的UI组件,并设置它们的属性(如大小、颜色、字体等)。
布局管理:使用布局管理器来组织和管理组件在界面上的位置和大小。Java提供了多种布局管理器,如边界布局、网格布局和流式布局等。
事件处理:为组件添加事件监听器,以便在用户与界面交互时执行相应的操作(如点击按钮、选择菜单项等)。
测试和调试:在开发过程中不断测试和调试UI,确保其正常运行并符合设计要求。
通过Java UI技术,开发者可以创建出功能强大、外观美观的应用程序,提供丰富的用户体验。这些应用程序可以运行在桌面、移动设备或其他Java支持的平台上。

在这里插入图片描述

上图是制作成功的效果图 通过A、D来控制蓝色人物前进防御和后退,J、K、L来控制拳、防御、踢腿
红色人物对应的是左箭头、右箭头以及1、2、3.


制作这个小游戏 作者打算用2篇博文来分享整个过程 本文作为一个引入

一、打开IDEA 新建一个Maven项目(后续可以打包、引入相关依赖也很容易)

建完之后的整体结构如下:
在这里插入图片描述

二、引入依赖

因为需要播放MP3格式的背景音乐于是要引入相关依赖:
在pom.xml中添加下面的代码

    <dependencies><dependency><groupId>javazoom</groupId><artifactId>jlayer</artifactId><version>1.0.1</version></dependency></dependencies>

三.绘制UI界面

代码如下:

package src;
import javazoom.jl.player.Player;
import sun.audio.AudioPlayer;
import sun.audio.AudioStream;
import javax.swing.*;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.InputStream;
public class UI extends JFrame implements KeyListener {WarPanel warPanel=new WarPanel();Player player;public UI(){this.setTitle("赤色妖精花2.0");this.setLocation(0,0);this.setSize(1024,680);this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);this.setVisible(true);this.add(warPanel);this.addKeyListener(this);warPanel.action();}public static void main(String[] args) {UI ui=new UI();ui.init();}public void init(){while(true){try{InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream("music/bgm12.mp3");playmusic(resourceAsStream);Thread.sleep(82800);}catch (Exception e){e.printStackTrace();}}}public void playmusic(InputStream inputStream) throws Exception{
//        BufferedInputStream bufferedInputStream=new BufferedInputStream(inputStream);player=new Player(inputStream);player.play();}public void playmusic(String music) throws Exception{BufferedInputStream bufferedInputStream=new BufferedInputStream(new FileInputStream(music));player=new Player(bufferedInputStream);player.play();}public void sound(String str){try {FileInputStream in = new FileInputStream(str);AudioStream as=newAudioStream(in);AudioPlayer.player.start(as);}catch(Exception e){e.printStackTrace();}
}public void sound(InputStream inputStream){try {AudioStream as=newAudioStream(inputStream);AudioPlayer.player.start(as);}catch(Exception e){e.printStackTrace();}}@Overridepublic void keyTyped(KeyEvent e) {}@Overridepublic void keyPressed(KeyEvent e) {
//        System.out.println(e.getKeyCode());warPanel.restart(e.getKeyCode());warPanel.manmove(e.getKeyCode());warPanel.mastermove(e.getKeyCode());}@Overridepublic void keyReleased(KeyEvent e) {warPanel.mastercancel(e.getKeyCode());warPanel.mancancel(e.getKeyCode());}
}

四.绘制JPanel面板

JPanel是Java Swing库中的一个关键组件,它提供了许多优点,使得开发者能够更高效地创建复杂的图形用户界面(GUI)。以下是JPanel的一些主要优点:
轻量级容器:JPanel是一个轻量级的容器,这意味着它使用了本地窗口系统的较少资源,因此更加高效。轻量级组件的绘制通常比重量级组件更快,并且更易于管理。
灵活的布局管理:JPanel允许使用各种布局管理器来控制其内部组件的布局。例如,你可以使用FlowLayout、BorderLayout、GridLayout等,这使得开发者能够轻松地排列和调整组件的位置和大小,以满足不同的界面设计需求。
嵌套和组合:JPanel可以嵌套在其他Swing容器中,如JFrame、JDialog等,这使得开发者能够创建复杂的界面结构。通过组合多个JPanel,你可以实现更精细的界面布局和组件组织。
事件处理:JPanel支持事件监听器,使得开发者能够响应用户与界面的交互,如按钮点击、鼠标移动等。这使得应用程序能够更加响应用户的操作,提供更好的用户体验。
自定义绘制:JPanel提供了绘制自定义图形、图像或文本的功能。你可以通过重写paintComponent方法来实现自定义绘制逻辑,从而创建独特的视觉效果。
易于扩展和集成:由于JPanel是Swing库的一部分,它与其他Swing组件具有良好的集成性。此外,由于其开源性质,开发者可以根据需要扩展JPanel的功能,以满足特定的应用需求。
综上所述,JPanel作为Java Swing库中的一个核心组件,具有轻量级、灵活布局、嵌套组合、事件处理、自定义绘制以及易于扩展和集成等优点,使得开发者能够高效地创建复杂的图形用户界面。

package src;import javazoom.jl.player.Player;
import sun.audio.AudioPlayer;
import sun.audio.AudioStream;import javax.imageio.ImageIO;
import javax.swing.*;
import java.awt.*;
import java.awt.event.KeyEvent;
import java.awt.image.BufferedImage;
import java.io.FileInputStream;
import java.io.InputStream;
import java.util.Timer;
import java.util.TimerTask;public class WarPanel extends JPanel {private static String LEFT="left";private static String RIGHT="right";private static String STATIC="static";String path=null;int x;int y;int bloodMan=430;int bloodMaster=413;int time=600;InputStream AsStream=this.getClass().getClassLoader().getResourceAsStream("music/victorymaster.mp3");InputStream AsStream1=this.getClass().getClassLoader().getResourceAsStream("music/victoryman.mp3");SuperMan superMan=new SuperMan();Matser matser=new Matser();public BufferedImage StreamToImage(String str){InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream(str);BufferedImage bufferedImage=null;try {bufferedImage= ImageIO.read(resourceAsStream);} catch (Exception e) {e.printStackTrace();}return bufferedImage;}@Overridepublic void paint(Graphics g) {super.paint(g);InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream("image/background1.jpg");BufferedImage read=null;try {read= ImageIO.read(resourceAsStream);} catch (Exception e) {e.printStackTrace();}Image image = new ImageIcon(read).getImage();g.drawImage(image, 0, 0, 1024, 680, null);if(time>0) {if(bloodMan>0&&bloodMaster>0){BufferedImage image11 = StreamToImage("image/bloodliang.png");Image image1 = new ImageIcon(image11).getImage();g.drawImage(image1, 10, 20, null);g.drawImage(image1, 510, 20, null);drawSuperMan(g);drawMaster(g);drawblood(g);g.setColor(Color.BLUE);Font font1 = new Font("黑体", Font.BOLD, 20);g.setFont(font1);g.fillRect(44, 38, bloodMan, 20);g.setColor(Color.RED);Font font = new Font("黑体", Font.BOLD, 20);g.setFont(font);g.fillRect(550, 38, bloodMaster, 20);g.setColor(Color.CYAN);Font font2 = new Font("黑体", Font.BOLD, 20);g.setFont(font2);g.drawString("" + time / 10, 502, 100);}else if(bloodMan<=0&&bloodMaster>0){g.setColor(Color.WHITE);Font font3 = new Font("黑体", Font.BOLD, 80);g.setFont(font3);g.drawString(" The red side ",200,300);g.drawString("won  the  game.",200,400);try {if(AsStream == null){}else {playmusic(AsStream);AsStream=null;}} catch (Exception e) {e.printStackTrace();}}else if(bloodMaster<=0&&bloodMan>0){g.setColor(Color.WHITE);Font font3 = new Font("黑体", Font.BOLD, 80);g.setFont(font3);g.drawString(" The blue side ",200,300);g.drawString("won   the   game.",200,400);try {if(AsStream1 == null){}else {playmusic(AsStream1);AsStream1=null;}} catch (Exception e) {e.printStackTrace();}}}else{if(bloodMaster>bloodMan){g.setColor(Color.WHITE);Font font3 = new Font("黑体", Font.BOLD, 80);g.setFont(font3);g.drawString(" The red side ",200,300);g.drawString("won  the  game.",200,400);try {if(AsStream == null){}else {playmusic(AsStream);AsStream=null;}} catch (Exception e) {e.printStackTrace();}}else{g.setColor(Color.WHITE);Font font3 = new Font("黑体", Font.BOLD, 80);g.setFont(font3);g.drawString(" The blue    side ",200,300);g.drawString("won  the  game.",200,400);try {if(AsStream1 == null){}else {playmusic(AsStream1);AsStream1=null;}} catch (Exception e) {e.printStackTrace();}}}time--;}public void drawblood(Graphics g){if (path ==null) {}else{BufferedImage image11 = StreamToImage(path);Image image = new ImageIcon(image11).getImage();g.drawImage(image, x, y, null);}}private void drawMaster(Graphics g) {matser.drawMe(g);}private void drawSuperMan(Graphics g){superMan.drawMe(g);}public void playmusic(InputStream inputStream) throws Exception{
//        BufferedInputStream bufferedInputStream=new BufferedInputStream(inputStream);Player player=new Player(inputStream);player.play();}public void manmove(int keyCode) {switch (keyCode){case KeyEvent.VK_A:superMan.setPose("left");break;case KeyEvent.VK_D:superMan.setPose("right");break;case KeyEvent.VK_J:if(superMan.getPose().equals("foot")){}else{superMan.setPose("hand");InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream("music/handhit.wav");sound(resourceAsStream);}case KeyEvent.VK_K:if(superMan.getPose().equals("foot")||superMan.getPose().equals("hand")){}else{superMan.setPose("defense");}break;case KeyEvent.VK_L:if(superMan.getPose().equals("hand")){}else{superMan.setPose("foot");InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream("music/footman.wav");sound(resourceAsStream);}break;}}public void mastermove(int keyCode) {switch (keyCode){case KeyEvent.VK_RIGHT:matser.setPose("right");break;case KeyEvent.VK_LEFT:matser.setPose("left");break;case KeyEvent.VK_NUMPAD1:if(matser.getPose().equals("hand")){}else{matser.setPose("foot");InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream("music/footmaster.wav");sound(resourceAsStream);}break;case KeyEvent.VK_NUMPAD3:if(matser.getPose().equals("foot")){}else{matser.setPose("hand");InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream("music/hithand.wav");sound(resourceAsStream);}break;case KeyEvent.VK_NUMPAD2:if(matser.getPose().equals("foot")||matser.getPose().equals("hand")){}else{matser.setPose("defense");}break;}}public void mastercancel(int keyCode) {switch(keyCode){case KeyEvent.VK_NUMPAD2:if(matser.getPose().equals("foot")||matser.getPose().equals("hand")){}else{matser.setPose(STATIC);}break;}}public void action(){Timer timer=new Timer();timer.schedule(new TimerTask() {public void run() {hit();repaint();}},20,100);//delay延迟20毫秒后,period每隔10毫秒执行一次run里面的内容}public void mancancel(int keyCode) {switch(keyCode){case KeyEvent.VK_K:if(superMan.getPose().equals("foot")||superMan.getPose().equals("hand")){}else{superMan.setPose(STATIC);}break;}}//碰撞检测int j=0;public void hit(){boolean toright1=superMan.toright;boolean toright2=matser.toright;Image image1;String imagePath1 = superMan.getImagePath();if(imagePath1==null){BufferedImage image11 = StreamToImage("master/toright1.png");image1= new ImageIcon(image11).getImage();}else{BufferedImage image11 = StreamToImage(imagePath1);image1 = new ImageIcon(image11).getImage();}int width1 = image1.getWidth(null);int height1 = image1.getHeight(null);int x1=superMan.getManx();int y1=superMan.getMany();String pose1 = superMan.getPose();//        System.out.println(width1);
//        System.out.println(height1);
//        System.out.println(x1);
//        System.out.println(y1);String imagePath2 = matser.getImagePath();BufferedImage image12 = StreamToImage(imagePath2);Image image2 = new ImageIcon(image12).getImage();int width2 = image2.getWidth(null);int height2 = image2.getHeight(null);int x2=matser.getManx();int y2=matser.getMany();String pose2 = matser.getPose();
//        man的拳 master的静态if(pose1.equals("hand")&&pose2.equals("static")){if(toright1){if(x1+width1>x2&&x1+width1<x2+width2&&y1+height1/3>y2&&y1+height1/3<y2+height2){j++;x=x1+width1;y=y1+height1/5;path="image/blood1.png";InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream("music/afterhit1.wav");sound(resourceAsStream);bloodMaster-=10;x2+=5;matser.setManx(x2);if(j>5){j=0;}}else{path=null;}}else{if(x1>x2&&x1<x2+width2&&y1+height1/3>y2&&y1+height1/3<y2+height2){j++;x=x1;y=y1+height1/5;path= "image/blood1.png";InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream("music/afterhit1.wav");sound(resourceAsStream);x2-=5;matser.setManx(x2);bloodMaster-=10;if(j>5){j=0;}}else{path=null;}}}
//        man的脚 master的静态else if(pose1.equals("foot")&&pose2.equals("static")){if(toright1){if(x1+width1>x2&&x1+width1<x2+width2&&y1+height1/3>y2&&y1+height1/3<y2+height2) {x = x1 + width1;y = y1 + height1 *3/ 5;path = "image/blood1.png";InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream("music/afterhit1.wav");sound(resourceAsStream);x2+=5;matser.setManx(x2);bloodMaster -= 8;}else{path=null;}}else{if(x1>x2&&x1<x2+width2&&y1+height1/3>y2&&y1+height1/3<y2+height2) {x = x1;y = y1 + height1 *3/ 5;path = "image/blood1.png";InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream("music/afterhit1.wav");sound(resourceAsStream);x2-=5;matser.setManx(x2);bloodMaster -= 8;}else{path=null;}}}
//          master的拳 man的静态else if(pose2.equals("hand")&&pose1.equals("static")){if(toright2){if(x2+width2>x1&&x2+width2<x1+width1&&y1+height1/3>y2&&y1+height1/3<y2+height2){x = x2+width2;y = y2 + height1 / 5;path = "image/blood1.png";InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream("music/afterhit.wav");sound(resourceAsStream);bloodMan -= 10;x1+=3;superMan.setManx(x1);}else{path=null;}}else {if(x2>x1&&x2<x1+width1&&y1+height1/3>y2&&y1+height1/3<y2+height2){x = x2;y = y2 + height1 / 5;path = "image/blood1.png";InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream("music/afterhit2.wav");sound(resourceAsStream);bloodMan -= 10;x1-=3;superMan.setManx(x1);}else{path=null;}}}else if(pose1.equals("static")&&pose2.equals("foot")){if(toright2){if(x2+width2>x1&&x2+width2<x1+width1&&y1+height1/3>y2&&y1+height1/3<y2+height2){j++;x=x2+width2;y=y2+height1*3/5;path="image/blood1.png";InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream("music/afterhit.wav");sound(resourceAsStream);bloodMan-=10;x1+=5;superMan.setManx(x1);if(j>5){j=0;}}else{path=null;}}else{if(x2>x1&&x2<x1+width1&&y1+height1/3>y2&&y1+height1/3<y2+height2){j++;x=x2;y=y2+height1*3/5;path="image/blood1.png";InputStream resourceAsStream = this.getClass().getClassLoader().getResourceAsStream("music/afterhit.wav");sound(resourceAsStream);bloodMan-=10;x1-=5;superMan.setManx(x1);if(j>5){j=0;}}else{path=null;}}}else{path=null;}}public void sound(InputStream inputStream){try {AudioStream as=newAudioStream(inputStream);AudioPlayer.player.start(as);}catch(Exception e){e.printStackTrace();}}public void sound(String str){try {FileInputStream in = new FileInputStream(str);AudioStream as=newAudioStream(in);AudioPlayer.player.start(as);}catch(Exception e){e.printStackTrace();}}public void restart(int keyCode) {if(time<=0||bloodMan<=0||bloodMaster<=0)switch(keyCode){case KeyEvent.VK_SHIFT:time=600;bloodMan=430;bloodMaster=413;}}
}

总结

以上是这款对打游戏的初始构建,后续的博文将完成剩下的部分

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/619716.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【MATLAB源码-第41期】基于压缩感知算法的OFDM系统信道估计和LS算法对比仿真。

操作环境&#xff1a; MATLAB 2013b 1、算法描述 压缩感知&#xff08;Compressed Sensing, CS&#xff09;是一种从稀疏或可压缩信号中重构完整信号的数学理论和技术。下面详细介绍压缩感知和它在OFDM信道估计中的应用。 1. 压缩感知基本概念 在传统采样理论中&#xff0c…

【C++】C++11 lambda表达式

&#x1f440;樊梓慕&#xff1a;个人主页 &#x1f3a5;个人专栏&#xff1a;《C语言》《数据结构》《蓝桥杯试题》《LeetCode刷题笔记》《实训项目》《C》《Linux》《算法》 &#x1f31d;每一个不曾起舞的日子&#xff0c;都是对生命的辜负 目录 前言 C11引入『 lambda表…

25. 【Android教程】列表控件 ListView

在学习了 ScrollView 及 Adapter 两节内容之后&#xff0c;大家应该对 ListView 有了一些基本的了解&#xff0c;它是一个列表样式的 ViewGroup&#xff0c;将若干 item 按行排列。ListView 是一个很基本的控件也是 Android 中最重要的控件之一。它可以帮助我们完成多个 View 的…

ROS2从入门到精通1-3:详解ROS2动作通信机制与自定义动作

目录 0 专栏介绍1 动作通信模型2 动作模型实现(C)3 动作模型实现(Python)4 自定义动作 0 专栏介绍 本专栏旨在通过对ROS2的系统学习&#xff0c;掌握ROS2底层基本分布式原理&#xff0c;并具有机器人建模和应用ROS2进行实际项目的开发和调试的工程能力。 &#x1f680;详情&a…

【Linux深造日志】运维工程师必会Linux常见命令以及周边知识!

&#x1f3ac; 鸽芷咕&#xff1a;个人主页 &#x1f525; 个人专栏: 《linux深造日志》《粉丝福利》 ⛺️生活的理想&#xff0c;就是为了理想的生活! 引入 哈喽各位宝子们好啊&#xff01;我是博主鸽芷咕。日志这个东西我相信大家都不陌生&#xff0c;在 linxu/Windows 系统…

暖宝轻工机械有限公司现已加入2024第13届生物发酵展

参展企业介绍 公司坐落于富饶的长江三角洲&#xff0c;美丽的瓯越山水---温州&#xff0c;成立20多年来&#xff0c;专业从事换热器新品研发、应用设计、生产制造、销售服务为一体的综合性生产企业。 公司致力于食品、饮料、果酒、制药、暖通、化工等行业领域的加热冷却、蒸发…

微信定时发送指定消息

微信定时发送消息 简介&#xff1a; 该项目为微信定时发送消息机器人&#xff0c;可以扫码登录微信&#xff0c;输入微信好友名称或群聊名称&#xff0c;添加定时任务内容&#xff08;时间、内容、图片&#xff09;&#xff0c;便可在指定时间发送该设置好的内容。 该项目包…

爬虫的目的是做什么

通过网站域名获取HTML数据解析数据&#xff0c;获取想要的信息存储爬取的信息如果有必要&#xff0c;移动到另一个网页重复过程 这本书上的代码的网址是 &#xff1a; GitHub - REMitchell/python-scraping: Code samples from the book Web Scraping with Python http://shop.…

51单片机-独立按键模块

1. 独立按键控制LED状态 轻触按键实现原理&#xff1a;按下时&#xff0c;接通&#xff0c;通过金属弹片受力弹动来实现接通和断开。 松开按键 按下之后&#xff1a;就会被连接 同时按下K1和K2时&#xff0c;P2_0,接口所连LED灯才亮。 #include <REGX52.H> void ma…

linux学习:目录检索

目录 目录 api 例子 目录 Linux 中的目录并不是一种容器&#xff0c;而仅仅是一个文件索引表 Linux 中目录就是一组由文件名和索引号组成的索引表&#xff0c;目录下的文件的真正内容存储 在分区中的数据域区域。目录中索引表的每一项被称为“目录项”&#xff0c;里面至少…

力扣HOT100 - 240. 搜索二维矩阵 II

解题思路&#xff1a; 从左下角开始&#xff0c;根据条件删除行和列。 class Solution {public boolean searchMatrix(int[][] matrix, int target) {int row matrix.length - 1;int col matrix[0].length - 1;int l 0;while (row > 0 && l < col) {if (targ…

MR鼻祖呼吁不要滥用孟德尔随机化法,多数文章没有意义

孟德尔随机化,Mendilian Randomization&#xff0c;简写为MR&#xff0c;是一种在流行病学领域应用广泛的一种实验设计方法&#xff0c;利用公开数据库就能轻装上阵写文章&#xff0c;甚至是高质量的论文。 近几年绝对是发文利器呀&#xff01; 但&#xff0c;最近MR鼻祖&#…