X-Git-Url: https://deadsoftware.ru/gitweb?p=cavedroid.git;a=blobdiff_plain;f=core%2Fsrc%2Fru%2Fdeadsoftware%2Fcavecraft%2Fgame%2Fobjects%2FPlayer.java;h=546fb6ef7aaa307b2a98b4ad686cfbcb894f1832;hp=c63e0595449265aba12da75e3cf947424ddbd167;hb=bea2a3c5b967bcd90ccd83e08e833d58449e963a;hpb=a6ec412e508cfa8679dcf32e69600fbb939122af diff --git a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java index c63e059..546fb6e 100644 --- a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java +++ b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java @@ -3,22 +3,31 @@ package ru.deadsoftware.cavecraft.game.objects; import com.badlogic.gdx.math.Rectangle; import com.badlogic.gdx.math.Vector2; -public class Player { +import java.io.Serializable; + +public class Player implements Serializable { + + 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]; } public Rectangle getRect() { - return new Rectangle(position.x, position.y, width, height); + return new Rectangle(position.x + 2, position.y, width, height); } }