- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试用方 block 制作一个虚拟标签。目前,我的重点是让游戏在玩家捕获另一个玩家时宣布游戏结束并在一秒钟后关闭。但是,当两个方 block 碰撞时,程序不会向屏幕写入任何内容。
我知道调用 g.drawString 的 if 语句可以工作,因为在这里将其输出到控制台两次,所以我很困惑为什么 g.drawString 不起作用。
package com.Arman;
import javax.swing.*;
import java.awt.*;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
import java.util.HashSet;
public class Virtual_Tag {
static int x1 = 0;
static int y1 = 0;
static Dimension dimension = Toolkit.getDefaultToolkit().getScreenSize();
static int height = (int) dimension.getHeight();
static int width = (int) dimension.getWidth();
static int sWidth = (int) (Math.round(100 * width / 1366.0));
static int sHeight = (int) (Math.round(100 * height / 768.0));
static int x2 = width - sWidth;
static int y2 = height - sHeight;
static myGraphicsPanel graphics = new myGraphicsPanel();
static boolean[] move = new boolean[8];
static int xSpeed1;
static int ySpeed1;
static int xSpeed2;
static int ySpeed2;
static boolean xcol, ycol;
static JFrame frame = new JFrame();
public static void main(String[] args) throws Exception {
frame.setSize(width, height);
JPanel left = new JPanel();
JTextField text1 = new JTextField();
text1.addKeyListener(new keyListener());
left.add(text1);
JTextField text2 = new JTextField();
text2.addKeyListener(new keyListener());
JPanel right = new JPanel();
right.add(text2);
frame.add(left);
frame.add(right);
frame.add(graphics);
frame.setVisible(true);
while (!xcol || !ycol) {
keyListener.move();
x1 += xSpeed1;
x2 += xSpeed2;
y1 += ySpeed1;
y2 += ySpeed2;
int s1 = x1;
int e1 = x1 + sWidth;
int s2 = x2;
int e2 = x2 + sWidth;
xcol = (s1 <= s2 && s2 <= e1) || (s1 <= e2 && e2 <= e1);
s1 = y1;
e1 = y1 + sHeight;
s2 = y2;
e2 = y2 + sHeight;
ycol = (s1 <= s2 && s2 <= e1) || (s1 <= e2 && e2 <= e1);
Thread.sleep(10);
frame.repaint();
}
Thread.sleep(1000);
System.exit(0);
}
static class keyListener extends KeyAdapter {
private HashSet<Integer> pressed = new HashSet<>();
private final int[] KEYS = {KeyEvent.VK_W, KeyEvent.VK_A, KeyEvent.VK_D, KeyEvent.VK_S, KeyEvent.VK_DOWN,
KeyEvent.VK_LEFT, KeyEvent.VK_RIGHT, KeyEvent.VK_UP};
public static void move() {
ySpeed1 = 0;
xSpeed1 = 0;
ySpeed2 = 0;
xSpeed2 = 0;
if (move[0]) ySpeed1 -= 10;
if (move[1]) xSpeed1 -= 10;
if (move[2]) xSpeed1 += 10;
if (move[3]) ySpeed1 += 10;
if (move[4]) ySpeed2 += 10;
if (move[5]) xSpeed2 -= 10;
if (move[6]) xSpeed2 += 10;
if (move[7]) ySpeed2 -= 10;
}
public void keyPressed(KeyEvent e) {
pressed.add(e.getKeyCode());
for (int f : pressed) {
boolean found = false;
for (int i = 0; i < 8 && !found; i++) {
if (f == KEYS[i]) {
move[i] = true;
found = true;
}
}
}
}
public void keyReleased(KeyEvent e) {
boolean found = false;
for (int i = 0; i < 8 && !found; i++) {
if (e.getKeyCode() == KEYS[i]) {
move[i] = false;
found = true;
}
}
pressed.remove(e.getKeyCode());
}
public void keyTyped(KeyEvent e) {
// not used
}
}
static class myGraphicsPanel extends JPanel {
public void paintComponent(Graphics g) {
g.setColor(Color.BLUE);
g.fillRect(x1, y1, 100, 100);
g.setColor(Color.RED);
g.fillRect(x2, y2, 100, 100);
if (xcol && ycol) {
g.setFont(new Font("Verdana", Font.PLAIN, 36));
g.drawString("Game Over!", 0, 0);
System.out.println("Made it here");
}
}
}
}
最佳答案
更改打印坐标以向右和向下移动字符串。尝试 200,200
。
此外,您应该执行以下操作:
start()
方法中。然后您可以调用您的通过执行以下操作来进行编程: new VirtualTag().start();
通常您应该在 main 中启动程序,如下所示:
SwingUtilities.invokeLater(()->new Virtual_Tag().start());
但在这种情况下,这不起作用,因为您将在事件调度线程
中连续循环,并且不会绘制任何内容。
关于java - 当两个方 block 碰撞时 g.drawString 没有绘制游戏结束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56915841/
我目前正在尝试让 g++ 工作,并查看 http://gcc.gnu.org/install/build.html ,我似乎找不到它在哪里说如何“执行编译器的 3 阶段 bootstrap ”。我在哪
James Powell 在他对即将举行的演示文稿的简短描述中说,他自豪地发明了最粗糙的 Python 单行代码之一: (None for g in g if (yield from g) and F
请告诉我我的证明是否正确 We have a connected graph, and specific vertex u in V(G). Suppose we compute the dfs tr
下面的test2和test3结果是不同的。 我对此感到困惑,因为它看起来像相同的逻辑,并且与linux bash ||逻辑不同。 $data = @( [PSCustomObject]@{St
我试图找到一个明确的 G 代码语法规范,而不是单个 G 代码的含义,我无处不在的规范,我的意思是详细的语法规范,目的是编写解析器。 我编写解析器没有问题,我只是在寻找语法规范,例如。我知道您不必总是为
我写了这个 mixin,但它循环了很多时间。你能帮我优化我的代码吗?或者你能建议一些其他的东西来获得想要的结果吗? dfgdfgsdfgsdf 最佳答案 希望这就是您要找的。 $spaces: (4,
默认情况下,g++ 似乎会省略未使用的类内定义方法的代码。示例 from my previous question : struct Foo { void bar() {} void baz(
是否可以将文件内容通过管道传送到 g++编译程序? 我想这样做是因为我想使用数据库中的文件而不是磁盘上的物理文件。可以通过我制作的 API 轻松检索文件内容。 例如,我想做这样的事情: g++ con
如何profile c++代码获取每行代码的调用次数和消耗时间,就像profile工具一样在 Matlab 中呢? 我尝试使用-fprofile-arcs之类的东西,但它只生成代码覆盖率报告,其中可以
如何在几行代码上禁用所有警告。可以使用 GCC 诊断功能禁用特定警告,但是否有针对所有警告的标志。我尝试了这个方法,但不起作用 #pragma GCC diagnostic push #pragma
我有一个链接到 opencv 2.2 的可执行文件。但是,我删除了 opencv 2.2 并安装了 opencv 2.3。 问题是,有没有办法在不重新编译整个源代码的情况下将这个可执行文件链接到新的共
在编译带有一些标志的以下文件时,是否可以让 g++ 显示错误? #include using namespace std; int main() { int arr[ 2 ]; cout
在学习 Haskell 时,我遇到了一个挑战,要找到两个函数 f 和 g,例如 f g 和 f 。 g 是等价的(并且是总计,因此像 f = undefined 或 f = (.) f 这样的东西不算
根据我的理解,Theta 位于 Big O 和 Omega 之间,但我看到了这个声明,但我无法理解为什么交集会出现在这里。我能否对 Θ(g(n)) = O(g(n)) ∩ Ω(g(n)) 获得数学和分
我需要为这个递归函数编写一个迭代函数。 int funcRec(int n){ if(n>1) { return 2*funcRec(n - 1) + 3*funcRec(n
我在 github repository 上有代码示例并在 travis-ci 上创建了一个构建便于复制。 最小的、完整的和可验证的例子 可能不是最小的,但我相信它足够小 它使用 boost.inte
编辑:我们将调用箭头 p纯如果存在这样的函数f即:p = arr f . 我试图更好地掌握 Haskell 中的 Arrows,我想弄清楚什么时候 f >>> (g &&& h) = (f >>> g
我有两个(或更多)函数定义为: val functionM: String => Option[Int] = s => Some(s.length) val functionM2: Int => Op
好像是的。任何直观或严肃的证据都值得赞赏。 最佳答案 没有。 我认为您的问题等同于:给定函数 f 和 g,f 是 O(g) 或 g 是 O(f) 是否总是正确的?这在 SE Computer Scie
如果我设法证明 f(n) = o(g(n))(小 o),那么这两个函数的总和 f( n) + g(n) 应该被“更大”的函数 g(n) 紧紧束缚。 然而,我在证明这一点时遇到了一些麻烦。 最佳答案 以
我是一名优秀的程序员,十分优秀!