From 60fce85863e07388db589bd26da73c3bbc1c7299 Mon Sep 17 00:00:00 2001
From: LAPTOP-SNT8I5JK\Boounion <Chenluhua@qq.com>
Date: 星期一, 24 三月 2025 10:16:25 +0800
Subject: [PATCH] 1.选中连接图中的节点,更新显示属性,为方便快速调试;

---
 SourceCode/Bond/Servo/CLoadPort.cpp |   31 +++++++++++++++++++++++++++++++
 1 files changed, 31 insertions(+), 0 deletions(-)

diff --git a/SourceCode/Bond/Servo/CLoadPort.cpp b/SourceCode/Bond/Servo/CLoadPort.cpp
index bda1be4..feef8e9 100644
--- a/SourceCode/Bond/Servo/CLoadPort.cpp
+++ b/SourceCode/Bond/Servo/CLoadPort.cpp
@@ -34,6 +34,9 @@
 	{
 		// 加入Pin初始化代码
 		LOGI("<CLoadPort>initPins");
+		addPin(SERVO::PinType::INPUT, _T("In"));
+		addPin(SERVO::PinType::OUTPUT, _T("Out1"));
+		addPin(SERVO::PinType::OUTPUT, _T("Out2"));
 	}
 
 	void CLoadPort::onTimer(UINT nTimerid)
@@ -45,4 +48,32 @@
 	{
 		CEquipment::serialize(ar);
 	}
+
+	void CLoadPort::getAttributeVector(CAttributeVector& attrubutes)
+	{
+		__super::getAttributeVector(attrubutes);
+	}
+
+	int CLoadPort::recvIntent(CPin* pPin, CIntent* pIntent)
+	{
+		return __super::recvIntent(pPin, pIntent);
+	}
+
+	int CLoadPort::outputGlass(int port)
+	{
+		// 如果列表中没有Panel,模拟生成10张
+		if (m_glassList.empty()) {
+			static int ii = 0;
+			char szBuffer[64];
+			LOGI("<CLoadPort>模拟生成10张PANEL");
+			for (int i = 0; i < 10; i++) {
+				sprintf_s(szBuffer, "P20250320A1A%d", ++ii);
+				CGlass* pGlass = new CGlass();
+				pGlass->setID(szBuffer);
+				addGlassToList(pGlass);
+			}
+		}
+
+		return __super::outputGlass(port);
+	}
 }

--
Gitblit v1.9.3