GlobalGameJame/Assets/Scripts/BlockManager.cs

73 lines
2.0 KiB
C#
Raw Normal View History

2020-01-31 20:47:30 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BlockManager : MonoBehaviour
{
2020-02-01 11:11:56 +00:00
public enum BlockType {None, Barricade, Door, Wood, Ammo};
2020-01-31 20:47:30 +00:00
public BlockType blockType = BlockType.None;
2020-01-31 21:32:05 +00:00
public float health = 100;
2020-02-01 15:20:10 +00:00
public float healthRate = 5;
private float healthTime = 5;
2020-02-01 13:26:43 +00:00
private Animation animation;
2020-02-01 15:20:10 +00:00
private PlayerManager player;
2020-02-01 11:11:56 +00:00
private bool action = false;
2020-01-31 20:47:30 +00:00
// Start is called before the first frame update
void Start()
{
2020-02-01 15:20:10 +00:00
player = FindObjectOfType<PlayerManager>();
2020-02-01 11:11:56 +00:00
if (blockType == BlockType.Door)
{
2020-02-01 13:26:43 +00:00
animation = this.GetComponent<Animation>();
2020-02-01 11:11:56 +00:00
}
2020-02-01 15:20:10 +00:00
else if (blockType == BlockType.Wood)
{
healthTime = healthRate;
}
2020-01-31 20:47:30 +00:00
}
// Update is called once per frame
void Update()
{
2020-02-01 15:20:10 +00:00
if (blockType == BlockType.Wood)
{
if (health < 100 && healthTime < Time.time)
{
health += 10;
healthTime = healthRate + Time.time;
}
}
2020-02-01 11:11:56 +00:00
}
public void Action()
{
if (blockType == BlockType.Door)
{
2020-02-01 15:20:10 +00:00
if (!animation.isPlaying)
{
2020-02-01 13:26:43 +00:00
if (!action)
{
animation["Door"].speed = 1;
animation["Door"].time = 0;
action = true;
}
else
{
animation["Door"].speed = -1;
animation["Door"].time = animation["Door"].length;
action = false;
}
animation.Play("Door");
2020-02-01 15:20:10 +00:00
}
}
else if (blockType == BlockType.Wood)
{
if (health > 0 && player.barricadeMaterials < 50) {
health -= 10;
player.barricadeMaterials += (player.barricadeMaterials <= 40 ? 10 : (50 - player.barricadeMaterials));
}
2020-02-01 11:11:56 +00:00
}
2020-01-31 20:47:30 +00:00
}
}