Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6673038

Browse files
author
Davide Faconti
committed
Deployed d117199 with MkDocs version: 1.0.4
1 parent f1c9284 commit 6673038

File tree

18 files changed

+95
-105
lines changed

18 files changed

+95
-105
lines changed

404.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@
169169

170170

171171

172-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/" title="Go to repository" class="md-source" data-md-source="github">
172+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/" title="Go to repository" class="md-source" data-md-source="github">
173173

174174
<div class="md-source__icon">
175175
<svg viewBox="0 0 24 24" width="24" height="24">
@@ -178,7 +178,7 @@
178178
</div>
179179

180180
<div class="md-source__repository">
181-
BehaviorTreeCPP
181+
BehaviorTree.CPP
182182
</div>
183183
</a>
184184

@@ -264,7 +264,7 @@
264264

265265

266266

267-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/" title="Go to repository" class="md-source" data-md-source="github">
267+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/" title="Go to repository" class="md-source" data-md-source="github">
268268

269269
<div class="md-source__icon">
270270
<svg viewBox="0 0 24 24" width="24" height="24">
@@ -273,7 +273,7 @@
273273
</div>
274274

275275
<div class="md-source__repository">
276-
BehaviorTreeCPP
276+
BehaviorTree.CPP
277277
</div>
278278
</a>
279279

BT_basics/index.html

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173

174174

175175

176-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/" title="Go to repository" class="md-source" data-md-source="github">
176+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/" title="Go to repository" class="md-source" data-md-source="github">
177177

178178
<div class="md-source__icon">
179179
<svg viewBox="0 0 24 24" width="24" height="24">
@@ -182,7 +182,7 @@
182182
</div>
183183

184184
<div class="md-source__repository">
185-
BehaviorTreeCPP
185+
BehaviorTree.CPP
186186
</div>
187187
</a>
188188

@@ -270,7 +270,7 @@
270270

271271

272272

273-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/" title="Go to repository" class="md-source" data-md-source="github">
273+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/" title="Go to repository" class="md-source" data-md-source="github">
274274

275275
<div class="md-source__icon">
276276
<svg viewBox="0 0 24 24" width="24" height="24">
@@ -279,7 +279,7 @@
279279
</div>
280280

281281
<div class="md-source__repository">
282-
BehaviorTreeCPP
282+
BehaviorTree.CPP
283283
</div>
284284
</a>
285285

@@ -644,7 +644,7 @@
644644
<article class="md-content__inner md-typeset">
645645

646646

647-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/edit/master/docs/BT_basics.md" title="Edit this page" class="md-icon md-content__icon">&#xE3C9;</a>
647+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/edit/master/docs/BT_basics.md" title="Edit this page" class="md-icon md-content__icon">&#xE3C9;</a>
648648

649649

650650
<h1 id="introduction-to-bts">Introduction to BTs</h1>
@@ -706,9 +706,7 @@ <h3 id="first-controlnode-sequence">First ControlNode: Sequence</h3>
706706
<li>If all the children return SUCCESS, then the Sequence returns SUCCESS too.</li>
707707
</ul>
708708
<details class="warning"><summary>Exercise: find the bug! Expand to read the answer.</summary><p>If the action <strong>GrabBeer</strong> fails, the door of the
709-
fridge would remain open, since the last action <strong>CloseDoor</strong> is skipped.</p>
710-
</details>
711-
<h3 id="decorators">Decorators</h3>
709+
fridge would remain open, since the last action <strong>CloseDoor</strong> is skipped.</p></details><h3 id="decorators">Decorators</h3>
712710
<p>The goal of a <a href="../DecoratorNode/">DecoratorNode</a> is either to transform the result it received
713711
from the child, to terminate the child,
714712
or repeat ticking of the child, depending on the type of Decorator.</p>
@@ -732,9 +730,7 @@ <h3 id="decorators">Decorators</h3>
732730
<p><strong>But</strong> there is an error. Can you find it?</p>
733731
<details class="warning"><summary>Exercise: find the bug! Expand to read the answer.</summary><p>If <strong>DoorOpen</strong> returns FAILURE, we have the desired behaviour.
734732
But if it returns SUCCESS, the left branch fails and the entire Sequence
735-
is interrupted. </p>
736-
</details>
737-
<h3 id="second-controlnode-fallback">Second ControlNode: Fallback</h3>
733+
is interrupted. </p></details><h3 id="second-controlnode-fallback">Second ControlNode: Fallback</h3>
738734
<p><a href="../FallbackNode/">FallbackNodes</a>, known also as <strong>"Selector"</strong>,
739735
are nodes that can express, as the name suggests, fallback strategies,
740736
ie. what to do next if a child returns FAILURE.</p>

