Source code for RsSmw.Implementations.Source.Cemulation.DsSimulation.User.Tx.Vehicle

from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
from ........ import enums


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class VehicleCls:
	"""
	| Commands in total: 5
	| Subgroups: 2
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("vehicle", core, parent)

	@property
	def predefined(self):
		"""
		| Commands in total: 2
		| Subgroups: 0
		| Direct child commands: 2
		"""
		if not hasattr(self, '_predefined'):
			from .Predefined import PredefinedCls
			self._predefined = PredefinedCls(self._core, self._cmd_group)
		return self._predefined

	@property
	def user(self):
		"""
		| Commands in total: 2
		| Subgroups: 0
		| Direct child commands: 2
		"""
		if not hasattr(self, '_user'):
			from .User import UserCls
			self._user = UserCls(self._core, self._cmd_group)
		return self._user

	# noinspection PyTypeChecker
[docs] def get_mode(self) -> enums.FadDssUsrVehMode: """ ``[SOURce<HW>]:CEMulation:DSSimulation:USER:TX:VEHicle:MODE`` \n Snippet: ``value: enums.FadDssUsrVehMode = driver.source.cemulation.dsSimulation.user.tx.vehicle.get_mode()`` \n No help available """ response = self._core.io.query_str('SOURce<HwInstance>:CEMulation:DSSimulation:USER:TX:VEHicle:MODE?') return Conversions.str_to_scalar_enum(response, enums.FadDssUsrVehMode)
[docs] def set_mode(self, veh_mode: enums.FadDssUsrVehMode) -> None: """ ``[SOURce<HW>]:CEMulation:DSSimulation:USER:TX:VEHicle:MODE`` \n Snippet: ``driver.source.cemulation.dsSimulation.user.tx.vehicle.set_mode(veh_mode = enums.FadDssUsrVehMode.NONE)`` \n No help available """ param = Conversions.enum_scalar_to_str(veh_mode, enums.FadDssUsrVehMode) self._core.io.write(f'SOURce<HwInstance>:CEMulation:DSSimulation:USER:TX:VEHicle:MODE {param}')
def clone(self) -> 'VehicleCls': """ Clones the group by creating new object from it and its whole existing subgroups. Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group. """ new_group = VehicleCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group