├── .github └── workflows │ ├── release.yaml │ └── tests.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── body_wink.gif ├── bodyjim ├── __init__.py ├── data_stream.py ├── env.py ├── schema.py └── wrappers.py ├── examples ├── follow_human.py ├── random_walk.py ├── roam.py └── wasd.py ├── pyproject.toml ├── scripts ├── bump_tag.sh └── publish_pypi.sh └── tests ├── test_env.py └── test_space.py /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/README.md -------------------------------------------------------------------------------- /body_wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/body_wink.gif -------------------------------------------------------------------------------- /bodyjim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/bodyjim/__init__.py -------------------------------------------------------------------------------- /bodyjim/data_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/bodyjim/data_stream.py -------------------------------------------------------------------------------- /bodyjim/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/bodyjim/env.py -------------------------------------------------------------------------------- /bodyjim/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/bodyjim/schema.py -------------------------------------------------------------------------------- /bodyjim/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/bodyjim/wrappers.py -------------------------------------------------------------------------------- /examples/follow_human.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/examples/follow_human.py -------------------------------------------------------------------------------- /examples/random_walk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/examples/random_walk.py -------------------------------------------------------------------------------- /examples/roam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/examples/roam.py -------------------------------------------------------------------------------- /examples/wasd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/examples/wasd.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/bump_tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/scripts/bump_tag.sh -------------------------------------------------------------------------------- /scripts/publish_pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/scripts/publish_pypi.sh -------------------------------------------------------------------------------- /tests/test_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/tests/test_env.py -------------------------------------------------------------------------------- /tests/test_space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/bodyjim/HEAD/tests/test_space.py --------------------------------------------------------------------------------