- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我是一名初学者,我有一个程序,它是一种从一点到另一点的游戏。你是一个绿色方 block ,你避开红色方 block 。但是我不知道如何在不创建另一个方法 enemyMovement2()
的情况下创建另一个移动的红色 block ,这看起来效率很低,因为如果我想创建许多这样的敌人怎么办。有什么方法可以制作这种行为的 arraylist
吗?
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.util.ArrayList;
import javax.swing.JFrame;
import javax.swing.JPanel;
@SuppressWarnings("serial")
public class Game extends JPanel implements KeyListener, ActionListener {
private static boolean dead = false;
private static boolean won = false;
boolean isPaused=false;
boolean hasStarted=false;
int level = 1;
boolean powerUpIsEaten;
boolean keepPowerUpOffScreen;
int powerupx;
int powerupy;
int powerupwidth=20;
int powerupheight=20;
int winningx;
int winningy;
int winningwidth;
int winningheight;
int losingx;
int losingy;
int losingwidth;
int losingheight;
int losing2x;
int losing2y;
int losing2width;
int losing2height;
int losing3x;
int losing3y;
int losing3width;
int losing3height;
int losing4x;
int losing4y;
int losing4width;
int losing4height;
int losing5x;
int losing5y;
int losing5width;
int losing5height;
int enemywidth;
int enemyheight;
int userwidth;
int userheight;
ArrayList<Integer> badRectangles = new ArrayList<Integer>();
int x = 1, y = 1;
int enemyX=400, enemyY=100;
int velx=0, vely=0;
boolean hasWon = false, hasDied = false;
int movementcounter=0;
private void move() throws InterruptedException {
addKeyListener(this);
setFocusable(true);
setFocusTraversalKeysEnabled(false);
if (vely > 0){
if(y>700-userheight *2){
}
else{
y = y + 5 + movementcounter/300;
}
}
if (vely < 0){
if(y<0){
}
else{
y = y - 5 - movementcounter/300;
}
}
if (velx > 0){
if(x>1200-userwidth){
}
else{
x = x + 5 + movementcounter/300;
}
}
if (velx < 0){
if(x<0){
}
else{
x = x - 5 - movementcounter/300;
}
}
if(isInARectangle()){
hasDied=true;
}
if(isInWinningArea()){
x=0;
y=0;
hasWon=true;
}
movementcounter++;
}
@Override
public void paint(Graphics g) {
super.paint(g);
getValues(level);
Graphics2D g2d = (Graphics2D) g;
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
RenderingHints.VALUE_ANTIALIAS_ON);
g.setFont(new Font("TimesRoman", Font.PLAIN, 30));
if(level==5){
g2d.drawString("Congratulations", 550, 350);
this.won=true;
}
else if(hasStarted
&& !isPaused){
eatPowerup();
g2d.setColor(Color.RED);
for(int i=1; i<=level; i++){
g2d.fillRect(badRectangles.get(4 * i - 4),badRectangles.get(4 * i - 3),badRectangles.get(4 * i - 2),badRectangles.get(4 * i - 1));
}
g2d.setColor(Color.GREEN);
g2d.fillRect(winningx, winningy, winningwidth, winningheight); //WINNING RECTANGLE
g2d.setColor(Color.RED);
g2d.fillRect(enemyX, enemyY, enemywidth, enemyheight); //ENEMY
enemyMovement();
if(!hasDied){
g2d.setColor(Color.GREEN);
g2d.fillRect(x, y, userwidth, userheight); //USER
}
if(hasWon
&& !hasDied){
level++;
if(level==2){
enemyX=1000;
enemyY=0;
}
if(level==3){
enemyX=700;
enemyY=0;
}
if(level==4){
enemyX=400;
enemyY=100;
}
powerUpIsEaten=false;
hasWon=false;
keepPowerUpOffScreen=false;
}
if(hasDied){
g2d.setColor(Color.RED);
g2d.drawString("You died", 500, 300); //LOSING SEQUENCE
this.dead=hasDied;
}
if(!powerUpIsEaten
&& level>1
&& !keepPowerUpOffScreen){
g2d.setColor(Color.BLUE);
g2d.fillRect(powerupx, powerupy, powerupwidth, powerupheight);
}
else{
keepPowerUpOffScreen=true;
powerUpIsEaten=false;
}
}
if(isPaused){
g2d.drawString("PAUSED", 450, 300);
}
if(!hasStarted){
g2d.drawString("PRESS UP TO START", 450, 300);
}
}
public void eatPowerup(){
if(powerupx<x + userwidth + 5
&& powerupx>x
&& powerupy<y + userheight + 5
&& powerupy>y){
powerUpIsEaten=true;
powerupx=0;
powerupy=1000;
enemyX=0;
enemyY=0;
}
else{
powerUpIsEaten=false;
}
}
public boolean isInWinningArea(){
if(x<winningx + winningwidth - userwidth
&& x>winningx
&& y<winningy + winningheight-userheight
&& y>winningy){
return true;
}
else{
return false;
}
}
public boolean isInARectangle(){
if((x > losingx-userwidth
&& x < losingx + losingwidth
&& y > losingy-userheight
&& y < losingy + losingheight)
|| x > losing2x-userwidth
&& x < losing2x + losing2width
&& y > losing2y-userheight
&& y < losing2y + losing2height
|| x > losing3x-userwidth
&& x < losing3x + losing3width
&& y > losing3y-userheight
&& y < losing3y + losing3height
|| x > losing4x-userwidth
&& x < losing4x + losing4width
&& y > losing4y-userheight
&& y < losing4y + losing4height){
return true;
}
else{
return false;
}
}
public void getValues(int level){
if(level==1){
winningx=550;
winningy=550;
winningwidth=100;
winningheight=100;
losingx=200;
losingy=100;
losingwidth=200;
losingheight=200;
enemywidth=60;
enemyheight=60;
userwidth=50;
userheight=50;
}
if(level==2){
winningx=1000;
winningy=500;
winningwidth=200;
winningheight=200;
losingx=200;
losingy=100;
losingwidth=200;
losingheight=200;
losing2x=700;
losing2y=500;
losing2width=300;
losing2height=200;
enemywidth=60;
enemyheight=60;
userwidth=50;
userheight=50;
powerupx=900;
powerupy=100;
}
if(level==3){
winningx=1000;
winningy=500;
winningwidth=200;
winningheight=200;
losingx=200;
losingy=100;
losingwidth=200;
losingheight=200;
losing2x=700;
losing2y=500;
losing2width=300;
losing2height=200;
losing3x=100;
losing3y=100;
losing3width=100;
losing3height=450;
enemywidth=60;
enemyheight=60;
userwidth=50;
userheight=50;
powerupx=100;
powerupy=600;
}
if(level==4){
winningx=1000;
winningy=500;
winningwidth=200;
winningheight=200;
losingx=200;
losingy=100;
losingwidth=200;
losingheight=200;
losing2x=700;
losing2y=500;
losing2width=300;
losing2height=200;
losing3x=100;
losing3y=100;
losing3width=100;
losing3height=450;
losing4x=900;
losing4y=300;
losing4width=500;
losing4height=100;
enemywidth=60;
enemyheight=60;
userwidth=50;
userheight=50;
powerupx=600;
powerupy=500;
}
if (level==5){
}
badRectangles.clear();
badRectangles.add(losingx);
badRectangles.add(losingy);
badRectangles.add(losingwidth);
badRectangles.add(losingheight);
badRectangles.add(losing2x);
badRectangles.add(losing2y);
badRectangles.add(losing2width);
badRectangles.add(losing2height);
badRectangles.add(losing3x);
badRectangles.add(losing3y);
badRectangles.add(losing3width);
badRectangles.add(losing3height);
badRectangles.add(losing4x);
badRectangles.add(losing4y);
badRectangles.add(losing4width);
badRectangles.add(losing4height);
badRectangles.add(losing5x);
badRectangles.add(losing5y);
badRectangles.add(losing5width);
badRectangles.add(losing5height);
}
public void enemyMovement(){
if(enemyX<x){
enemyX= enemyX+1 + movementcounter/300;
}
if(enemyX>x){
enemyX=enemyX-1 - movementcounter/300;
}
if(enemyY<y){
enemyY=enemyY + 1 + movementcounter/300;
}
if(enemyY>y){
enemyY=enemyY -1 - movementcounter/300;
}
if(x<enemyX+enemywidth
&& x>enemyX-userwidth
&& y<enemyY+ enemyheight
&& y>enemyY-userheight){
hasDied=true;
}
}
@Override
public void keyPressed(KeyEvent e) {
int key = e.getKeyCode();
switch( key ) {
case KeyEvent.VK_UP:
isPaused=false;
hasStarted=true;
vely = -1;
break;
case KeyEvent.VK_DOWN:
vely = 1;
break;
case KeyEvent.VK_LEFT:
velx = -1;
break;
case KeyEvent.VK_RIGHT :
velx = 1;
break;
case KeyEvent.VK_P:
isPaused=true;
}
}
@Override
public void keyReleased(KeyEvent e) {
velx = 0;
vely = 0;
}
@Override
public void keyTyped(KeyEvent e) {
// TODO Auto-generated method stub
}
public static void main(String[] args) throws InterruptedException {
JFrame frame = new JFrame("Square Game");
Game game = new Game();
frame.add(game);
frame.setSize(1200, 700);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setBackground( Color.BLUE );
while (!dead
&& !won) {
game.move();
game.repaint();
Thread.sleep(10);
}
}
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
}
}
最佳答案
那是吨的代码!但这里是您未能意识到的快速一瞥。
一些游戏对象是可移动
。
所以,制作一个Movable
interface
,每个可移动的GO实现。然后您只需遍历 Movable
和 movableGameObject.move()
它们。
例子:
public interface Movable {
void move();
}
class Player extends GameObject implements Movable {
@Override
public void move() {
System.out.println("Player moving...");
}
}
class Enemy extends GameObject implements Movable {
@Override
public void move() {
System.out.println("Enemy moving...")
}
}
public static void main(String... args) {
Arrays.asList(
new Movable[] {
new Player(), new Enemy()
}
).forEach(Movable::move);
}
正如预期的那样,这给出了输出...
Player moving...
Enemy moving...
关于java - 我的程序似乎效率低下,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35967154/
谁能帮我解决这个问题?我有一个 Tomcat 和简单的 JSF 应用程序:https://github.com/gooamoko/jsfbilling/ .当我在 Tomcat 上运行应用程序时,它运
我有两个这样的域类,第一个是 Manager : package com.mnm class Manager { String name; static hasMany = [ pro
当我运行以下代码时,打印输出似乎不正确。 void thread_Calc(int *pos) { printf("recieved %d\n", *pos); sig = -1; man
这个问题在这里已经有了答案: How to access a local variable from a different function using pointers? (10 个答案) 关闭
我编写了一个程序,其中列表构建器方法返回 IEnumerable of string,其中包括大量字符串(100 万个项目),我将其存储在 List of string 中,然后它将所有项目附加到 中
我正在尝试编写一个 IRC 类型的聊天客户端,它具有可以连接到服务器的客户端。我试图让它在本地 atm 上工作(使用 FIFOS 而不是套接字)。 我遇到了以下我似乎无法解决的问题: 接受新的客户端连
我的一个 cronjobs 每天发送一封电子邮件 35 6 * * * cd $EZPUBLISHROOT && $PHP runcronjobs.php -q 2>&1 我停止使用 cron sud
我使用 WPF 打印路径来处理在我们的应用程序中创建的大型图表。整个图表由视觉效果组成。 所谓的“DesignerPaginator”对图表进行分页(非常简单)。 从这一点来说,我做了以下三件事: -
我尝试在更新之前跟踪系统应用程序并使用: public static boolean isSystemApplication(Context ctx, IContent content) {
我在这里附上了一个查询分析结果,https://explain.depesz.com/s/x9BN 这是查询 EXPLAIN ANALYZE SELECT branche
我正在做一个 CXF(spring) 项目 (HUB)。部署后,我可以看到肥皂和休息服务列表,我通过两个地址打开它。一种是使用本地主机,第二种是使用我电脑的 ip。所以我得到了这些输出。 使用本地主机
这是一个 AnyHashable 不支持枚举转换的简单案例。 enum testEnum: String { case Test } let myObject: AnyHashable = t
我的主要目标是比较存储在数据库和 XLSX 文件中的数据。 为此,我按以下方式创建了两个列表: private class ProductList { public string produc
我从 CMake 3.6 更新到任何最新版本 (3.12.0-rc2),现在我的一个程序无法编译。 奇怪的是,错误消息显示了标准库本身中的 undefined symbol 。这是错误消息: Unde
我希望将我的自定义对话框动画化为从特定点出现,但我无法为对话框设置动画。 该对话框是一个基本的 RelativeLayout,设置为 extends Dialog 类中的布局。 正如这里的一些答案所建
我已经在这个论坛上调查过很多类似的问题,但似乎没有一个能解决我的问题。 我会在底部列出我在这个论坛上看到的一些问题页面,但让我先谈谈我对这个问题的看法。 我正在使用 codeigniter v 2.x
我正在尝试在 RHEL 7 上启动一个 docker-compose 项目作为 systemd 服务。这是我的 systemd 脚本 (/etc/systemd/system/wp.service):
这个问题已经有答案了: "Notice: Undefined variable", "Notice: Undefined index", "Warning: Undefined array key",
我正在尝试在 RHEL 7 上启动一个 docker-compose 项目作为 systemd 服务。这是我的 systemd 脚本 (/etc/systemd/system/wp.service):
此问题出现在my last question here之后。我想将每个按钮聚焦和失去焦点背景设置为主菜单(ContentPane 即 JPanel)下方的背景颜色,因此按钮看起来像选项卡。它在不同的环
我是一名优秀的程序员,十分优秀!