-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlogicgate.py
111 lines (90 loc) · 2.72 KB
/
logicgate.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
# oop demonstration
class LogicGate(object):
def __init__(self, n):
self.label = n
self.output = None
def getLabel(self):
return self.label
def getOutput(self):
self.output = self.performGateLogic()
return self.output
class BinaryGate(LogicGate):
def __init__(self, n):
super(BinaryGate, self).__init__(n)
self.pinA = None
self.pinB = None
def getPinA(self):
if self.pinA == None:
return int(input("Enter Pin A input for gate "+ \
self.getLabel()+"-->"))
else:
return self.pinA.getFrom().getOutput()
def getPinB(self):
if self.pinB == None:
return int(input("Enter Pin B input for gate "+ \
self.getLabel()+"-->"))
else:
return self.pinB.getFrom().getOutput()
def setNextPin(self, source):
if self.pinA == None:
self.pinA = source
else:
if self.pinB == None:
self.pinB = source
else:
raise RuntimeError("Error: NO EMPTY PINS")
class UnaryGate(LogicGate):
def __init__(self, n):
super(UnaryGate, self).__init__(n)
self.pin = None
def getPin(self):
return int(input("Enter Pin input for gate "+ \
self.getLabel()+"-->"))
class AndGate(BinaryGate):
def __init__(self,n):
super(AndGate, self).__init__(n)
def performGateLogic(self):
a = self.getPinA()
b = self.getPinB()
if a==1 and b==1:
return 1
else:
return 0
class NandGate(AndGate):
def __init__(self, n):
super(NandGate, self).__init__(n)
def performGateLogic(self):
return not super(NandGate, self).performGateLogic()
class OrGate(BinaryGate):
def __init__(self,n):
super(OrGate, self).__init__(n)
def performGateLogic(self):
a = self.getPinA()
b = self.getPinB()
if a==1 or b==1:
return 1
else:
return 0
class NorGate(OrGate):
def __init__(self, n):
super(NorGate, self).__init__(n)
def performGateLogic(self):
return not super(NorGate, self).performGateLogic()
class NotGate(UnaryGate):
def __init__(self,n):
super(NotGate, self).__init__(n)
def performGateLogic(self):
a = self.getPin()
if a == 1:
return 0
else:
return 1
class Connector(object):
def __init__(self, fgate, tgate):
self.fromgate = fgate
self.togate = tgate
tgate.setNextPin(self)
def getFrom(self):
return self.fromgate
def getTo(self):
return self.togate