X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=plugins%2Fnet.mograsim.logic.model%2Fsrc%2Fnet%2Fmograsim%2Flogic%2Fmodel%2FLogicExecuter.java;h=52adeba0b44968fced83828086fcb2681171de1a;hb=5711229bc04a9495a84f09f6baf446283f228923;hp=77a093522219ef31a6a6cde5a7c83b08559ab150;hpb=26eb7899013bc52e4501ee97422d79d6e1ea2b9c;p=Mograsim.git diff --git a/plugins/net.mograsim.logic.model/src/net/mograsim/logic/model/LogicExecuter.java b/plugins/net.mograsim.logic.model/src/net/mograsim/logic/model/LogicExecuter.java index 77a09352..52adeba0 100644 --- a/plugins/net.mograsim.logic.model/src/net/mograsim/logic/model/LogicExecuter.java +++ b/plugins/net.mograsim.logic.model/src/net/mograsim/logic/model/LogicExecuter.java @@ -5,6 +5,7 @@ import java.util.concurrent.atomic.AtomicLong; import net.mograsim.logic.core.timeline.PauseableTimeFunction; import net.mograsim.logic.core.timeline.Timeline; +import net.mograsim.logic.core.timeline.Timeline.ExecutionResult; //TODO maybe move to logic core? public class LogicExecuter @@ -41,13 +42,16 @@ public class LogicExecuter { while (shouldBeRunningLive.get()) { - // always execute to keep timeline from "hanging behind" for too long - long current = tf.getAsLong(); - timeline.executeUntil(timeline.laterThan(current), System.currentTimeMillis() + 10); + long current = tf.getTime(); + // The tf.isPaused() condition is justified, because timeline.getSimulationTime() returns the timestamp of the last + // processed event during executeUntil() + if (timeline.executeUntil(() -> timeline.laterThan(current).getAsBoolean() || tf.isPaused(), + System.currentTimeMillis() + 10) == ExecutionResult.EXEC_OUT_OF_TIME) + timeline.synchTime(); // TODO: should this also be called if tf.isPaused() condition is met? long nextEventTime = timeline.nextEventTime(); long sleepTime; if (timeline.hasNext()) - sleepTime = tf.simulTimeDeltaToRealTimeMillis(nextEventTime - current); + sleepTime = (long) ((nextEventTime - current) * tf.getSimulTimeToRealTimeFactor()); else sleepTime = 10000; try @@ -82,6 +86,8 @@ public class LogicExecuter if (Timeline.timeCmp(event.getTiming(), nextExecSimulTime.get()) < 0) simulationThread.interrupt(); }); + // not optimal; but we don't expect this to happen very often + tf.addSimulTimeToRealTimeFactorChangedListener(d -> simulationThread.interrupt()); } public void executeNextStep() @@ -131,6 +137,11 @@ public class LogicExecuter return isPaused.get(); } + public double getSpeedFactor() + { + return tf.getSpeedFactor(); + } + public void setSpeedFactor(double factor) { tf.setSpeedFactor(factor);