################################################################################# # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # # # # Licensed under the Apache License, Version 2.0 (the "License"). # # You may not use this file except in compliance with the License. # # You may obtain a copy of the License at # # # # http://www.apache.org/licenses/LICENSE-2.0 # # # # Unless required by applicable law or agreed to in writing, software # # distributed under the License is distributed on an "AS IS" BASIS, # # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # # See the License for the specific language governing permissions and # # limitations under the License. # ################################################################################# """A class for track converter""" from typing import Dict, Any from deepracer_env_state import DeepRacerEnvState from deepracer_compat_reward_function.converter.state_converter_interface import StateConverterInterface class TrackConverter(StateConverterInterface): """ TrackConverter class """ def __init__(self, deepracer_env_state: DeepRacerEnvState): """ TrackConverter constructor Args: deepracer_env_state (DeepRacerEnvState): DeepRacerEnvState class instance """ self._deepracer_env_state = deepracer_env_state def convert(self) -> Dict[str, Any]: """ Convert to dict format for track Returns: Dict[str, Any]: dict with key as str and value as Any """ track_dict = self._deepracer_env_state.track.to_dict() # reversed (clockwise) is True, else False track_dict["is_reversed"] = track_dict["is_clockwise"] del track_dict["is_clockwise"] return track_dict