Open
Conversation
Add native DimSim bridge and nav blueprint for browser-based 3D simulation with LCM transport. Uses globally installed dimsim CLI (https://jsr.io/@antim/dimsim). - DimSimBridge (NativeModule) manages the dimsim subprocess - DimSimTF publishes transform tree from odom - sim-nav blueprint wires bridge + TF + voxel mapping + A* + frontier exploration Usage: dimos run sim-nav TODO: - General eval workflow integration - Test headless integration
82073b9 to
15526d4
Compare
Contributor
Author
|
@greptileai go for it |
Contributor
Greptile SummaryIntegrates Antim Labs DimSim simulator into dimos by adding a modular bridge architecture that manages a Deno subprocess for sensor data streaming and a lightweight TF publisher for coordinate transforms. Key Changes:
Confidence Score: 4/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[DimSim Bridge<br/>Deno Subprocess] -->|publishes to LCM| B[LCM Bus]
B -->|odom, lidar, images| C[TF Module]
B -->|sensor data| D[Visualization<br/>foxglove/rerun/websocket]
C -->|publishes| E[Transform Chain<br/>world → base_link → sensors]
C -->|publishes| F[Camera Info<br/>1 Hz]
G[Navigation Stack<br/>mapping, planning, exploration] -->|cmd_vel| B
B -->|cmd_vel| A
H[sim_basic Blueprint] -.includes.- A
H -.includes.- C
H -.includes.- D
I[sim_nav Blueprint] -.extends.- H
I -.includes.- G
Last reviewed commit: 15526d4 |
Comment on lines
+172
to
+174
| def move(self, twist: Twist, duration: float = 0.0) -> bool: | ||
| """Send movement command to the simulator via cmd_vel.""" | ||
| self.cmd_vel.publish(twist) |
Contributor
There was a problem hiding this comment.
duration parameter is unused. Other move() implementations in the codebase (unitree, drone) use this to execute timed movements.
2 tasks
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
No description provided.