File tree 7 files changed +21
-11
lines changed
7 files changed +21
-11
lines changed Original file line number Diff line number Diff line change @@ -91,11 +91,7 @@ https://hub.docker.com/r/toppersjp/hakoniwa-ros2sim
91
91
$ bash docker/pull-image.bash
92
92
```
93
93
94
- \[ 補足:開発者向け情報\] Dockerイメージの作成
95
-
96
- ```
97
- $ bash docker/create-image.bash
98
- ```
94
+ \[ 補足:開発者向け情報\] Dockerイメージの作成用に ` docker/create-image.bash ` があります.
99
95
100
96
### dockerを起動する
101
97
@@ -208,6 +204,9 @@ Unityのシミュレーション開始ボタンをクリックすると,以下
208
204
209
205
## TODO
210
206
207
+ - [ ] Dockerを利用しないネイティブのLinux環境(WSL2を含む)での動作をサポート ([ #18 ] ( https://github.com/toppers/hakoniwa-ros2sim/issues/18 ) )
208
+ - [ ] SLAMやNav2の動作例を示す ([ #19 ] ( https://github.com/toppers/hakoniwa-ros2sim/issues/19 ) )
209
+
211
210
212
211
## 謝辞
213
212
* TurtleBot3 の Unity パッケージの設計と作成にあたっては,宝塚大学 東京メディア芸術学部 吉岡章夫准教授および学部生の杉崎涼志さん,木村明美さんにご協力いただきました.
Original file line number Diff line number Diff line change 1
- v1.0 .0
1
+ v1.1 .0
Original file line number Diff line number Diff line change 19
19
20
20
## 更新履歴
21
21
22
+ ### v1.1.0 @ 2022/05/06
23
+
24
+ - リポジトリ名の変更
25
+ - README の作成と改善
26
+ - Docker image の公開
27
+ - ユーザ利便性の改善
28
+ - submodule の URL を https に変更
29
+ - Docker 操作のスクリプトを全プラットフォームで共通化
30
+ - 箱庭アセットとバージョン (commit hash) 情報
31
+ - [ hakoniwa-core] ( https://github.com/toppers/hakoniwa-core ) / sha: [ 35c47fe42af58f37a4843e5e789e5f749acfbf0b] ( https://github.com/toppers/hakoniwa-core/tree/35c47fe42af58f37a4843e5e789e5f749acfbf0b )
32
+
22
33
### v1.0.0 @ 2022/04/23
23
34
24
35
- 最初のリリース
Original file line number Diff line number Diff line change @@ -73,6 +73,6 @@ RUN apt-get install -y software-properties-common
73
73
RUN add-apt-repository ppa:mosquitto-dev/mosquitto-ppa
74
74
RUN apt-get install -y libmosquitto-dev
75
75
76
- WORKDIR /root/workspace/hakoniwa-ros-samples /ros2/workspace
76
+ WORKDIR /root/workspace/hakoniwa-ros2sim /ros2/workspace
77
77
RUN chmod +x /root/workspace/hakoniwa-core/impl/asset/client/build/cpp/hako-*
78
78
ENV CORE_PORTNO 50051
Original file line number Diff line number Diff line change 37
37
38
38
if [ ${OS_TYPE} != " Mac" ]
39
39
then
40
- docker run -v ${HAKONIWA_TOP_DIR} :/root/workspace/hakoniwa-ros-samples \
40
+ docker run -v ${HAKONIWA_TOP_DIR} :/root/workspace/hakoniwa-ros2sim \
41
41
-it --rm \
42
42
--net host \
43
43
-e CORE_IPADDR=${IPADDR} \
44
44
-e OS_TYPE=${OS_TYPE} \
45
45
--name hakoniwa-ros2sim ${DOCKER_IMAGE}
46
46
else
47
- docker run -v ${HAKONIWA_TOP_DIR} :/root/workspace/hakoniwa-ros-samples \
47
+ docker run -v ${HAKONIWA_TOP_DIR} :/root/workspace/hakoniwa-ros2sim \
48
48
-it --rm \
49
49
--ip ${IPADDR} -p 10000:10000 \
50
50
-e CORE_IPADDR=${IPADDR} \
Original file line number Diff line number Diff line change 1
1
/opt/ros/foxy/share
2
- /root/workspace/hakoniwa-ros-samples /ros2/workspace/src
2
+ /root/workspace/hakoniwa-ros2sim /ros2/workspace/src
Original file line number Diff line number Diff line change 2
2
3
3
export CORE_IPADDR=` cat /etc/resolv.conf | grep nameserver | awk ' {print $NF}' `
4
4
5
- cat settings/tb3/ros2_search_file_path.txt | grep -v samples > tmp.txt
5
+ cat settings/tb3/ros2_search_file_path.txt | grep -v ros2sim > tmp.txt
6
6
CURDIR=` pwd`
7
7
echo " ${CURDIR} /ros2/workspace/src" >> tmp.txt
8
8
mv tmp.txt settings/tb3/ros2_search_file_path.txt
You can’t perform that action at this time.
0 commit comments