From 81feab300b56913c624e72e8c348df93da1cdcf4 Mon Sep 17 00:00:00 2001 From: Pistonight Date: Tue, 13 May 2025 11:25:39 -0700 Subject: merge BaseProcHandle and BaseProcUnit TU --- src/KingSystem/ActorSystem/CMakeLists.txt | 2 - src/KingSystem/ActorSystem/actBaseProc.cpp | 5 +- .../ActorSystem/actBaseProcCreateTask.cpp | 1 - src/KingSystem/ActorSystem/actBaseProcHandle.cpp | 165 ++++++++++++++++++--- src/KingSystem/ActorSystem/actBaseProcHandle.h | 72 ++++++++- src/KingSystem/ActorSystem/actBaseProcUnit.cpp | 141 ------------------ src/KingSystem/ActorSystem/actBaseProcUnit.h | 78 ---------- 7 files changed, 220 insertions(+), 244 deletions(-) delete mode 100644 src/KingSystem/ActorSystem/actBaseProcUnit.cpp delete mode 100644 src/KingSystem/ActorSystem/actBaseProcUnit.h (limited to 'src') diff --git a/src/KingSystem/ActorSystem/CMakeLists.txt b/src/KingSystem/ActorSystem/CMakeLists.txt index 2c4514ea..d956ebfa 100644 --- a/src/KingSystem/ActorSystem/CMakeLists.txt +++ b/src/KingSystem/ActorSystem/CMakeLists.txt @@ -96,8 +96,6 @@ target_sources(uking PRIVATE actBaseProcMap.h actBaseProcMgr.cpp actBaseProcMgr.h - actBaseProcUnit.cpp - actBaseProcUnit.h actCCAccessor.h actClusteredRenderer.cpp actClusteredRenderer.h diff --git a/src/KingSystem/ActorSystem/actBaseProc.cpp b/src/KingSystem/ActorSystem/actBaseProc.cpp index 528766d3..ea4f8884 100644 --- a/src/KingSystem/ActorSystem/actBaseProc.cpp +++ b/src/KingSystem/ActorSystem/actBaseProc.cpp @@ -2,14 +2,17 @@ #include #include