├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation.md │ ├── enhancement.md │ └── feature_request.md └── workflows │ └── pylint-test.yml ├── .gitignore ├── .pylintrc ├── LICENSE ├── MANIFEST.in ├── README.md ├── nmmo ├── __init__.py ├── core │ ├── __init__.py │ ├── action.py │ ├── agent.py │ ├── config.py │ ├── env.py │ ├── game_api.py │ ├── map.py │ ├── observation.py │ ├── realm.py │ ├── terrain.py │ └── tile.py ├── datastore │ ├── __init__.py │ ├── datastore.py │ ├── id_allocator.py │ ├── numpy_datastore.py │ └── serialized.py ├── entity │ ├── __init__.py │ ├── entity.py │ ├── entity_manager.py │ ├── npc.py │ ├── npc_manager.py │ └── player.py ├── lib │ ├── __init__.py │ ├── astar.py │ ├── colors.py │ ├── cython_helper.pyx │ ├── event_code.py │ ├── event_log.py │ ├── material.py │ ├── seeding.py │ ├── spawn.py │ ├── team_helper.py │ ├── utils.py │ └── vec_noise.py ├── minigames │ ├── __init__.py │ ├── center_race.py │ ├── comm_together.py │ ├── king_hill.py │ ├── radio_raid.py │ └── sandwich.py ├── render │ ├── __init__.py │ ├── overlay.py │ ├── render_client.py │ ├── render_utils.py │ └── replay_helper.py ├── resource │ ├── crystal.png │ ├── fish.png │ ├── foilage.png │ ├── fragment.png │ ├── grass.png │ ├── herb.png │ ├── ocean.png │ ├── ore.png │ ├── scrub.png │ ├── slag.png │ ├── spawn.png │ ├── stone.png │ ├── stump.png │ ├── tree.png │ ├── void.png │ ├── water.png │ └── weeds.png ├── systems │ ├── __init__.py │ ├── combat.py │ ├── droptable.py │ ├── exchange.py │ ├── inventory.py │ ├── item.py │ └── skill.py ├── task │ ├── __init__.py │ ├── base_predicates.py │ ├── game_state.py │ ├── group.py │ ├── predicate_api.py │ ├── task_api.py │ └── task_spec.py └── version.py ├── pyproject.toml ├── scripted ├── __init__.py ├── attack.py ├── baselines.py └── move.py ├── setup.py ├── tests ├── __init__.py ├── action │ ├── test_ammo_use.py │ ├── test_destroy_give_gold.py │ ├── test_monkey_action.py │ └── test_sell_buy.py ├── conftest.py ├── core │ ├── test_config.py │ ├── test_cython_masks.py │ ├── test_entity.py │ ├── test_env.py │ ├── test_game_api.py │ ├── test_gym_obs_spaces.py │ ├── test_map_generation.py │ ├── test_observation_tile.py │ ├── test_tile_property.py │ └── test_tile_seize.py ├── datastore │ ├── test_datastore.py │ ├── test_id_allocator.py │ ├── test_numpy_datastore.py │ └── test_serialized.py ├── render │ ├── test_load_replay.py │ └── test_render_save.py ├── systems │ ├── test_exchange.py │ ├── test_item.py │ └── test_skill_level.py ├── task │ ├── sample_curriculum.pkl │ ├── test_demo_task_creation.py │ ├── test_manual_curriculum.py │ ├── test_predicates.py │ ├── test_sample_task_from_file.py │ ├── test_task_api.py │ └── test_task_system_perf.py ├── test_death_fog.py ├── test_determinism.py ├── test_eventlog.py ├── test_memory_usage.py ├── test_mini_games.py ├── test_performance.py ├── test_pettingzoo.py ├── test_rollout.py └── testhelpers.py └── utils ├── git-pr.sh ├── pre-git-check.sh └── run-perf-tests.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | neural_mmo/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/pylint-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/.github/workflows/pylint-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/README.md -------------------------------------------------------------------------------- /nmmo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/__init__.py -------------------------------------------------------------------------------- /nmmo/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nmmo/core/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/core/action.py -------------------------------------------------------------------------------- /nmmo/core/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/core/agent.py -------------------------------------------------------------------------------- /nmmo/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/core/config.py -------------------------------------------------------------------------------- /nmmo/core/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/core/env.py -------------------------------------------------------------------------------- /nmmo/core/game_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/core/game_api.py -------------------------------------------------------------------------------- /nmmo/core/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/core/map.py -------------------------------------------------------------------------------- /nmmo/core/observation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/core/observation.py -------------------------------------------------------------------------------- /nmmo/core/realm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/core/realm.py -------------------------------------------------------------------------------- /nmmo/core/terrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/core/terrain.py -------------------------------------------------------------------------------- /nmmo/core/tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/core/tile.py -------------------------------------------------------------------------------- /nmmo/datastore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nmmo/datastore/datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/datastore/datastore.py -------------------------------------------------------------------------------- /nmmo/datastore/id_allocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/datastore/id_allocator.py -------------------------------------------------------------------------------- /nmmo/datastore/numpy_datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/datastore/numpy_datastore.py -------------------------------------------------------------------------------- /nmmo/datastore/serialized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/datastore/serialized.py -------------------------------------------------------------------------------- /nmmo/entity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/entity/__init__.py -------------------------------------------------------------------------------- /nmmo/entity/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/entity/entity.py -------------------------------------------------------------------------------- /nmmo/entity/entity_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/entity/entity_manager.py -------------------------------------------------------------------------------- /nmmo/entity/npc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/entity/npc.py -------------------------------------------------------------------------------- /nmmo/entity/npc_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/entity/npc_manager.py -------------------------------------------------------------------------------- /nmmo/entity/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/entity/player.py -------------------------------------------------------------------------------- /nmmo/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nmmo/lib/astar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/lib/astar.py -------------------------------------------------------------------------------- /nmmo/lib/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/lib/colors.py -------------------------------------------------------------------------------- /nmmo/lib/cython_helper.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/lib/cython_helper.pyx -------------------------------------------------------------------------------- /nmmo/lib/event_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/lib/event_code.py -------------------------------------------------------------------------------- /nmmo/lib/event_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/lib/event_log.py -------------------------------------------------------------------------------- /nmmo/lib/material.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/lib/material.py -------------------------------------------------------------------------------- /nmmo/lib/seeding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/lib/seeding.py -------------------------------------------------------------------------------- /nmmo/lib/spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/lib/spawn.py -------------------------------------------------------------------------------- /nmmo/lib/team_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/lib/team_helper.py -------------------------------------------------------------------------------- /nmmo/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/lib/utils.py -------------------------------------------------------------------------------- /nmmo/lib/vec_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/lib/vec_noise.py -------------------------------------------------------------------------------- /nmmo/minigames/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/minigames/__init__.py -------------------------------------------------------------------------------- /nmmo/minigames/center_race.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/minigames/center_race.py -------------------------------------------------------------------------------- /nmmo/minigames/comm_together.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/minigames/comm_together.py -------------------------------------------------------------------------------- /nmmo/minigames/king_hill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/minigames/king_hill.py -------------------------------------------------------------------------------- /nmmo/minigames/radio_raid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/minigames/radio_raid.py -------------------------------------------------------------------------------- /nmmo/minigames/sandwich.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/minigames/sandwich.py -------------------------------------------------------------------------------- /nmmo/render/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nmmo/render/overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/render/overlay.py -------------------------------------------------------------------------------- /nmmo/render/render_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/render/render_client.py -------------------------------------------------------------------------------- /nmmo/render/render_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/render/render_utils.py -------------------------------------------------------------------------------- /nmmo/render/replay_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/render/replay_helper.py -------------------------------------------------------------------------------- /nmmo/resource/crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/resource/crystal.png -------------------------------------------------------------------------------- /nmmo/resource/fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/resource/fish.png -------------------------------------------------------------------------------- /nmmo/resource/foilage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/resource/foilage.png -------------------------------------------------------------------------------- /nmmo/resource/fragment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/resource/fragment.png -------------------------------------------------------------------------------- /nmmo/resource/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/resource/grass.png -------------------------------------------------------------------------------- /nmmo/resource/herb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/resource/herb.png -------------------------------------------------------------------------------- /nmmo/resource/ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/resource/ocean.png -------------------------------------------------------------------------------- /nmmo/resource/ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/resource/ore.png -------------------------------------------------------------------------------- /nmmo/resource/scrub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/resource/scrub.png -------------------------------------------------------------------------------- /nmmo/resource/slag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/resource/slag.png -------------------------------------------------------------------------------- /nmmo/resource/spawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/resource/spawn.png -------------------------------------------------------------------------------- /nmmo/resource/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/resource/stone.png -------------------------------------------------------------------------------- /nmmo/resource/stump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/resource/stump.png -------------------------------------------------------------------------------- /nmmo/resource/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/resource/tree.png -------------------------------------------------------------------------------- /nmmo/resource/void.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/resource/void.png -------------------------------------------------------------------------------- /nmmo/resource/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/resource/water.png -------------------------------------------------------------------------------- /nmmo/resource/weeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/resource/weeds.png -------------------------------------------------------------------------------- /nmmo/systems/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/systems/__init__.py -------------------------------------------------------------------------------- /nmmo/systems/combat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/systems/combat.py -------------------------------------------------------------------------------- /nmmo/systems/droptable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/systems/droptable.py -------------------------------------------------------------------------------- /nmmo/systems/exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/systems/exchange.py -------------------------------------------------------------------------------- /nmmo/systems/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/systems/inventory.py -------------------------------------------------------------------------------- /nmmo/systems/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/systems/item.py -------------------------------------------------------------------------------- /nmmo/systems/skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/systems/skill.py -------------------------------------------------------------------------------- /nmmo/task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/task/__init__.py -------------------------------------------------------------------------------- /nmmo/task/base_predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/task/base_predicates.py -------------------------------------------------------------------------------- /nmmo/task/game_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/task/game_state.py -------------------------------------------------------------------------------- /nmmo/task/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/task/group.py -------------------------------------------------------------------------------- /nmmo/task/predicate_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/task/predicate_api.py -------------------------------------------------------------------------------- /nmmo/task/task_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/task/task_api.py -------------------------------------------------------------------------------- /nmmo/task/task_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/nmmo/task/task_spec.py -------------------------------------------------------------------------------- /nmmo/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.1.2' 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripted/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripted/attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/scripted/attack.py -------------------------------------------------------------------------------- /scripted/baselines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/scripted/baselines.py -------------------------------------------------------------------------------- /scripted/move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/scripted/move.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/action/test_ammo_use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/action/test_ammo_use.py -------------------------------------------------------------------------------- /tests/action/test_destroy_give_gold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/action/test_destroy_give_gold.py -------------------------------------------------------------------------------- /tests/action/test_monkey_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/action/test_monkey_action.py -------------------------------------------------------------------------------- /tests/action/test_sell_buy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/action/test_sell_buy.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/core/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/core/test_config.py -------------------------------------------------------------------------------- /tests/core/test_cython_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/core/test_cython_masks.py -------------------------------------------------------------------------------- /tests/core/test_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/core/test_entity.py -------------------------------------------------------------------------------- /tests/core/test_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/core/test_env.py -------------------------------------------------------------------------------- /tests/core/test_game_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/core/test_game_api.py -------------------------------------------------------------------------------- /tests/core/test_gym_obs_spaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/core/test_gym_obs_spaces.py -------------------------------------------------------------------------------- /tests/core/test_map_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/core/test_map_generation.py -------------------------------------------------------------------------------- /tests/core/test_observation_tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/core/test_observation_tile.py -------------------------------------------------------------------------------- /tests/core/test_tile_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/core/test_tile_property.py -------------------------------------------------------------------------------- /tests/core/test_tile_seize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/core/test_tile_seize.py -------------------------------------------------------------------------------- /tests/datastore/test_datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/datastore/test_datastore.py -------------------------------------------------------------------------------- /tests/datastore/test_id_allocator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/datastore/test_id_allocator.py -------------------------------------------------------------------------------- /tests/datastore/test_numpy_datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/datastore/test_numpy_datastore.py -------------------------------------------------------------------------------- /tests/datastore/test_serialized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/datastore/test_serialized.py -------------------------------------------------------------------------------- /tests/render/test_load_replay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/render/test_load_replay.py -------------------------------------------------------------------------------- /tests/render/test_render_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/render/test_render_save.py -------------------------------------------------------------------------------- /tests/systems/test_exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/systems/test_exchange.py -------------------------------------------------------------------------------- /tests/systems/test_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/systems/test_item.py -------------------------------------------------------------------------------- /tests/systems/test_skill_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/systems/test_skill_level.py -------------------------------------------------------------------------------- /tests/task/sample_curriculum.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/task/sample_curriculum.pkl -------------------------------------------------------------------------------- /tests/task/test_demo_task_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/task/test_demo_task_creation.py -------------------------------------------------------------------------------- /tests/task/test_manual_curriculum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/task/test_manual_curriculum.py -------------------------------------------------------------------------------- /tests/task/test_predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/task/test_predicates.py -------------------------------------------------------------------------------- /tests/task/test_sample_task_from_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/task/test_sample_task_from_file.py -------------------------------------------------------------------------------- /tests/task/test_task_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/task/test_task_api.py -------------------------------------------------------------------------------- /tests/task/test_task_system_perf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/task/test_task_system_perf.py -------------------------------------------------------------------------------- /tests/test_death_fog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/test_death_fog.py -------------------------------------------------------------------------------- /tests/test_determinism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/test_determinism.py -------------------------------------------------------------------------------- /tests/test_eventlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/test_eventlog.py -------------------------------------------------------------------------------- /tests/test_memory_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/test_memory_usage.py -------------------------------------------------------------------------------- /tests/test_mini_games.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/test_mini_games.py -------------------------------------------------------------------------------- /tests/test_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/test_performance.py -------------------------------------------------------------------------------- /tests/test_pettingzoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/test_pettingzoo.py -------------------------------------------------------------------------------- /tests/test_rollout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/test_rollout.py -------------------------------------------------------------------------------- /tests/testhelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/tests/testhelpers.py -------------------------------------------------------------------------------- /utils/git-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/utils/git-pr.sh -------------------------------------------------------------------------------- /utils/pre-git-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/utils/pre-git-check.sh -------------------------------------------------------------------------------- /utils/run-perf-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeuralMMO/environment/HEAD/utils/run-perf-tests.sh --------------------------------------------------------------------------------