mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-04-06 01:56:27 +02:00
Minor changes
This commit is contained in:
parent
f4f1d97504
commit
a8281ebfd3
4 changed files with 19 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
|
||||
import yaml, os
|
||||
import yaml, os, importlib
|
||||
import numpy as np
|
||||
|
||||
class UnitsParser:
|
||||
|
@ -195,3 +195,12 @@ class YAMLPlatformFile:
|
|||
if type(general["interferences"]) != bool:
|
||||
self.parsing_error("interferences should be on or off")
|
||||
self.default["interferences"]=general["interferences"]
|
||||
|
||||
def run(self):
|
||||
callback=None
|
||||
##### First load callback from file if any
|
||||
if self.default["breakpoints_file"] != None:
|
||||
module, ext=os.path.splitext(self.default["breakpoints_file"])
|
||||
imported=importlib.import_module(module)
|
||||
callback=getattr(imported, self.default["breakpoints_callback"])
|
||||
pass
|
||||
|
|
|
@ -7,7 +7,7 @@ general:
|
|||
breakpoints_every: 0
|
||||
# Define the callback to call when the simulator reach a breakpoint
|
||||
breakpoints_callback:
|
||||
file: "platform_test.py"
|
||||
file: "platform_callback.py"
|
||||
callback: "callback"
|
||||
# Turn on/off the debugging of esds
|
||||
debug: off
|
||||
|
|
6
example/platform_callback.py
Normal file
6
example/platform_callback.py
Normal file
|
@ -0,0 +1,6 @@
|
|||
|
||||
|
||||
|
||||
|
||||
def callback(simulator):
|
||||
print("Called :)")
|
|
@ -4,4 +4,5 @@ from esds.helpers.platform import YAMLPlatformFile
|
|||
|
||||
|
||||
|
||||
simulator=YAMLPlatformFile("platform.yaml")
|
||||
s=YAMLPlatformFile("platform.yaml")
|
||||
s.run()
|
Loading…
Add table
Reference in a new issue