67 lines
No EOL
2.9 KiB
Lua
67 lines
No EOL
2.9 KiB
Lua
local Quaternion = CS.UnityEngine.Quaternion
|
|
local XGDComponet = require("XEntity/XGuildDorm/Components/XGDComponet")
|
|
local XGuildDormHelper = CS.XGuildDormHelper
|
|
local XGDFurnitureInteractComponent = XClass(XGDComponet, "XGDFurnitureInteractComponent")
|
|
|
|
function XGDFurnitureInteractComponent:Ctor(role)
|
|
self.Role = role
|
|
self.MoveAgent = nil
|
|
self.Transform = nil
|
|
self.AngleSpeed = XGuildDormConfig.GetRoleInteracAngleSpeed()
|
|
self.IsDirectInteract = false
|
|
end
|
|
|
|
function XGDFurnitureInteractComponent:Init()
|
|
XGDFurnitureInteractComponent.Super.Init(self)
|
|
self:UpdateRoleDependence()
|
|
end
|
|
|
|
function XGDFurnitureInteractComponent:UpdateRoleDependence()
|
|
self.MoveAgent = self.Role:GetMoveAgent()
|
|
self.Transform = self.Role:GetRLRole():GetTransform()
|
|
end
|
|
|
|
function XGDFurnitureInteractComponent:BeginInteract(currentInteractInfo, isDirectInteract)
|
|
if isDirectInteract == nil then isDirectInteract = false end
|
|
if self.Transform:EqualsPosition(currentInteractInfo.InteractPos.transform.position, 0.1) then
|
|
isDirectInteract = true
|
|
end
|
|
self.IsDirectInteract = isDirectInteract
|
|
self.Role:UpdateInteractStatus(XGuildDormConfig.InteractStatus.Begin)
|
|
-- 设置导航中交互点
|
|
if isDirectInteract then
|
|
self.Transform.position = currentInteractInfo.InteractPos.transform.position
|
|
self.Transform.rotation = currentInteractInfo.InteractPos.transform.rotation
|
|
else
|
|
if not self.MoveAgent:SetDestination(currentInteractInfo.InteractPos.transform) then
|
|
XLog.Error("当前家具交互导航点错误,无法前往")
|
|
XScheduleManager.ScheduleOnce(function()
|
|
self.Role:UpdateInteractStatus(XGuildDormConfig.InteractStatus.End)
|
|
end, 1)
|
|
return
|
|
end
|
|
end
|
|
-- 改变状态
|
|
self.Role:ChangeStateMachine(XGuildDormConfig.RoleFSMType.MOVE)
|
|
self.Role:EnableCharacterController(false)
|
|
end
|
|
|
|
function XGDFurnitureInteractComponent:Update(dt)
|
|
if self.MoveAgent.IsArrive or self.IsDirectInteract then
|
|
if self.Role:GetInteractStatus() == XGuildDormConfig.InteractStatus.Begin then
|
|
local currentInteractInfo = self.Role:GetCurrentInteractInfo()
|
|
self.Role:ChangeStateMachine(XGuildDormConfig.RoleFSMType.IDLE)
|
|
self.Role:PlayBehaviorByType(currentInteractInfo.BehaviorType)
|
|
self.Role:UpdateInteractStatus(XGuildDormConfig.InteractStatus.Playing)
|
|
elseif self.Role:GetInteractStatus() == XGuildDormConfig.InteractStatus.Playing then
|
|
local turnToData = self.Role:GetAgent():GetVarDicByKey("TurnToData")
|
|
if turnToData == nil then return end
|
|
if XGuildDormHelper.SlerpTransformRotation(self.Transform, turnToData.rotation, self.AngleSpeed * dt) then
|
|
if turnToData.finishedCb then turnToData.finishedCb() end
|
|
self.Role:GetAgent():SetVarDicByKey("TurnToData", nil)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
return XGDFurnitureInteractComponent |