forked from RoboCup-SSL/grSim
-
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.
* use C++17 * add ibis_robot_packet.hpp * add ibis_ssl_client.h * (WIP) connect ibis packet * adjust dribbler * format * succeeded to conncet ibis packet * comment out unused code * Add ibis * set correct robot * Delete unnecessary diffs * Delete unnecessary diffs * Delete unnecessary diffs * Delete unnecessary diffs * Delete unnecessary diffs * Delete unnecessary diffs * Delete unnecessary diffs * Delete unnecessary diffs * Delete unnecessary diffs * update * ibis_orion.hを追加 * AIコマンドを受け取る部分 * ビルドエラー修正 * orionのパラメータを反映 * 不要なDiffの削除 * Update src/sslworld.cpp * Apply suggestions from code review * Update src/sslworld.cpp * ibis_orion.hを消してファイルまるごとコピーに変更 * windows向けのCIを削除 * mac向けのCIを削除 * よく分からん * とりあえずAIパケットで動くようになった * dockerイメージ作るやつを作った * イメージ名に大文字はだめらしい * 誤字ってたw * リングバッファ関連のファイルを追加 * omniOdometryの移植 * 変な動きをするね * AIパケットで動くことを優先して一旦理想速度指令で動かすようにした
- Loading branch information
Showing
18 changed files
with
1,924 additions
and
100 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
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,33 @@ | ||
name: build and push ibis customized grSim image | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
pull_request: | ||
|
||
jobs: | ||
build-and-push-image: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: . | ||
push: true | ||
tags: ghcr.io/ibis-ssl/grsim:customized |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[Geometery] | ||
CenterFromKicker= 0.073 | ||
Radius = 0.089 | ||
Height = 0.090 | ||
RobotBottomZValue = 0.02 | ||
KickerZValue = 0.005 | ||
KickerThickness = 0.005 | ||
KickerWidth = 0.08 | ||
KickerHeight = 0.04 | ||
WheelRadius = 0.027 | ||
WheelThickness = 0.005 | ||
Wheel1Angle = 60 | ||
Wheel2Angle = 135 | ||
Wheel3Angle = 225 | ||
Wheel4Angle = 300 | ||
[Physics] | ||
Bodymass = 2 | ||
Wheelmass = 0.2 | ||
Kickermass =0.02 | ||
KickerDampFactor = 0.2 | ||
RollerTorqueFactor = 0.06 | ||
RollerPerpendicularTorqueFactor = 0.005 | ||
KickerFriction = 0.8 | ||
WheelTangentFriction = 0.8 | ||
WheelPerpendicularFriction = 0.05 | ||
WheelMotorMaximumApplyingTorque= 0.2 | ||
|
||
MaxLinearKickSpeed=10 | ||
MaxChipKickSpeed=10 | ||
AccSpeedupAbsoluteMax=4 | ||
AccSpeedupAngularMax=50 | ||
AccBrakeAbsoluteMax=4 | ||
AccBrakeAngularMax=50 | ||
VelAbsoluteMax=5 | ||
VelAngularMax=20 |
Oops, something went wrong.