几天前,我开始研究一个简单的' 2D游戏。我尝试使用'实体系统'。我上了课,游戏对象'它扩展了所有其他对象,如树木,敌人(粘液)等。所有这些游戏对象都存储在名为“游戏对象”的数组列表中。然后我使用for循环迭代列表中的所有对象并调用它们的基本函数,如update()和draw()。到目前为止,即使我不是100%确定为什么,一切都有效。问题在于,出于某种原因,我不能对碰撞做同样的事情。
我知道这个话题已在这里多次讨论,但即使经过很多天我也无法解决这个问题。有谁可以帮助我吗?另外,我为我的英语道歉。
游戏课程:
public class Game extends BasicGame
{
public Game()
{
super("Game");
}
public void init(GameContainer gameContainer) throws SlickException
{
World.init();
}
public void update(GameContainer gameContainer, int delta) throws SlickException
{
World.update();
}
public void render(GameContainer gameContainer, Graphics g) throws SlickException
{
World.draw(g);
}
}
GameObject类:
public abstract class GameObject
{
protected void update()
{
}
protected void draw()
{
}
}
树类:
public class Tree extends GameObject
{
public float x, y;
private static Image tree;
public Tree(float x, float y)
{
this.x = x;
this.y = y;
tree = Resources.miscSheet.getSprite(2, 0);
}
public void draw()
{
tree.draw(x, y)
}
}
史莱姆班:
public class Slime extends GameObject
{
public static float x;
public static float y;
private static Animation slimeAnim;
public Slime(int x, int y)
{
this.x = x;
this.y = y;
// My own method for loading animation.
slimeAnim = Sprite.getAnimation(Resources.slimeSheet, 0, 0, 5, 300);
}
public void update()
{
// *Random movement here*
}
public void draw()
{
slimeAnim.draw(x, y);
}
}
世界级:
public class World
{
public static List<GameObject> gameObjects = new ArrayList<GameObject>();
public static void init()
{
Tree tree = new Tree(0, 0);
Tree tree2 = new Tree(200, 200);
Slime slime = new Slime(80, 80);
gameObjects.add(tree);
gameObjects.add(tree2);
gameObjects.add(slime);
}
public static void update()
{
for (int i = 0; i < gameObjects.size(); i++)
{
GameObject o = gameObjects.get(i);
o.update();
}
}
public static void draw(Graphics g)
{
g.setBackground(new Color(91, 219, 87));
for (int i = 0; i < gameObjects.size(); i++)
{
GameObject o = gameObjects.get(i);
o.draw();
}
}
}
主要课程:
public class Main
{
public static AppGameContainer container;
public static void main(String[] args) throws SlickException
{
container = new AppGameContainer(new Game());
container.setDisplayMode(1024, 600, false);
container.setShowFPS(false);
container.start();
}
}
我删除了之前的所有碰撞尝试,并且我跳过了其他一些不必要的事情。我现在怎样才能在树木和粘液之间实施碰撞?
答案 0 :(得分:0)
我通常做的是继承我顶级objectClass上的Rectangle。如果您的GameObject类继承自Rectangle,那么您在每个实例中都会有intersects
方法,这样您就可以轻松检测到碰撞。
class GameObject extends Rectangle{}
问题是在所有对象之间进行测试。它会很重但仍有可能。
for (int i = 0; i < gameObjects.size(); i++) {
for (int j = i; j < gameObjects.size(); j++) {
if (gameObjects.get(i-1).intersects(gameObjects.get(j)) {
// I don't know what you want to do here
}
}
}
这样,您只需将对象A与对象B进行一次比较。