-
Notifications
You must be signed in to change notification settings - Fork 387
Particle system - Part2 #562
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
Merged
Merged
Changes from 14 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
71ea2b9
Parsin SDF and component creation with tests.
caguero 23d0c62
Update test
caguero 9374df7
Tweaks
caguero e0510a2
Doc
caguero fb85188
Tweaks
caguero d4aae90
Merge branch 'particle_system' into particle_system_part2
caguero ea61288
Unique name if name not provided.
caguero 10988c9
Document default values.
caguero 38a9ebd
documentation/formatting tweaks
adlarkin 9ed110b
update tests and handle start/end color input
adlarkin 62646ea
allow renaming
iche033 ec532c9
remove unique test dir env
iche033 e0bf72e
Merge remote-tracking branch 'origin/particle_system' into particle_s…
iche033 ff65cb6
doc and msg
iche033 18b0194
Particle system - Part3 (#593)
caguero 2a6549e
update note about adding material check to integration test
adlarkin 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 |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| gz_add_system(particle-emitter | ||
| SOURCES | ||
| ParticleEmitter.cc | ||
| PUBLIC_LINK_LIBS | ||
| ignition-msgs${IGN_MSGS_VER}::ignition-msgs${IGN_MSGS_VER} | ||
| ) |
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,264 @@ | ||
| /* | ||
| * Copyright (C) 2021 Open Source Robotics Foundation | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| * | ||
| */ | ||
|
|
||
| #include <ignition/msgs/particle_emitter.pb.h> | ||
|
|
||
| #include <string> | ||
|
|
||
| #include <ignition/common/Profiler.hh> | ||
| #include <ignition/math/Color.hh> | ||
| #include <ignition/math/Vector3.hh> | ||
| #include <ignition/msgs/Utility.hh> | ||
| #include <ignition/plugin/Register.hh> | ||
|
|
||
| #include <ignition/gazebo/components/Name.hh> | ||
| #include <ignition/gazebo/components/ParticleEmitter.hh> | ||
| #include <ignition/gazebo/components/Pose.hh> | ||
| #include <ignition/gazebo/Conversions.hh> | ||
| #include <sdf/Material.hh> | ||
| #include "ParticleEmitter.hh" | ||
|
|
||
| using namespace ignition; | ||
| using namespace gazebo; | ||
| using namespace systems; | ||
|
|
||
| // Private data class. | ||
| class ignition::gazebo::systems::ParticleEmitterPrivate | ||
| { | ||
| /// \brief The particle emitter. | ||
| public: ignition::msgs::ParticleEmitter emitter; | ||
|
|
||
| /// \brief Get a RGBA color representation based on a color's | ||
| /// string representation. | ||
| /// \param[in] _colorStr The string representation of a color (ex: "black"), | ||
| /// which is case sensitive (the string representation should be lowercase). | ||
| /// \return The Color, represented in RGBA format. If _colorStr is invalid, | ||
| /// ignition::math::Color::White is returned | ||
| public: ignition::math::Color GetColor(const std::string &_colorStr) const; | ||
| }; | ||
|
|
||
| ////////////////////////////////////////////////// | ||
| ParticleEmitter::ParticleEmitter() | ||
| : System(), dataPtr(std::make_unique<ParticleEmitterPrivate>()) | ||
| { | ||
| } | ||
|
|
||
| ////////////////////////////////////////////////// | ||
| void ParticleEmitter::Configure(const Entity &/*_entity*/, | ||
| const std::shared_ptr<const sdf::Element> &_sdf, | ||
| EntityComponentManager &_ecm, | ||
| EventManager &/*_eventMgr*/) | ||
| { | ||
| // Create a particle emitter entity. | ||
| auto entity = _ecm.CreateEntity(); | ||
| if (entity == kNullEntity) | ||
| { | ||
| ignerr << "Failed to create a particle emitter entity" << std::endl; | ||
| return; | ||
| } | ||
|
|
||
| // allow_renaming | ||
| bool allowRenaming = false; | ||
| if (_sdf->HasElement("allow_renaming")) | ||
| allowRenaming = _sdf->Get<bool>("allow_renaming"); | ||
|
|
||
| // Name. | ||
| std::string name = "particle_emitter_entity_" + std::to_string(entity); | ||
| if (_sdf->HasElement("emitter_name")) | ||
| { | ||
| std::set<std::string> emitterNames; | ||
| std::string emitterName = _sdf->Get<std::string>("emitter_name"); | ||
|
|
||
| // check to see if name is already taken | ||
| _ecm.Each<components::Name, components::ParticleEmitter>( | ||
| [&emitterNames](const Entity &, const components::Name *_name, | ||
| const components::ParticleEmitter *) | ||
| { | ||
| emitterNames.insert(_name->Data()); | ||
| return true; | ||
| }); | ||
|
|
||
| name = emitterName; | ||
|
|
||
| // rename emitter if needed | ||
| if (emitterNames.find(emitterName) != emitterNames.end()) | ||
| { | ||
| if (!allowRenaming) | ||
| { | ||
| ignwarn << "Entity named [" << name | ||
| << "] already exists and " | ||
| << "[allow_renaming] is false. Entity not spawned." | ||
| << std::endl; | ||
| return; | ||
| } | ||
| int counter = 0; | ||
| while (emitterNames.find(name) != emitterNames.end()) | ||
| { | ||
| name = emitterName + "_" + std::to_string(++counter); | ||
| } | ||
| ignmsg << "Entity named [" << emitterName | ||
| << "] already exists. Renaming it to " << name << std::endl; | ||
| } | ||
| } | ||
| this->dataPtr->emitter.set_name(name); | ||
adlarkin marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| // Type. The default type is point. | ||
| this->dataPtr->emitter.set_type( | ||
| ignition::msgs::ParticleEmitter_EmitterType_POINT); | ||
| std::string type = _sdf->Get<std::string>("type", "point").first; | ||
| if (type == "box") | ||
| { | ||
| this->dataPtr->emitter.set_type( | ||
| ignition::msgs::ParticleEmitter_EmitterType_BOX); | ||
| } | ||
| else if (type == "cylinder") | ||
| { | ||
| this->dataPtr->emitter.set_type( | ||
| ignition::msgs::ParticleEmitter_EmitterType_CYLINDER); | ||
| } | ||
| else if (type == "ellipsoid") | ||
| { | ||
| this->dataPtr->emitter.set_type( | ||
| ignition::msgs::ParticleEmitter_EmitterType_ELLIPSOID); | ||
| } | ||
| else if (type != "point") | ||
| { | ||
| ignerr << "Unknown emitter type [" << type << "]. Using [point] instead" | ||
| << std::endl; | ||
| } | ||
|
|
||
| // Pose. | ||
| ignition::math::Pose3d pose = | ||
| _sdf->Get<ignition::math::Pose3d>("pose"); | ||
| ignition::msgs::Set(this->dataPtr->emitter.mutable_pose(), pose); | ||
adlarkin marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| // Size. | ||
| ignition::math::Vector3d size = ignition::math::Vector3d::One; | ||
| if (_sdf->HasElement("size")) | ||
| size = _sdf->Get<ignition::math::Vector3d>("size"); | ||
| ignition::msgs::Set(this->dataPtr->emitter.mutable_size(), size); | ||
|
|
||
| // Rate. | ||
| this->dataPtr->emitter.set_rate(_sdf->Get<double>("rate", 10).first); | ||
|
|
||
| // Duration. | ||
| this->dataPtr->emitter.set_duration(_sdf->Get<double>("duration", 0).first); | ||
|
|
||
| // Emitting. | ||
| this->dataPtr->emitter.set_emitting(_sdf->Get<bool>("emitting", false).first); | ||
|
|
||
| // Particle size. | ||
| size = ignition::math::Vector3d::One; | ||
| if (_sdf->HasElement("particle_size")) | ||
| size = _sdf->Get<ignition::math::Vector3d>("particle_size"); | ||
| ignition::msgs::Set(this->dataPtr->emitter.mutable_particle_size(), size); | ||
|
|
||
| // Lifetime. | ||
| this->dataPtr->emitter.set_lifetime(_sdf->Get<double>("lifetime", 5).first); | ||
|
|
||
| // Material. | ||
| if (_sdf->HasElement("material")) | ||
| { | ||
| auto materialElem = _sdf->GetElementImpl("material"); | ||
| sdf::Material material; | ||
| material.Load(materialElem); | ||
| ignition::msgs::Material materialMsg = convert<msgs::Material>(material); | ||
adlarkin marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
|
|
||
| // Min velocity. | ||
| this->dataPtr->emitter.set_min_velocity( | ||
| _sdf->Get<double>("min_velocity", 1).first); | ||
|
|
||
| // Max velocity. | ||
| this->dataPtr->emitter.set_max_velocity( | ||
| _sdf->Get<double>("max_velocity", 1).first); | ||
|
|
||
| // Color start. | ||
| ignition::msgs::Set(this->dataPtr->emitter.mutable_color_start(), | ||
| this->dataPtr->GetColor(_sdf->Get<std::string>("color_start"))); | ||
|
|
||
| // Color end. | ||
| ignition::msgs::Set(this->dataPtr->emitter.mutable_color_end(), | ||
| this->dataPtr->GetColor(_sdf->Get<std::string>("color_end"))); | ||
|
|
||
| // Scale rate. | ||
| this->dataPtr->emitter.set_scale_rate( | ||
| _sdf->Get<double>("scale_rate", 1).first); | ||
|
|
||
| // Color range image. | ||
| this->dataPtr->emitter.set_color_range_image( | ||
| _sdf->Get<std::string>("color_range_image", "").first); | ||
adlarkin marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| igndbg << "Loading particle emitter:" << std::endl | ||
| << this->dataPtr->emitter.DebugString() << std::endl; | ||
adlarkin marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| // Create components. | ||
| _ecm.CreateComponent(entity, components::Name(this->dataPtr->emitter.name())); | ||
|
|
||
| _ecm.CreateComponent(entity, | ||
| components::ParticleEmitter(this->dataPtr->emitter)); | ||
|
|
||
| _ecm.CreateComponent(entity, components::Pose(pose)); | ||
|
|
||
| igndbg << "Particle emitter has been loaded." << std::endl; | ||
| } | ||
|
|
||
| ////////////////////////////////////////////////// | ||
| void ParticleEmitter::PreUpdate(const ignition::gazebo::UpdateInfo &/*_info*/, | ||
adlarkin marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ignition::gazebo::EntityComponentManager &/*_ecm*/) | ||
| { | ||
| IGN_PROFILE("ParticleEmitter::PreUpdate"); | ||
| } | ||
|
|
||
| ////////////////////////////////////////////////// | ||
| ignition::math::Color ParticleEmitterPrivate::GetColor( | ||
| const std::string &_colorStr) const | ||
| { | ||
| if (_colorStr == "black") | ||
| return ignition::math::Color::Black; | ||
| if (_colorStr == "red") | ||
| return ignition::math::Color::Red; | ||
| if (_colorStr == "green") | ||
| return ignition::math::Color::Green; | ||
| if (_colorStr == "blue") | ||
| return ignition::math::Color::Blue; | ||
| if (_colorStr == "yellow") | ||
| return ignition::math::Color::Yellow; | ||
| if (_colorStr == "magenta") | ||
| return ignition::math::Color::Magenta; | ||
| if (_colorStr == "cyan") | ||
| return ignition::math::Color::Cyan; | ||
|
|
||
| // let users know an invalid string was given | ||
| // (_colorStr.empty() means that an empty string was parsed from SDF, | ||
| // which probably means that users never specified a color and are | ||
| // relying on the defaults) | ||
| if (!_colorStr.empty() && (_colorStr != "white")) | ||
| { | ||
| ignwarn << "Invalid color given (" << _colorStr | ||
| << "). Defaulting to white." << std::endl; | ||
| } | ||
| return ignition::math::Color::White; | ||
| } | ||
|
|
||
| IGNITION_ADD_PLUGIN(ParticleEmitter, | ||
| ignition::gazebo::System, | ||
| ParticleEmitter::ISystemConfigure, | ||
| ParticleEmitter::ISystemPreUpdate) | ||
|
|
||
| IGNITION_ADD_PLUGIN_ALIAS(ParticleEmitter, | ||
| "ignition::gazebo::systems::ParticleEmitter") | ||
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.
Uh oh!
There was an error while loading. Please reload this page.