summaryrefslogtreecommitdiff
path: root/Gate.cpp
blob: 33313f3d510a3d648a4f76e89d00450d26e788cf (plain)
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
/*
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#include "Gate.h"

int Object::object_id_counter = 0; // initialise static object counter FIXME: do it somehwere else?

Gate::Gate(GATE_TYPE type, int x, int y, int width, int height, int loaded_id)
{
	set_object_type(Object::GATE);
	this->gate_type = type;
	this->input_gate1 = nullptr;
	this->input_gate2 = nullptr;
	this->input_gate3 = nullptr;
	//this->output_gate = nullptr;

	/* special handing of id - if the gate is loaded from file the loaded_id will be set and we use that */
	if (loaded_id != -1)
		this->id = loaded_id;
	else
		this->id = Object::object_id_counter++; // increment counter after assigning
	this->x = x;
	this->y = y;
	this->w = width;
	this->h = height;
}

Gate::~Gate() {}


void
Gate::remove_input_object(int id)
{
	if (input_gate1)
	{
		if (input_gate1->get_id() == id)
			input_gate1 = nullptr;
	}

	if (input_gate2)
	{
		if (input_gate2->get_id() == id)
			input_gate2 = nullptr;
	}

	if (input_gate3)
	{
		if (input_gate3->get_id() == id)
			input_gate3 = nullptr;
	}

}

void Gate::update_state()
{
	switch (this->gate_type)
	{
		case INPUT:
		{
			/* we're a simple input, do nothing */
			break;
		}

		case OUTPUT:
		{
			if (input_gate1 && input_gate1->get_output_state() == true)
			{
				this->output_state = true;
			}
			else
			{
				this->output_state = false;
			}
			break;
		}

		case AND:
		{
			if (!input_gate1 || !input_gate2) {this->output_state = false; return; }
			output_state = input_gate1->get_output_state() & input_gate2->get_output_state();
			break;
		}


		case OR:
		{
			if (!input_gate1 || !input_gate2) {this->output_state = false; return; }
			output_state = input_gate1->get_output_state() | input_gate2->get_output_state();
			break;
		}


		case NOT:
		{
			/* NOT only cares for input 1 */
			if (!input_gate1) {this->output_state = false; return; }
			output_state = !input_gate1->get_output_state();
			break;
		}


		case NAND:
		{
			if (!input_gate1 || !input_gate2) {this->output_state = false; return; }
			output_state = !(input_gate1->get_output_state() & input_gate2->get_output_state());
			break;
		}

		case NAND3:
		{
			if (!input_gate1 || !input_gate2 || !input_gate3) { output_state = false; return; }
			output_state = !(input_gate1->get_output_state() && input_gate2->get_output_state() && input_gate3->get_output_state());
			break;
		}

		case NOR:
		{
			if (!input_gate1 || !input_gate2) {this->output_state = false; return; }
			output_state = !(input_gate1->get_output_state() | input_gate2->get_output_state());
			break;
		}


		case XOR:
		{
			if (!input_gate1 || !input_gate2) {this->output_state = false; return; }
			output_state = input_gate1->get_output_state() ^ input_gate2->get_output_state();
			break;
		}


		case XNOR:
		{
			if (!input_gate1 || !input_gate2) {this->output_state = false; return; }
			output_state = !(input_gate1->get_output_state() ^ input_gate2->get_output_state());
			break;
		}

		default:
			break;
	}
}

std::string
Gate::get_output_type_text()
{
	std::string out;
	switch (this->gate_type)
	{
		case INPUT:
		{
			return "INPUT";
		}
		case OUTPUT:
		{
			return "OUTPUT";
		}
		case AND:
		{
			return "AND";
		}
		case OR:
		{
			return "OR";
		}
		case NOT:
		{
			return "NOT";
		}
		case NAND:
		{
			return "NAND";
		}
		case NAND3:
		{
			return "3NAND";
		}
		case NOR:
		{
			return "NOR";
		}
		case XOR:
		{
			return "XOR";
		}
		case XNOR:
		{
			return "XNOR";
		}
		default:
		return "?";
	}
}