LAPTOP-SNT8I5JK\Boounion
2025-04-28 fc881732b096f1c5a6dfcb9751c89f0ffca90768
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
#include "stdafx.h"
#include "CLoadPort.h"
 
 
namespace SERVO {
    CLoadPort::CLoadPort() : CEquipment()
    {
        m_nType = 0;
        m_nMode = 0;
        m_nCassetteType = 0;
        m_nTransferMode = 4;
        m_bEnable = FALSE;
        m_bAutoChangeEnable = FALSE;
    }
 
    CLoadPort::~CLoadPort()
    {
 
    }
 
    const char* CLoadPort::getClassName()
    {
        static char* pszName = "CLoadPort";
        return pszName;
    }
 
    void CLoadPort::init()
    {
        CEquipment::init();
    }
 
    void CLoadPort::term()
    {
        CEquipment::term();
    }
 
    // ±ØÐëҪʵÏÖµÄÐ麯Êý£¬Ôڴ˳õʼ»¯PinÁбí
    void CLoadPort::initPins()
    {
        // ¼ÓÈë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)
    {
        CEquipment::onTimer(nTimerid);
    }
 
    void CLoadPort::serialize(CArchive& ar)
    {
        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);
    }
 
    BOOL CLoadPort::glassWillArrive(CGlass* pGlass)
    {
        BOOL bRet = __super::glassWillArrive(pGlass);
        if (!bRet) {
            return FALSE;
        }
 
        return (m_glassList.size() < 8);
    }
 
    int CLoadPort::sendCassetteCtrlCmd(short cmd,
        short* jobExistence,
        int jobExistenceSize,
        short slotProcess,
        short jopCount,
        CJobDataA* pJobDataA)
    {
        int id = getID();
        if ( !(id == EQ_ID_LOADPORT1 || id == EQ_ID_LOADPORT2) ) {
            return -1;
        }
 
 
        SERVO::CEqCassetteCtrlCmdStep* pStep = (SERVO::CEqCassetteCtrlCmdStep*)getCassetteCtrlCmdStep();
        ASSERT(pStep);
        return pStep->sendCtrlCmd(cmd, jobExistence, jobExistenceSize, slotProcess, jopCount, pJobDataA);
    }
 
    CStep* CLoadPort::getCassetteCtrlCmdStep()
    {
        CStep* pStep = nullptr;
        Lock();
        for (auto item : m_mapStep) {
            if (item.second->getName().find(STEP_EQ_P1_CASSETTE_CTRL_CMD) == 0
                || item.second->getName().find(STEP_EQ_P2_CASSETTE_CTRL_CMD) == 0
                || item.second->getName().find(STEP_EQ_P3_CASSETTE_CTRL_CMD) == 0
                || item.second->getName().find(STEP_EQ_P4_CASSETTE_CTRL_CMD) == 0) {
                pStep = item.second;
            }
        }
        Unlock();
 
        return pStep;
    }
 
    BOOL CLoadPort::isEnable()
    {
        return m_bEnable;
    }
 
    int CLoadPort::getPortType()
    {
        return m_nType;
    }
 
    int CLoadPort::getPortMode()
    {
        return m_nMode;
    }
 
    int CLoadPort::getCessetteType()
    {
        return m_nCassetteType;
    }
 
    int CLoadPort::getTransferMode()
    {
        return m_nTransferMode;
    }
 
    BOOL CLoadPort::isAutoChange()
    {
        return m_bAutoChangeEnable;
    }
 
    /*
     1: Loading Port
     2: Unloading Port
     3: Both Port
     4: Buffer Port-Buffer Type
     5: Buffer Port-Loader in Buffer Type
     6: Buffer Port-Un-loader in Buffer Type
     7: Unloading Partial Port
     */
    std::string& CLoadPort::getPortTypeDescription(int portType, std::string& strDescription)
    {
        switch (portType) {
        case 1:
            strDescription = _T("Loading Port");
            break;
        case 2:
            strDescription = _T("Unloading Port");
            break;
        case 3:
            strDescription = _T("Both Port");
            break;
        case 4:
            strDescription = _T("Buffer Port - Buffer Type");
            break;
        case 5:
            strDescription = _T("Buffer Port - Loader in Buffer Type");
            break;
        case 6:
            strDescription = _T("Buffer Port - Un-loader in Buffer Type");
            break;
        case 7:
            strDescription = _T("Unloading Partial Port");
            break;
        default:
            strDescription = _T("");
            break;
        }
 
        return strDescription;
    }
 
    /*
     0: OutOfService
     1: TransferBlocked
     2: ReadyToLoad
     3: ReadyToUnload
     4: InService
     5: TransferReady
     */
    std::string& CLoadPort::getPortModeDescription(int portMode, std::string& strDescription)
    {
        switch (portMode) {
        case 0:
            strDescription = _T("OutOfService");
            break;
        case 1:
            strDescription = _T("TransferBlocked");
            break;
        case 2:
            strDescription = _T("ReadyToLoad");
            break;
        case 3:
            strDescription = _T("ReadyToUnload");
            break;
        case 4:
            strDescription = _T("InService");
            break;
        case 5:
            strDescription = _T("TransferReady");
            break;
        default:
            strDescription = _T("");
            break;
        }
 
        return strDescription;
    }
 
    /*
     1: G1
     2: G2
     3: G1&G2
     */
    std::string& CLoadPort::getPortCassetteTypeDescription(int casseteType, std::string& strDescription)
    {
        switch (casseteType) {
        case 1:
            strDescription = _T("G1");
            break;
        case 2:
            strDescription = _T("G2");
            break;
        case 3:
            strDescription = _T("G1&G2");
            break;
        default:
            strDescription = _T("");
            break;
        }
 
        return strDescription;
    }
 
    /*
     1: MGV Mode
     2: AGV Mode
     3: Stocker Inline Mode
     */
    std::string& CLoadPort::getPortTransferModeDescription(int mode, std::string& strDescription)
    {
        switch (mode) {
        case 1:
            strDescription = _T("MGV Mode");
            break;
        case 2:
            strDescription = _T("AGV Mode");
            break;
        case 3:
            strDescription = _T("Stocker Inline Mode");
            break;
        default:
            strDescription = _T("");
            break;
        }
 
        return strDescription;
    }
 
 
    /*
     1 : Enable
     2 : Disable
     */
    std::string& CLoadPort::getEnableModeDescription(int mode, std::string& strDescription)
    {
        switch (mode) {
        case 1:
            strDescription = _T("Enable");
            break;
        case 2:
            strDescription = _T("Disable");
            break;
        default:
            strDescription = _T("");
            break;
        }
 
        return strDescription;
    }
}