gpt4 book ai didi

java - 与玩家一起移动绳索 Swing

转载 作者:行者123 更新时间:2023-11-29 08:45:49 31 4
gpt4 key购买 nike

我正在制作一个游戏引擎,我想在游戏中有一个绳索对象。我已经创建了绳子,它表现得非常完美,除了如果我对绳子的底部施加一个力(比如将玩家连接到绳子上并移动玩家),这个力不会传播到绳子的其余部分绳子。

这就是绳子的样子,即使我试图移动玩家: straight rope

我希望绳子与玩家一起移动,但要让玩家固定在绳子的底部。

这是绳索类的更新方法

public void update() {

for (int i = 0; i < segments.size(); i++) {
RopeSegment previous = null;

if (i != 0) {
previous = segments.get(i - 1);
}
final RopeSegment seg = segments.get(i);

// do collision detection
seg.update();
// if we are not the first (position locked) segment
if (previous != null) {
// if we are out of range of the previous segment
if (seg.getCenter().toPoint().distanceSq(previous.getCenter().toPoint()) > MAX_DIST * MAX_DIST) {
// pull us back in
final Vec2D previousCenter = previous.getPosition();
seg.applyForce(previousCenter.subtract(seg.getPosition()).multiply(0.01));
seg.setPosition(previousCenter.add(seg.getPosition().subtract(previousCenter).unit()
.multiply(MAX_DIST)));
}
}
}
// lock position of first segment
segments.get(0).setPosition(getLockposition());
segments.get(0).setVelocity(new Vec2D(0, 0));
}

这是Player类更新方法的相关代码

if (rope != null) {
if (rope.getLockposition().toPoint().distanceSq(getCenter().toPoint()) > Rope.MAX_DIST * Rope.MAX_DIST) {
setCenter(rope.getLastSegment().getCenter());
}
}

最佳答案

如果我是你:我会找到玩家和屏幕顶部之间的绳段数(取决于高度)(Y:0px);因此,允许您不断更新整数;或适当的大小变量,绘制多少段。然后,每次重新绘制时,您都可以将绳子放在玩家上方。这将有权删除你拥有的大部分内容,但我相信它会更有效率。
如果你想让绳子看起来更像“绳子”,那么你可以使用 ArrayList,每次绘制时都会更新,它将有一个定义位置的类和一个保存速度的 Vec2D,它将用于增加绳索的 x 位置。例如

List<Rope> ropes = new ArrayList<>(); //Fill This With Ropes. . . //First is The Farthest Up!

class Rope {
int x, y;
short velocity;
//Constructor
}

void updateRopes(int playerX) {
for(Rope r : ropes)
r.x += (r.velocity < (playerX - r.x)) ? r.velocity : (playerX - r.x); //You Can Make a Variable Which Holds (playerX - r.x) For Efficiency, or Keep For RAM
}

void playerMove() {
int yDec = ropes.size() / 5; //5 Is the Presumable Speed of The Character. . .
int tempVeloc = 5;
for(int i = 0; i < ropes.size(); i++)
if((i % yDec) == 0 & i != 0) tempVeloc -= 1;
//The Other Player-Move Based Code. . .
}

编辑:
我相信您的问题是您实际上并没有编辑数组内部的类,而是在不断复制它们;因此不会更改对象,因为您没有指向它们。 . .
你应该做的是:

RopeSegment seg = segments.get(i - 1);

关于java - 与玩家一起移动绳索 Swing ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25466923/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com