Micromouse Simulator (MMS) interface

have a nice day

Does anyone know how to run the Micro Mouse Simulator (MMS) With windows ? My main concern is as shown in the second image below . What format should we use to save the mouse code, and in which folder should the file be placed? I am currently using the Micro Mouse Simulator in .exe mode.” I am using python

import API
import sys

def log(string):
    sys.stderr.write("{}\n".format(string))
    sys.stderr.flush()

def main():
    log("Running...")
    API.setColor(0, 0, "G")
    API.setText(0, 0, "abc")
    while True:
        if not API.wallLeft():
            API.turnLeft()
        while API.wallFront():
            API.turnRight()
        API.moveForward()

if __name__ == "__main__":
    main()

# Basic Mouse Configuration for Micromouse Simulator

# Define Mouse Movement Settings
movement:
    - forward_speed: 100  # speed of the mouse moving forward
    - turn_speed: 90      # speed of the mouse turning
    - max_turn_angle: 90  # maximum turning angle (in degrees)

# Define Sensor Settings
sensors:
    - front_left: True   # True = Sensor Active, False = Sensor Inactive
    - front_right: True
    - back_left: False
    - back_right: False
    - left_side: True
    - right_side: True

# Define Initial Position (x, y coordinates) and orientation
position:
    - x: 1  # Starting X position in the maze
    - y: 1  # Starting Y position in the maze
    - orientation: 0  # Initial orientation (0 is facing upwards)

# Maze configuration parameters
maze_params:
    - grid_size: 16  # The size of the maze grid (16x16 grid)
    - start_position: (1,1)  # Starting point in the maze
    - end_position: (14,14)  # Goal position in the maze

I no have idea about what files to be uploaded above fields

name I think i can use any name

Directory ?

Build Command ?

Run Command ?

please advice

It's possible no-one in this forum is familiar with that code. Maybe ask for help on the site you downloaded it from?

I moved your topic to an appropriate forum category @PA3040.

In the future, when creating a topic please take some time to pick the forum category that best suits the subject of your topic. There is an "About the _____ category" topic at the top of each category that explains its purpose.

This is an important part of responsible forum usage, as explained in the "How to get the best out of this forum" guide. The guide contains a lot of other useful information. Please read it.

Thanks in advance for your cooperation.

I think the OP got it from here:

GitHub - mackorone/mms: A Micromouse simulator: write and test maze-solving code without a physical robot

There seems to be a lot of information there and github shows that the readme was updated yesterday so perhaps there’s still life in the project. @PA3040 have you tried contacting the author with your questions?

The simulator has nothing to do with Arduino, although about once a year, someone on this forum expresses interest in building a mouse for the contest.

I imagine there are Micromouse forums where you could ask and hope for answers.

Dear all problem was solved

Thanks any encouraging answers