- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的主要代码。我尝试创建一个包含检查键盘操作功能的包,但它不起作用。现在,正如您所看到的,这两个代码都位于同一个文件下。到目前为止,程序打开,我可以看到圆圈,但它不会向左或向右移动。不管你信不信,我已经在这呆了大约 3 个小时了。
编辑:我刚刚意识到更新函数从名为“input”的包中获取数据。那是在我将两个类放在同一个文件名下之前,但即使有一个类的包名为“gamesample.input.*”,它仍然无法工作。
package gamesample;
import java.awt.*;
import java.awt.event.KeyEvent;
import java.awt.image.BufferedImage;
import javax.swing.JFrame;
/**
* Main class for the game
*/
public class GameSample extends JFrame
{
boolean isRunning = true;
int fps = 30;
int windowWidth = 500;
int windowHeight = 500;
BufferedImage backBuffer;
Insets insets;
InputHandler input;
int x = 0;
public static void main(String[] args)
{
GameSample game = new GameSample();
game.run();
System.exit(0);
}
/**
* This method starts the game and runs it in a loop
*/
public void run()
{
initialize();
while(isRunning)
{
long time = System.currentTimeMillis();
update();
draw();
// delay for each frame - time it took for one frame
time = (1000 / fps) - (System.currentTimeMillis() - time);
if (time > 0)
{
try
{
Thread.sleep(time);
}
catch(Exception e){}
}
}
setVisible(false);
}
/**
* This method will set up everything need for the game to run
*/
void initialize()
{
setTitle("Game Tutorial");
setSize(windowWidth, windowHeight);
setResizable(false);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setVisible(true);
insets = getInsets();
setSize(insets.left + windowWidth + insets.right,
insets.top + windowHeight + insets.bottom);
backBuffer = new BufferedImage(windowWidth, windowHeight, BufferedImage.TYPE_INT_RGB);
input = new InputHandler(this);
}
/**
* This method will check for input, move things
* around and check for win conditions, etc
*/
void update()
{
if (input.isKeyDown(KeyEvent.VK_RIGHT))
{
x += 5;
}
if (input.isKeyDown(KeyEvent.VK_LEFT))
{
x -= 5;
}
}
/**
* This method will draw everything
*/
void draw()
{
Graphics g = getGraphics();
Graphics bbg = backBuffer.getGraphics();
bbg.setColor(Color.WHITE);
bbg.fillRect(0, 0, windowWidth, windowHeight);
bbg.setColor(Color.BLACK);
bbg.drawOval(x, 10, 20, 20);
g.drawImage(backBuffer, insets.left, insets.top, this);
}
}
这是键盘代码
package gamesample;
import java.awt.Component;
import java.awt.event.*;
/**
* Makes handling input a lot simpler
*/
public class InputHandler implements KeyListener
{
boolean keys[];
/**
* Assigns the newly created InputHandler to a Component
* @param c Component to get input from
*/
public InputHandler(Component c)
{
c.addKeyListener(this);
}
/**
* Checks whether a specific key is down
* @param keyCode The key to check
* @return Whether the key is pressed or not
*/
public boolean isKeyDown(int keyCode)
{
if (keyCode > 0 && keyCode < 256)
{ keys = new boolean [256];
return keys[keyCode];
}
return false;
}
/**
* Called when a key is pressed while the component is focused
* @param e KeyEvent sent by the component
*/
public void keyPressed(KeyEvent e)
{ boolean keys[];
if (e.getKeyCode() > 0 && e.getKeyCode() < 256)
{ keys = new boolean [256];
keys[e.getKeyCode()] = true;
}
}
/**
* Called when a key is released while the component is focused
* @param e KeyEvent sent by the component
*/
public void keyReleased(KeyEvent e)
{ boolean keys[];
if (e.getKeyCode() > 0 && e.getKeyCode() < 256)
{ keys = new boolean [256];
keys[e.getKeyCode()] = false;
}
}
/**
* Not used
*/
public void keyTyped(KeyEvent e){}
}
最佳答案
Graphics g = getGraphics();
不是自定义绘制的方式。 Swing 使用被动渲染算法,这意味着您的 UI 可以随时因多种原因重新绘制,其中许多原因是您无法控制的。 Swing 默认情况下也是双缓冲的,因此如果您实际使用 JPanel
并覆盖它的 paintComponent
方法,您将免费获得双缓冲,并且您会收到通知任何与系统相关的绘制事件。
参见Painting in AWT and Swing和 Performing Custom Painting了解更多详情
不要使用KeyListener
,它太麻烦了,按键绑定(bind)API解决了它所存在的所有问题。请参阅How to Use Key Bindings了解更多详情。
请记住,Swing 是一个单线程框架,并且不是线程安全的。这意味着您永远不应该以任何方式阻塞事件调度线程(例如使用永无止境的循环),并且您应该只在 EDT 的上下文中更新 UI。
你的“主循环”有同时做这两件事的危险。代码不会阻塞 EDT,这是 JVM 性质的侥幸,但这也意味着您违反了 Swing 的单线程性质。
参见Concurrency in Swing了解更多详情。
通常,我会使用 Swing Timer
来完成此类工作,因为它的回调在 EDT 的上下文中同步,但您可以使用 Thread
>,但您必须手动将更新同步回 EDT。
如果您想完全控制绘制过程,您应该使用 BufferStrategy
,请参阅 BufferStrategy
和 BufferStrategy and BufferCapabilities了解更多详情
作为basic example上述概念的
关于java - 我无法让我的 2d 游戏对象移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32981270/
我通过 spring ioc 编写了一些 Rest 应用程序。但我无法解决这个问题。这是我的异常(exception): org.springframework.beans.factory.BeanC
我对 TestNG、Spring 框架等完全陌生,我正在尝试使用注释 @Value通过 @Configuration 访问配置文件注释。 我在这里想要实现的目标是让控制台从配置文件中写出“hi”,通过
为此工作了几个小时。我完全被难住了。 这是 CS113 的实验室。 如果用户在程序(二进制计算器)结束时选择继续,我们需要使用 goto 语句来到达程序的顶部。 但是,我们还需要释放所有分配的内存。
我正在尝试使用 ffmpeg 库构建一个小的 C 程序。但是我什至无法使用 avformat_open_input() 打开音频文件设置检查错误代码的函数后,我得到以下输出: Error code:
使用 Spring Initializer 创建一个简单的 Spring boot。我只在可用选项下选择 DevTools。 创建项目后,无需对其进行任何更改,即可正常运行程序。 现在,当我尝试在项目
所以我只是在 Mac OS X 中通过 brew 安装了 qt。但是它无法链接它。当我尝试运行 brew link qt 或 brew link --overwrite qt 我得到以下信息: ton
我在提交和 pull 时遇到了问题:在提交的 IDE 中,我看到: warning not all local changes may be shown due to an error: unable
我跑 man gcc | grep "-L" 我明白了 Usage: grep [OPTION]... PATTERN [FILE]... Try `grep --help' for more inf
我有一段代码,旨在接收任何 URL 并将其从网络上撕下来。到目前为止,它运行良好,直到有人给了它这个 URL: http://www.aspensurgical.com/static/images/a
在过去的 5 个小时里,我一直在尝试在我的服务器上设置 WireGuard,但在完成所有设置后,我无法 ping IP 或解析域。 下面是服务器配置 [Interface] Address = 10.
我正在尝试在 GitLab 中 fork 我的一个私有(private)项目,但是当我按下 fork 按钮时,我会收到以下信息: No available namespaces to fork the
我这里遇到了一些问题。我是 node.js 和 Rest API 的新手,但我正在尝试自学。我制作了 REST API,使用 MongoDB 与我的数据库进行通信,我使用 Postman 来测试我的路
下面的代码在控制台中给出以下消息: Uncaught DOMException: Failed to execute 'appendChild' on 'Node': The new child el
我正在尝试调用一个新端点来显示数据,我意识到在上一组有效的数据中,它在数据周围用一对额外的“[]”括号进行控制台,我认为这就是问题是,而新端点不会以我使用数据的方式产生它! 这是 NgFor 失败的原
我正在尝试将我的 Symfony2 应用程序部署到我的 Azure Web 应用程序,但遇到了一些麻烦。 推送到远程时,我在终端中收到以下消息 remote: Updating branch 'mas
Minikube已启动并正在运行,没有任何错误,但是我无法 curl IP。我在这里遵循:https://docs.traefik.io/user-guide/kubernetes/,似乎没有提到关闭
每当我尝试docker组成任何项目时,都会出现以下错误。 我尝试过有和没有sudo 我在这台机器上只有这个问题。我可以在Mac和Amazon WorkSpace上运行相同的容器。 (myslabs)
我正在尝试 pip install stanza 并收到此消息: ERROR: No matching distribution found for torch>=1.3.0 (from stanza
DNS 解析看起来不错,但我无法 ping 我的服务。可能是什么原因? 来自集群中的另一个 Pod: $ ping backend PING backend.default.svc.cluster.l
我正在使用Hibernate 4 + Spring MVC 4当我开始 Apache Tomcat Server 8我收到此错误: Error creating bean with name 'wel
我是一名优秀的程序员,十分优秀!