chenxin
2020-11-18 2ef9a95def81f3f47f302c86a5709140a6f39ce6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
using Core.Utilities;
using UnityEngine;
using UnityEngine.Events;
 
namespace TowerDefense.Towers
{
    /// <summary>
    /// A helper component for self destruction
    /// </summary>
    public class SelfDestroyTimer : MonoBehaviour
    {
        /// <summary>
        /// The time before destruction
        /// </summary>
        public float time = 5;
 
        /// <summary>
        /// The controlling timer
        /// </summary>
        public Timer timer;
 
        /// <summary>
        /// The exposed death callback
        /// </summary>
        public UnityEvent death;
 
        /// <summary>
        /// Potentially initialize the time if necessary
        /// </summary>
        protected virtual void OnEnable()
        {
            if (timer == null)
            {
                timer = new Timer(time, OnTimeEnd);
            }
            else
            {
                timer.Reset();
            }
        }
 
        /// <summary>
        /// Update the timer
        /// </summary>
        protected virtual void Update()
        {
            if (timer == null)
            {
                return;
            }
            timer.Tick(Time.deltaTime);
        }
 
        /// <summary>
        /// Fires at the end of timer
        /// </summary>
        protected virtual void OnTimeEnd()
        {
            death.Invoke();
            Poolable.TryPool(gameObject);
            timer.Reset();
        }
    }
}