From e8a27bb203fe2aff70390a5eca002d7438da9b0f Mon Sep 17 00:00:00 2001
From: mrDarker <mr.darker@163.com>
Date: 星期三, 22 十月 2025 14:24:34 +0800
Subject: [PATCH] Merge branch 'clh' into liuyang

---
 SourceCode/Bond/Servo/RecipeDeviceBindDlg.cpp |  326 +++++++++++++++++++++++++++++++++--------------------
 1 files changed, 202 insertions(+), 124 deletions(-)

diff --git a/SourceCode/Bond/Servo/RecipeDeviceBindDlg.cpp b/SourceCode/Bond/Servo/RecipeDeviceBindDlg.cpp
index 4d3440d..cd10a8b 100644
--- a/SourceCode/Bond/Servo/RecipeDeviceBindDlg.cpp
+++ b/SourceCode/Bond/Servo/RecipeDeviceBindDlg.cpp
@@ -14,12 +14,12 @@
 
 // 缁戝畾鐣岄潰闇�瑕佹樉绀虹殑璁惧
 static const std::vector<DeviceMetaInfo> g_vecBindDevices = {
-    { EQ_ID_VACUUMBAKE,      EQ_NAME_VACUUMBAKE },
-    { EQ_ID_Bonder1,         EQ_NAME_BONDER1 },
-    { EQ_ID_Bonder2,         EQ_NAME_BONDER2 },
-    { EQ_ID_BAKE_COOLING,    EQ_NAME_BAKE_COOLING },
-    { EQ_ID_MEASUREMENT,     EQ_NAME_MEASUREMENT },
-    { EQ_ID_EFEM,            EQ_NAME_EFEM }
+	{ EQ_ID_VACUUMBAKE,      EQ_NAME_VACUUMBAKE },
+	{ EQ_ID_Bonder1,         EQ_NAME_BONDER1 },
+	{ EQ_ID_Bonder2,         EQ_NAME_BONDER2 },
+	{ EQ_ID_BAKE_COOLING,    EQ_NAME_BAKE_COOLING },
+	{ EQ_ID_MEASUREMENT,     EQ_NAME_MEASUREMENT },
+	{ EQ_ID_EFEM,            EQ_NAME_EFEM }
 };
 
 // CRecipeDeviceBindDlg 瀵硅瘽妗�
@@ -28,8 +28,8 @@
 
 CRecipeDeviceBindDlg::CRecipeDeviceBindDlg(CWnd* pParent /*=nullptr*/)
 	: CDialogEx(IDD_DIALOG_RECIPE_DEVICE_BIND, pParent)
-    , m_strPPID(_T(""))
-    , m_strDesc(_T(""))
+	, m_strPPID(_T(""))
+	, m_strDesc(_T(""))
 {
 
 }
