-
Notifications
You must be signed in to change notification settings - Fork 1
Thesis work #1
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
Open
busolind
wants to merge
17
commits into
connets:main
Choose a base branch
from
busolind:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Thesis work #1
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
61750c1
Modified .gitmodules
busolind 0ba9f29
Up to date
busolind 911f37c
Zero delay API
busolind f44a00f
Fixed container names
busolind 00e28fc
Removed RenderOffScreen flag
busolind 4c963be
Moved to localhost
busolind 4b3515b
Updated command
busolind ff0dcc2
Updated submodules
busolind 5efb82b
Quick n dirty argument for renderoffscreen
busolind 60bf280
profiling
busolind b4f7340
Profiling and submodule update
busolind 27fc825
Submodule updates
busolind b1933b6
Removed .gitignore
busolind 788e860
Updated main.py
busolind 3871fd2
Updated .gitignore
busolind 4e186f6
Added all API folders
busolind 246438a
Submodule updates
busolind 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
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 |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| [submodule "tod_simulator"] | ||
| [submodule "tod-carla"] | ||
| path = tod-carla | ||
| url = https://github.com/Jaivra/tod_simulator | ||
| branch = dev | ||
| [submodule "tod_omnet_network"] | ||
| url = git@github.com:busolind/tod-carla.git | ||
| branch = main | ||
| [submodule "tod-omnet"] | ||
| path = tod-omnet | ||
| url = https://github.com/Jaivra/tod_omnet_network | ||
| url = git@github.com:busolind/tod-omnet.git | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same as above
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thank you Valerio, |
||
| branch = main | ||
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
Submodule tod-carla
updated
37 files
Submodule tod-omnet
updated
15 files
| +2 −2 | .project | |
| +9 −0 | simulations/networks/TODNet_SingleCar_Town4.ned | |
| +37 −0 | simulations/run_with_delay | |
| +343 −0 | simulations/vnc_city_straight.ini | |
| +343 −0 | simulations/vnc_city_sudden_obstacle.ini | |
| +411 −0 | simulations/vnc_city_trip.ini | |
| +347 −0 | simulations/vnc_hwy_moving_obstacle.ini | |
| +343 −0 | simulations/vnc_hwy_straight.ini | |
| +347 −0 | simulations/vnc_hwy_sudden_obstacle.ini | |
| +345 −0 | simulations/vnc_local_DRR.ini | |
| +343 −0 | simulations/vnc_local_PF.ini | |
| +411 −0 | simulations/vnc_original_city_trip.ini | |
| +6 −0 | src/carla_omnet/TodCarlaApi.h | |
| +10 −0 | src/carla_omnet/TodCarlanetManager.cc | |
| +1 −1 | src/carla_omnet/TodCarlanetManager.h |
Empty file.
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 |
|---|---|---|
| @@ -1,25 +1,25 @@ | ||
| { | ||
| "message_type": "INIT", | ||
| "timestamp": 0, | ||
| "run_id": "id_current_simulation", | ||
| "run_id": "Hwy-Obstacle-old-detection-zero-delay", | ||
| "moving_actors": [ | ||
| { | ||
| "actor_id": "car_id", | ||
| "actor_type": "car", | ||
| "actor_configuration": { | ||
| "configuration_id": "simple_vehicle", | ||
| "route": "simple_curve_world_1", | ||
| "route": "straight_hwy_world_4_obstacles", | ||
| "agent_configuration": "simple_agent", | ||
| "agent_id": "agent_id" | ||
| } | ||
| } | ||
| ], | ||
| "carla_configuration": { | ||
| "seed": 11120, | ||
| "sim_time_limit": 350, | ||
| "sim_time_limit": 30, | ||
| "carla_timestep": 0.01 | ||
| }, | ||
| "user_defined": { | ||
| "carla_world_configuration": "world_1" | ||
| "carla_world_configuration": "world_4" | ||
| } | ||
| } |
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 |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| { | ||
| "message_type": "SIMULATION_STEP", | ||
| "carla_timestep": 0.05, | ||
| "carla_timestep": 0.01, | ||
| "timestamp": 0 | ||
| } |
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,8 @@ | ||
| { | ||
| "message_type": "GENERIC_MESSAGE", | ||
| "timestamp": 0, | ||
| "user_defined": { | ||
| "user_message_type": "ACTOR_STATUS_UPDATE", | ||
| "actor_id": "car_id" | ||
| } | ||
| } |
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,9 @@ | ||
| { | ||
| "message_type": "GENERIC_MESSAGE", | ||
| "timestamp": 0, | ||
| "user_defined": { | ||
| "user_message_type": "APPLY_INSTRUCTION", | ||
| "actor_id": "car_id", | ||
| "instruction_id": "instruction_id" | ||
| } | ||
| } |
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,10 @@ | ||
| { | ||
| "message_type": "GENERIC_MESSAGE", | ||
| "timestamp": 0, | ||
| "user_defined": { | ||
| "user_message_type": "COMPUTE_INSTRUCTION", | ||
| "actor_id": "car_id", | ||
| "agent_id": "agent_id", | ||
| "status_id": "status_id" | ||
| } | ||
| } |
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,25 @@ | ||
| { | ||
| "message_type": "INIT", | ||
| "timestamp": 0, | ||
| "run_id": "Straight-Obstacle-zero-delay", | ||
| "moving_actors": [ | ||
| { | ||
| "actor_id": "car_id", | ||
| "actor_type": "car", | ||
| "actor_configuration": { | ||
| "configuration_id": "simple_vehicle", | ||
| "route": "straight_city_world_4_obstacles", | ||
| "agent_configuration": "simple_agent", | ||
| "agent_id": "agent_id" | ||
| } | ||
| } | ||
| ], | ||
| "carla_configuration": { | ||
| "seed": 11120, | ||
| "sim_time_limit": 19, | ||
| "carla_timestep": 0.01 | ||
| }, | ||
| "user_defined": { | ||
| "carla_world_configuration": "world_4" | ||
| } | ||
| } |
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,5 @@ | ||
| { | ||
| "message_type": "SIMULATION_STEP", | ||
| "carla_timestep": 0.01, | ||
| "timestamp": 0 | ||
| } |
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,8 @@ | ||
| { | ||
| "message_type": "GENERIC_MESSAGE", | ||
| "timestamp": 0, | ||
| "user_defined": { | ||
| "user_message_type": "ACTOR_STATUS_UPDATE", | ||
| "actor_id": "car" | ||
| } | ||
| } |
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,9 @@ | ||
| { | ||
| "message_type": "GENERIC_MESSAGE", | ||
| "timestamp": 0, | ||
| "user_defined": { | ||
| "user_message_type": "APPLY_INSTRUCTION", | ||
| "actor_id": "car", | ||
| "instruction_id": "instruction_id" | ||
| } | ||
| } |
10 changes: 10 additions & 0 deletions
10
zero-delay-network/API_city_sudden/compute_instruction.json
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,10 @@ | ||
| { | ||
| "message_type": "GENERIC_MESSAGE", | ||
| "timestamp": 0, | ||
| "user_defined": { | ||
| "user_message_type": "COMPUTE_INSTRUCTION", | ||
| "actor_id": "car", | ||
| "agent_id": "agent_id", | ||
| "status_id": "status_id" | ||
| } | ||
| } |
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,25 @@ | ||
| { | ||
| "message_type": "INIT", | ||
| "timestamp": 0, | ||
| "run_id": "City-Sudden-Obstacle-zero-delay", | ||
| "moving_actors": [ | ||
| { | ||
| "actor_id": "car", | ||
| "actor_type": "car", | ||
| "actor_configuration": { | ||
| "configuration_id": "simple_vehicle", | ||
| "route": "straight_city_world_4_sudden_obstacle", | ||
| "agent_configuration": "simple_agent", | ||
| "agent_id": "agent_id" | ||
| } | ||
| } | ||
| ], | ||
| "carla_configuration": { | ||
| "seed": 11120, | ||
| "sim_time_limit": 19, | ||
| "carla_timestep": 0.01 | ||
| }, | ||
| "user_defined": { | ||
| "carla_world_configuration": "world_4" | ||
| } | ||
| } |
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,5 @@ | ||
| { | ||
| "message_type": "SIMULATION_STEP", | ||
| "carla_timestep": 0.01, | ||
| "timestamp": 0 | ||
| } |
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,8 @@ | ||
| { | ||
| "message_type": "GENERIC_MESSAGE", | ||
| "timestamp": 0, | ||
| "user_defined": { | ||
| "user_message_type": "ACTOR_STATUS_UPDATE", | ||
| "actor_id": "car_id" | ||
| } | ||
| } |
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,9 @@ | ||
| { | ||
| "message_type": "GENERIC_MESSAGE", | ||
| "timestamp": 0, | ||
| "user_defined": { | ||
| "user_message_type": "APPLY_INSTRUCTION", | ||
| "actor_id": "car_id", | ||
| "instruction_id": "instruction_id" | ||
| } | ||
| } |
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,10 @@ | ||
| { | ||
| "message_type": "GENERIC_MESSAGE", | ||
| "timestamp": 0, | ||
| "user_defined": { | ||
| "user_message_type": "COMPUTE_INSTRUCTION", | ||
| "actor_id": "car_id", | ||
| "agent_id": "agent_id", | ||
| "status_id": "status_id" | ||
| } | ||
| } |
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,25 @@ | ||
| { | ||
| "message_type": "INIT", | ||
| "timestamp": 0, | ||
| "run_id": "Hwy-Obstacle-old-detection-zero-delay", | ||
| "moving_actors": [ | ||
| { | ||
| "actor_id": "car", | ||
| "actor_type": "car", | ||
| "actor_configuration": { | ||
| "configuration_id": "simple_vehicle", | ||
| "route": "straight_hwy_world_4_obstacles", | ||
| "agent_configuration": "simple_agent", | ||
| "agent_id": "agent_id" | ||
| } | ||
| } | ||
| ], | ||
| "carla_configuration": { | ||
| "seed": 11120, | ||
| "sim_time_limit": 30, | ||
| "carla_timestep": 0.01 | ||
| }, | ||
| "user_defined": { | ||
| "carla_world_configuration": "world_4" | ||
| } | ||
| } |
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,5 @@ | ||
| { | ||
| "message_type": "SIMULATION_STEP", | ||
| "carla_timestep": 0.01, | ||
| "timestamp": 0 | ||
| } |
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,8 @@ | ||
| { | ||
| "message_type": "GENERIC_MESSAGE", | ||
| "timestamp": 0, | ||
| "user_defined": { | ||
| "user_message_type": "ACTOR_STATUS_UPDATE", | ||
| "actor_id": "car_id" | ||
| } | ||
| } |
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,9 @@ | ||
| { | ||
| "message_type": "GENERIC_MESSAGE", | ||
| "timestamp": 0, | ||
| "user_defined": { | ||
| "user_message_type": "APPLY_INSTRUCTION", | ||
| "actor_id": "car_id", | ||
| "instruction_id": "instruction_id" | ||
| } | ||
| } |
10 changes: 10 additions & 0 deletions
10
zero-delay-network/API_hwy_moving/compute_instruction.json
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,10 @@ | ||
| { | ||
| "message_type": "GENERIC_MESSAGE", | ||
| "timestamp": 0, | ||
| "user_defined": { | ||
| "user_message_type": "COMPUTE_INSTRUCTION", | ||
| "actor_id": "car_id", | ||
| "agent_id": "agent_id", | ||
| "status_id": "status_id" | ||
| } | ||
| } |
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,25 @@ | ||
| { | ||
| "message_type": "INIT", | ||
| "timestamp": 0, | ||
| "run_id": "Hwy-Moving-Obstacle-old-detection-zero-delay", | ||
| "moving_actors": [ | ||
| { | ||
| "actor_id": "car_id", | ||
| "actor_type": "car", | ||
| "actor_configuration": { | ||
| "configuration_id": "simple_vehicle", | ||
| "route": "hwy_world_4_moving_obstacle", | ||
| "agent_configuration": "simple_agent", | ||
| "agent_id": "agent_id" | ||
| } | ||
| } | ||
| ], | ||
| "carla_configuration": { | ||
| "seed": 11120, | ||
| "sim_time_limit": 38, | ||
| "carla_timestep": 0.01 | ||
| }, | ||
| "user_defined": { | ||
| "carla_world_configuration": "world_4" | ||
| } | ||
| } |
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,5 @@ | ||
| { | ||
| "message_type": "SIMULATION_STEP", | ||
| "carla_timestep": 0.01, | ||
| "timestamp": 0 | ||
| } |
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,8 @@ | ||
| { | ||
| "message_type": "GENERIC_MESSAGE", | ||
| "timestamp": 0, | ||
| "user_defined": { | ||
| "user_message_type": "ACTOR_STATUS_UPDATE", | ||
| "actor_id": "car" | ||
| } | ||
| } |
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.
why not use https://github.com/connets/tod-carla?