- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个使用 SurfaceView 的小游戏。我的“船”只是一个白色的矩形,障碍物是小行星的位图。当一颗小行星与飞船相撞时,应该会出现一个爆炸动画,其中有 20 block fragment (只是一个 10 x 10 的白点)向四面八方飞出。
问题是当碰撞发生时,所有的 fragment 都只是在一个地方旋转一圈,如下所示:
爆炸确实是从我船的确切位置开始的。粒子只是不向外移动。我把代码放错地方了吗?有谁知道我哪里出了问题?
这是类:
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Matrix;
import android.graphics.Paint;
import android.graphics.Point;
import android.graphics.Rect;
import android.util.DisplayMetrics;
import android.util.Log;
import android.view.MotionEvent;
import android.view.SurfaceHolder;
import android.view.SurfaceView;
import java.util.Random;
public class GameView extends SurfaceView implements Runnable, SurfaceHolder.Callback {
private Thread gameViewThread = null;
SurfaceHolder surfaceHolder;
boolean okToRun;
/*
SHIP AND ASTEROID STUFF
*/
private Ship ship;
private Point shipPoint;
private Rect textRect = new Rect();
private float oldX;
private float oldY;
private AsteroidController asteroidController;
/*
END SHIP AND ASTEROID STUFF
*/
/*
GAME OVER STUFF
*/
private boolean isMoving = false;
private boolean isGameOver = false;
private long waitTime;
/*
END GAME OVER STUFF
*/
/*
EXPLOSION STUFF
*/
Bitmap explosionBMP;
private Matrix[] explosion = new Matrix[20];
boolean isDestroyed = false;
boolean explosionStarted = false;
float[] explosionXPosition = new float[20];
float[] explosionYPosition = new float[20];
float explosionSpeed = 20.0f;
float[] explosionRotation = new float[20];
/*
END EXPLOSION STUFF
*/
/*
SCREEN DIMENSIONS
*/
DisplayMetrics displayMetrics = getResources().getDisplayMetrics();
int gameWidth = displayMetrics.widthPixels;
int gameHeight = displayMetrics.heightPixels;
/*
END SCREEN DIMENSIONS
*/
public GameView(Context context) {
super(context);
surfaceHolder = this.getHolder();
okToRun = true;
ship = new Ship(new Rect(100, 100, 200, 200), Color.WHITE);
shipPoint = new Point(gameWidth / 2, 3 * gameHeight / 4);
ship.update(shipPoint);
asteroidController = new AsteroidController(context);
//JUST SPAWNING ONE ASTEROID FOR NOW
asteroidController.createAsteroid(1);
//JUST A 10 x 10 WHITE DOT
explosionBMP = BitmapFactory.decodeResource(getResources(), R.drawable.explosion_debris);
//DON'T WANT A NULL POINTER RIGHT OFF THE BAT
for(int i = 0; i < explosion.length; i++) {
explosion[i] = new Matrix();
}
setFocusable(true);
}
@Override
public void run() {
while(okToRun) {
if(!surfaceHolder.getSurface().isValid()) {
continue;
}
Canvas gameCanvas = surfaceHolder.lockCanvas();
this.update();
this.draw(gameCanvas);
surfaceHolder.unlockCanvasAndPost(gameCanvas);
}
}
@Override
public boolean onTouchEvent(MotionEvent event) {
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
isMoving = true;
oldX = event.getX();
oldY = event.getY();
if (isGameOver && System.currentTimeMillis() - waitTime >= 3000) {
isGameOver = false;
resetGame();
}
break;
case MotionEvent.ACTION_MOVE:
if (!isGameOver && isMoving) {
/*
THIS CODE ALLOWS TOUCH EVENT TO BE ANYWHERE ON SCREEN WHILE
SHIP MOVES ACCORDINGLY
*/
float newX = event.getX();
float newY = event.getY();
float deltaX = getOffsetCoords(oldX, newX, shipPoint.x);
float deltaY = getOffsetCoords(oldY, newY, shipPoint.y);
shipPoint.set((int) deltaX, (int) deltaY);
oldX = newX;
oldY = newY;
}
return false;
}
return true;
}
/*
GET THE DIFFERENCE IN SHIP COORDS AND TOUCH COORDS
*/
private float getOffsetCoords(float oldVal, float newVal, float current) {
return current + (newVal - oldVal);
}
@Override
public void draw(Canvas canvas) {
super.draw(canvas);
//RANDOMS FOR STARS
Random random0 = new Random();
Random random1 = new Random();
//BACKGROUND
canvas.drawColor(Color.BLACK);
Bitmap single_pixel_star = BitmapFactory.decodeResource(getResources(), R.drawable.single_pixel_star);
Bitmap three_pixel_star = BitmapFactory.decodeResource(getResources(), R.drawable.three_pixel_star);
//Draw random stars on the canvas
canvas.drawBitmap(single_pixel_star, random0.nextInt(canvas.getWidth() - single_pixel_star.getWidth()), random0.nextInt(canvas.getHeight() - three_pixel_star.getHeight()), null);
canvas.drawBitmap(three_pixel_star, random1.nextInt(canvas.getWidth() - three_pixel_star.getWidth()), random1.nextInt(canvas.getHeight() - three_pixel_star.getHeight()), null);
//DRAW ASTEROID(s)
asteroidController.render(canvas);
//DRAW SHIP
ship.draw(canvas);
if (isGameOver) {
ship.removeShip();
isDestroyed = true;
explosionStarted = true;
Paint gameOverPaint = new Paint();
gameOverPaint.setTextSize(200);
gameOverPaint.setColor(Color.RED);
showGameOver(canvas, gameOverPaint, "YOU LOSE!");
/*
SHIP GOES KABOOM!
*/
for(int i = 0; i < explosion.length; i++) {
canvas.drawBitmap(explosionBMP, explosion[i], null);
}
}
}
public void update() {
if (!isGameOver) {
ship.update(shipPoint);
asteroidController.update();
if (asteroidController.isCollision(ship)) {
isGameOver = true;
waitTime = System.currentTimeMillis();
}
}
Matrix[] localExplosionDebris = new Matrix[20];
if(explosionStarted) {
for(int i = 0; i < explosionXPosition.length; i++) {
explosionXPosition[i] = getShipPointX();
explosionYPosition[i] = getShipPointY();
Random rand = new Random();
explosionRotation[i] = (float) rand.nextInt(360);
}
explosionStarted = false;
}
for(int i = 0; i < localExplosionDebris.length; i++) {
localExplosionDebris[i] = new Matrix();
}
if(isDestroyed) {
for(int i = 0; i < localExplosionDebris.length; i++) {
float debrisXSpeed = (float) Math.sin(explosionRotation[i]*(Math.PI/180)) * explosionSpeed - .2f;
float debrisYSpeed = (float) Math.cos(explosionRotation[i]*(Math.PI/180)) * explosionSpeed - .2f;
explosionXPosition[i] += debrisXSpeed;
explosionYPosition[i] -= debrisYSpeed;
localExplosionDebris[i].postRotate(0, explosionBMP.getWidth()/2, explosionBMP.getHeight()/2);
localExplosionDebris[i].postTranslate(explosionXPosition[i], explosionYPosition[i]);
explosion[i].set(localExplosionDebris[i]);
}
}
}
/*
SHOW GAME OVER TEXT ON THE CENTER OF THE SCREEN UNTIL 3 SECONDS HAVE PASSED AND TOUCH EVENT OCCURS
*/
private void showGameOver(Canvas canvas, Paint paint, String gameOverString) {
paint.setTextAlign(Paint.Align.LEFT);
canvas.getClipBounds(textRect);
int canvasH = textRect.height();
int canvasW = textRect.width();
paint.getTextBounds(gameOverString, 0, gameOverString.length(), textRect);
float textX = canvasW / 2f - textRect.width() / 2f - textRect.left;
float textY = canvasH / 2f - textRect.height() / 2f - textRect.bottom;
canvas.drawText(gameOverString, textX, textY, paint);
}
/*
RESET SHIP TO ORIGINAL LOCATION AND COLOR
*/
public void resetGame() {
ship = new Ship(new Rect(100, 100, 200, 200), Color.WHITE);
shipPoint = new Point(gameWidth / 2, 3 * gameHeight / 4);
//TODO STOP BG MUSIC ONCE FILE IS ADDED
//TODO RESET SCORE ONCE ADDED
}
public void pause() {
okToRun = false;
while(true) {
try {
gameViewThread.join();
} catch(InterruptedException e) {
Log.d("ERROR", e.getMessage());
}
break;
}
gameViewThread = null;
}
public void resume() {
okToRun = true;
gameViewThread = new Thread(this);
gameViewThread.start();
}
/*
SELF EXPLANATORY
*/
public int getShipPointX() {
return shipPoint.x;
}
public int getShipPointY() {
return shipPoint.y;
}
@Override
public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
}
@Override
public void surfaceCreated(SurfaceHolder holder) {
}
@Override
public void surfaceDestroyed(SurfaceHolder holder) {
}
}
最佳答案
我重新排列了一些 bool 变量,现在爆炸了。在下面的 if 语句中,你可以看到我注释掉的内容:
if (isGameOver) {
ship.removeShip();
//isDestroyed = true;
//explosionStarted = true;
Paint gameOverPaint = new Paint();
gameOverPaint.setTextSize(200);
gameOverPaint.setColor(Color.RED);
showGameOver(canvas, gameOverPaint, "YOU LOSE!");
/*
SHIP GOES KABOOM!
*/
for(int i = 0; i < explosion.length; i++) {
canvas.drawBitmap(explosionBMP, explosion[i], null);
}
}
在另一个 if 语句中,我添加了一个条件,将注释掉的 bool 值(如上所示)放入该语句,然后在 else 中重置它们:
if (!isGameOver) {
ship.update(shipPoint);
asteroidController.update();
if (asteroidController.isCollision(ship) && !isDestroyed) { //<--added the && !isDestroyed
isGameOver = true;
isDestroyed = true; //<-- added this
explosionStarted = true; //<-- and this
waitTime = System.currentTimeMillis();
} else {
isGameOver = false; //<-- then reset here
isDestroyed = false; //<-- and here
explosionStarted = false; //<-- and here
}
}
全部完成。 :-)
关于android - 位图爆炸动画在一个地方旋转,不向外移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47325365/
...沮丧。我希望我的游戏仅在横向模式下运行。我已将适当的键/值添加到 Info.plist 文件中,以强制设备方向在启动时正确。 我现在正在尝试旋转 OpenGL 坐标空间以匹配设备的坐标空间。我正
我如何创建一个旋转矩阵,将 X 旋转 a,Y 旋转 b,Z 旋转 c? 我需要公式,除非您使用的是 ardor3d api 的函数/方法。 矩阵是这样设置的 xx, xy, xz, yx, yy, y
假设我有一个包含 3 个 vector 的类(一个用于位置,一个用于缩放,一个用于旋转)我可以使用它们生成一个变换矩阵,该矩阵表示对象在 3D 空间中的位置、旋转和大小。然后我添加对象之间的父/子关系
所以我只是在玩一个小的 javascript 游戏,构建一个 pacman 游戏。你可以在这里看到它:http://codepen.io/acha5066/pen/rOyaPW 不过我对旋转有疑问。你
在我的应用程序中,我有一个 MKMapView,其中显示了多个注释。 map 根据设备的航向旋转。要旋转 map ,请执行以下语句(由方法 locationManager 调用:didUpdateHe
使用此 jquery 插件时:http://code.google.com/p/jqueryrotate/wiki/Documentation我将图像旋转 90 度,无论哪个方向,它们最终都会变得模糊
我有以下代码:CSS: .wrapper { margin:80px auto; width:300px; border:none; } .square { widt
我只想通过小部件的轴移动图像并围绕小部件的中心旋转(就像任何数字绘画软件中的 Canvas ),但它围绕其左顶点旋转...... QPainter p(this); QTransform trans;
我需要先旋转图像,然后再将其加载到 Canvas 中。据我所知,我无法使用 canvas.rotate() 旋转它,因为它会旋转整个场景。 有没有好的JS方法来旋转图片? [不依赖于浏览器的方式] 最
我需要知道我的 Android 设备屏幕何时从一个横向旋转到另一个横向(rotation_90 到 rotation_270)。在我的 Android 服务中,我重新实现了 onConfigurati
**摘要:**本篇文章主要讲解Python调用OpenCV实现图像位移操作、旋转和翻转效果,包括四部分知识:图像缩放、图像旋转、图像翻转、图像平移。 本文分享自华为云社区《[Python图像处理] 六
我只是在玩MTKView中的模板设置;并且,我一直在尝试了解以下内容: 相机的默认位置。 使用MDLMesh和MTKMesh创建基元时的默认位置。 为什么轮换还涉及翻译。 相关代码: matrix_f
我正在尝试使用包 dendexend 创建一个树状图。它创建了非常好的 gg 树状图,但不幸的是,当你把它变成一个“圆圈”时,标签跟不上。我将在下面提供一个示例。 我的距离对象在这里:http://s
我想将一个完整的 ggplot 对象旋转 90°。 我不想使用 coord_flip因为这似乎会干扰 scale="free"和 space="free"使用刻面时。 例如: qplot(as.fac
我目前可以通过首先平移到轴心点然后执行旋转最后平移回原点来围绕轴心点旋转。在我的例子中,我很容易为肩膀做到这一点。但是,我不知道如何为前臂添加绕肘部的旋转。 我已经尝试了以下围绕肘部旋转的前臂: 平移
我想使用此功能旋转然后停止在特定点或角度。现在该元素只是旋转而不停止。代码如下: $(function() { var $elie = $("#bkgimg");
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 4 年前。 Improve this ques
我正在尝试创建一个非常简单的关键帧动画,其中图形通过给定的中点从一个角度旋转到另一个角度。 (目的是能够通过大于 180 度的 OBTUSE 弧角来制作旋转动画,而不是让动画“作弊”并走最短路线,即通
我需要旋转 NSView 实例的框架,使其宽度变为其高度,其高度变为其宽度。该 View 包含一个字符串,并且该字符串也被旋转,这一点很重要。 我查看了 NSView 的 setFrameRotati
我正在编写一个脚本,用于在 javascript 中旋转/循环浏览图像,同时遵守循环浏览图像的次数限制。我所拥有的如下: var delay = 3000; //6000 = change to
我是一名优秀的程序员,十分优秀!