NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Level/State/BaseLevelState.cs

192 lines
6.7 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2024-11-22 14:25:49 +08:00
using AOT.PostProcess.ColorFade;
using Cysharp.Threading.Tasks;
2023-08-22 19:08:45 +08:00
using Framework;
using Gameplay.Area.Around;
using Gameplay.Area.BoardView;
2024-07-01 13:08:37 +08:00
using Gameplay.Guide;
2024-11-14 14:22:30 +08:00
using LTGame;
2023-08-22 19:08:45 +08:00
using TGS;
using UnityEngine;
namespace Gameplay.Level
{
2024-11-14 14:22:30 +08:00
public abstract class BaseLevelState : NBaseState
2023-08-22 19:08:45 +08:00
{
protected Level _level;
2024-11-14 14:22:30 +08:00
public BaseLevelState(Level level, int stateId) : base(stateId)
2023-08-22 19:08:45 +08:00
{
_level = level;
}
2024-11-22 14:25:49 +08:00
protected async void _WaitBlackOut()
{
if (GlobalFadeManager.instance.fadeProgress <= 0.5f)
{
return;
}
GlobalFadeManager.instance.FadeOut(0.5f);
await UniTask.WaitForSeconds(0.5f);
}
2023-08-22 19:08:45 +08:00
public override void Run(float dt)
{
// 暂停状态下不执行
if (_level.IsPause()) return;
base.Run(dt);
}
2024-11-14 14:22:30 +08:00
protected override void _OnEnter(NBaseState exitState,
object param)
2023-08-22 19:08:45 +08:00
{
}
2024-11-14 14:22:30 +08:00
protected override void _OnRunning()
2023-08-22 19:08:45 +08:00
{
2024-11-14 14:22:30 +08:00
2023-08-22 19:08:45 +08:00
}
2024-11-14 14:22:30 +08:00
protected override void _OnExit(NBaseState exitState,
object param)
2023-08-22 19:08:45 +08:00
{
}
protected abstract void _OnCellClick(TerrainGridSystem tgs, int cellIndex, int buttonIndex);
protected abstract void _OnClick(Vector2 screenPosition);
2024-07-01 13:08:37 +08:00
2024-11-18 15:41:48 +08:00
public void ClickFromScreen(Vector2 screenPos)
{
_OnClick(screenPos);
}
2024-07-01 13:08:37 +08:00
/// <summary>
/// 检查能否点击地板
/// </summary>
protected void CheckCellClick(TerrainGridSystem tgs, int cellIndex, int buttonIndex)
{
if (GuideManager.Instance.IsGuiding && // 在新手引导中
2024-07-03 14:07:54 +08:00
GuideManager.Instance.IsControlFloor && // 是否控制地板点击
2024-07-01 13:08:37 +08:00
GuideManager.Instance.FloorIndex != cellIndex) // 点击的不是指定地板
{
2024-10-16 13:39:24 +08:00
EventManager.Instance.Send(EventManager.EventName.ToFightModelDragSuc, false);
2024-07-01 13:08:37 +08:00
return;
}
2024-10-16 13:39:24 +08:00
EventManager.Instance.Send(EventManager.EventName.Guide_ClickFloor, cellIndex);
2024-07-01 16:19:07 +08:00
2024-07-11 15:09:44 +08:00
DebugUtil.LogG($"用户点击格子:{cellIndex}");
2024-07-01 13:08:37 +08:00
_OnCellClick(tgs, cellIndex, buttonIndex);
2024-12-27 11:51:27 +08:00
// _TestCode(cellIndex);
// _TestCode2(cellIndex);
// _PerformanceTest(cellIndex);
2024-12-27 11:51:27 +08:00
}
private void _TestCode1(int cellIndex)
2024-12-27 11:51:27 +08:00
{
var blockData = _level.Map.GetBlockData(cellIndex);
if (blockData == null)
{
DebugUtil.LogError("Block data is null");
return;
}
DebugUtil.Log("blockProperty:" + blockData.GetTerrainTypeProperty().crossLevel);
_level.Map.GetRuntimeBlockProperty(cellIndex, out var runtimeBlockProperty);
DebugUtil.Log("runtimeBlockProperty:" + runtimeBlockProperty.crossLevel);
2024-07-01 13:08:37 +08:00
}
private void _TestCode2(int cellIndex)
{
var mathV3 = AroundHelper.GetMathPosV3(cellIndex);
var reCovertIndex = AroundHelper.GetCellIndexV3(mathV3);
DebugUtil.Log("cellIndex:" + cellIndex + " mathV3:" + mathV3 + " recovertIndex:" + reCovertIndex);
cellIndex = reCovertIndex;
var cacheList = new System.Collections.Generic.List<int>();
AroundHelper.GetAround(cellIndex, 10, cacheList);
var centerPos = _level.Map.TerrainGridSystem.CellGetPosition(cellIndex);
// 在对应位置创建一个球体
DebugUtil.CreateSphere(centerPos, 0.5f, 10f);
for (int i = 0; i < cacheList.Count; i++)
{
var searchIndex = cacheList[i];
var worldPos = _level.Map.TerrainGridSystem.CellGetPosition(searchIndex);
Debug.DrawLine(centerPos, worldPos, Color.red, 10);
}
}
private void _TestCode3(int cellIndex)
{
var mapBlockPos = _level.Map.TGSCellIndex2BlockPosition(cellIndex);
var mathV3 = AroundHelper.GetMathPosV3(cellIndex);
DebugUtil.Log("cellIndex:" + cellIndex + " mapBlockPos:" + mapBlockPos + " mathV3:" + mathV3);
// 指定一个方向
var pointsX = new List<Vector3Int>();
pointsX.Add(mathV3 + new Vector3Int(1, 0, 0));
pointsX.Add(mathV3 + new Vector3Int(-1, 0, 0));
var pointsY = new List<Vector3Int>();
pointsY.Add(mathV3 + new Vector3Int(0, 1, 0));
pointsY.Add(mathV3 + new Vector3Int(0, -1, 0));
var pointsZ = new List<Vector3Int>();
pointsZ.Add(mathV3 + new Vector3Int(0, 0, 1));
pointsZ.Add(mathV3 + new Vector3Int(0, 0, -1));
var centerPos = _level.Map.TerrainGridSystem.CellGetPosition(cellIndex);
// 在对应位置创建一个球体
DebugUtil.CreateSphere(centerPos, 0.5f, 10f);
for (int i = 0; i < pointsX.Count; i++)
{
var reCovertIndex = AroundHelper.GetCellIndexV3(pointsX[i]);
var worldPos = _level.Map.TerrainGridSystem.CellGetPosition(reCovertIndex);
Debug.DrawLine(centerPos, worldPos, Color.red, 10);
}
for (int i = 0; i < pointsY.Count; i++)
{
var reCovertIndex = AroundHelper.GetCellIndexV3(pointsY[i]);
var worldPos = _level.Map.TerrainGridSystem.CellGetPosition(reCovertIndex);
Debug.DrawLine(centerPos, worldPos, Color.green, 10);
}
for (int i = 0; i < pointsZ.Count; i++)
{
var reCovertIndex = AroundHelper.GetCellIndexV3(pointsZ[i]);
var worldPos = _level.Map.TerrainGridSystem.CellGetPosition(reCovertIndex);
Debug.DrawLine(centerPos, worldPos, Color.blue, 10);
}
}
private void _PerformanceTest(int cellIndex)
{
UnityEngine.Profiling.Profiler.BeginSample("PerformanceTest - GetAroundMath");
var cacheList = new System.Collections.Generic.List<int>();
for (int i = 0; i < 100; i++)
{
cacheList.Clear();
AroundHelper.GetAroundMath(cellIndex, 7, cacheList);
}
UnityEngine.Profiling.Profiler.EndSample();
UnityEngine.Profiling.Profiler.BeginSample("PerformanceTest - GetAroundLogic");
for (int i = 0; i < 100; i++)
{
cacheList.Clear();
AroundHelper.GetAroundLogic(cellIndex, 7, cacheList);
}
UnityEngine.Profiling.Profiler.EndSample();
}
2023-08-22 19:08:45 +08:00
}
}