LAPTOP-SNT8I5JK\Boounion
2025-04-25 a8ce9111f9f907afd921609d1828744cead9bd52
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
#include "stdafx.h"
#include "CLoadPort.h"
 
 
namespace SERVO {
    CLoadPort::CLoadPort() : CEquipment()
    {
 
    }
 
    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;
    }
}