using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using StardustCore.Animations; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; using Microsoft.Xna.Framework.Input; using StardewValley; using Revitalize.Framework.Utilities; using Revitalize.Framework.Minigame.SeasideScrambleMinigame.Interfaces; namespace Revitalize.Framework.Minigame.SeasideScrambleMinigame { public class SSCPlayer : ISSCLivingEntity { public AnimationManager characterSpriteController; public bool flipSprite; public SSCEnums.FacingDirection facingDirection; public Microsoft.Xna.Framework.Vector2 position; public bool isMoving; private bool movedThisFrame; public Color playerColor; public SSCEnums.PlayerID playerID; public const int junimoWalkingAnimationSpeed = 10; public StardustCore.Animations.AnimatedSprite mouseCursor; public Vector2 mouseSensitivity; public bool showMouseCursor; public int maxMouseSleepTime = 300; public SSCGuns.SSCGun gun; public Rectangle hitBox; public SSCMenus.HUD.CharacterHUD HUD; public int currentHealth; public int maxHealth; public float movementSpeed; public SSCStatusEffects.StatusEffectManager statusEffects; public bool isDead { get { return this.currentHealth <= 0; } } public float MovementSpeed { get => this.movementSpeed; set => this.movementSpeed = value; } public int CurrentHealth { get => this.currentHealth; set => this.currentHealth = value; } public int MaxHealth { get => this.maxHealth; set => this.maxHealth = value; } public Rectangle HitBox { get => this.hitBox; set => this.hitBox = value; } public SSCPlayer(SSCEnums.PlayerID PlayerID) { this.playerID = PlayerID; this.facingDirection = SSCEnums.FacingDirection.Down; this.characterSpriteController = new AnimationManager(SeasideScramble.self.textureUtils.getExtendedTexture("SSCPlayer", "Junimo"), new Animation(0, 0, 16, 16), new Dictionary>{ {"Idle_F",new List() { new Animation(0,0,16,16) } }, {"Idle_B",new List() { new Animation(0,16*4,16,16) } }, {"Idle_L",new List() { new Animation(0,16*3,16,16) } }, {"Idle_R",new List() { new Animation(0,16*3,16,16) } }, {"Walking_F",new List() { new Animation(16*0,16*0,16,16,junimoWalkingAnimationSpeed), new Animation(16*1,16*0,16,16,junimoWalkingAnimationSpeed), new Animation(16*2,16*0,16,16,junimoWalkingAnimationSpeed), new Animation(16*3,16*0,16,16,junimoWalkingAnimationSpeed), new Animation(16*4,16*0,16,16,junimoWalkingAnimationSpeed), new Animation(16*5,16*0,16,16,junimoWalkingAnimationSpeed), new Animation(16*6,16*0,16,16,junimoWalkingAnimationSpeed), new Animation(16*7,16*0,16,16,junimoWalkingAnimationSpeed), } }, {"Walking_R",new List() { new Animation(16*0,16*2,16,16,junimoWalkingAnimationSpeed), new Animation(16*1,16*2,16,16,junimoWalkingAnimationSpeed), new Animation(16*2,16*2,16,16,junimoWalkingAnimationSpeed), new Animation(16*3,16*2,16,16,junimoWalkingAnimationSpeed), new Animation(16*4,16*2,16,16,junimoWalkingAnimationSpeed), new Animation(16*5,16*2,16,16,junimoWalkingAnimationSpeed), new Animation(16*6,16*2,16,16,junimoWalkingAnimationSpeed), new Animation(16*7,16*2,16,16,junimoWalkingAnimationSpeed), } }, {"Walking_L",new List() { new Animation(16*0,16*2,16,16,junimoWalkingAnimationSpeed), new Animation(16*1,16*2,16,16,junimoWalkingAnimationSpeed), new Animation(16*2,16*2,16,16,junimoWalkingAnimationSpeed), new Animation(16*3,16*2,16,16,junimoWalkingAnimationSpeed), new Animation(16*4,16*2,16,16,junimoWalkingAnimationSpeed), new Animation(16*5,16*2,16,16,junimoWalkingAnimationSpeed), new Animation(16*6,16*2,16,16,junimoWalkingAnimationSpeed), new Animation(16*7,16*2,16,16,junimoWalkingAnimationSpeed), } }, {"Walking_B",new List() { new Animation(16*0,16*4,16,16,junimoWalkingAnimationSpeed), new Animation(16*1,16*4,16,16,junimoWalkingAnimationSpeed), new Animation(16*2,16*4,16,16,junimoWalkingAnimationSpeed), new Animation(16*3,16*4,16,16,junimoWalkingAnimationSpeed), new Animation(16*4,16*4,16,16,junimoWalkingAnimationSpeed), new Animation(16*5,16*4,16,16,junimoWalkingAnimationSpeed), new Animation(16*6,16*4,16,16,junimoWalkingAnimationSpeed), new Animation(16*7,16*4,16,16,junimoWalkingAnimationSpeed), } }, }, "Idle_F", 0, true); this.mouseCursor = new StardustCore.Animations.AnimatedSprite("P1Mouse", new Vector2(Game1.getMousePosition().X, Game1.getMousePosition().Y), new AnimationManager(SeasideScramble.self.textureUtils.getExtendedTexture("SSCUI", "Cursors"), new Animation(0, 0, 16, 16), new Dictionary>() { {"Default",new List() { new Animation(0,0,16,16) } } }, "Default"), Color.White); if (this.playerID == SSCEnums.PlayerID.One) { this.mouseCursor.position = new Vector2(Game1.getMouseX(), Game1.getMouseY()); } else { this.mouseCursor.position = this.position; } this.mouseSensitivity = new Vector2(3f, 3f); this.gun = new SSCGuns.SSCGun(new StardustCore.Animations.AnimatedSprite("MyFirstGun", this.position, new AnimationManager(SeasideScramble.self.textureUtils.getExtendedTexture("Guns", "BasicGun"), new Animation(0, 0, 16, 16)), Color.White), SeasideScramble.self.entities.projectiles.getDefaultProjectile(this, this.position, Vector2.Zero, 4f, new Rectangle(0, 0, 16, 16), Color.White, 4f, 300), 10, 1000, 3000); this.hitBox = new Rectangle((int)this.position.X, (int)this.position.Y, 64, 64); if (this.playerID == SSCEnums.PlayerID.One) { this.HUD = new SSCMenus.HUD.CharacterHUD(100, 20, 100, 100, this.playerID); } if (this.playerID == SSCEnums.PlayerID.Two) { this.HUD = new SSCMenus.HUD.CharacterHUD(340, 20, 100, 100, this.playerID); } if (this.playerID == SSCEnums.PlayerID.Three) { this.HUD = new SSCMenus.HUD.CharacterHUD(580, 20, 100, 100, this.playerID); } if (this.playerID == SSCEnums.PlayerID.Four) { this.HUD = new SSCMenus.HUD.CharacterHUD(820, 20, 100, 100, this.playerID); } this.maxHealth = 100; this.currentHealth = 100; this.statusEffects = new SSCStatusEffects.StatusEffectManager(this); } /// /// Sets the color for the player. /// /// public void setColor(Color color) { this.playerColor = color; this.mouseCursor.color = color; } /// /// Plays an animation for the character. /// /// public void playAnimation(string name) { this.characterSpriteController.setAnimation(name); } /// /// Draws the character to the screen. /// /// public void draw(Microsoft.Xna.Framework.Graphics.SpriteBatch b) { this.draw(b, this.position); } /// /// Draws the character to the screen. /// /// /// public void draw(SpriteBatch b, Vector2 position) { this.characterSpriteController.draw(b, SeasideScramble.GlobalToLocal(SeasideScramble.self.camera.viewport, position), this.playerColor, 4f, this.flipSprite == true ? SpriteEffects.FlipHorizontally : SpriteEffects.None, Math.Max(0f, (this.position.Y) / 10000f)); this.gun.draw(b, SeasideScramble.GlobalToLocal(SeasideScramble.self.camera.viewport, position), 2f); } public void drawMouse(SpriteBatch b) { this.mouseCursor.draw(b, 4f, 0f); } public void drawHUD(SpriteBatch b) { this.HUD.draw(b); this.statusEffects.draw(b, 4f); } /// /// Called every frame to do update logic. /// /// public void update(GameTime Time) { this.movedThisFrame = false; if (this.isMoving == false) { if (this.facingDirection == SSCEnums.FacingDirection.Down) { this.characterSpriteController.playAnimation("Idle_F"); } if (this.facingDirection == SSCEnums.FacingDirection.Right) { this.characterSpriteController.playAnimation("Idle_R"); } if (this.facingDirection == SSCEnums.FacingDirection.Left) { this.characterSpriteController.playAnimation("Idle_L"); this.flipSprite = true; return; } if (this.facingDirection == SSCEnums.FacingDirection.Up) { this.characterSpriteController.playAnimation("Idle_B"); } this.flipSprite = false; } else { if (this.facingDirection == SSCEnums.FacingDirection.Down) { this.characterSpriteController.playAnimation("Walking_F"); } if (this.facingDirection == SSCEnums.FacingDirection.Right) { this.characterSpriteController.playAnimation("Walking_R"); } if (this.facingDirection == SSCEnums.FacingDirection.Left) { this.characterSpriteController.playAnimation("Walking_L"); this.flipSprite = true; return; } if (this.facingDirection == SSCEnums.FacingDirection.Up) { this.characterSpriteController.playAnimation("Walking_B"); } this.flipSprite = false; } if (this.playerID == SSCEnums.PlayerID.One) { if (SeasideScramble.self.getMouseDelta().X != 0 || SeasideScramble.self.getMouseDelta().Y != 0) { this.mouseCursor.position = new Vector2(Game1.getMousePosition().X, Game1.getMousePosition().Y); this.showMouseCursor = true; } } if (this.currentHealth < 0) this.currentHealth = 0; this.gun.update(Time); this.HUD.update(Time); this.statusEffects.update(Time); } /// /// Sets the mouse's position. /// /// public void setMousePosition(Vector2 position) { this.mouseCursor.position = position; } //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// // Input logic // //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// #region /// /// Checks when the gamepad receives input. /// /// public void receiveGamepadInput(GamePadState state) { if (SeasideScramble.self.menuManager.isMenuUp == false) { //Do gamepad input here! if (state.ThumbSticks.Left.X < 0) { this.movePlayer(SSCEnums.FacingDirection.Left); } else if (state.ThumbSticks.Left.X > 0) { this.movePlayer(SSCEnums.FacingDirection.Right); } if (state.ThumbSticks.Left.Y < 0) { this.movePlayer(SSCEnums.FacingDirection.Down); } else if (state.ThumbSticks.Left.Y > 0) { this.movePlayer(SSCEnums.FacingDirection.Up); } if (state.ThumbSticks.Left.X == 0 && state.ThumbSticks.Left.Y == 0 && this.movedThisFrame == false) { this.isMoving = false; } if (state.ThumbSticks.Right.X != 0 || state.ThumbSticks.Right.Y != 0) { Vector2 direction = new Vector2(state.ThumbSticks.Right.X, state.ThumbSticks.Right.Y * -1); Vector2 unit = direction.UnitVector(); this.shoot(unit); //this.moveMouseCursor(state.ThumbSticks.Right); } } else { if (state.ThumbSticks.Right.X != 0 || state.ThumbSticks.Right.Y != 0) { this.moveMouseCursor(new Vector2(state.ThumbSticks.Right.X, state.ThumbSticks.Right.Y * -1)); this.showMouseCursor = true; } } } /// /// Move the mouse cursor. /// /// private void moveMouseCursor(Vector2 direction) { if (SeasideScramble.self.camera.positionInsideViewport(this.mouseCursor.position + new Vector2(direction.X * this.mouseSensitivity.X, direction.Y * this.mouseSensitivity.Y))) { this.mouseCursor.position += new Vector2(direction.X * this.mouseSensitivity.X, direction.Y * this.mouseSensitivity.Y); } else if (SeasideScramble.self.camera.positionInsideViewport(this.mouseCursor.position + new Vector2(direction.X * this.mouseSensitivity.X, 0))) { this.mouseCursor.position += new Vector2(direction.X * this.mouseSensitivity.X, 0); } else if (SeasideScramble.self.camera.positionInsideViewport(this.mouseCursor.position + new Vector2(0, direction.Y * this.mouseSensitivity.Y))) { this.mouseCursor.position += new Vector2(0, direction.Y * this.mouseSensitivity.Y); } } /// /// Gets a normalized direction vector for the player. /// /// private Vector2 getMouseDirection() { Vector2 dir = this.getRelativeMouseFromPlayer(); dir = dir.UnitVector(); return dir; } /// /// Gets the mouse's relative position away from the player. /// /// private Vector2 getRelativeMouseFromPlayer() { Vector2 pos = this.mouseCursor.position - SeasideScramble.GlobalToLocal(this.position); return pos; } /// /// Checks when the player presses a key on the keyboard. /// /// public void receiveKeyPress(Microsoft.Xna.Framework.Input.Keys k) { if (this.playerID == SSCEnums.PlayerID.One) { this.checkForMovementInput(k); } } /// /// Triggers when there isn't a key being pressed. /// /// public void receiveKeyRelease(Keys K) { if (this.playerID != SSCEnums.PlayerID.One) return; //throw new NotImplementedException(); if (K == Keys.A) { this.isMoving = false; } if (K == Keys.W) { this.isMoving = false; } if (K == Keys.S) { this.isMoving = false; } if (K == Keys.D) { this.isMoving = false; } } /// /// What happens when the player left clicks. /// /// /// public void receiveLeftClick(int x, int y) { if (SeasideScramble.self.getGamepadState(PlayerIndex.One).IsButtonDown(Buttons.A)) { //Do stuff besides shooting. return; } Vector2 direction = this.getMouseDirection(); this.shoot(direction); } #endregion //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// // Movement logic // //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~// #region /// /// Checks for moving the player. /// /// public void movePlayer(SSCEnums.FacingDirection direction) { this.isMoving = true; this.movedThisFrame = true; if (direction == SSCEnums.FacingDirection.Up) { this.facingDirection = direction; if (this.canMoveHere(direction,new Vector2(0, -1))){ this.position += new Vector2(0, -1); } } if (direction == SSCEnums.FacingDirection.Down) { this.facingDirection = direction; if (this.canMoveHere(direction,new Vector2(0, 1))) { this.position += new Vector2(0, 1); } } if (direction == SSCEnums.FacingDirection.Left) { this.facingDirection = direction; if (this.canMoveHere(direction,new Vector2(-1, 0))) { this.position += new Vector2(-1, 0); } } if (direction == SSCEnums.FacingDirection.Right) { this.facingDirection = direction; if (this.canMoveHere(direction,new Vector2(1, 0))) { this.position += new Vector2(1, 0); } } this.hitBox.X = (int)this.position.X; this.hitBox.Y = (int)this.position.Y; //ModCore.log(this.position); } public bool canMoveHere(SSCEnums.FacingDirection Direction,Vector2 offset) { Vector2 combo = this.position + offset; if(Direction== SSCEnums.FacingDirection.Right) { combo.X += this.hitBox.Width; } if(Direction== SSCEnums.FacingDirection.Down) { combo.Y += this.hitBox.Height; } if (SeasideScramble.self.currentMap.insideMap(combo) == false) return false; if (SeasideScramble.self.currentMap.isObstacleAt(combo)) return false; return true; } /// /// Checks for player movement. /// /// private void checkForMovementInput(Keys K) { if (this.playerID != SSCEnums.PlayerID.One) return; if (SeasideScramble.self.menuManager.isMenuUp) return; //Microsoft.Xna.Framework.Input.GamePadState state = this.getGamepadState(PlayerIndex.One); if (K == Keys.A) { this.movePlayer(SSCEnums.FacingDirection.Left); } if (K == Keys.W) { this.movePlayer(SSCEnums.FacingDirection.Up); } if (K == Keys.S) { this.movePlayer(SSCEnums.FacingDirection.Down); } if (K == Keys.D) { this.movePlayer(SSCEnums.FacingDirection.Right); } } #endregion private void shoot(Vector2 direction) { if (SeasideScramble.self.menuManager.isMenuUp) return; //ModCore.log("Shoot: " + direction); //SeasideScramble.self.projectiles.spawnDefaultProjectile(this, this.position, direction, 1f, new Rectangle(0, 0, 16, 16), Color.White, 4f, 300); this.gun.tryToShoot(this.position, direction); } public void takeDamage(int amount) { this.currentHealth -= amount; if (this.currentHealth < 0) { this.currentHealth = 0; } } public void heal(int amount) { this.takeDamage(amount * -1); } public void healToFull() { this.currentHealth = this.maxHealth; } public void onCollision(SSCProjectiles.SSCProjectile projectile) { if (projectile is SSCProjectiles.SSCProjectile) { if (projectile.hasOwner()) { if (projectile.owner == this) { //ModCore.log("Can't get hit by own projectile."); return; } /*if projectile.owner is player and friendly fire is off do nothing. * * */ } ModCore.log("Big oof. Player hit by projectile."); this.CurrentHealth -= projectile.damage; this.statusEffects.addStatusEffect(projectile.effect); } } public void onCollision(SSCEnemies.SSCEnemy enemy) { } } }