Scriptum/Assets/Scripts/Player.cs

439 lines
13 KiB
C#
Raw Normal View History

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using System.Linq;
2022-10-23 15:56:31 +02:00
public class Player : MonoBehaviour
{
Rigidbody2D rb;
2022-04-07 23:46:09 +02:00
private Animator myAnimator;
2022-06-09 21:51:48 +02:00
public float walkSpeed = 4f;
float speedLimiter = 0.7f;
float inputHorizontal;
float inputVertical;
public GameObject Panel;
private bool inRange = false;
public ParticleSystem dmgParticleSystem;
2022-06-12 20:14:11 +02:00
public HealthBar healthBar;
2022-10-23 00:21:54 +02:00
2022-06-21 03:57:04 +02:00
private static bool attackSword;
2022-06-14 21:20:02 +02:00
private bool attackFist;
2022-06-21 03:57:04 +02:00
private static bool pickaxeInUse;
private static bool playerInCollider;
2022-10-23 13:29:22 +02:00
public bool lvlUp = false;
public float test;
2022-06-13 17:38:09 +02:00
private float timerRegen = 0f;
private float timerTick = 0f;
private float waitRegen = 8.0f;
private float waitTick = 1.0f;
2022-06-12 20:14:11 +02:00
2022-06-13 17:38:09 +02:00
private bool startRegen = false;
2022-06-12 20:14:11 +02:00
private bool canWalk = true;
2022-10-16 21:35:56 +02:00
public float currentHealth;
public float maxHealth;
public int healthPoints;
public int defensePoints;
public int strengthPoints;
public int intelligencePoints;
2022-10-23 15:56:31 +02:00
2022-10-23 13:29:22 +02:00
public float exp;
2022-10-16 21:35:56 +02:00
public int lvl;
2022-10-23 13:29:22 +02:00
public float maxExp;
2022-10-23 00:21:54 +02:00
public LevelBar levelBar;
public FloatValue minPlayerExp;
2022-10-23 15:56:31 +02:00
2022-11-15 12:32:28 +01:00
public float attackValue;
2022-06-21 03:57:04 +02:00
public static void putPlayerInCollider()
{
playerInCollider = true;
}
2022-10-23 15:56:31 +02:00
2022-06-21 03:57:04 +02:00
public static void takePlayerFromCollider()
{
playerInCollider = false;
}
2022-10-23 15:56:31 +02:00
void Start()
{
Panel = GameObject.FindObjectsOfType<GameObject>(true).Where(sr => sr.gameObject.name == "YouDied").ToArray()[0];
healthBar = (HealthBar)FindObjectOfType<HealthBar>();
2022-10-23 00:21:54 +02:00
levelBar = (LevelBar)FindObjectOfType<LevelBar>();
if (OnMapAppearanceMethod.Gateway == OnMapAppearanceMethodEnum.NewGame)
{
2022-10-16 21:35:56 +02:00
currentHealth = PlayerPrefs.GetFloat("health");
2022-10-23 00:21:54 +02:00
exp = PlayerPrefs.GetFloat("exp");
2022-10-23 13:29:22 +02:00
lvl = PlayerPrefs.GetInt("lvl");
}
else
{
currentHealth = PlayerPrefs.GetFloat("health-S");
2022-10-23 00:21:54 +02:00
exp = PlayerPrefs.GetFloat("exp-S");
2022-10-23 13:29:22 +02:00
lvl = PlayerPrefs.GetInt("lvl-S");
}
rb = gameObject.GetComponent<Rigidbody2D>();
2022-04-07 23:46:09 +02:00
myAnimator = GetComponent<Animator>();
//healthBar.SetMaxHealth(maxHealth.initialValue);
//healthBar.SetHealth(currentHealth);
2022-10-23 13:29:22 +02:00
//levelBar.SetStartExp(minPlayerExp.initialValue);
//levelBar.SetExp(exp);
walkSpeed = 4f;
2022-10-23 13:29:22 +02:00
ManageLevels(exp);
}
2022-10-23 00:21:54 +02:00
public void GetExp(float expValue)
2022-10-16 21:35:56 +02:00
{
exp = exp + expValue;
2022-10-23 13:29:22 +02:00
ManageLevels(exp);
2022-10-16 21:35:56 +02:00
}
2022-10-23 00:21:54 +02:00
public void ManageLevels(float exp)
2022-10-16 21:35:56 +02:00
{
2022-10-23 13:29:22 +02:00
if (lvl == 1)
{
maxExp = 10;
if (exp >= maxExp)
{
lvl = 2;
lvlUp = true;
maxExp = 50;
}
}
else if (lvl == 2)
2022-10-16 21:35:56 +02:00
{
2022-10-23 13:29:22 +02:00
maxExp = 50;
if (exp >= maxExp)
{
lvl = 3;
lvlUp = true;
maxExp = 100;
}
2022-10-16 21:35:56 +02:00
}
2022-10-23 15:56:31 +02:00
else if (lvl == 3)
2022-10-16 21:35:56 +02:00
{
2022-10-23 13:29:22 +02:00
maxExp = 100;
if (exp >= maxExp)
{
lvl = 4;
lvlUp = true;
maxExp = 200;
}
2022-10-16 21:35:56 +02:00
}
}
2022-10-02 18:45:58 +02:00
public void TakeDamage(float damage, bool isPanelEnabled = true)
{
2022-11-14 23:04:29 +01:00
defensePoints = PlayerPrefs.GetInt("defensePoints");
if(defensePoints == 1)
{
damage = damage * 0.95f;
}
else if(defensePoints == 2)
{
damage = damage * 0.9f;
}
else if(defensePoints == 3)
{
damage = damage * 0.85f;
}
currentHealth = PlayerPrefs.GetFloat("health");
2022-06-12 20:14:11 +02:00
currentHealth = currentHealth - damage;
PlayerPrefs.SetFloat("health", currentHealth);
var em = dmgParticleSystem.emission;
em.enabled = true;
StartCoroutine(Timer());
2022-06-13 17:38:09 +02:00
timerRegen = 0.0f;
startRegen = false;
2022-06-12 20:14:11 +02:00
if (currentHealth <= 0)
{
2022-10-23 15:56:31 +02:00
if (isPanelEnabled)
2022-10-02 18:45:58 +02:00
{
2022-10-23 15:56:31 +02:00
Panel.SetActive(true);
2022-10-02 18:45:58 +02:00
}
walkSpeed = 0f;
2022-10-16 21:35:56 +02:00
canWalk = false;
}
}
IEnumerator Timer()
{
yield return new WaitForSeconds(0.2f);
var em = dmgParticleSystem.emission;
em.enabled = false;
}
2022-05-31 23:53:48 +02:00
private void HandleAttacks()
{
2022-11-27 21:28:55 +01:00
2022-10-16 21:35:56 +02:00
if (canWalk == true)
2022-05-31 23:53:48 +02:00
{
2022-11-27 21:28:55 +01:00
if (EquipmentUIManager.Instance.GetList().Count() == 0 || EquipmentUIManager.Instance.GetList().Where(el => el.Key == (int)EquipmentPanelSlotsTypeEnum.WeaponSlot && el.Value != null).Count() == 0)
2022-10-23 15:56:31 +02:00
return;
2022-11-27 21:28:55 +01:00
if (EquipmentUIManager.Instance.GetList().Count() != 0 && EquipmentUIManager.Instance.GetList().Where(el => el.Key == (int)EquipmentPanelSlotsTypeEnum.WeaponSlot && el.Value != null).First().Value.Name.Equals("Pickaxe") && attackSword)
2022-10-16 21:35:56 +02:00
{
myAnimator.SetTrigger("pickaxe");
}
2022-11-27 21:28:55 +01:00
else if (attackSword && EquipmentUIManager.Instance.GetList().Where(el => el.Key == (int)EquipmentPanelSlotsTypeEnum.WeaponSlot && el.Value != null).First().Value.Name.Equals("Basic Sword"))
2022-10-16 21:35:56 +02:00
{
myAnimator.SetTrigger("attack");
}
else if (attackFist)
{
myAnimator.SetTrigger("attackFist");
}
2022-05-31 23:53:48 +02:00
}
2022-05-31 23:53:48 +02:00
}
2022-06-21 03:57:04 +02:00
private void HandleInput()
{
if (Input.GetKeyDown(KeyCode.Space))
{
attackSword = true;
}
if (Input.GetKeyDown(KeyCode.LeftShift))
{
attackFist = true;
}
2022-10-23 15:56:31 +02:00
if (Input.GetKeyDown(KeyCode.X))
{
pickaxeInUse = true;
}
2022-06-21 03:57:04 +02:00
}
private void ResetValues()
2022-06-21 03:57:04 +02:00
{
attackSword = false;
attackFist = false;
pickaxeInUse = false;
}
void Update()
{
2022-11-15 12:32:28 +01:00
2022-10-23 13:29:22 +02:00
if (lvlUp == true)
{
2022-10-23 15:56:31 +02:00
PlayerPrefs.SetInt("LvlUpPopUp", 1);
2022-10-23 13:29:22 +02:00
exp = 0;
lvlUp = false;
}
ManageHealth();
ManageDefense();
ManageIntelligence();
ManageStrength();
2022-10-16 21:35:56 +02:00
if (canWalk == true)
{
2022-10-23 15:56:31 +02:00
inputHorizontal = Input.GetAxisRaw("Horizontal");
inputVertical = Input.GetAxisRaw("Vertical");
2022-10-23 15:56:31 +02:00
myAnimator.SetFloat("moveX", inputHorizontal * walkSpeed);
myAnimator.SetFloat("moveY", inputVertical * walkSpeed);
if (inputHorizontal != 0)
{
myAnimator.SetFloat("speed", walkSpeed);
}
else if (inputVertical != 0)
{
myAnimator.SetFloat("speed", walkSpeed);
}
else
{
myAnimator.SetFloat("speed", 0);
}
2022-10-23 15:56:31 +02:00
if (inputHorizontal == 1 || inputHorizontal == -1 || inputVertical == 1 || inputVertical == -1)
{
myAnimator.SetFloat("lastMoveX", inputHorizontal);
myAnimator.SetFloat("lastMoveY", inputVertical);
}
2022-06-21 03:57:04 +02:00
2022-10-23 15:56:31 +02:00
timerRegen += Time.deltaTime;
if (timerRegen >= waitRegen)
{
startRegen = true;
}
currentHealth = PlayerPrefs.GetFloat("health");
maxHealth = PlayerPrefs.GetFloat("maxHealth");
2022-10-23 15:56:31 +02:00
if (startRegen == true)
{
2022-10-23 15:56:31 +02:00
timerTick += Time.deltaTime;
if (timerTick >= waitTick)
{
if (currentHealth < maxHealth)
2022-10-23 15:56:31 +02:00
{
currentHealth = currentHealth + 1;
2022-11-14 23:04:29 +01:00
if (currentHealth > maxHealth)
{
currentHealth = maxHealth;
}
PlayerPrefs.SetFloat("health", currentHealth);
2022-10-23 15:56:31 +02:00
timerTick = 0f;
}
}
}
2022-10-23 15:56:31 +02:00
PlayerPrefs.SetFloat("health", currentHealth);
PlayerPrefs.SetFloat("exp", exp);
PlayerPrefs.SetInt("lvl", lvl);
PlayerPrefs.SetFloat("maxExp", maxExp);
PlayerPrefs.SetFloat("maxHealth", maxHealth);
2022-10-16 21:35:56 +02:00
}
2022-06-21 03:57:04 +02:00
HandleInput();
}
2022-06-21 03:57:04 +02:00
void FixedUpdate()
{
2022-10-23 15:56:31 +02:00
if (canWalk == true)
2022-06-21 03:57:04 +02:00
{
if (inputHorizontal != 0 || inputVertical != 0)
{
if (inputHorizontal != 0 && inputVertical != 0)
{
inputHorizontal *= speedLimiter;
inputVertical *= speedLimiter;
}
rb.velocity = new Vector2(inputHorizontal * walkSpeed, inputVertical * walkSpeed);
}
else
{
rb.velocity = new Vector2(0f, 0f);
}
2022-06-21 03:57:04 +02:00
}
HandleAttacks();
ResetValues();
}
public void SaveCheckpoint()
2022-06-21 03:57:04 +02:00
{
currentHealth = PlayerPrefs.GetFloat("health");
PlayerPrefs.SetFloat("health-S", currentHealth);
2022-10-23 00:21:54 +02:00
PlayerPrefs.SetFloat("exp-S", exp);
2022-10-23 13:29:22 +02:00
PlayerPrefs.SetInt("lvl-S", lvl);
2022-06-21 03:57:04 +02:00
}
2022-10-23 15:56:31 +02:00
public void ManageHealth()
{
healthPoints = PlayerPrefs.GetInt("healthPoints");
if (healthPoints == 0)
{
PlayerPrefs.SetFloat("maxHealth", 10);
}
else if (healthPoints == 1)
{
PlayerPrefs.SetFloat("maxHealth", 12);
}
else if (healthPoints == 2)
{
PlayerPrefs.SetFloat("maxHealth", 15);
}
else if (healthPoints == 3)
{
PlayerPrefs.SetFloat("maxHealth", 20);
}
}
2022-10-23 15:56:31 +02:00
public void AddHealthPoint()
{
healthPoints = PlayerPrefs.GetInt("healthPoints");
healthPoints = healthPoints + 1;
PlayerPrefs.SetInt("healthPoints", healthPoints);
2022-10-23 15:56:31 +02:00
}
public void ManageStrength()
{
2022-11-27 21:28:55 +01:00
if (EquipmentUIManager.Instance.GetList().Count() == 0 || EquipmentUIManager.Instance.GetList().Where(el => el.Key == (int)EquipmentPanelSlotsTypeEnum.WeaponSlot && el.Value != null).Count() == 0)
2022-11-15 12:32:28 +01:00
{
attackValue = 0f;
}
2022-11-27 21:28:55 +01:00
else if (EquipmentUIManager.Instance.GetList().Count() != 0 &&
EquipmentUIManager.Instance.GetList().Where(el => el.Key == (int)EquipmentPanelSlotsTypeEnum.WeaponSlot && el.Value != null).Count() > 0 &&
EquipmentUIManager.Instance.GetList().Where(el => el.Key == (int)EquipmentPanelSlotsTypeEnum.WeaponSlot && el.Value != null).First().Value.Name.Equals("Pickaxe"))
2022-11-15 12:32:28 +01:00
{
attackValue = 0.5f;
PlayerPrefs.SetFloat("attackValue", attackValue);
}
2022-11-27 21:28:55 +01:00
else if (EquipmentUIManager.Instance.GetList().Count() != 0 &&
EquipmentUIManager.Instance.GetList().Where(el => el.Key == (int)EquipmentPanelSlotsTypeEnum.WeaponSlot && el.Value != null).Count() > 0 &&
EquipmentUIManager.Instance.GetList().Where(el => el.Key == (int)EquipmentPanelSlotsTypeEnum.WeaponSlot && el.Value != null).First().Value.Name.Equals("Basic Sword"))
2022-11-15 12:32:28 +01:00
{
attackValue = 1.0f;
PlayerPrefs.SetFloat("attackValue", attackValue);
}
strengthPoints = PlayerPrefs.GetInt("strengthPoints");
2022-11-15 12:32:28 +01:00
if(strengthPoints == 1)
{
attackValue = PlayerPrefs.GetFloat("attackValue");
attackValue = attackValue * 1.1f;
PlayerPrefs.SetFloat("attackValue", attackValue);
}
else if(strengthPoints == 2)
{
attackValue = PlayerPrefs.GetFloat("attackValue");
attackValue = attackValue * 1.2f;
PlayerPrefs.SetFloat("attackValue", attackValue);
}
else if(strengthPoints == 3)
{
attackValue = PlayerPrefs.GetFloat("attackValue");
attackValue = attackValue * 1.3f;
PlayerPrefs.SetFloat("attackValue", attackValue);
}
}
2022-10-23 15:56:31 +02:00
public void AddStrengthPoint()
{
strengthPoints = PlayerPrefs.GetInt("strengthPoints");
strengthPoints = strengthPoints + 1;
PlayerPrefs.SetInt("strengthPoints", strengthPoints);
2022-10-23 15:56:31 +02:00
}
public void ManageDefense()
{
defensePoints = PlayerPrefs.GetInt("defensePoints");
}
2022-10-23 15:56:31 +02:00
public void AddDefensePoint()
{
defensePoints = PlayerPrefs.GetInt("defensePoints");
defensePoints = defensePoints + 1;
2022-11-14 23:04:29 +01:00
PlayerPrefs.SetInt("defensePoints", defensePoints);
2022-10-23 15:56:31 +02:00
}
public void ManageIntelligence()
{
intelligencePoints = PlayerPrefs.GetInt("intelligencePoints");
}
public void AddIntelligencePoint()
2022-10-23 15:56:31 +02:00
{
intelligencePoints = PlayerPrefs.GetInt("intelligencePoints");
intelligencePoints = intelligencePoints + 1;
PlayerPrefs.SetInt("intelligencePoitns", intelligencePoints);
}
2022-10-23 15:56:31 +02:00
public void LevelUpPopUp()
{
healthPoints = PlayerPrefs.GetInt("healthPoints");
2022-10-23 15:56:31 +02:00
}
}