/******************************************************************************* * This file is part of logisim-evolution. * * logisim-evolution 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. * * logisim-evolution 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 logisim-evolution. If not, see <http://www.gnu.org/licenses/>. * * Original code by Carl Burch (http://www.cburch.com), 2011. * Subsequent modifications by : * + Haute École Spécialisée Bernoise * http://www.bfh.ch * + Haute École du paysage, d'ingénierie et d'architecture de Genève * http://hepia.hesge.ch/ * + Haute École d'Ingénierie et de Gestion du Canton de Vaud * http://www.heig-vd.ch/ * The project is currently maintained by : * + REDS Institute - HEIG-VD * Yverdon-les-Bains, Switzerland * http://reds.heig-vd.ch *******************************************************************************/ package com.cburch.logisim.std.memory; import java.awt.Graphics; import com.cburch.logisim.data.Attribute; import com.cburch.logisim.data.AttributeSet; import com.cburch.logisim.data.Attributes; import com.cburch.logisim.data.BitWidth; import com.cburch.logisim.data.Bounds; import com.cburch.logisim.data.Value; import com.cburch.logisim.instance.Instance; import com.cburch.logisim.instance.InstanceData; import com.cburch.logisim.instance.InstanceFactory; import com.cburch.logisim.instance.InstanceLogger; import com.cburch.logisim.instance.InstancePainter; import com.cburch.logisim.instance.InstanceState; import com.cburch.logisim.instance.Port; import com.cburch.logisim.instance.StdAttr; import com.cburch.logisim.tools.key.BitWidthConfigurator; import com.cburch.logisim.util.GraphicsUtil; import com.cburch.logisim.util.StringUtil; public class Random extends InstanceFactory { public static class Logger extends InstanceLogger { @Override public String getLogName(InstanceState state, Object option) { String ret = state.getAttributeValue(StdAttr.LABEL); return ret != null && !ret.equals("") ? ret : null; } @Override public Value getLogValue(InstanceState state, Object option) { BitWidth dataWidth = state.getAttributeValue(StdAttr.WIDTH); if (dataWidth == null) dataWidth = BitWidth.create(0); StateData data = (StateData) state.getData(); if (data == null) return Value.createKnown(dataWidth, 0); return Value.createKnown(dataWidth, data.value); } } private static class StateData extends ClockState implements InstanceData { private final static long multiplier = 0x5DEECE66DL; private final static long addend = 0xBL; private final static long mask = (1L << 48) - 1; private long initSeed; private long curSeed; private int value; public StateData(Object seed) { reset(seed); } void reset(Object seed) { long start = seed instanceof Integer ? ((Integer) seed).intValue() : 0; if (start == 0) { // Prior to 2.7.0, this would reset to the seed at the time of // the StateData's creation. It seems more likely that what // would be intended was starting a new sequence entirely... start = (System.currentTimeMillis() ^ multiplier) & mask; if (start == initSeed) { start = (start + multiplier) & mask; } } this.initSeed = start; this.curSeed = start; this.value = (int) start; } void step() { long v = curSeed; v = (v * multiplier + addend) & mask; curSeed = v; value = (int) (v >> 12); } } static final Attribute<Integer> ATTR_SEED = Attributes.forInteger("seed", Strings.getter("randomSeedAttr")); static final int OUT = 0; public static final int CK = 1; static final int NXT = 2; static final int RST = 3; public Random() { super("Random", Strings.getter("randomComponent")); setAttributes(new Attribute[] { StdAttr.WIDTH, ATTR_SEED, StdAttr.EDGE_TRIGGER, StdAttr.LABEL, StdAttr.LABEL_FONT }, new Object[] { BitWidth.create(8), Integer.valueOf(0), StdAttr.TRIG_RISING, "", StdAttr.DEFAULT_LABEL_FONT }); setKeyConfigurator(new BitWidthConfigurator(StdAttr.WIDTH)); setOffsetBounds(Bounds.create(0, 0, 80, 90)); setIconName("random.gif"); setInstanceLogger(Logger.class); Port[] ps = new Port[4]; ps[OUT] = new Port(80, 80, Port.OUTPUT, StdAttr.WIDTH); ps[CK] = new Port(0, 50, Port.INPUT, 1); ps[NXT] = new Port(0, 40, Port.INPUT, 1); ps[RST] = new Port(0, 30, Port.INPUT, 1); ps[OUT].setToolTip(Strings.getter("randomQTip")); ps[CK].setToolTip(Strings.getter("randomClockTip")); ps[NXT].setToolTip(Strings.getter("randomNextTip")); ps[RST].setToolTip(Strings.getter("randomResetTip")); setPorts(ps); } @Override protected void configureNewInstance(Instance instance) { Bounds bds = instance.getBounds(); instance.setTextField(StdAttr.LABEL, StdAttr.LABEL_FONT, bds.getX() + bds.getWidth() / 2, bds.getY() - 3, GraphicsUtil.H_CENTER, GraphicsUtil.V_BASELINE); } private void DrawControl(InstancePainter painter, int xpos, int ypos, int NrOfBits) { Graphics g = painter.getGraphics(); GraphicsUtil.switchToWidth(g, 2); g.drawLine(xpos + 10, ypos, xpos + 70, ypos); g.drawLine(xpos + 10, ypos, xpos + 10, ypos + 60); g.drawLine(xpos + 70, ypos, xpos + 70, ypos + 60); g.drawLine(xpos + 10, ypos + 60, xpos + 20, ypos + 60); g.drawLine(xpos + 60, ypos + 60, xpos + 70, ypos + 60); g.drawLine(xpos + 20, ypos + 60, xpos + 20, ypos + 70); g.drawLine(xpos + 60, ypos + 60, xpos + 60, ypos + 70); String Name = "RNG" + Integer.toString(NrOfBits); GraphicsUtil.drawText(g, Name, xpos + 40, ypos + 8, GraphicsUtil.H_CENTER, GraphicsUtil.V_CENTER); g.drawLine(xpos, ypos + 30, xpos + 10, ypos + 30); GraphicsUtil.drawText(g, "R", xpos + 20, ypos + 30, GraphicsUtil.H_LEFT, GraphicsUtil.V_CENTER); painter.drawPort(RST); g.drawLine(xpos, ypos + 40, xpos + 10, ypos + 40); GraphicsUtil.drawText(g, "EN", xpos + 20, ypos + 40, GraphicsUtil.H_LEFT, GraphicsUtil.V_CENTER); painter.drawPort(NXT); painter.drawClockSymbol(xpos + 10, ypos + 50); GraphicsUtil.switchToWidth(g, 2); if (painter.getAttributeValue(StdAttr.EDGE_TRIGGER).equals( StdAttr.TRIG_FALLING)) { g.drawOval(xpos, ypos + 45, 10, 10); } else { g.drawLine(xpos, ypos + 50, xpos + 10, ypos + 50); } painter.drawPort(CK); GraphicsUtil.switchToWidth(g, 1); } private void DrawData(InstancePainter painter, int xpos, int ypos, int NrOfBits, int Value) { Graphics g = painter.getGraphics(); GraphicsUtil.switchToWidth(g, 2); g.drawRect(xpos, ypos, 80, 20); if (painter.getShowState()) { String str = StringUtil.toHexString(NrOfBits, Value); GraphicsUtil.drawCenteredText(g, str, xpos + 40, ypos + 10); } painter.drawPort(OUT); GraphicsUtil.switchToWidth(g, 1); } @Override public String getHDLName(AttributeSet attrs) { return "LogisimRNG"; } @Override public boolean HDLSupportedComponent(String HDLIdentifier, AttributeSet attrs) { if (MyHDLGenerator == null) MyHDLGenerator = new RandomHDLGeneratorFactory(); return MyHDLGenerator.HDLTargetSupported(HDLIdentifier, attrs); } @Override public void paintInstance(InstancePainter painter) { Bounds bds = painter.getBounds(); int x = bds.getX(); int y = bds.getY(); StateData state = (StateData) painter.getData(); int val = state == null ? 0 : state.value; BitWidth widthVal = painter.getAttributeValue(StdAttr.WIDTH); int width = widthVal == null ? 8 : widthVal.getWidth(); painter.drawLabel(); DrawControl(painter, x, y, width); DrawData(painter, x, y + 70, width, val); } @Override public void propagate(InstanceState state) { StateData data = (StateData) state.getData(); if (data == null) { data = new StateData(state.getAttributeValue(ATTR_SEED)); state.setData(data); } BitWidth dataWidth = state.getAttributeValue(StdAttr.WIDTH); Object triggerType = state.getAttributeValue(StdAttr.EDGE_TRIGGER); boolean triggered = data.updateClock(state.getPortValue(CK), triggerType); if (state.getPortValue(RST) == Value.TRUE) { data.reset(state.getAttributeValue(ATTR_SEED)); } else if (triggered && state.getPortValue(NXT) != Value.FALSE) { data.step(); } state.setPort(OUT, Value.createKnown(dataWidth, data.value), 4); } }