-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc1_logic_gate1.py
126 lines (98 loc) · 3.06 KB
/
c1_logic_gate1.py
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
class Connector(object):
# 关联ingate和outgate。如何关联? 取得ingate的输出并将其设置outgate的输入。
def __init__(self, ingate, outgate):
self.fromgate = ingate
self.togate = outgate
outgate.set_pin(self)
def get_value(self):
return self.fromgate
class LogicGate(object):
def __init__(self, n):
self.label = n
self.output = None
def get_label(self):
return self.label
def get_output(self):
return self.gate_performance()
class BinaryGate(LogicGate):
def __init__(self, n):
super().__init__(n)
self.pinA = None
self.pinB = None
def set_pin(self, connector):
# set和get,set是为了给self.pinA赋值(self.pinA=...)。get是为了调用这个self.pinA的值(return一个值)
if self.pinA is None:
# self.pinA = connector
self.pinA = connector.get_value().get_output()
else:
if self.pinB is None:
self.pinB = connector.get_value().get_output()
else:
raise RuntimeError('Too Many Input!')
def get_pinA(self):
if self.pinA is None:
return int(input(self.get_label() + '--PinA(1 or 0):'))
else:
# return self.pinA.get_value().get_output()
return self.pinA
def get_pinB(self):
if self.pinB is None:
return int(input(self.get_label() + '--PinB(1 or 0):'))
else:
# return self.pinB.get_value().get_output()
return self.pinB
class SingleGate(LogicGate):
def __init__(self, n):
super().__init__(n)
self.pin_in = None
def set_pin(self, connector):
if self.pin_in is None:
# self.pin_in = connector
self.pin_in = connector.get_value().get_output()
else:
raise RuntimeError('Too Many Input!')
def get_pin_in(self):
if self.pin_in is None:
return int(input(self.get_label() + '--Pin_in(1 or 0):'))
else:
# return self.pin_in.get_value().get_output()
return self.pin_in
class AndGate(BinaryGate):
def __init__(self, n):
super().__init__(n)
def gate_performance(self):
a = self.get_pinA()
b = self.get_pinB()
if a == 1 and b == 1:
return 1
else:
return 0
class OrGate(BinaryGate):
def __init__(self, n):
super().__init__(n)
def gate_performance(self):
a = self.get_pinA()
b = self.get_pinB()
if a == 0 and b == 0:
return 0
else:
return 1
class NotGate(SingleGate):
def __init__(self, n):
super().__init__(n)
def gate_performance(self):
a = self.get_pin_in()
if a == 1:
return 0
else:
return 1
def test():
g1 = AndGate('G1')
g2 = AndGate('G2')
g3 = OrGate('G3')
g4 = NotGate("G4")
c1 = Connector(g1, g3)
c2 = Connector(g2, g3)
c3 = Connector(g3, g4)
print(g4.get_output())
test()