问题在于在地图上创建对象。一切都会好的,但突然间我只能在屏幕上创建对象(图像)。每当我给一个对象提供一些协调时它需要屏幕的(0,0)点,而不是地图。 所以我可以在地图上移动我的人(相机正常工作),但是例如蜘蛛停留在屏幕上,而不是在地图上。 这里是对象的初始化:
static float PlayerPositionX = 0;
static float PlayerPositionY = 0;
static GameContainer gc;
static StateBasedGame sbg;
//Spider
Monster monster = new Monster();
float shiftXSpider;
float shiftYSpider;
//Player position at the middle of the screen *half of the screen
static float shiftX = PlayerPositionY + (Game.screenWidth/2);
static float shiftY = PlayerPositionX + (Game.screenHeight/2);
static float shiftXMap = PlayerPositionX;
static float shiftYMap = PlayerPositionY;
这是我对地图,蜘蛛和玩家的渲染方法。 (当然只是一部分)
worldMap.draw(PlayerPositionX,PlayerPositionY);
player.draw(shiftX,shiftY);
spider.draw(spiderPoint.x, spiderPoint.y);
更新方法:
public void update(GameContainer gc, StateBasedGame sbg, int delta) throws SlickException {
System.out.println(playerPoint.getX() + " " + playerPoint.getY());
playerPoint.x=PlayerPositionX;
playerPoint.y=PlayerPositionY;
Input input = gc.getInput();
monster.Chase(playerPoint.x, playerPoint.y,delta);
// monster.Chase(PlayerPositionX, PlayerPositionY,delta);
// shiftXSpider=monster.getMonsterPositionX();
// shiftYSpider=monster.getMonsterPositionY();
spiderPoint.x=monster.getMonsterPositionX();
spiderPoint.y=monster.getMonsterPositionY();
if(input.isKeyDown(input.KEY_DOWN)) {
player=movingDown;
PlayerPositionY-=delta * .1f;
if(PlayerPositionY<-600) {
PlayerPositionY+=delta * .1f;
}
}
//move up
if(input.isKeyDown(input.KEY_UP)) {
player=movingUp;
PlayerPositionY+=delta * .1f;
if(PlayerPositionY>162) {
PlayerPositionY-=delta * .1f;
}
}
//move right
if(input.isKeyDown(input.KEY_RIGHT)) {
player=movingRight;
PlayerPositionX-=delta * .1f;
if(PlayerPositionX<-840) {
PlayerPositionX+=delta * .1f;
}
}
//move left
if(input.isKeyDown(input.KEY_LEFT)) {
player=movingLeft;
PlayerPositionX+=delta * .1f;
if(PlayerPositionX>324) {
PlayerPositionX-=delta * .1f;
}
}
}
答案 0 :(得分:0)
我是用相机课做的。
在这里你可以找到我所有的课程:http://pastebin.com/u/huneater
我的小游戏(未完成):https://www.dropbox.com/s/dhvf5vbqj25sgyw/game.jar
我对示例矩形的渲染:
@Override
public void render(GameContainer gc, Graphics g, Camera camera) {
g.setColor(color);
g.fillRect(x - camera.getX(), y - camera.getY(), width, height);
}
对于此相机类,您应该设置targetX&amp;玩家更新方法中的targetY位置:
float targetX = x - (gc.getWidth() / 2);
camera.setTargetX(targetX);
float targetY = y - (gc.getHeight() / 2);
camera.setTargetY(targetY);
然后在你的世界更新循环中,你必须调用相机的更新循环。 所以有了这个,我有一个玩家在我的屏幕midlle,在地图中有一些块。而且他们处于完美的位置。