- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在按照描述实现路径行走/跟随 here和 on this video .唯一的区别是我已将其转换为使用 Scene2D
和 Stage
。
除此部分外,它工作正常:当下一个点的 Y 值小于上一个点的 Y 值时, Sprite 基本上从上一个点直接跳到下一个点。
例如:在下图中, Sprite 从A点直接跳到B点,同样从C点跳到D点。
这是实现 Screen
的完整类。
import java.util.ArrayList;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.InputMultiplexer;
import com.badlogic.gdx.Screen;
import com.badlogic.gdx.graphics.Color;
import com.badlogic.gdx.graphics.GL20;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.graphics.g2d.Batch;
import com.badlogic.gdx.graphics.g2d.Sprite;
import com.badlogic.gdx.graphics.g2d.SpriteBatch;
import com.badlogic.gdx.graphics.glutils.ShapeRenderer;
import com.badlogic.gdx.graphics.glutils.ShapeRenderer.ShapeType;
import com.badlogic.gdx.math.MathUtils;
import com.badlogic.gdx.math.Vector2;
import com.badlogic.gdx.scenes.scene2d.Actor;
import com.badlogic.gdx.scenes.scene2d.Stage;
import com.badlogic.gdx.utils.viewport.StretchViewport;
public class WayPointsTutorial implements Screen {
private Stage stage;
private SpriteBatch batch;
private ShapeRenderer renderer;
private Sprite sprite;
private TestPlayer player;
public static ArrayList<Vector2> pathPoints;
@Override
public void show() {
stage = new Stage(new StretchViewport(800,1280));
InputMultiplexer inputM = new InputMultiplexer();
inputM.addProcessor(stage);
Gdx.input.setInputProcessor(inputM);
renderer = new ShapeRenderer();
batch = new SpriteBatch();
sprite = new Sprite(new Texture("data/bt_comecar.png"));
sprite.setSize(50, 50);
sprite.setOrigin(0, 0);
pathPoints = new ArrayList<Vector2>();
pathPoints.add(new Vector2(170,550));
pathPoints.add(new Vector2(40,40));
pathPoints.add(new Vector2(150,40));
pathPoints.add(new Vector2(608,1000));
pathPoints.add(new Vector2(400,208));
player = new TestPlayer(sprite, pathPoints);
player.setPosition(400, 640);
stage.addActor(player);
}
@Override
public void render(float delta) {
Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT);
//Update the stage
stage.draw();
stage.act(delta);
if(Gdx.input.isTouched()){show();}
stage.getCamera().update();
batch.setProjectionMatrix(stage.getCamera().combined);
renderer.setProjectionMatrix(batch.getProjectionMatrix());
renderer.setTransformMatrix(batch.getTransformMatrix());
renderer.setColor(Color.CYAN);
renderer.begin(ShapeType.Line);
renderer.line(new Vector2(player.getX(), player.getY()), player.getPath().get(player.getWaypoint()));
renderer.end();
Vector2 previous = player.getPath().get(0);
for(Vector2 waypoint : player.getPath()) {
renderer.setColor(Color.WHITE);
renderer.begin(ShapeType.Line);
renderer.line(previous, waypoint);
renderer.end();
renderer.begin(ShapeType.Filled);
renderer.circle(waypoint.x, waypoint.y, 15);
renderer.end();
previous = waypoint;
}
}
@Override
public void resize(int width, int height) {}
@Override
public void dispose() {
stage.dispose();
renderer.dispose();
}
@Override
public void hide() {dispose();}
@Override
public void pause() {}
@Override
public void resume() {}
public class TestPlayer extends Actor {
private Vector2 velocity = new Vector2();
private float speed = 300, tolerance = 50;
private ArrayList<Vector2> path;
private int waypoint = 0;
Sprite sprite;
public TestPlayer(Sprite sprite, ArrayList<Vector2> pathPoints) {
//super(sprite);
this.path = pathPoints;
this.sprite = sprite;
}
@Override
public void draw(Batch batch, float parentAlpha) {
update(Gdx.graphics.getDeltaTime());
sprite.setPosition(this.getX(), this.getY());
sprite.setRotation(this.getRotation());
sprite.draw(batch);
}
public void update(float delta) {
float angle = (float) Math.atan2(path.get(waypoint).y - getY(), path.get(waypoint).x - getX());
velocity.set((float) Math.cos(angle) * speed, (float) Math.sin(angle) * speed);
setPosition(getX() + velocity.x * delta, getY() + velocity.y * delta);
setRotation(angle * MathUtils.radiansToDegrees);
if(isWaypointReached(waypoint)) {
setPosition(path.get(waypoint).x, path.get(waypoint).y);
if(waypoint + 1 >= path.size()){
waypoint=0;
}else{
waypoint++;
}
}
}
public boolean isWaypointReached(int waypoint) {
return path.get(waypoint).x - getX() <= speed / tolerance * Gdx.graphics.getDeltaTime() && path.get(waypoint).y - getY() <= speed / tolerance * Gdx.graphics.getDeltaTime();
}
public ArrayList<Vector2> getPath() {
return path;
}
public int getWaypoint() {
return waypoint;
}
}
}
最佳答案
我认为(我没有检查)你的 isWaypointReached()
方法坏了。如果您的新waypoint.x < x
和新waypoint.y < y
那么在您的公式中,您将在部分 waypoint).x - getX()
中得到负值和 waypoint).y - getY()
这绝对不是总是积极的speed / tolerance * Gdx.graphics.getDeltaTime()
.在这种情况下,方法将立即返回到达的航路点。
尝试添加Math.abs()
对您的公式起作用:
return Math.abs(path.get(waypoint).x - getX()) <= speed / tolerance * Gdx.graphics.getDeltaTime() && Math.abs(path.get(waypoint).y - getY()) <= speed / tolerance * Gdx.graphics.getDeltaTime();
关于java - 路径行走/跟随不适用于所有情况,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27650491/
我在我的 Xcode 项目目录中输入了以下内容: keytool -genkey -v -keystore release.keystore -alias mykey -keyalg RSA \
假设我有一个像这样的 DataFrame(或 Series): Value 0 0.5 1 0.8 2 -0.2 3 None 4 None 5 None
我正在对一个 Pandas 系列进行相对繁重的应用。有什么方法可以返回一些打印反馈,说明每次调用函数时在函数内部进行打印还有多远? 最佳答案 您可以使用跟踪器包装您的函数。以下两个示例,一个基于完成的
我有一个 DataFrame,其中一列包含列表作为单元格内容,如下所示: import pandas as pd df = pd.DataFrame({ 'col_lists': [[1, 2
我想使用 Pandas df.apply 但仅限于某些行 作为一个例子,我想做这样的事情,但我的实际问题有点复杂: import pandas as pd import math z = pd.Dat
我有以下 Pandas 数据框 id dist ds 0 0 0 0 5 1 0 0 7 2 0 0
这发生在我尝试使用 Gradle 构建时。由于字符串是对象,因此似乎没有理由发生此错误: No signature of method: java.util.HashMap.getOrDefault(
您好,有人可以解释为什么在 remaining() 函数中的 Backbone 示例应用程序 ( http://backbonejs.org/examples/todos/index.html ) 中
我有两个域类:用户 class User { String username String password String email Date dateCreated
问题陈述: 一个 pandas dataframe 列系列,same_group 需要根据两个现有列 row 和 col 的值从 bool 值创建。如果两个值在字典 memberships 中具有相似
apporable 报告以下错误: error: unknown type name 'MKMapItem'; did you mean 'MKMapView'? MKMapItem* destina
我有一个带有地址列的大型 DataFrame: data addr 0 0.617964 IN,Krishnagiri,635115 1 0.635428 IN,Chennai
我有一个列表list,里面有这样的项目 ElementA: Number=1, Version=1 ElementB: Number=1, Version=2 ElementC: Number=1,
我正在编译我的源代码,它只是在没有运行应用程序的情况下终止。这是我得到的日志: Build/android-armeabi-debug/com.app4u.portaldorugby/PortalDo
我正在尝试根据另一个单元格的值更改单元格值(颜色“红色”或“绿色”)。我运行以下命令: df.loc[0, 'Colour'] = df.loc[0, 'Count'].apply(lambda x:
我想弄清楚如何使用 StateT结合两个 State基于对我的 Scalaz state monad examples 的评论的状态转换器回答。 看来我已经很接近了,但是在尝试申请 sequence
如果我已经为它绑定(bind)了集合,我该如何添加 RibbonLibrary 默认的快速访问项容器。当我从 UI 添加快速访问工具项时,它会抛出 Operation is not valid whi
在我学习期间Typoclassopedia我遇到了这个证明,但我不确定我的证明是否正确。问题是: One might imagine a variant of the interchange law
我是一名优秀的程序员,十分优秀!