BlackBoard/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@
169169

170170

171171

172-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/" title="Go to repository" class="md-source" data-md-source="github">
172+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/" title="Go to repository" class="md-source" data-md-source="github">
173173

174174
<div class="md-source__icon">
175175
<svg viewBox="0 0 24 24" width="24" height="24">
@@ -178,7 +178,7 @@
178178
</div>
179179

180180
<div class="md-source__repository">
181-
BehaviorTreeCPP
181+
BehaviorTree.CPP
182182
</div>
183183
</a>
184184

@@ -264,7 +264,7 @@
264264

265265

266266

267-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/" title="Go to repository" class="md-source" data-md-source="github">
267+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/" title="Go to repository" class="md-source" data-md-source="github">
268268

269269
<div class="md-source__icon">
270270
<svg viewBox="0 0 24 24" width="24" height="24">
@@ -273,7 +273,7 @@
273273
</div>
274274

275275
<div class="md-source__repository">
276-
BehaviorTreeCPP
276+
BehaviorTree.CPP
277277
</div>
278278
</a>
279279

@@ -485,7 +485,7 @@
485485
<article class="md-content__inner md-typeset">
486486

487487

488-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/edit/master/docs/BlackBoard.md" title="Edit this page" class="md-icon md-content__icon">&#xE3C9;</a>
488+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/edit/master/docs/BlackBoard.md" title="Edit this page" class="md-icon md-content__icon">&#xE3C9;</a>
489489

490490

491491
<h1>BlackBoard</h1>

DecoratorNode/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173

174174

175175

176-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/" title="Go to repository" class="md-source" data-md-source="github">
176+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/" title="Go to repository" class="md-source" data-md-source="github">
177177

178178
<div class="md-source__icon">
179179
<svg viewBox="0 0 24 24" width="24" height="24">
@@ -182,7 +182,7 @@
182182
</div>
183183

184184
<div class="md-source__repository">
185-
BehaviorTreeCPP
185+
BehaviorTree.CPP
186186
</div>
187187
</a>
188188

@@ -270,7 +270,7 @@
270270

271271

272272

273-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/" title="Go to repository" class="md-source" data-md-source="github">
273+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/" title="Go to repository" class="md-source" data-md-source="github">
274274

275275
<div class="md-source__icon">
276276
<svg viewBox="0 0 24 24" width="24" height="24">
@@ -279,7 +279,7 @@
279279
</div>
280280

281281
<div class="md-source__repository">
282-
BehaviorTreeCPP
282+
BehaviorTree.CPP
283283
</div>
284284
</a>
285285

@@ -618,7 +618,7 @@
618618
<article class="md-content__inner md-typeset">
619619

620620

621-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/edit/master/docs/DecoratorNode.md" title="Edit this page" class="md-icon md-content__icon">&#xE3C9;</a>
621+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/edit/master/docs/DecoratorNode.md" title="Edit this page" class="md-icon md-content__icon">&#xE3C9;</a>
622622

623623

