The final restructured version for automatic build using maven tycho
[Mograsim.git] / plugins / net.mograsim.logic.model / src / net / mograsim / logic / model / model / components / atomic / ModelOrGate.java
diff --git a/plugins/net.mograsim.logic.model/src/net/mograsim/logic/model/model/components/atomic/ModelOrGate.java b/plugins/net.mograsim.logic.model/src/net/mograsim/logic/model/model/components/atomic/ModelOrGate.java
new file mode 100644 (file)
index 0000000..c09569e
--- /dev/null
@@ -0,0 +1,29 @@
+package net.mograsim.logic.model.model.components.atomic;
+
+import net.mograsim.logic.core.components.gates.CoreOrGate;
+import net.mograsim.logic.model.model.LogicModelModifiable;
+import net.mograsim.logic.model.modeladapter.LogicCoreAdapter;
+import net.mograsim.logic.model.modeladapter.componentadapters.SimpleGateAdapter;
+import net.mograsim.logic.model.serializing.IndirectModelComponentCreator;
+
+public class ModelOrGate extends SimpleRectangularModelGate
+{
+       public ModelOrGate(LogicModelModifiable model, int logicWidth)
+       {
+               this(model, logicWidth, null);
+       }
+
+       public ModelOrGate(LogicModelModifiable model, int logicWidth, String name)
+       {
+               super(model, "OrGate", "\u22651", false, logicWidth, name, false);// ">=1"
+               setInputCount(2);
+               init();
+       }
+
+       static
+       {
+               LogicCoreAdapter.addComponentAdapter(new SimpleGateAdapter<>(ModelOrGate.class, CoreOrGate::new));
+               IndirectModelComponentCreator.setComponentSupplier(ModelOrGate.class.getCanonicalName(),
+                               (m, p, n) -> new ModelOrGate(m, p.getAsInt(), n));
+       }
+}
\ No newline at end of file