LAPTOP-SNT8I5JK\Boounion
2025-03-21 980d4fc1690b4f8a81dc65e8573d2898f34a406f
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
#include "stdafx.h"
#include "CBonder.h"
 
 
namespace SERVO {
    CBonder::CBonder() : CEquipment()
    {
 
    }
 
    CBonder::~CBonder()
    {
 
    }
 
    const char* CBonder::getClassName()
    {
        static char* pszName = "CBonder";
        return pszName;
    }
 
    void CBonder::init()
    {
        CEquipment::init();
    }
 
    void CBonder::term()
    {
        CEquipment::term();
    }
 
    // ±ØÐëҪʵÏÖµÄÐ麯Êý£¬Ôڴ˳õʼ»¯PinÁбí
    void CBonder::initPins()
    {
        // ¼ÓÈëPin³õʼ»¯´úÂë
        LOGI("<CBonder>initPins");
        addPin(SERVO::PinType::INPUT, _T("In"));
        addPin(SERVO::PinType::OUTPUT, _T("Out"));
    }
 
    void CBonder::onTimer(UINT nTimerid)
    {
        CEquipment::onTimer(nTimerid);
    }
 
    void CBonder::serialize(CArchive& ar)
    {
        CEquipment::serialize(ar);
    }
 
    void CBonder::getAttributeVector(CAttributeVector& attrubutes)
    {
        __super::getAttributeVector(attrubutes);
 
        for (auto item : m_inputPins) {
            attrubutes.addAttribute(new CAttribute(item->getName().c_str(),
                std::to_string((int)item->getType()).c_str(), ""));
        }
 
        for (auto item : m_outputPins) {
            attrubutes.addAttribute(new CAttribute(item->getName().c_str(),
                std::to_string((int)item->getType()).c_str(), ""));
        }
 
        for (auto item : m_panelList) {
            attrubutes.addAttribute(new CAttribute("Panel",
                item->getID().c_str(), ""));
        }
    }
 
    int CBonder::recvIntent(CPin* pPin, CIntent* pIntent)
    {
        ASSERT(pPin);
 
        CPin* pFromPin = pPin->getConnectedPin();
        ASSERT(pFromPin);
 
        CEquipment* pFromEq = pFromPin->getEquipment();
        ASSERT(pFromEq);
 
        LOGI("<CBonder><%s-%s>ÊÕµ½À´×Ô<%s.%s>µÄIntent<%d,%s,0x%x>", 
            this->getName().c_str(), 
            pPin->getName().c_str(),
            pFromEq->getName().c_str(), 
            pFromPin->getName().c_str(),
            pIntent->getCode(),
            pIntent->getMsg(),
            pIntent->getContext());
 
 
 
        // ÒÔϽâÊÍ´¦ÀíÊý¾Ý
        int code = pIntent->getCode();
 
 
        // ²âÊÔ
        if (code == FLOW_TEST) {
            AfxMessageBox(pIntent->getMsg());
            return FLOW_ACCEPT;
        }
 
 
        // ÐźÅ
        if (code == FLOW_SIGNAL) {
            return FLOW_ACCEPT;
        }
 
 
        // Êý¾Ý
        if (code == FLOW_SIGNAL) {
            return FLOW_ACCEPT;
        }
 
 
        // ÎïÁÏ
        if (code == FLOW_MOVE_MATERIAL) {
            // Èç¹ûÎÒÕâÀïÊǿյģ¬¿ÉÒÔ½ÓÊÜ
            Lock();
            if (m_panelList.size() < 15) {
                CPanel* pPanel = (CPanel*)pIntent->getContext();
                ASSERT(pPanel);
                pPanel->addRef();
                m_panelList.push_back(pPanel);
                Unlock();
                return FLOW_ACCEPT;
            }
            else {
                Unlock();
                return FLOW_REJECT;
            }
        }
 
        
 
        return FLOW_ACCEPT;
    }
}