开云体育

Script help please #scripting


 

I want to modify the "PreferencesExamples" script to show me the - Preferences - System manufacture and System connection.
I want to check when I'm in " Digitrax - LocoNet Simulator " mode, for use in another script.
?
I can't find the info on how to reference these points.
Any help would be appreciated thanks.
?


 

On 3/23/2025 3:34 AM, richard.taplin via groups.io wrote:
I want to modify the "PreferencesExamples" script to show me the - Preferences - System manufacture and System connection.
I want to check when I'm in " Digitrax - LocoNet Simulator " mode, for use in another script.
I can't find the info on how to reference these points.

I do something in a jython script to figure out whether I run a "CMRI Simulator" connection or a connection with real physical connection. It loops thru the configured connections in the current JMRI run's "Edit"->"Preferences", and checks each to find if its "System Connection" is set to "C/MRI Sinulator". If any connection is "C/MRI Sinulator", it sets that variable to "True". If one uses a "C/MRI Simulator", it sets the variable to "True". If NONE of the connections uses "C/MRI Simulator", it sets the variable to "False".


Here is the script. Hopefully the "spacing" has not been changed to "tabs" the way I have included it below...

### begin of Jython script


#
# Called by an initialization Logix or a Start Up action
#
# Checks the list of connections for a specified simulator.
# If found, sets the simulation sensor to Active, otherwise Inactive.
#
# Script originally by Dave Sand, modified by Bob Milhaupt

import jmri
import java

logLevel = 0

# an array, sensorNames, which is used to define an internal
# Sensor. The array defines the Sensor as:
#
# a string with the System Name of the variable, and
#
# a string with the User Name of the variable
# .

sensorNames = ['IS9997', 'Running Under CMRI Simulator']

nameOfSimulatorConnection = 'C/MRI Simulator'
simulatorMode = False

simSensor = sensors.getSensor(sensorNames[0])
if simSensor is None:
simSensor = sensors.provideSensor(sensorNames[0])
simSensor.setUserName(sensorNames[1])

connectionList = jmri.InstanceManager.getDefault(jmri.jmrix.ConnectionConfigManager).getConnections()

if len(connectionList) == 0:
print 'No connections found'
else:
for connection in connectionList:
if logLevel > 1: print connection
chkName = connection.name()
if logLevel > 0: print 'connection name = {}'.format(chkName)
if not chkName:
print 'Unable to retrieve connection name'
else:
print "Target {} compared to connection named " \
+"{}".format(nameOfSimulatorConnection, chkName)
if nameOfSimulatorConnection in chkName:
if logLevel > 1: print 'found matching connection name!'
simulatorMode = True

if logLevel > 0: print simulatorMode
if simulatorMode:
print '....Setup simulation mode: {}'.format(chkName)
simSensor.setKnownState(ACTIVE)
else:
print '....Setup connected mode'
simSensor.setKnownState(INACTIVE)

### end of Jython script

One could change the Jython script to be sensitive to some other "Simulator" connection by changing the value in the "nameOfSimulatorConnection" variable to an appropriate simulator name.

Two changes are needed in the script. First, change the "user name" in the internal Sensor declaration:


### begin change of Jython script
sensorNames = ['IS9997', 'Running Under LocoNet Simulator']
### end of change of Jython script


And use the following line for checking for a LocoNet Simulator connection:

### begin change of Jython script
nameOfSimulatorConnection = 'LocoNet Simulator'
### end of change of Jython script



Hope that helps!


 

Richard,

Billybob has provided a script that sets a sensor to indicate the connection type.

If you are using JMRI 5.2 or later, an alternate approach is to use LogixNG to set a sensor.


Dave Sand


----- Original message -----
From: "richard.taplin via groups.io" <richard.taplin=[email protected]>
Subject: [jmriusers] Script help please
Date: Sunday, March 23, 2025 2:34 AM

I want to modify the "PreferencesExamples" script to show me the - Preferences - System manufacture and System connection.
I want to check when I'm in " Digitrax - LocoNet Simulator " mode, for use in another script.
?
I can't find the info on how to reference these points.
Any help would be appreciated thanks.
?


 

I’m slowly learning the program

I’ve got the part to find the mode working, but have found another problem

I’m using the "TurnoutStatePersistence" script and added a new class for finding the LocoNet Simulator? mode

The script I’m using is set up as several classes.

I can set a variable with the loconet result in its class , but the value won’t show up in the other classes

I have tried using a variable set at the start of the script

This will show up in the different classes, but i can’t change it in one class and it stay changed in the next class

nothing I’ve tried semes to work

Help please


 

Richard,

One way to share data between Jython classes is to use sensors for states and memory variables for values.

If you really want to share the data within the Jython context, you have to use the "global" option. ?When a variable is modified within a class, the local variable will be modified. ?This will not be visible to other classes. ?If the first statement in the function is "global varname", the subsequent changes to the variable will be visible to other classes.

Here is an example:

# declaring and initializing a global variable
global_var = "I am a global variable."

def func():
??? # accessing and modifying the global variable within the function
??? global global_var
??? global_var = "I have been modified."

# calling the function to modify the global variable
func()

# printing the modified value of the global variable
print(global_var)??? # Output: "I have been modified."


Dave Sand



----- Original message -----
From: "richard.taplin via groups.io" <richard.taplin=[email protected]>
Subject: Re: [jmriusers] Script help please #scripting
Date: Monday, March 24, 2025 2:15 PM

I’m slowly learning the program

I’ve got the part to find the mode working, but have found another problem

I’m using the "TurnoutStatePersistence" script and added a new class for finding the LocoNet Simulator? mode

The script I’m using is set up as several classes.

I can set a variable with the loconet result in its class , but the value won’t show up in the other classes

I have tried using a variable set at the start of the script

This will show up in the different classes, but i can’t change it in one class and it stay changed in the next class

nothing I’ve tried semes to work

Help please



 

Thanks
All sorted and working