-
Notifications
You must be signed in to change notification settings - Fork 2
Dev/train decision test #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
1c4a68d
feat(lua): add train-decision endpoint
gqsdjhh 5a12283
feat(nav-map): add train_map occupancy map and metadata
gqsdjhh f607163
feat(lua): add train-specific road-crossing and start-cruise intents
gqsdjhh 49c4288
refactor(lua): simplify cruise entry and rework crossing-road-zone flow
gqsdjhh b6687e2
feat(lua): add one-step descent stage before escape-to-home
gqsdjhh 97910d6
feat(lua): add decision test endpoint and harden train-decision FSM
gqsdjhh c246349
feat(lua): add navigation history queue and improve escape-to-home ro…
gqsdjhh e66bd5f
refactor(lua): unify endpoint FSM retry flow, remove wait logic, and …
gqsdjhh a4e1131
feat(lua): route escape-to-home via fluctuant road and set traversal …
gqsdjhh f9da118
refactor(lua): navigation lua decision flow for fluctuant-road routing
gqsdjhh 21fbcc3
feat(lua): reorganize navigation task modules and add forward-press t…
gqsdjhh f0c20d9
feat(lua): add start-cruise intent, supply-health task, and blackboar…
gqsdjhh File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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,7 @@ | ||
| image: train_map.png | ||
| mode: trinary | ||
| resolution: 0.05 | ||
| origin: [-1.2, -6.3, 0.0] | ||
| negate: 0 | ||
| occupied_thresh: 0.65 | ||
| free_thresh: 0.196 |
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -60,4 +60,4 @@ end | |
| --- 由 NAV2 发布的目标速度值,在此处理回调 | ||
| on_control = function(x, y, _) | ||
| action:update_chassis_vel(x, y) | ||
| end | ||
| end | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
字段/谓词存在多处拼写错误,建议统一修正
下列拼写错误会随
blackboard暴露给整个决策树/FSM,后续修正会成为破坏性变更,建议在合并前一并处理:our_dart_nmber_of_hits→our_dart_number_of_hitscentral_highland_gain_pount→central_highland_gain_pointoupost_survival→outpost_survivalresult.game.our_dart_nmber_of_hits(同步修正字段引用)注意第 150 行的
oupost_survival是新增的condition谓词,已经被 FSM/任务侧依赖,越晚改影响面越大。🔧 建议的修正 diff
Also applies to: 109-109, 150-156
🤖 Prompt for AI Agents