X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=core%2Fsrc%2Fru%2Fdeadsoftware%2Fcavecraft%2Fgame%2Fobjects%2FPlayer.java;h=415ed3d5d46cbef214ac6a847583b71fc15a33e6;hb=385255cc7b49fbfd3290497367cbc69919b24d4f;hp=2953d940989febecabc83467aff77e0de7c98623;hpb=7115b8cce5cc8469c03ea1fa1fc24506a1e2765e;p=cavedroid.git diff --git a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java index 2953d94..415ed3d 100644 --- a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java +++ b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java @@ -1,30 +1,43 @@ package ru.deadsoftware.cavecraft.game.objects; +import com.badlogic.gdx.math.RandomXS128; import com.badlogic.gdx.math.Rectangle; import com.badlogic.gdx.math.Vector2; +import ru.deadsoftware.cavecraft.Assets; +import ru.deadsoftware.cavecraft.game.WorldGen; public class Player { + public static int ANIM_SPEED = 6; + public Vector2 position; public Vector2 moveX, moveY; - public int width, height, dir; + public int width, height, dir, texWidth; public boolean canJump; public int[] inventory; + public boolean flyMode = false; - public Player() { - position = new Vector2(0, 0); + public Player(Vector2 spawnPoint) { + position = spawnPoint.cpy(); moveX = new Vector2(0, 0); moveY = new Vector2(0, 0); - width = 8; + width = 4; height = 30; + texWidth = 8; inventory = new int[9]; inventory[0] = 1; inventory[1] = 2; inventory[2] = 3; + inventory[3] = 4; + inventory[4] = 5; + inventory[5] = 6; + inventory[6] = 7; + inventory[7] = 8; + inventory[8] = 9; } public Rectangle getRect() { - return new Rectangle(position.x, position.y, width, height); + return new Rectangle(position.x+2, position.y, width, height); } }