Skip to content
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

Question about internal loop vs. counter management for Repeater node #938

Open
Lecrapouille opened this issue Feb 23, 2025 · 0 comments
Open

Comments

@Lecrapouille
Copy link

Hello !

I read the code source of the repeater node.

NodeStatus RepeatNode::tick()
{
...
  bool do_loop = repeat_count_ < num_cycles_ || num_cycles_ == -1;
  setStatus(NodeStatus::RUNNING);

  while(do_loop)
  {

Why do you use an internal loop instead of using a counter forcing the Repeater node to be ticked "num_cycles_" times ?

My naive implementation would be:

        Status status = m_child->tick();
        if (status == Status::RUNNING)
        {
            return Status::RUNNING;
        }
        else if (status == Status::FAILURE)
        {
            return Status::FAILURE;
        }
        
        if ((m_num_cycles > 0) && (++m_counter == m_num_cycles))
        {
            m_counter = m_num_cycles;
            return Status::SUCCESS;
        }
        
        return Status::RUNNING;

I guess with your method, you do not have the timestamp of the tree between each iteration ? I think the last method is more in the spirit of BT: blocking less each node and each iteration scheduled by a fixed time stamp ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant