yyl
12 小时以前 71365e5c15d81759c04d7aab953fa757fb183f9b
Main/System/Battle/UIComp/TotalDamageDisplayer.cs
@@ -1,24 +1,22 @@
using System.Collections;
using Cysharp.Threading.Tasks;
using DG.Tweening;
using UnityEngine;
using UnityEngine.UI;
using System.Threading;
public class TotalDamageDisplayer : MonoBehaviour
{
    public Image damageBackground;
    public Text textDamage;
    public Text textTotalDesc; //总伤害或者总治疗
    public Image imgTotalDesc; //总伤害或者总治疗
    public UniTask task = default;
    private long damage = 0;
    private Coroutine hideCoroutine;
    private int hideVersion = 0;
    private long heal = 0;
    public void SetDamage(BattleDmgInfo dmgInfo)
    {
        // 先统一停止并清理此前的隐藏协程(如果有)
        ClearHideCoroutine();
        var battleField = BattleManager.Instance.GetBattleField(dmgInfo.battleFieldGuid);
        if (!gameObject.activeInHierarchy)
            gameObject.SetActive(true);
@@ -29,68 +27,38 @@
        if (dmgInfo.IsType(DamageType.Recovery))
        {
            // 保持原有处理逻辑位置
            foreach (var h in dmgInfo.damageList)
            {
                heal += h;
            }
            textDamage.text = BattleUtility.DisplayDamageNum(heal, BattleConst.BattleTotalRecoverType);
            damageBackground.sprite = UILoader.LoadSprite("Fight", "Fight1_img_83");
            imgTotalDesc.sprite = UILoader.LoadSprite("Fight", "Fight1_img_80");
        }
        else if (dmgInfo.IsType(DamageType.Damage) || dmgInfo.IsType(DamageType.Realdamage))
        {
            // 保持原有处理逻辑位置
            foreach (var d in dmgInfo.damageList)
            {
                damage += d;
            }
            textDamage.text = BattleUtility.DisplayDamageNum(damage, BattleConst.BattleTotalDamageType);
            imgTotalDesc.sprite = UILoader.LoadSprite("Fight", "Fight1_img_85");
            damageBackground.sprite = UILoader.LoadSprite("Fight", "Fight1_img_88");
        }
        if (dmgInfo.isLastHit)
        var tween = textDamage.transform.DOPunchScale(Vector3.one * 0.2f, 0.8f / battleField.speedRatio, 1).OnComplete(() =>
        {
            // 启动新的隐藏协程,先生成新的版本号以用于协程有效性校验
            hideVersion++;
            int myVersion = hideVersion;
            textDamage.transform.localScale = Vector3.one;
            if (dmgInfo.isLastHit)
            {
                gameObject.SetActive(false);
                damage = 0;
                heal = 0;
            }
        });
        battleField.battleTweenMgr.OnPlayTween(tween);
            var battleField = BattleManager.Instance.GetBattleField(dmgInfo.battleFieldGuid);
            float ms = 1000f / battleField.speedRatio;
            hideCoroutine = StartCoroutine(HideAfterDelayCoroutine(ms, myVersion));
            task = default;
        }
    }
    protected void OnDisable()
    {
        ClearHideCoroutine();
        hideVersion++;
    }
    protected void OnDestroy()
    {
        ClearHideCoroutine();
        hideVersion++;
    }
    public void CancelHide()
    {
        ClearHideCoroutine();
        hideVersion++;
    }
    private void ClearHideCoroutine()
    {
        if (hideCoroutine != null)
        {
            try { StopCoroutine(hideCoroutine); } catch { }
            hideCoroutine = null;
        }
    }
    private IEnumerator HideAfterDelayCoroutine(float secondsDelay, int version = 0)
    {
        yield return new WaitForSeconds(secondsDelay);
        if (version != 0 && version != hideVersion)
            yield break;
        if (this == null) yield break;
        if (gameObject != null)
            gameObject.SetActive(false);
        if (hideCoroutine != null)
            hideCoroutine = null;
    }
}