-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into moveit_generic
- Loading branch information
Showing
18 changed files
with
590 additions
and
62 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
39 changes: 39 additions & 0 deletions
39
scenario_execution/scenario_execution/actions/decrement.py
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,39 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# | ||
# 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. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
import py_trees # pylint: disable=import-error | ||
from scenario_execution.actions.base_action import BaseAction, ActionError | ||
from scenario_execution.model.types import VariableReference | ||
|
||
|
||
class Decrement(BaseAction): | ||
""" | ||
Class to decrement the value of a variable | ||
""" | ||
|
||
def __init__(self): | ||
super().__init__(resolve_variable_reference_arguments_in_execute=False) | ||
self.target_variable = None | ||
|
||
def execute(self, target_variable: object): | ||
if not isinstance(target_variable, VariableReference): | ||
raise ActionError( | ||
f"'target_variable' is expected to be a variable reference but is {type(target_variable).__name__}.", action=self) | ||
self.target_variable = target_variable | ||
|
||
def update(self) -> py_trees.common.Status: | ||
self.target_variable.set_value(self.target_variable.get_value() - 1) | ||
return py_trees.common.Status.SUCCESS |
39 changes: 39 additions & 0 deletions
39
scenario_execution/scenario_execution/actions/increment.py
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,39 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# | ||
# 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. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
import py_trees # pylint: disable=import-error | ||
from scenario_execution.actions.base_action import BaseAction, ActionError | ||
from scenario_execution.model.types import VariableReference | ||
|
||
|
||
class Increment(BaseAction): | ||
""" | ||
Class to increment the value of a variable | ||
""" | ||
|
||
def __init__(self): | ||
super().__init__(resolve_variable_reference_arguments_in_execute=False) | ||
self.target_variable = None | ||
|
||
def execute(self, target_variable: object): | ||
if not isinstance(target_variable, VariableReference): | ||
raise ActionError( | ||
f"'target_variable' is expected to be a variable reference but is {type(target_variable).__name__}.", action=self) | ||
self.target_variable = target_variable | ||
|
||
def update(self) -> py_trees.common.Status: | ||
self.target_variable.set_value(self.target_variable.get_value() + 1) | ||
return py_trees.common.Status.SUCCESS |
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
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
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
Oops, something went wrong.