@@ -39,25 +39,129 @@
 }
 
 const RecipeInfo& CRecipeDeviceBindDlg::GetRecipeInfo() const {
-    return m_recipe;
+	return m_recipe;
 }
 
 void CRecipeDeviceBindDlg::SetRecipeInfo(const RecipeInfo& info)
 {
-    m_recipe = info;
+	m_recipe = info;
+}
+
+void CRecipeDeviceBindDlg::ReleaseDeviceControls()
+{
+	for (auto& ctrl : m_vecDevices) {
+		delete ctrl.editDeviceID;    ctrl.editDeviceID = nullptr;
+		delete ctrl.editDeviceName;  ctrl.editDeviceName = nullptr;
+		delete ctrl.comboRecipeID;   ctrl.comboRecipeID = nullptr;
+	}
+	m_vecDevices.clear();
+}
+
+void CRecipeDeviceBindDlg::CreateDeviceControls(int nXStart, int nYStart, int nTotalControlWidth, int nRowHeight)
+{
+	for (size_t i = 0; i < g_vecBindDevices.size(); ++i) {
+		int y = nYStart + static_cast<int>(i) * nRowHeight;
+		auto* pEditID = new CEdit;
+		pEditID->Create(WS_CHILD | WS_VISIBLE | WS_BORDER | ES_CENTER, CRect(nXStart, y, nXStart + 100, y + 25), this, (UINT)(IDC_EDIT_DEVICEID_BASE + i));
+		pEditID->SetFont(&m_font);
+
+		auto* pEditName = new CEdit;
+		pEditName->Create(WS_CHILD | WS_VISIBLE | WS_BORDER | ES_CENTER, CRect(nXStart + 110, y, nXStart + 210, y + 25), this, (UINT)(IDC_EDIT_DEVICENAME_BASE + i));
+		pEditName->SetFont(&m_font);
+
+		auto* pCombo = new CComboBox;
+		pCombo->Create(WS_CHILD | WS_VISIBLE | CBS_DROPDOWNLIST, CRect(nXStart + 220, y, nXStart + nTotalControlWidth, y + 25), this, (UINT)(IDC_COMBO_RECIPEID_BASE + i));
+		pCombo->SetFont(&m_font);
+
+		m_vecDevices.push_back({ pEditID, pEditName, pCombo });
+	}
+}
+
+bool CRecipeDeviceBindDlg::FillComboRecipeList(CComboBox* pCombo, int nDeviceID, int nSelectedRecipeID)
+{
+	auto& master = theApp.m_model.getMaster();
+	auto* pEq = master.getEquipment(nDeviceID);
+	if (!pEq) {
+		return false;
+	}
+
+	auto* pRecipeList = pEq->getRecipeList(0);
+	if (!pRecipeList) { 
+		return false;
+	}
+
+	auto& mapRecipeIds = pRecipeList->getIds();
+	bool bFound = false;
+	pCombo->ResetContent();
+	for (const auto& pair : mapRecipeIds) {
+		int nRecipeID = pair.second;
+
+		std::string strDeviceName;
+		for (const auto& dev : g_vecBindDevices) {
+			if (dev.nDeviceID == pEq->getID()) {
+				strDeviceName = dev.strDeviceName;
+			}
+		}
+
+		std::string strRecipeName = RecipeManager::getInstance().getDeviceRecipeName(strDeviceName, nRecipeID);
+		if (strRecipeName.empty()) {
+			strRecipeName = std::to_string(nRecipeID);
+		}
+
+		CString str;
+		str.Format(_T("%s"), strRecipeName.c_str());
+		int idx = pCombo->AddString(str);
+		pCombo->SetItemData(idx, nRecipeID);
+		if (nSelectedRecipeID == nRecipeID) {
+			pCombo->SetCurSel(idx);
+			bFound = true;
+		}
+	}
+
+	if (nSelectedRecipeID != -1 && !bFound) {
+		pCombo->SetCurSel(CB_ERR);
+	}
+	else if (pCombo->GetCount() > 0 && nSelectedRecipeID == -1) {
+		pCombo->SetCurSel(0);
+	}
+
+	return true;
+}
+
+bool CRecipeDeviceBindDlg::FillDeviceInfo(int idx, int nDeviceID, const CString& strDeviceName, int nSelectedRecipeID)
+{
+	if (idx < 0 || idx >= (int)m_vecDevices.size()) {
+		return false;
+	}
+
+	auto& ctrl = m_vecDevices[idx];
+	CString strID;
+	strID.Format(_T("%d"), nDeviceID);
+	ctrl.editDeviceID->SetWindowText(strID);
+	ctrl.editDeviceID->SetReadOnly(TRUE);
+	ctrl.editDeviceName->SetWindowText(strDeviceName);
+	ctrl.editDeviceName->SetReadOnly(TRUE);
+
+	if (!FillComboRecipeList(ctrl.comboRecipeID, nDeviceID, nSelectedRecipeID)) {
+		CString str;
+		str.Format(_T("璁惧 [%s] 鎴栧叾閰嶆柟鍒楄〃鏈壘鍒帮紝璇锋鏌ヨ澶囬厤缃�"), strDeviceName.GetString());
+		AfxMessageBox(str);
+		return false;
+	}
+	return true;
 }
 
 void CRecipeDeviceBindDlg::DoDataExchange(CDataExchange* pDX)
 {
-    CDialogEx::DoDataExchange(pDX);
-    DDX_Text(pDX, IDC_EDIT_PPID, m_strPPID);
-    DDX_Text(pDX, IDC_EDIT_DESC, m_strDesc);
+	CDialogEx::DoDataExchange(pDX);
+	DDX_Text(pDX, IDC_EDIT_PPID, m_strPPID);
+	DDX_Text(pDX, IDC_EDIT_DESC, m_strDesc);
 }
 
 BEGIN_MESSAGE_MAP(CRecipeDeviceBindDlg, CDialogEx)
