├── .gitignore ├── .gitmodules ├── LICENSE ├── NOTICE.txt ├── README.md ├── SECURITY.md ├── assets ├── default_textures.png ├── textures-1.png └── textures-2.png ├── baseline_experiments ├── eval_maps │ ├── Eval110x10_notextures │ │ ├── 10x10.cfg │ │ ├── 10x10.wad │ │ └── 10x10_MAP01.txt │ ├── Eval120x20_notextures │ │ ├── 20x20.cfg │ │ ├── 20x20.wad │ │ └── 20x20_MAP01.txt │ ├── Eval210x10_notextures │ │ ├── 10x10.cfg │ │ ├── 10x10.wad │ │ └── 10x10_MAP01.txt │ ├── Eval220x20_notextures │ │ ├── 20x20.cfg │ │ ├── 20x20.wad │ │ └── 20x20_MAP01.txt │ ├── Eval310x10_notextures │ │ ├── 10x10.cfg │ │ ├── 10x10.wad │ │ └── 10x10_MAP01.txt │ └── Eval320x20_notextures │ │ ├── 20x20.cfg │ │ ├── 20x20.wad │ │ └── 20x20_MAP01.txt ├── evaluator.py ├── experiment.py └── experiments.md ├── example.py ├── mazeexplorer ├── __init__.py ├── compile_acs.py ├── config_template.txt ├── content │ ├── acs_template.txt │ └── doom_textures.txt ├── maze.py ├── mazeexplorer.py ├── script_manipulator.py ├── vizdoom_gym.py └── wad.py ├── setup.py ├── test.sh └── tests ├── mazes ├── test.cfg └── test.wad ├── test_compile_acs.py ├── test_mazeexplorer.py └── test_vizdoom_gym.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/default_textures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/assets/default_textures.png -------------------------------------------------------------------------------- /assets/textures-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/assets/textures-1.png -------------------------------------------------------------------------------- /assets/textures-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/assets/textures-2.png -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval110x10_notextures/10x10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval110x10_notextures/10x10.cfg -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval110x10_notextures/10x10.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval110x10_notextures/10x10.wad -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval110x10_notextures/10x10_MAP01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval110x10_notextures/10x10_MAP01.txt -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval120x20_notextures/20x20.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval120x20_notextures/20x20.cfg -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval120x20_notextures/20x20.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval120x20_notextures/20x20.wad -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval120x20_notextures/20x20_MAP01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval120x20_notextures/20x20_MAP01.txt -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval210x10_notextures/10x10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval210x10_notextures/10x10.cfg -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval210x10_notextures/10x10.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval210x10_notextures/10x10.wad -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval210x10_notextures/10x10_MAP01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval210x10_notextures/10x10_MAP01.txt -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval220x20_notextures/20x20.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval220x20_notextures/20x20.cfg -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval220x20_notextures/20x20.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval220x20_notextures/20x20.wad -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval220x20_notextures/20x20_MAP01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval220x20_notextures/20x20_MAP01.txt -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval310x10_notextures/10x10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval310x10_notextures/10x10.cfg -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval310x10_notextures/10x10.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval310x10_notextures/10x10.wad -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval310x10_notextures/10x10_MAP01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval310x10_notextures/10x10_MAP01.txt -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval320x20_notextures/20x20.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval320x20_notextures/20x20.cfg -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval320x20_notextures/20x20.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval320x20_notextures/20x20.wad -------------------------------------------------------------------------------- /baseline_experiments/eval_maps/Eval320x20_notextures/20x20_MAP01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/eval_maps/Eval320x20_notextures/20x20_MAP01.txt -------------------------------------------------------------------------------- /baseline_experiments/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/evaluator.py -------------------------------------------------------------------------------- /baseline_experiments/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/experiment.py -------------------------------------------------------------------------------- /baseline_experiments/experiments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/baseline_experiments/experiments.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/example.py -------------------------------------------------------------------------------- /mazeexplorer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/mazeexplorer/__init__.py -------------------------------------------------------------------------------- /mazeexplorer/compile_acs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/mazeexplorer/compile_acs.py -------------------------------------------------------------------------------- /mazeexplorer/config_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/mazeexplorer/config_template.txt -------------------------------------------------------------------------------- /mazeexplorer/content/acs_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/mazeexplorer/content/acs_template.txt -------------------------------------------------------------------------------- /mazeexplorer/content/doom_textures.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/mazeexplorer/content/doom_textures.txt -------------------------------------------------------------------------------- /mazeexplorer/maze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/mazeexplorer/maze.py -------------------------------------------------------------------------------- /mazeexplorer/mazeexplorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/mazeexplorer/mazeexplorer.py -------------------------------------------------------------------------------- /mazeexplorer/script_manipulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/mazeexplorer/script_manipulator.py -------------------------------------------------------------------------------- /mazeexplorer/vizdoom_gym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/mazeexplorer/vizdoom_gym.py -------------------------------------------------------------------------------- /mazeexplorer/wad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/mazeexplorer/wad.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/setup.py -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/test.sh -------------------------------------------------------------------------------- /tests/mazes/test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/tests/mazes/test.cfg -------------------------------------------------------------------------------- /tests/mazes/test.wad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/tests/mazes/test.wad -------------------------------------------------------------------------------- /tests/test_compile_acs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/tests/test_compile_acs.py -------------------------------------------------------------------------------- /tests/test_mazeexplorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/tests/test_mazeexplorer.py -------------------------------------------------------------------------------- /tests/test_vizdoom_gym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MazeExplorer/HEAD/tests/test_vizdoom_gym.py --------------------------------------------------------------------------------