624624
<h1 id="decorators">Decorators</h1>
@@ -636,12 +636,12 @@ <h2 id="forcefailurenode">ForceFailureNode</h2>
636636
<p>If the child returns RUNNING, this node returns RUNNING too. </p>
637637
<p>Otherwise, it returns always FAILURE.</p>
638638
<h2 id="repeatnode">RepeatNode</h2>
639-
<p>Tick the child up to N times, where N is passed as a <a href="../NodeParameters/">NodeParameter</a>,
639+
<p>Tick the child up to N times, where N is passed as a <a href="../tutorial_B_node_parameters/">NodeParameter</a>,
640640
as long as the child returns SUCCESS.</p>
641641
<p>Interrupt the loop if the child returns FAILURE and, in that case, return FAILURE too.</p>
642642
<p>If the child returns RUNNING, this node returns RUNNING too.</p>
643643
<h2 id="retrynode">RetryNode</h2>
644-
<p>Tick the child up to N times, where N is passed as a <a href="../NodeParameters/">NodeParameter</a>,
644+
<p>Tick the child up to N times, where N is passed as a <a href="../tutorial_B_node_parameters/">NodeParameter</a>,
645645
as long as the child returns FAILURE.</p>
646646
<p>Interrupt the loop if the child returns SUCCESS and, in that case, return SUCCESS too.</p>
647647
<p>If the child returns RUNNING, this node returns RUNNING too.</p>

FallbackNode/index.html

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173

174174

175175

176-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/" title="Go to repository" class="md-source" data-md-source="github">
176+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/" title="Go to repository" class="md-source" data-md-source="github">
177177

178178
<div class="md-source__icon">
179179
<svg viewBox="0 0 24 24" width="24" height="24">
@@ -182,7 +182,7 @@
182182
</div>
183183

184184
<div class="md-source__repository">
185-
BehaviorTreeCPP
185+
BehaviorTree.CPP
186186
</div>
187187
</a>
188188

@@ -270,7 +270,7 @@
270270

271271

272272

273-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/" title="Go to repository" class="md-source" data-md-source="github">
273+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/" title="Go to repository" class="md-source" data-md-source="github">
274274

275275
<div class="md-source__icon">
276276
<svg viewBox="0 0 24 24" width="24" height="24">
@@ -279,7 +279,7 @@
279279
</div>
280280

281281
<div class="md-source__repository">
282-
BehaviorTreeCPP
282+
BehaviorTree.CPP
283283
</div>
284284
</a>
285285

@@ -576,7 +576,7 @@
576576
<article class="md-content__inner md-typeset">
577577

578578

579-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/edit/master/docs/FallbackNode.md" title="Edit this page" class="md-icon md-content__icon">&#xE3C9;</a>
579+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/edit/master/docs/FallbackNode.md" title="Edit this page" class="md-icon md-content__icon">&#xE3C9;</a>
580580

581581

582582
<h1 id="fallback">Fallback</h1>
@@ -637,9 +637,7 @@ <h2 id="fallbacknode">FallbackNode</h2>
637637
<span class="n">HaltAllChildren</span><span class="p">();</span>
638638
<span class="k">return</span> <span class="n">FAILURE</span><span class="p">;</span>
639639
</pre></div>
640-
641-
</details>
642-
<h2 id="fallbackstarnode">FallbackStarNode</h2>
640+
</details><h2 id="fallbackstarnode">FallbackStarNode</h2>
643641
<p>If a child returns <strong>RUNNING</strong>:</p>
644642
<ul>
645643
<li>FallbackStarNode returns <strong>RUNNING</strong>. </li>
@@ -674,7 +672,6 @@ <h2 id="fallbackstarnode">FallbackStarNode</h2>
674672
<span class="n">HaltAllChildren</span><span class="p">();</span>
675673
<span class="k">return</span> <span class="n">FAILURE</span><span class="p">;</span>
676674
</pre></div>
677-
678675
</details>
679676

680677

NodeParameters/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173

174174

175175

176-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/" title="Go to repository" class="md-source" data-md-source="github">
176+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/" title="Go to repository" class="md-source" data-md-source="github">
177177

178178
<div class="md-source__icon">
179179
<svg viewBox="0 0 24 24" width="24" height="24">
@@ -182,7 +182,7 @@
182182
</div>
183183

