X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=plugins%2Fnet.mograsim.plugin.core%2Fsrc%2Fnet%2Fmograsim%2Fplugin%2FSimulationPreview.java;h=03a0e34eb68195889fbae0f8bea689634713f2d9;hb=f098cd47d06be0cc654532a5fad0e5e89f0ef93c;hp=5fcc1688f6587580de828e45c7f662a98d5c5d8a;hpb=7d05144c25daa53e60fc9ed9fd503546a86567f8;p=Mograsim.git diff --git a/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/SimulationPreview.java b/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/SimulationPreview.java index 5fcc1688..03a0e34e 100644 --- a/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/SimulationPreview.java +++ b/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/SimulationPreview.java @@ -17,28 +17,25 @@ import net.mograsim.logic.model.model.wires.ModelWire; import net.mograsim.logic.model.model.wires.ModelWireCrossPoint; import net.mograsim.logic.model.modeladapter.CoreModelParameters; import net.mograsim.logic.model.modeladapter.LogicCoreAdapter; -import net.mograsim.preferences.Preferences; +import net.mograsim.logic.model.preferences.RenderPreferences; +import net.mograsim.plugin.preferences.EclipseRenderPreferences; public class SimulationPreview implements IThemePreview { private LogicUICanvas ui; private LogicExecuter exec; - private Preferences oldPreferences; - private Preferences currentThemePreferences; @Override @SuppressWarnings("unused") public void createControl(Composite parent, ITheme currentTheme) { - oldPreferences = Preferences.current(); - - currentThemePreferences = new ThemePreferences(currentTheme); - // TODO this will change the global preferences; so if another LogicUICanvas redraws, it will use the "new" colors too. - Preferences.setPreferences(currentThemePreferences); + RenderPreferences currentThemeRenderPrefs = new EclipseRenderPreferences(currentTheme, + MograsimActivator.instance().getPreferenceStore()); LogicModelModifiable model = new LogicModelModifiable(); CoreModelParameters params = new CoreModelParameters(); params.gateProcessTime = 50; + params.hardcodedComponentProcessTime = params.gateProcessTime * 5; params.wireTravelTime = 10; ModelManualSwitch rIn = new ModelManualSwitch(model, 1); @@ -85,7 +82,7 @@ public class SimulationPreview implements IThemePreview rIn.clicked(0, 0); - ui = new LogicUICanvas(parent, SWT.NONE, model); + ui = new LogicUICanvas(parent, SWT.NONE, model, currentThemeRenderPrefs); ui.zoom(3.5, 10, 10); exec.startLiveExecution(); @@ -97,7 +94,5 @@ public class SimulationPreview implements IThemePreview public void dispose() { exec.stopLiveExecution(); - if (Preferences.current() == currentThemePreferences) - Preferences.setPreferences(oldPreferences); } }