Skip to content

Commit

Permalink
Add Section separators in rl_supervisor
Browse files Browse the repository at this point in the history
  • Loading branch information
Akram authored and Akram committed Jul 30, 2024
1 parent 32f576e commit 6fff947
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions webots/controllers/RL_Supervisor/rl_supervisor.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,22 @@
# SOFTWARE.
#


################################################################################
# Imports
################################################################################

import sys
import struct
from controller import Supervisor # pylint: disable=import-error
from serial_webots import SerialWebots
from SerialMuxProt import Server

################################################################################
# Variables
################################################################################


# Constants
ROBOT_NAME = "ROBOT"
SUPERVISOR_RX_NAME = "serialComRx"
Expand Down Expand Up @@ -61,6 +71,11 @@
]


################################################################################
# Classes
################################################################################


class RobotController:
"""Class for data flow control logic"""

Expand Down Expand Up @@ -156,6 +171,12 @@ def process(self):
self.__smp_server.process(self.__timestamp)


################################################################################
# Functions
################################################################################


# pylint: disable=duplicate-code
def main_loop():
"""Main loop:
- Perform simulation steps until Webots is stopping the controller.
Expand Down Expand Up @@ -235,3 +256,8 @@ def main_loop():


sys.exit(main_loop())


################################################################################
# Main
################################################################################

0 comments on commit 6fff947

Please sign in to comment.