- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在尝试用java创建一个tamogatchi游戏,但是,我需要一种方法来清除输出屏幕,以便健康栏/食物栏在保持相同位置的同时下降。我发现按 Command+L(在 Mac 上)将清除输出。但是,我无法找到它的 KeyEvent 命令。这就是我目前拥有的
package tamogatchu;
import java.util.*;
import java.awt.AWTException;
import java.awt.Robot;
import java.awt.event.KeyEvent;
public class Tamogatchu {
public static void main(String[] args) throws InterruptedException, AWTException {
initialize();
}
public static void initialize() throws InterruptedException, AWTException {
int full = 10;
int health = 10;
int happy = 10;
int idk = 0;
int poop = 0;
String[] food = new String[10];
String[] healthbar = new String[10];
String[] happyness = new String[10];
for (int i = 0; i < 10; i++) {
food[i] = "◼";
}
for (int i = 0; i < 10; i++) {
healthbar[i] = "◼";
}
for (int i = 0; i < 10; i++) {
happyness[i] = "◼";
}
Print(food, full, healthbar, health, idk, happyness, happy, poop);
}
public static void tamogatchu(String[] food, int full, String[] healthbar, int health, int idk, String[] happyness, int happy, int poop) throws InterruptedException, AWTException {
//int timer = 0;
Scanner input = new Scanner(System.in);
String care = "";
String hungery = "";
String healthery = "";
String happery = "";
while (health > 0) {
if (full != 0) {
Thread.sleep(10000);
} else {
Thread.sleep(5000);
}
Robot r = new Robot();
r.keyPress(KeyEvent.VK_L);
// the command⌘ key should be pressed here r.keyPress(KeyEvent.);
//r.keyRelease(KeyEvent.);
r.keyRelease(KeyEvent.VK_L);
String Line = Arrays.toString(food);
String result = Line.replaceAll("[-+.^:, ]", "");
hungery = "Hunger: " + result;
System.out.println(hungery);
String Line2 = Arrays.toString(healthbar);
String result2 = Line2.replaceAll("[-+.^:, ]", "");
healthery = "Health: " + result2;
System.out.println(healthery);
String Line3 = Arrays.toString(happyness);
String result3 = Line3.replaceAll("[-+.^:, ]", "");
happery = "Happieness: " + result3;
System.out.println(happery);
if (idk == 0) {
System.out.println(" .^._.^.\n"
+ " | . . |\n"
+ " ( --- )\n"
+ " .' '.\n"
+ " |/ \\|\n"
+ " \\ /-\\ /\n"
+ " V V");
idk = 1;
} else {
System.out.println(" .^._.^.\n"
+ " | . . |\n"
+ " ( --- )\n"
+ " |/ \\|\n"
+ " \\ /-\\ /\n"
+ " V V");
idk = 0;
}
System.out.println("Poops: " + poop);
System.out.println("take care of your pet? -type 'feed' to feed or 'clean' to get rid of poops-");
care = input.nextLine();
if (care.equalsIgnoreCase("feed")) {
full += 5;
if (full > 10) {
full = 10;
}
} else if (care.equalsIgnoreCase("clean")) {
poop = 0;
}
if (full % 2 == 0) {
poop++;
happy -= poop;
}
if (full > 7 && health < 10 || full > 5 || poop == 0) {
if (full > 7 && health < 10) {
health++;
if (health > 10) {
health = 10;
}
}
if (full > 5) {
happy++;
if (happy > 10) {
happy = 10;
}
}
if (poop == 0) {
happy++;
if (happy > 10) {
happy = 10;
}
}
}
if (full != 0) {
full--;
if (full <= 5) {
happy--;
}
if (full == 0) {
happy--;
health--;
} else if (happy == 0) {
health--;
}
Print(food, full, healthbar, health, idk, happyness, happy, poop);
}
if (full == 0 || happy == 0) {
if (full == 0) {
happy--;
health--;
} else if (happy == 0) {
health--;
}
Print(food, full, healthbar, health, idk, happyness, happy, poop);
}
}
System.out.println("Hunger: [◻◻◻◻◻◻◻◻◻◻]");
System.out.println("Health: [◻◻◻◻◻◻◻◻◻◻]");
System.out.println("Happieness: [◻◻◻◻◻◻◻◻◻◻]");
System.out.println(" .^._.^.\n"
+ " | x x |\n"
+ " ( --- )\n"
+ " .' '.\n"
+ " |/ \\|\n"
+ " \\ /-\\ /\n"
+ " V V");
System.out.println("YOU KILLED IT");
System.exit(0);
}
public static void Print(String[] food, int full, String[] healthbar, int health, int idk, String[] happyness, int happy, int poop) throws InterruptedException, AWTException {
for (int i = 0; i < full; i++) {
food[i] = "◼";
}
if (-1 + full >= 0) {
for (int i = 9; i > -1 + full; i--) {
food[i] = "◻";
}
} else {
for (int i = 0; i < 10; i++) {
food[i] = "◻";
}
}
for (int i = 0; i < health; i++) {
healthbar[i] = "◼";
}
for (int i = 9; i > -1 + health; i--) {
healthbar[i] = "◻";
}
for (int i = 0; i < happy; i++) {
happyness[i] = "◼";
}
if (-1 + happy >= 0) {
for (int i = 9; i > -1 + happy; i--) {
happyness[i] = "◻";
}
} else {
for (int i = 0; i < 10; i++) {
happyness[i] = "◻";
}
}
tamogatchu(food, full, healthbar, health, idk, happyness, happy, poop);
}
}
最佳答案
在 Robot
类,Command(⌘) 的名称为 KeyEvent.VK_META
。您的代码应如下所示:
Robot r = new Robot();
r.keyPress(KeyEvent.VK_META); //press command
r.keyPress(KeyEvent.VK_L); //press l
r.keyRelease(KeyEvent.VK_META); //release command
r.keyRelease(KeyEvent.VK_L); //release l
这将按下Command键,按下L键,然后释放它们。我已经对此进行了测试,它可以正常工作。
注意:使用 Robot
会抛出 AWTException
,因此需要您用 try-catch block 包围,或者在方法中抛出 AWTException
标题
关于java - 模拟在 Mac 上按下 "Command"键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44480166/
我正在尝试安装一种用于 TCPDF 的字体。为此,我需要运行附带的命令行实用程序 ttf2ufm。 (包含在 TCPDF 中的 fonts/utils/ttf2ufm 中)但是当我运行它时,出现错误
我是 answering a question并假设 if [ $(command) ]; then ... 总是等同于 if command; then ... 但是,我得到了a couple of
我的package.json定义: ... "scripts": { "start": "node scripts/start.js", "build"
我知道默认的“CTRL+B”Windows 命令可用于显示所有嵌套文件。 是否有显示所有嵌套文件夹的快捷方式? 最佳答案 我怀疑 Total Commander 中是否存在此功能。内置tree实用性对
任何人都可以告诉我,是否有任何可以检测当前运营商名称的AT命令? 我用过AT+COPS? 它返回给我运算符(operator)的数字代码:0,2,40410 然后我使用命令 AT+WOPN = 0,4
我需要将网站托管到 google firebase 托管。 我几乎到处都看过,但钢有问题。 我已安装 npm install --global firebase 还有 npm install -g f
我想要这样的东西 如果(command_not_exists)退出 谁能告诉我如何在 cshell 脚本中实现此功能? 最佳答案 我的问题是使用 where 命令解决的(我尝试使用 which 命令)
通过使用 + 的参数调用它,我可以使 vim 将光标定位在文件的最后一行。 : vi + myfile # "+" = go to last line of file 我怎样才能做到
我想要这样的东西 如果(command_not_exists)退出 谁能告诉我如何在 cshell 脚本中实现此功能? 最佳答案 我的问题是使用 where 命令解决的(我尝试使用 which 命令)
在 cobra 中,我创建了一个命令命令: myapp zip -directory "xzy" -output="zipname" myapp upload -filename="abc" 我想制作
我应用了所有可能的答案,但仍然是同样的问题。 也试过 $this->db->reconnect(); 我的查询没有问题 我的代码: public function GetdistributorsDet
有什么区别: eval echo lala 和: command="echo lala" $command 它们似乎都具有相同的效果,但我可能遗漏了一些东西。此外,如果它们确实具有相同的效果,那么ev
要将命令的输出存储为 sh/ksh/bash 中的变量,您可以执行任一操作 var=$(command) 或 var=`command` 这两种方法有什么区别? 最佳答案 反引号/标记已被弃用,取而代
我想让我的用户根据他的选择以 sudo 和普通用户身份运行。他可以使用 sudo 或普通用户,但如果不使用 sudo,我必须禁用某些功能来消除错误。那么我怎么知道该用户是否给了我 sudo 执行权限?
这个问题已经有答案了: Command substitution: backticks or dollar sign / paren enclosed? [duplicate] (3 个回答) 已关闭
这个问题已经有答案了: 已关闭10 年前。 Possible Duplicate: Command substitution: backticks or dollar sign / paren enc
要将命令的输出存储为 sh/ksh/bash 中的变量,您可以执行任一操作 var=$(command) 或 var=`command` 这两种方法有什么区别? 最佳答案 反引号/标记已被弃用,取而代
Linux 101 Hacks 这本书的第 38 页建议: cat url-list.txt | xargs wget –c 我通常这样做: for i in `cat url-list.txt`
问题是当我为我的项目编写 Makefile 时,当我需要检测当前分支名称时,在 make 规则中我这样做了: check_branch: if [ "$(git rev-parse --abb
默认情况下,控制台命令文件夹位于:MyProject\MyBundle\Command并且一切都按预期工作,但是如果我将文件夹移动到另一个目录中,例如:MyProject\MyBundle\MyFol
我是一名优秀的程序员,十分优秀!