Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Kei18/mapf-visualizer
Browse files Browse the repository at this point in the history
  • Loading branch information
Kei18 committed Dec 11, 2023
2 parents 5a6c383 + f1800e3 commit 75cb865
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build-osx:
runs-on: macos-10.15
runs-on: macos-latest

steps:
- uses: actions/checkout@v2
Expand Down
23 changes: 19 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)
[![ci](https://github.com/Kei18/mapf-visualizer/actions/workflows/ci.yml/badge.svg)](https://github.com/Kei18/mapf-visualizer/actions/workflows/ci.yml)

Simple multi-agent pathfinding (MAPF) visualizer for research usage.
Simple & scalable multi-agent pathfinding (MAPF) visualizer for research usage.

Based on [openFrameworks](https://openframeworks.cc/), written in C++, developed mainly for macOS
Based on [openFrameworks](https://openframeworks.cc/), written in C++

</div>

Expand All @@ -35,9 +35,24 @@ echo "export PATH=$(pwd)/bin/mapf-visualizer.app/Contents/MacOS:\$PATH" >> ~/.ba

required: around 10 minutes

### for Linux
### for Ubuntu

This repo was originally developed for macOS, but I heard that the visualizer worked on (Arch) Linux. To install, try `install_linux.sh`. You may need `sudo`.
```sh
git clone https://github.com/Kei18/mapf-visualizer.git
cd mapf-visualizer
wget -O third_party/openFrameworks.tar.gz https://github.com/openframeworks/openFrameworks/releases/download/0.11.2/of_v0.11.2_linux64gcc6_release.tar.gz
tar -xzvf third_party/openFrameworks.tar.gz -C third_party --strip-components=1 --one-top-level=openFrameworks
sudo third_party/openFrameworks/scripts/linux/ubuntu/install_dependencies.sh
sudo third_party/openFrameworks/scripts/linux/ubuntu/install_codecs.sh
make
echo "export PATH=$(pwd)/bin:\$PATH" >> ~/.bashrc
```

#### for other Linux

I heard that the visualizer worked on (Arch) Linux.
To install, try `install_linux.sh`.
You may need `sudo`.

## Usage

Expand Down

0 comments on commit 75cb865

Please sign in to comment.