-    ON_WM_CLOSE()
-    ON_WM_SIZE()
-    ON_BN_CLICKED(IDOK, &CRecipeDeviceBindDlg::OnBnClickedOk)
+	ON_WM_CLOSE()
+	ON_WM_SIZE()
+	ON_BN_CLICKED(IDOK, &CRecipeDeviceBindDlg::OnBnClickedOk)
 END_MESSAGE_MAP()
 
 
@@ -67,75 +171,63 @@
 {
 	CDialogEx::OnInitDialog();
 
-    // TODO:  鍦ㄦ娣诲姞棰濆鐨勫垵濮嬪寲
-    if (m_recipe.vecDeviceList.empty()) {
-        SetWindowText(_T("鏂板缓閰嶆柟"));
+	// 璁剧疆瀵硅瘽妗嗘爣棰�
+	SetWindowText(m_recipe.vecDeviceList.empty() ? _T("鏂板缓閰嶆柟") : _T("缂栬緫閰嶆柟"));
 
-        // 璁剧疆鍥哄畾澶у皬锛堜緥濡� 600x400锛�
-        SetWindowPos(nullptr, 0, 0, 600, 400, SWP_NOMOVE | SWP_NOZORDER);
+	// 鍒涘缓鍔ㄦ�佹帶浠跺瓧浣�
+	if (!m_font.m_hObject) {
+		CFont* pDlgFont = GetFont();
+		LOGFONT lf;
+		if (pDlgFont && pDlgFont->GetLogFont(&lf)) {
+			lf.lfHeight = -16;
+			m_font.CreateFontIndirect(&lf);
+		}
+	}
 
-        // 鍒涘缓鎺т欢
-        const int totalControlWidth = 340;
-        CRect clientRect;
-        GetClientRect(&clientRect);
-        int xStart = (clientRect.Width() - totalControlWidth) / 2;
+	// 璁$畻鍧愭爣
+	CRect rDesc;
+	int nXStart = 30, nYStart = 30, nTotalControlWidth = 340;
+	if (auto* pWndDesc = GetDlgItem(IDC_STATIC_DESC)) {
+		pWndDesc->GetWindowRect(&rDesc); ScreenToClient(&rDesc);
+		nXStart = rDesc.left;
+	}
+	if (auto* pWndEdit = GetDlgItem(IDC_EDIT_DESC)) {
+		pWndEdit->GetWindowRect(&rDesc); ScreenToClient(&rDesc);
+		nYStart = rDesc.bottom + 20;
+	}
+	CRect rClient; GetClientRect(&rClient);
+	nTotalControlWidth = rClient.Width() - nXStart * 2;
+	const int nRowHeight = 30;
 
-        const int nRowHeight = 30;
-        const int yStart = 30; // 椤堕儴璧峰楂樺害
+	// 娓呯┖鏃ф帶浠�
+	ReleaseDeviceControls();
 
-        const int nRowCount = static_cast<int>(g_vecBindDevices.size());
-        for (int i = 0; i < nRowCount; ++i) {
-            int y = yStart + i * nRowHeight;
-            const auto& meta = g_vecBindDevices[i];
+	// 鍒涘缓鏂版帶浠�
+	CreateDeviceControls(nXStart, nYStart, nTotalControlWidth, nRowHeight);
 
-            CEdit* pEditID = new CEdit();
-            pEditID->Create(WS_CHILD | WS_VISIBLE | WS_BORDER, CRect(xStart, y, xStart + 100, y + 25), this, IDC_EDIT_DEVICEID_BASE + i);
+	auto& master = theApp.m_model.getMaster();
 
-            CString strID;
-            strID.Format(_T("%d"), meta.nDeviceID);
-            pEditID->SetWindowText(strID);
-            pEditID->SetReadOnly(TRUE);     // 璁惧ID鍙
+	// 濉厖鍐呭
+	if (m_recipe.vecDeviceList.empty()) { 
+		// 鏂板缓
+		for (size_t i = 0; i < g_vecBindDevices.size(); ++i) {
+			const auto& meta = g_vecBindDevices[i];
+			FillDeviceInfo((int)i, meta.nDeviceID, meta.strDeviceName);
+		}
+	}
+	else { 
+		// 缂栬緫
+		m_strPPID = CA2T(m_recipe.strPPID.c_str());
+		m_strDesc = CA2T(m_recipe.strDescription.c_str());
+		UpdateData(FALSE);
 
-            CEdit* pEditName = new CEdit();
-            pEditName->Create(WS_CHILD | WS_VISIBLE | WS_BORDER, CRect(xStart + 110, y, xStart + 210, y + 25), this, IDC_EDIT_DEVICENAME_BASE + i);
-            pEditName->SetWindowText(CA2T(meta.strDeviceName));
-            pEditName->SetReadOnly(TRUE);   // 璁惧鍚嶇О鍙
+		for (size_t i = 0; i < m_recipe.vecDeviceList.size() && i < m_vecDevices.size(); ++i) {
+			const auto& d = m_recipe.vecDeviceList[i];
+			FillDeviceInfo((int)i, d.nDeviceID, d.strDeviceName.c_str(), d.nRecipeID);
+		}
+	}
 
-            CComboBox* pCombo = new CComboBox();
-            pCombo->Create(WS_CHILD | WS_VISIBLE | CBS_DROPDOWNLIST, CRect(xStart + 220, y, xStart + 340, y + 300), this, IDC_COMBO_RECIPEID_BASE + i);
-
-            // 娣诲姞閫夐」鍒� ComboBox
-            m_vecDevices.push_back({ pEditID, pEditName, pCombo });
-        }
-    }
-    else {
-        SetWindowText(_T("缂栬緫閰嶆柟"));
-
-        m_strPPID = CA2T(m_recipe.strPPID.c_str());
-        m_strDesc = CA2T(m_recipe.strDescription.c_str());
-        UpdateData(FALSE);
-
-        // 璁剧疆璁惧琛屾暟鎹�
-        for (size_t i = 0; i < m_recipe.vecDeviceList.size() && i < m_vecDevices.size(); ++i) {
-            const DeviceRecipe& d = m_recipe.vecDeviceList[i];
-            CString str;
-            // 璁剧疆璁惧ID鍜屽悕绉�
-            str.Format(_T("%d"), d.nDeviceID);
-            m_vecDevices[i].editDeviceID->SetWindowText(str);
-
-            str.Format(_T("%s"), d.strDeviceName.c_str());
-            m_vecDevices[i].editDeviceName->SetWindowText(str);
-
-            /*ComboBox閫夋嫨閰嶆柟ID锛屽悗闈㈤渶瑕佷慨鏀�****/
-            //int nCount = m_vecDevices[i].comboRecipeID->GetCount();
-            //for (int idx = 0; idx < nCount; ++idx) {
-            //    if ((int)m_vecDevices[i].comboRecipeID->GetItemData(idx) == d.nRecipeID) {
-            //        m_vecDevices[i].comboRecipeID->SetCurSel(idx);
-            //        break;
-            //    }
-            //}
-        }
-    }
+	CenterWindow();
 
 	return TRUE;  // return TRUE unless you set the focus to a control
 	// 寮傚父: OCX 灞炴�ч〉搴旇繑鍥� FALSE
@@ -143,67 +235,53 @@
 
 void CRecipeDeviceBindDlg::OnClose()
 {
-    // TODO: 鍦ㄦ娣诲姞娑堟伅澶勭悊绋嬪簭浠g爜鍜�/鎴栬皟鐢ㄩ粯璁ゅ��
-    CDialogEx::OnClose();
+	// TODO: 鍦ㄦ娣诲姞娑堟伅澶勭悊绋嬪簭浠g爜鍜�/鎴栬皟鐢ㄩ粯璁ゅ��
+	CDialogEx::OnClose();
 
-    // 娓呯悊鎺т欢
-    for (auto& device : m_vecDevices) {
-        if (device.editDeviceID) {
-            device.editDeviceID->DestroyWindow();
-            delete device.editDeviceID;
-        }
-        if (device.editDeviceName) {
-            device.editDeviceName->DestroyWindow();
-            delete device.editDeviceName;
-        }
-        if (device.comboRecipeID) {
-            device.comboRecipeID->DestroyWindow();
-            delete device.comboRecipeID;
-        }
-    }
-    m_vecDevices.clear();
+	// 娓呯悊鎺т欢
+	ReleaseDeviceControls();
 }
 
 void CRecipeDeviceBindDlg::OnSize(UINT nType, int cx, int cy)
 {
-    CDialogEx::OnSize(nType, cx, cy);
+	CDialogEx::OnSize(nType, cx, cy);
 
-    // TODO: 鍦ㄦ澶勬坊鍔犳秷鎭鐞嗙▼搴忎唬鐮�
+	// TODO: 鍦ㄦ澶勬坊鍔犳秷鎭鐞嗙▼搴忎唬鐮�
 }
 
 void CRecipeDeviceBindDlg::OnBnClickedOk()
 {
-    // TODO: 鍦ㄦ娣诲姞鎺т欢閫氱煡澶勭悊绋嬪簭浠g爜
-    UpdateData(TRUE);
+	// TODO: 鍦ㄦ娣诲姞鎺т欢閫氱煡澶勭悊绋嬪簭浠g爜
+	UpdateData(TRUE);
 
-    // 鏀堕泦鎵�鏈夎澶囨槧灏�
-    m_recipe.vecDeviceList.clear();
-    for (const auto& dev : m_vecDevices) {
-        DeviceRecipe info;
-        CString strID, strName;
-        dev.editDeviceID->GetWindowText(strID);
-        dev.editDeviceName->GetWindowText(strName);
+	// 鏀堕泦鎵�鏈夎澶囨槧灏�
+	m_recipe.vecDeviceList.clear();
+	for (const auto& dev : m_vecDevices) {
+		DeviceRecipe info;
+		CString strID, strName;
+		dev.editDeviceID->GetWindowText(strID);
+		dev.editDeviceName->GetWindowText(strName);
 
-        int sel = dev.comboRecipeID->GetCurSel();
-        info.nRecipeID = -1;
-        if (sel != CB_ERR) {
-            info.nRecipeID = (int)dev.comboRecipeID->GetItemData(sel);
-        }
-        info.nDeviceID = _ttoi(strID);
-        info.strDeviceName = CT2A(strName);
+		int sel = dev.comboRecipeID->GetCurSel();
+		info.nRecipeID = -1;
+		if (sel != CB_ERR) {
+			info.nRecipeID = (int)dev.comboRecipeID->GetItemData(sel);
+		}
+		info.nDeviceID = _ttoi(strID);
+		info.strDeviceName = CT2A(strName);
 
-        m_recipe.vecDeviceList.push_back(info);
-    }
+		m_recipe.vecDeviceList.push_back(info);
+	}
 
-    // 妫�鏌� PPID 鏄惁涓虹┖
-    if (m_strPPID.IsEmpty()) {
-        AfxMessageBox(_T("閰嶆柟 PPID 涓嶈兘涓虹┖"));
-        return;
-    }
+	// 妫�鏌� PPID 鏄惁涓虹┖
+	if (m_strPPID.IsEmpty()) {
+		AfxMessageBox(_T("閰嶆柟 PPID 涓嶈兘涓虹┖"));
+		return;
+	}
 
-    // PPID鍜屾弿杩�
-    m_recipe.strPPID = CT2A(m_strPPID);
-    m_recipe.strDescription = CT2A(m_strDesc);
+	// PPID鍜屾弿杩�
+	m_recipe.strPPID = CT2A(m_strPPID);
+	m_recipe.strDescription = CT2A(m_strDesc);
 
-    CDialogEx::OnOK();
+	CDialogEx::OnOK();
 }

--
Gitblit v1.9.3