184184
<div class="md-source__repository">
185-
BehaviorTreeCPP
185+
BehaviorTree.CPP
186186
</div>
187187
</a>
188188

@@ -268,7 +268,7 @@
268268

269269

270270

271-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/" title="Go to repository" class="md-source" data-md-source="github">
271+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/" title="Go to repository" class="md-source" data-md-source="github">
272272

273273
<div class="md-source__icon">
274274
<svg viewBox="0 0 24 24" width="24" height="24">
@@ -277,7 +277,7 @@
277277
</div>
278278

279279
<div class="md-source__repository">
280-
BehaviorTreeCPP
280+
BehaviorTree.CPP
281281
</div>
282282
</a>
283283

@@ -504,7 +504,7 @@
504504
<article class="md-content__inner md-typeset">
505505

506506

507-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/edit/master/docs/NodeParameters.md" title="Edit this page" class="md-icon md-content__icon">&#xE3C9;</a>
507+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/edit/master/docs/NodeParameters.md" title="Edit this page" class="md-icon md-content__icon">&#xE3C9;</a>
508508

509509

510510
<h1 id="nodeparameters">NodeParameters</h1>

SequenceNode/index.html

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173

174174

175175

176-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/" title="Go to repository" class="md-source" data-md-source="github">
176+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/" title="Go to repository" class="md-source" data-md-source="github">
177177

178178
<div class="md-source__icon">
179179
<svg viewBox="0 0 24 24" width="24" height="24">
@@ -182,7 +182,7 @@
182182
</div>
183183

184184
<div class="md-source__repository">
185-
BehaviorTreeCPP
185+
BehaviorTree.CPP
186186
</div>
187187
</a>
188188

@@ -270,7 +270,7 @@
270270

271271

272272

273-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/" title="Go to repository" class="md-source" data-md-source="github">
273+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/" title="Go to repository" class="md-source" data-md-source="github">
274274

275275
<div class="md-source__icon">
276276
<svg viewBox="0 0 24 24" width="24" height="24">
@@ -279,7 +279,7 @@
279279
</div>
280280

281281
<div class="md-source__repository">
282-
BehaviorTreeCPP
282+
BehaviorTree.CPP
283283
</div>
284284
</a>
285285

@@ -576,7 +576,7 @@
576576
<article class="md-content__inner md-typeset">
577577

578578

579-
<a href="https://github.com/BehaviorTree/BehaviorTreeCPP/edit/master/docs/SequenceNode.md" title="Edit this page" class="md-icon md-content__icon">&#xE3C9;</a>
579+
<a href="https://github.com/BehaviorTree/BehaviorTree.CPP/edit/master/docs/SequenceNode.md" title="Edit this page" class="md-icon md-content__icon">&#xE3C9;</a>
580580

581581

582582
<h1 id="sequences">Sequences</h1>
@@ -644,9 +644,7 @@ <h2 id="sequencenode">SequenceNode</h2>
644644
<span class="n">HaltAllChildren</span><span class="p">();</span>
645645
<span class="k">return</span> <span class="n">SUCCESS</span><span class="p">;</span>
646646
</pre></div>
647-
648-
</details>
649-
<h2 id="sequencestarnode">SequenceStarNode</h2>
647+
</details><h2 id="sequencestarnode">SequenceStarNode</h2>
650648
<p>Use this ControlNode when you don't want to tick a child more than once.</p>
651649
<p>You can customize its behavior using the <a href="../NodeParameters/">NodeParameter</a> "reset_on_failure".</p>
652650
<ul>
@@ -700,7 +698,6 @@ <h2 id="sequencestarnode">SequenceStarNode</h2>
700698
<span class="n">HaltAllChildren</span><span class="p">();</span>
701699
<span class="k">return</span> <span class="n">SUCCESS</span><span class="p">;</span>
702700
</pre></div>
703-
704701
</details>
705702

706703

0 commit comments

Comments
 (0)