-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Adds remote input / output over ZeroMQ. - Adds a gymnasium client in python/minetester subdirectory, which uses the remote input / output. - Adds headless rendering support. Build with -DBUILD_HEADLESS=TRUE and run with --headless. Only supported on Linux. - Somewhat unrelated, but switches the CI to use conda packages for most dependencies. Co-Authored-By: Gary Mindlin Miguel <[email protected]>
- Loading branch information
Showing
71 changed files
with
2,184 additions
and
306 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM ubuntu:22.04 | ||
|
||
RUN apt-get update -y && \ | ||
apt-get install -y g++ git libgl1-mesa-dev mold |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
{ | ||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"runArgs": [ | ||
// Allows debuggers to disable ASLR | ||
// "--privileged" | ||
], | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"charliermarsh.ruff", | ||
"llvm-vs-code-extensions.vscode-clangd", | ||
"ms-python.python", | ||
"ms-vscode.cmake-tools", | ||
"vadimcn.vscode-lldb" | ||
] | ||
} | ||
}, | ||
"features": { | ||
"ghcr.io/rocker-org/devcontainer-features/miniforge:1": {} | ||
}, | ||
"postCreateCommand": "bash -c 'mamba init && mamba env create'" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.