This commit is contained in:
Steffen Illium
2023-06-21 11:28:36 +02:00
parent 95c85bfedd
commit d11b1a8172
133 changed files with 225 additions and 225 deletions
README.md
marl_factory_grid
__init__.py
algorithms
environment
logging
modules
plotting
quickstart
utils
mfg_package/algorithms/marl
reload_agent.pysetup.py

@ -0,0 +1,18 @@
# Names / Identifiers
DOOR = 'Door' # Identifier of Single-Door Entities.
DOORS = 'Doors' # Identifier of Door-objects and groups (groups).
# Symbols (in map)
SYMBOL_DOOR = 'D' # Door _identifier for resolving the string based map files.
# Values
VALUE_ACCESS_INDICATOR = 1 / 3 # Access-door-Cell value used in observation
VALUE_OPEN_DOOR = 2 / 3 # Open-door-Cell value used in observation
VALUE_CLOSED_DOOR = 3 / 3 # Closed-door-Cell value used in observation
# States
STATE_CLOSED = 'closed' # Identifier to compare door-is-closed state
STATE_OPEN = 'open' # Identifier to compare door-is-open state
# Actions
ACTION_DOOR_USE = 'use_door'