- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
大家好,我已经学习 Java 几周了,并决定制作我自己的 Breakout 版本。除了根据 Racket (GRect) 的速度修改球 (GOval) 速度的方法之外,游戏运行良好。不管怎样,方法是这样的:
private double paddleVelocity(){
double paddleTracker=(paddleXTracker+paddleXTrackerTwo+paddleXTrackerThree)/3; //get the average x-coordinate for the paddle
if(loopCounter>3){ //if the game has been through the loop more than three times (to ensure three x-coordinates have been stored)
paddleVelocity=(paddle.getX()-paddleTracker)/50; //set paddleVelocity to the current paddle x-coordinate minus the average of the previous three paddle x-coordinates (which therefore finds the velocity and direction)
}else{
paddleVelocity=(paddle.getX()-paddleXTracker)/50; //takes the previous paddle x-coordinate and subtracts it from the current x-coordinate (which therefore finds the velocity and direction)
}
return (paddleVelocity);
}
这是调用它的方法:
private void detectCollisionPaddle(){;
double ballY = ball.getY()+(BALL_RADIUS*2);
if(paddle.getY()<=ballY && ball.getX()+BALL_RADIUS>=paddle.getX() && ball.getX()+BALL_RADIUS/2<=(paddle.getX()+PADDLE_WIDTH)){ //a mess of code which ensures the ball is within the bounds of the paddle
yVel=-yVel; //make the ball bounce off
bounceClip.play(); //play the bounce clip
xVel=xVel+paddleVelocity(); //increase the velocity of the ball in the direction and speed of the paddle
} }
实例变量包括:
private int loopCounter; //how many loops of the game code have been executed
private double paddleVelocity; //velocity of the paddle
private double paddleXTracker = 1; //value of the x-coordinate of the paddle one loop previous
private double paddleXTrackerTwo; //value of the x-coordinate of the paddle two loops previous
private double paddleXTrackerThree; //value of the x-coordinate of the paddle three loops previous
private double yVel = -1; //y velocity of the ball
private double xVel = 1; //x velocity of the ball
基本上,我希望 paddleVelocity 抓取桨的三个连续 x 坐标,并将它们与当前位置进行比较 (paddle.getX())。这使我能够确定用户移动桨的速度和方向。然后我返回结果(paddleVelocity),该结果应该添加到球的当前速度(xVel)中。但是,这似乎无法正常运行。当删除对 paddleVelocity() 的调用时,代码可以完美运行(尽管没有加速)。所以我知道 paddleVelocity 方法存在问题。看来是偏右了。也许你们可以帮忙,毕竟这是我第一次认真尝试编程。这是游戏atm:http://cyb3rglitch.com/games/Glitchout_0.1/
是的,砖 block 还没有碎。 :P 干杯!
编辑:为了方便起见,以下是所有困惑的代码:
/*
* File: Breakout.java
* -------------------
* Name: Vito Cassisi
*/
import acm.graphics.*;
import acm.program.*;
import acm.util.*;
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class Breakout extends GraphicsProgram {
/** Width and height of application window in pixels */
public static final int APPLICATION_WIDTH = 400;
public static final int APPLICATION_HEIGHT = 600;
/** Dimensions of game board (usually the same) */
private static final int WIDTH = APPLICATION_WIDTH;
private static final int HEIGHT = APPLICATION_HEIGHT;
/** Dimensions of the paddle */
private static final int PADDLE_WIDTH = 60;
private static final int PADDLE_HEIGHT = 10;
/** Offset of the paddle up from the bottom */
private static final int PADDLE_Y_OFFSET = 30;
/** Number of bricks per row */
private static final int NBRICKS_PER_ROW = 10;
/** Number of rows of bricks */
private static final int NBRICK_ROWS = 10;
/** Separation between bricks */
private static final int BRICK_SEP = 4;
/** Width of a brick */
private static final int BRICK_WIDTH =
(WIDTH - (NBRICKS_PER_ROW - 1) * BRICK_SEP) / NBRICKS_PER_ROW;
/** Height of a brick */
private static final int BRICK_HEIGHT = 8;
/** Radius of the ball in pixels */
private static final int BALL_RADIUS = 10;
/**Ball speed in milliseonds*/
private static final int DELAY = 10;
/** Offset of the top brick row from the top */
private static final int BRICK_Y_OFFSET = 70;
/** Number of turns */
private static final int NTURNS = 3;
private static final int COUNTDOWN = 200;
private GOval ball;
private GRect paddle;
private GRect block;
private GLabel life;
private GLabel countDown;
private GObject getObject;
AudioClip bounceClip = MediaTools.loadAudioClip("bounce.au");
/* Method: run() */
/** Runs the Breakout program. */
public void run() {
drawBlocks();
drawPaddle();
drawBall();
drawLife();
addMouseListeners();
while(!lose) {
detectCollisionWall();
detectCollisionBlock();
detectCollisionPaddle();
decelerate();
assignPaddleTrackers();
pause(DELAY);
loopCounter++;
}
GLabel youLose = new GLabel("You lose!",APPLICATION_WIDTH/2,APPLICATION_HEIGHT/2);
youLose.setLocation((getWidth()-youLose.getWidth())/2, (getHeight()-youLose.getAscent())/2);
add(youLose);
}
private void drawBlocks(){
/**Draw as many rows as defined in the constant 'NBRICKS_PER_ROW'*/
for(int i = 0;i<NBRICK_ROWS;i++){
blockX=(APPLICATION_WIDTH-((BRICK_WIDTH+BRICK_SEP)*NBRICKS_PER_ROW))/2; //center the blocks horizontally
drawRow(); //draw the row
blockY+=BRICK_HEIGHT+BRICK_SEP; //move the row down
}
}
private void drawRow(){
/**Draw as many bricks as defined in the constant 'NBRICKS_PER_ROW'*/
for(int i = 0;i<NBRICKS_PER_ROW;i++){
block = new GRect(blockX,blockY,BRICK_WIDTH,BRICK_HEIGHT); //initialise the blocks
add(block); //draw the blocks
blockX+=BRICK_WIDTH+BRICK_SEP; //move x co-ordinate across
}
}
private void drawPaddle(){
paddle = new GRect((APPLICATION_WIDTH-PADDLE_WIDTH)/2,(APPLICATION_HEIGHT-PADDLE_Y_OFFSET-PADDLE_HEIGHT),PADDLE_WIDTH, PADDLE_HEIGHT);
add(paddle);
}
private void drawBall(){
double diameter = BALL_RADIUS*2;
ball = new GOval((APPLICATION_WIDTH-diameter)/2,APPLICATION_HEIGHT-PADDLE_Y_OFFSET-PADDLE_HEIGHT*2-diameter,diameter,diameter);
add(ball);
}
private void moveBall(){
ball.move(xVel, yVel);
}
private void detectCollisionWall(){
if(ball.getY()+(BALL_RADIUS*2)<getHeight() && ball.getY()>0 && ball.getX()+(BALL_RADIUS*2)<getWidth() && ball.getX()>0){
moveBall();
}
if(ball.getY()+(BALL_RADIUS*2)>getHeight()){
yVel=-yVel;
turnsLeft--;
testForLose();
bounceClip.play();
}
if(ball.getY()<0){
yVel=-yVel;
bounceClip.play();
}
if(ball.getX()+(BALL_RADIUS*2)>=getWidth()){
xVel=-xVel;
bounceClip.play();
}
if(ball.getX()<=0){
xVel=-xVel;
bounceClip.play();
}
moveBall();
}
private void testForLose(){
if(turnsLeft==0){
lose=true;
life.setLabel("You have "+turnsLeft+" lives!");
return;
}
life.setLabel("You have "+turnsLeft+" lives!");
remove(ball);
drawBall();
xVel=1;
yVel=-1;
drawCountDown();
}
private void drawCountDown(){
GLabel countDown = new GLabel("",APPLICATION_WIDTH/2,APPLICATION_HEIGHT/2);
for(int i=3;i>0;i--){
countDown.setLabel("Respawn in: "+i);
countDown.setLocation((getWidth()-countDown.getWidth())/2, (getHeight()-countDown.getAscent())/2);
add(countDown);
pause(COUNTDOWN);
}
countDown.setLabel("Go");
countDown.setLocation((getWidth()-countDown.getWidth())/2, (getHeight()-countDown.getAscent())/2);
pause(COUNTDOWN);
remove(countDown);
}
private void drawLife(){
life = new GLabel("You have "+turnsLeft+" lives!", APPLICATION_WIDTH/2,15);
life.setLocation((getWidth()-life.getWidth())/2, 20);
add(life);
}
private void detectCollisionBlock(){
GObject collisionObject = detectObject(ball, BALL_RADIUS*2, BALL_RADIUS*2);
if(collisionObject==block){
remove(collisionObject);
yVel=-yVel;
}
}
private double paddleVelocity(){
double paddleTracker=(paddleXTracker+paddleXTrackerTwo+paddleXTrackerThree)/3;
if(loopCounter>3){
paddleVelocity=(paddle.getX()-paddleTracker)/50;
//paddleXTracker=paddle.getX();
}else{
paddleVelocity=(paddle.getX()-paddleXTracker)/50;
}
return (paddleVelocity);
}
private void detectCollisionPaddle(){;
double ballY = ball.getY()+(BALL_RADIUS*2);
//double ballX = ball.getX()+(BALL_RADIUS*2);
/*if(ball.getY()+BALL_RADIUS*2>=paddle.getY() && ball.getX()+BALL_RADIUS*2>=paddle.getX() && ball.getX()<=paddle.getX()){
ball.setLocation(ball.getX(),paddle.getY()-BALL_RADIUS*2-1);
}*/
if(paddle.getY()<=ballY && ball.getX()+BALL_RADIUS>=paddle.getX() && ball.getX()+BALL_RADIUS/2<=(paddle.getX()+PADDLE_WIDTH)){
yVel=-yVel;
bounceClip.play();
xVel=xVel+paddleVelocity();
/*
int x = 4;
int center = PADDLE_WIDTH/2;
double parts=center/x;
int location=0;
if(ball.getX()+BALL_RADIUS*2>paddle.getX()&& ball.getX()<paddle.getX()+PADDLE_WIDTH){
for(int i = 0;i<x;i++){
if (ball.getX()<center+paddle.getX() && ball.getX()>(parts*i)+paddle.getX()){
}else{
location = i;
break;
}
}
xVel=x/location;
}
}
//
if(ball.getX()+BALL_RADIUS<paddle.getX()+PADDLE_WIDTH/4){
if(xVel!=1){
if(xVel<0)
{
xVel=xVel-1;
}else{
xVel=-xVel-1;
}
}
}
if (ball.getX()>paddle.getX()+(PADDLE_WIDTH-PADDLE_WIDTH/4)){
if(xVel>0){
xVel=xVel+1;
}else{
xVel=-xVel+1;
}
}
if (ball.getX()<paddle.getX()+(PADDLE_WIDTH-PADDLE_WIDTH/4) && ball.getX()+BALL_RADIUS>paddle.getX()+PADDLE_WIDTH/4){
if(xVel>1){
xVel=xVel-1;
}
if(xVel<-1){
xVel=xVel+1;
}
}
*/
}
}
public void mouseMoved(MouseEvent e){
paddle.move((e.getX()-paddle.getX()-PADDLE_WIDTH/2),0);
}
/*Passes in an object to be checked, i.e. the ball, and asks for it's height and width. It returns the object if one is present, otherwise it retuns null.**/
private GObject detectObject(GObject object, int width, int height){
double right = object.getX()+width;
double bottom = object.getY()+height;
getObject = getElementAt(object.getX(),object.getY());
if(getObject==null){
getObject = getElementAt(right,object.getY());
}else{
return getObject;
}
if(getObject==null){
getObject = getElementAt(object.getX(),bottom);
}else{
return getObject;
}
if(getObject==null){
getObject = getElementAt(right,bottom);
}else{
return getObject;
}
if(getObject==null){
return null;
}else{
return getObject;
}
}
private void decelerate(){
if(xVel<-1){
xVel=xVel+0.01;
}
if(xVel>1){
xVel=xVel-0.01;
}
}
private void assignPaddleTrackers(){
paddleXTrackerThree=paddleXTrackerTwo;
paddleXTrackerTwo=paddleXTrackerThree;
paddleXTracker=paddle.getX();
}
private int loopCounter;
private double paddleVelocity;
private double paddleXTracker = 1;
private double paddleXTrackerTwo;
private double paddleXTrackerThree;
private double yVel = -1;
private double xVel = 1;
private int turnsLeft = NTURNS;
private int blockY = BRICK_Y_OFFSET;
private int blockX = 0;
private static boolean lose = false;
private RandomGenerator rgen = RandomGenerator.getInstance();
}
最佳答案
当桨速度更新时,我看不到您在哪里设置 paddleXTracker
和 friend 。所以这里有一些可能的修复:
paddleXTrackerTwo
和 paddleXTrackerThree
值,因此如果原点位于左侧(可能),则平均值位于左侧(由于除以 3)。 这两者都可以解释您所看到的正确偏见。
此外,您似乎正在执行 moving average 的临时版本。 。还有其他变体可能更适合您想要做的事情。
既然您的完整代码可用,我看不出有什么问题。我只能建议您采用调试技术,例如在游戏运行时打印 paddle*Tracker*
来查看输出的值以及它们是否符合预期。
只是为了让这个答案成为一个答案,根据我们的 OOB 讨论,您的分配跟踪器函数是错误的,并且没有使用 paddleXTracker
更新 paddleXTrackerTwo
。
关于java - 需要加速 GOval 对象的帮助(制作 Breakout 游戏),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/166015/
我正在关注 melon js tutorial .这是在我的 HUD.js 文件的顶部。 game.HUD = game.HUD || {} 我以前在其他例子中见过这个。 namespace.some
我刚刚制作了这个小游戏,用户可以点击。他可以看到他的点击,就像“cookieclicker”一样。 一切正常,除了一件事。 我尝试通过创建一个代码行变量来缩短我的代码,我重复了很多次。 documen
在此视频中:http://www.youtube.com/watch?v=BES9EKK4Aw4 Notch(我的世界的创造者)正在做他称之为“实时调试”的事情。他实际上是一边修改代码一边玩游戏,而不
两年前,我使用C#基于MonoGame编写了一款《俄罗斯方块》游戏,相关介绍可以参考【这篇文章】。最近,使用业余时间将之前的基于MonoGame的游戏开发框架重构了一下,于是,也就趁此机会将之前的《俄
1.题目 你和你的朋友,两个人一起玩 Nim 游戏: 桌子上有一堆石头。 你们轮流进行自己的回合, 你作为先手 。 每一回合,轮到的人拿掉 1 - 3 块石头。 拿掉最后一块石头的人就是获胜者。 假设
我正在创建平台游戏,有红色方 block (他们应该杀了我)和白色方 block (平台) 当我死时,我应该在当前级别的开始处复活。 我做了碰撞检测,但它只有在我移动时才有效(当我跳到红色方 bloc
因此,我正在处理(编程语言)中创建游戏突破,但无法弄清楚检查与 bat 碰撞的功能。 到目前为止,我写的关于与球棒碰撞的部分只是将球与底座碰撞并以相反的方向返回。目前,游戏是一种永无止境的现象,球只是
我试图让我的敌人射击我的玩家,但由于某种原因,子弹没有显示,也没有向玩家射击我什至不知道为什么,我什至在我的 window 上画了子弹 VIDEO bulls = [] runninggame = T
我正在尝试添加一个乒乓游戏框架。我希望每次球与 Racket 接触时球的大小都会增加。 这是我的尝试。第一 block 代码是我认为问题所在的地方。第二 block 是全类。 public class
我想知道 3D 游戏引擎编程通常需要什么样的数学?任何特定的数学(如向量几何)或计算算法(如快速傅立叶变换),或者这一切都被 DirectX/OpenGL 抽象掉了,所以不再需要高度复杂的数学? 最佳
我正在为自己的类(class)做一个霸气游戏,我一直在尝试通过添加许多void函数来做一些新的事情,但由于某种奇怪的原因,我的开发板无法正常工作,因为它说标识符“board”未定义,但是我有到目前为止
我在使用 mousePressed 和 mouseDragged 事件时遇到了一些问题。我正在尝试创建一款太空射击游戏,我希望玩家能够通过按下并移动鼠标来射击。我认为最大的问题是 mouseDragg
你好,我正在尝试基于概率实现战斗和准确性。这是我的代码,但效果不太好。 public String setAttackedPartOfBodyPercent(String probability) {
所以我必须实现纸牌游戏 war 。我一切都很顺利,除了当循环达到其中一张牌(数组列表)的大小时停止之外。我想要它做的是循环,直到其中一张牌是空的。并指导我如何做到这一点?我知道我的代码可以缩短,但我现
我正在做一个正交平铺 map Java 游戏,当我的船移动到 x 和 y 边界时,按方向键,它会停止移动(按预期),但如果我继续按该键,我的角色就会离开屏幕. 这是我正在使用的代码: @O
这里是 Ship、Asteroids、BaseShapeClass 类的完整代码。 Ship Class 的形状继承自 BaseShapeClass。 Asteroid类是主要的源代码,它声明了Gra
我正在开发这个随机数猜测游戏。在游戏结束时,我希望用户可以选择再次玩(或让其他人玩)。我发现了几个类似的线程和问题,但没有一个能够帮助我解决这个小问题。我很确定我可以以某种方式使用我的 while 循
我认为作为一个挑战,我应该编写一个基于 javascript 的游戏。我想要声音、图像和输入。模拟屏幕的背景(例如 640x480,其中包含我的所有图像)对于将页面的其余部分与“游戏”分开非常有用。我
我正在制作一个游戏,我将图标放在网格的节点中,并且我正在使用这个结构: typedef struct node{ int x,y; //coordinates for graphics.h
我正在研究我的游戏技能(主要是阵列)来生成敌人,现在子弹来击倒他们。我能够在测试时设置项目符号,但只有当我按下一个键(比方说空格键)并且中间没有间隔时才可见,所以浏览器无法一次接受那么多。 有没有什么
我是一名优秀的程序员,十分优秀!