forked from BehaviorTree/Groot
-
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.
- Loading branch information
1 parent
7e67cbf
commit 9c0bf43
Showing
9 changed files
with
179 additions
and
126 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 |
---|---|---|
|
@@ -2,3 +2,5 @@ | |
/build* | ||
/test_data/*_test.xml | ||
/test/CMakeLists.txt.user | ||
/bin | ||
/.vscode |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,91 +1,23 @@ | ||
[![Build Status](https://travis-ci.org/BehaviorTree/Groot.svg?branch=master)](https://travis-ci.org/BehaviorTree/Groot) | ||
# Groot (forked) | ||
|
||
# Groot | ||
+ This is a forked modified Groot repo by [Aoi-hosizora](https://github.com/Aoi-hosizora). This is used by SCUT xxx (private) project. | ||
+ For old README, please visit [README_old.md](./README_old.md). | ||
+ Note that depended [BehaviorTree.CPP](https://github.com/BehaviorTree/BehaviorTree.CPP), [cppzmq](https://github.com/zeromq/cppzmq) and [libzmq](https://github.com/zeromq/libzmq) are all submodule-deinited. | ||
|
||
**Groot** is a Graphical Editor, written in C++ and Qt, to create [BehaviorTrees](https://en.wikipedia.org/wiki/Behavior_tree). | ||
## Build Groot in Windows and MinGW-x64 | ||
|
||
It is compliant with the the library [BehaviorTree.CPP](https://github.com/BehaviorTree/BehaviorTree.CPP). | ||
```bash | ||
# Change to Your Qt path (line 12) | ||
vim CMakeLists.txt | ||
|
||
[![Groot Editor](groot-screenshot.png)](https://vimeo.com/275066768) | ||
set PATH=D:\Development\Qt\5.15.2\mingw81_64\bin;%PATH% | ||
mkdir build | ||
cd build | ||
|
||
cmake .. -G "MinGW Makefiles" | ||
make -j8 | ||
|
||
In the following video you can see how the C++ library and | ||
the graphic user interface are used to design and monitor a Behavior Tree. | ||
|
||
[![MOOD2Be](video_MOOD2Be.png)](https://vimeo.com/304651183) | ||
|
||
|
||
# Does your company use BehaviorTree.CPP and Groot? | ||
|
||
No company, institution or public/private funding is currently supporting the development of BehaviorTree.CPP and Groot. As a consequence, my time to support **BehaviorTree.CPP** is very limited and I decided that I won't spend any time at all supporting **Groot**. | ||
Pull Requests are welcome and will be reviewed, even if with some delay. | ||
|
||
If your company use this software, consider becoming a **sponsor** to support bug fixing and development of new features. You can find contact details in [package.xml](package.xml). | ||
|
||
# Dependencies, Installation, and Usage | ||
|
||
To compile the project you need: | ||
|
||
- [CMake 3.2](https://cmake.org/download) | ||
- Qt5 (tested with version 5.5.1), including the SVG module. | ||
|
||
On Ubuntu Xenial or later, you can install the dependencies with: | ||
|
||
sudo apt install qtbase5-dev libqt5svg5-dev libzmq3-dev libdw-dev | ||
Some functionalities of the code related to ROS will work __only__ if the | ||
project is compiled with with _catkin_. | ||
|
||
# Compilation instructions (Linux) | ||
|
||
git clone https://github.com/BehaviorTree/Groot.git | ||
cd Groot | ||
git submodule update --init --recursive | ||
mkdir build; cd build | ||
cmake .. | ||
make | ||
Note compiling "in-source" is not allowed. | ||
|
||
# Compilation instructions (ROS) | ||
|
||
mkdir -p catkin_ws/src | ||
cd catkin_ws/src | ||
git clone https://github.com/BehaviorTree/Groot.git | ||
cd .. | ||
rosdep install --from-paths src --ignore-src | ||
catkin_make | ||
|
||
# Licence | ||
|
||
Copyright (c) 2018-2019 FUNDACIO EURECAT | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a | ||
copy of this software and associated documentation files (the "Software"), | ||
to deal in the Software without restriction, including without limitation | ||
the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
and/or sell copies of the Software, and to permit persons to whom the | ||
Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included | ||
in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | ||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
DEALINGS IN THE SOFTWARE. | ||
|
||
|
||
# Acknowledgment | ||
|
||
This project is one of the main components of [MOOD2Be](https://eurecat.org/es/portfolio-items/mood2be/), | ||
and it is developed at [Eurecat](https://eurecat.org) by Davide Faconti. | ||
|
||
MOOD2Be is one of the six **Integrated Technical Projects (ITPs)** selected from the [RobMoSys first open call](https://robmosys.eu/itp/). | ||
|
||
It received funding from the European Union’s Horizon 2020 Research and Innovation Programme | ||
under the RobMoSys project. | ||
|
||
# make 中途可能会报未找到 `-lzmq` 的错误 | ||
# 需要把已经编译出来的 build\depend\libzmq\lib 的 libzmq.a 和 libzmq.dll.a 复制到 mingw 的 lib 下,然后继续编译即可 | ||
# xxx\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\lib | ||
``` |
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,91 @@ | ||
[![Build Status](https://travis-ci.org/BehaviorTree/Groot.svg?branch=master)](https://travis-ci.org/BehaviorTree/Groot) | ||
|
||
# Groot | ||
|
||
**Groot** is a Graphical Editor, written in C++ and Qt, to create [BehaviorTrees](https://en.wikipedia.org/wiki/Behavior_tree). | ||
|
||
It is compliant with the the library [BehaviorTree.CPP](https://github.com/BehaviorTree/BehaviorTree.CPP). | ||
|
||
[![Groot Editor](groot-screenshot.png)](https://vimeo.com/275066768) | ||
|
||
|
||
In the following video you can see how the C++ library and | ||
the graphic user interface are used to design and monitor a Behavior Tree. | ||
|
||
[![MOOD2Be](video_MOOD2Be.png)](https://vimeo.com/304651183) | ||
|
||
|
||
# Does your company use BehaviorTree.CPP and Groot? | ||
|
||
No company, institution or public/private funding is currently supporting the development of BehaviorTree.CPP and Groot. As a consequence, my time to support **BehaviorTree.CPP** is very limited and I decided that I won't spend any time at all supporting **Groot**. | ||
Pull Requests are welcome and will be reviewed, even if with some delay. | ||
|
||
If your company use this software, consider becoming a **sponsor** to support bug fixing and development of new features. You can find contact details in [package.xml](package.xml). | ||
|
||
# Dependencies, Installation, and Usage | ||
|
||
To compile the project you need: | ||
|
||
- [CMake 3.2](https://cmake.org/download) | ||
- Qt5 (tested with version 5.5.1), including the SVG module. | ||
|
||
On Ubuntu Xenial or later, you can install the dependencies with: | ||
|
||
sudo apt install qtbase5-dev libqt5svg5-dev libzmq3-dev libdw-dev | ||
Some functionalities of the code related to ROS will work __only__ if the | ||
project is compiled with with _catkin_. | ||
|
||
# Compilation instructions (Linux) | ||
|
||
git clone https://github.com/BehaviorTree/Groot.git | ||
cd Groot | ||
git submodule update --init --recursive | ||
mkdir build; cd build | ||
cmake .. | ||
make | ||
Note compiling "in-source" is not allowed. | ||
|
||
# Compilation instructions (ROS) | ||
|
||
mkdir -p catkin_ws/src | ||
cd catkin_ws/src | ||
git clone https://github.com/BehaviorTree/Groot.git | ||
cd .. | ||
rosdep install --from-paths src --ignore-src | ||
catkin_make | ||
|
||
# Licence | ||
|
||
Copyright (c) 2018-2019 FUNDACIO EURECAT | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a | ||
copy of this software and associated documentation files (the "Software"), | ||
to deal in the Software without restriction, including without limitation | ||
the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
and/or sell copies of the Software, and to permit persons to whom the | ||
Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included | ||
in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | ||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
DEALINGS IN THE SOFTWARE. | ||
|
||
|
||
# Acknowledgment | ||
|
||
This project is one of the main components of [MOOD2Be](https://eurecat.org/es/portfolio-items/mood2be/), | ||
and it is developed at [Eurecat](https://eurecat.org) by Davide Faconti. | ||
|
||
MOOD2Be is one of the six **Integrated Technical Projects (ITPs)** selected from the [RobMoSys first open call](https://robmosys.eu/itp/). | ||
|
||
It received funding from the European Union’s Horizon 2020 Research and Innovation Programme | ||
under the RobMoSys project. | ||
|
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.