|
@@ -5,8 +5,6 @@ using System.Threading.Tasks;
|
|
|
using UnityEngine;
|
|
|
using UnityEngine.PlayerLoop;
|
|
|
using UnityEngine.UI;
|
|
|
-using static System.Net.Mime.MediaTypeNames;
|
|
|
-using static UnityEditor.Progress;
|
|
|
|
|
|
namespace ET.Client
|
|
|
{
|
|
@@ -191,9 +189,9 @@ namespace ET.Client
|
|
|
CommonBridge.Instance.dispathPush += DispathPush;
|
|
|
self.readyBtn.SetActive(true);
|
|
|
self.inviteBtn.SetActive(true);
|
|
|
- self.houseIdTxt.GetComponent<UnityEngine.UI.Text>().text = startFightRoomInfo.roomInfo.RoomId.ToString();
|
|
|
- self.gameNumTxt.GetComponent<UnityEngine.UI.Text>().text = startFightRoomInfo.roomInfo.OwnerId.ToString();
|
|
|
- self.curResidueTxt.GetComponent<UnityEngine.UI.Text>().text = "0";
|
|
|
+ self.houseIdTxt.GetComponent<Text>().text = startFightRoomInfo.roomInfo.RoomId.ToString();
|
|
|
+ self.gameNumTxt.GetComponent<Text>().text = startFightRoomInfo.roomInfo.OwnerId.ToString();
|
|
|
+ self.curResidueTxt.GetComponent<Text>().text = "0";
|
|
|
await SoundManager.Instance.PlaySound("common_playing", true);
|
|
|
}
|
|
|
|
|
@@ -334,27 +332,34 @@ namespace ET.Client
|
|
|
GameObjectPool.Instance.ClearRealySelCardList();
|
|
|
|
|
|
//抬起
|
|
|
- for (int i = 0; i < myCardInfo.cardInfo.ActInfo.Count; i++)
|
|
|
+ if (myCardInfo.cardInfo != null && myCardInfo.cardInfo.ActInfo != null && myCardInfo.cardInfo.ActInfo.Count > 0)
|
|
|
{
|
|
|
- //根据服务器信息 弹起响应的牌
|
|
|
- DisCardPushWithOperator(parentNode.transform, myCardInfo.cardInfo.ActInfo[i]);
|
|
|
+ for (int i = 0; i < myCardInfo.cardInfo.ActInfo.Count; i++)
|
|
|
+ {
|
|
|
+ //根据服务器信息 弹起响应的牌
|
|
|
+ DisCardPushWithOperator(parentNode.transform, myCardInfo.cardInfo.ActInfo[i]);
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
//记录当前出的牌
|
|
|
startFightRoomComponentUI.curCardVal = startFightRoomInfo.roomInfo.CurDisCard;
|
|
|
Log.Error("当前出的牌: " + startFightRoomComponentUI.curCardVal);
|
|
|
}
|
|
|
|
|
|
- //处理每个回合倒计时
|
|
|
- Log.Error("当前自己回合");
|
|
|
- startFightRoomComponentUI.startTimeCount = startFightRoomInfo.roomInfo.Time;
|
|
|
- if (startFightRoomComponentUI.startTimer > 0)
|
|
|
+ if (startFightRoomInfo.roomInfo.Time > 0)
|
|
|
{
|
|
|
- startFightRoomComponentUI.timeCountTxt.text = "";
|
|
|
- TimerComponent.Instance?.Remove(ref startFightRoomComponentUI.startTimer);
|
|
|
+ startFightRoomComponentUI.startTimeCount = startFightRoomInfo.roomInfo.Time;
|
|
|
+ startFightRoomComponentUI.startTimer = TimerComponent.Instance.NewRepeatedTimer(ConstValue.fightTimeRefreshTime / 2 + 100, TimerInvokeType.startFightTimeCount, startFightRoomComponentUI);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ Log.Error("清空回合倒计时");
|
|
|
+ if (startFightRoomComponentUI.startTimer > 0)
|
|
|
+ {
|
|
|
+ startFightRoomComponentUI.timeCountTxt.text = "";
|
|
|
+ TimerComponent.Instance?.Remove(ref startFightRoomComponentUI.startTimer);
|
|
|
+ }
|
|
|
}
|
|
|
- startFightRoomComponentUI.startTimer = TimerComponent.Instance.NewRepeatedTimer(ConstValue.fightTimeRefreshTime / 2 + 100, TimerInvokeType.startFightTimeCount, startFightRoomComponentUI);
|
|
|
- //处理当前操作玩家的状态显示
|
|
|
- RefreshCenterOperationState(startFightRoomInfo.roomInfo.OpPos, startFightRoomComponentUI);
|
|
|
break;
|
|
|
}
|
|
|
}
|
|
@@ -889,7 +894,19 @@ namespace ET.Client
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
+ }
|
|
|
+
|
|
|
+ //处理每个回合倒计时
|
|
|
+ Log.Error("当前自己回合");
|
|
|
+ startFightRoomComponentUI.startTimeCount = roomInfo.Time;
|
|
|
+ if (startFightRoomComponentUI.startTimer > 0)
|
|
|
+ {
|
|
|
+ startFightRoomComponentUI.timeCountTxt.text = "";
|
|
|
+ TimerComponent.Instance?.Remove(ref startFightRoomComponentUI.startTimer);
|
|
|
+ }
|
|
|
+ startFightRoomComponentUI.startTimer = TimerComponent.Instance.NewRepeatedTimer(ConstValue.fightTimeRefreshTime / 2 + 100, TimerInvokeType.startFightTimeCount, startFightRoomComponentUI);
|
|
|
+ //处理当前操作玩家的状态显示
|
|
|
+ RefreshCenterOperationState(roomInfo.OpPos, startFightRoomComponentUI);
|
|
|
}
|
|
|
|
|
|
//刷新中间表示当前操作玩家
|