From 52e82dcdc401782b58ed50bc14ae270b143370a9 Mon Sep 17 00:00:00 2001
From: LAPTOP-T815PCOQ\25526 <mr.liuyang@126.com>
Date: 星期六, 11 一月 2025 08:35:52 +0800
Subject: [PATCH] 1.添加轴设定和细部设定

---
 SourceCode/Bond/BoounionPLC/Model.h |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/SourceCode/Bond/BoounionPLC/Model.h b/SourceCode/Bond/BoounionPLC/Model.h
index b4a4992..cbdf836 100644
--- a/SourceCode/Bond/BoounionPLC/Model.h
+++ b/SourceCode/Bond/BoounionPLC/Model.h
@@ -1,5 +1,7 @@
 #pragma once
 #include "Configuration.h"
+#include "PLC.h"
+#include <map>
 
 
 class CModel
@@ -14,6 +16,13 @@
 	int init();
 	int term();
 	void onTimer(UINT nTimerid);
+	std::map<std::string, CPLC*>& getPlcMap();
+	int addPlc(const char* pszName, const char* pszIp, const unsigned int port);
+	int removePlc(const char* pszName);
+
+	// 设置/获取当前PLC
+	void setCurrentPlc(CPLC* pPlc);
+	CPLC* getCurrentPlc();
 
 public:
 	int notify(int code);
@@ -29,14 +38,25 @@
 	int notifyTextAndInt(int code, const char* pszText, int exCode);
 	int notifyMesMsg(int code, int stream, int function, const char* pszText);
 
+private:
+	void readPLCDataRegularly();
+
 public:
 	CConfiguration m_configuration;
 
+private:
+	int m_nVelocityRatio;		// 速度比
+	double m_dTactTime;			// 周期时间
+	int m_nDayShiftCapacity;	// 白班产能
+	int m_nNightShiftCapacity;	// 夜班产能
+	bool m_bBlBtnsStates[7];	// PLC View按钮状态
 
 private:
 	IObservable* m_pObservable;
 	IObservableEmitter* m_pObservableEmitter;
 	CString m_strWorkDir;
+	std::map<std::string, CPLC*> m_mapPlc;
+	std::string m_strCurrPlc;
 
 private:
 	int m_nTimerID;

--
Gitblit v1.9.3