Atoms Crowd
7.0.0
Main Page
Related Pages
Modules
C++ API reference
Namespace List
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
i
j
l
m
o
p
q
r
s
v
Functions
c
d
e
f
g
i
l
m
o
r
s
Typedefs
a
b
c
d
e
j
l
m
p
q
r
s
v
Enumerations
Enumerator
d
r
Class List
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
y
Typedefs
Enumerations
Enumerator
Related Functions
•
All
Classes
Namespaces
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Modules
Pages
RotateVectorBehaviour.h
1
#pragma once
2
// ===========================================================================
3
// Copyright (c) 2015 Toolchefs Ltd. All rights reserved.
4
//
5
// Use of this software is subject to the terms of the Toolchefs license
6
// agreement provided at the time of installation or download, or which
7
// otherwise accompanies this software in either electronic or hard copy form.
8
// ===========================================================================
9
10
#include <Atoms/BehaviourTree/Behaviour.h>
11
#include <Atoms/BehaviourTree/BlackboardValue.h>
12
13
namespace
Atoms
14
{
15
class
ATOMS_EXPORT
RotateVectorBehaviour
:
public
Behaviour
16
{
17
public
:
18
19
RotateVectorBehaviour
();
20
21
virtual
~
RotateVectorBehaviour
();
22
23
virtual
const
char
* typeName()
const override
;
24
25
static
const
char
* staticTypeName();
26
27
virtual
void
update(
BehaviourTreeContext
* context,
State
* data)
override
;
28
29
virtual
void
setAttributes(
const
AtomsCore::MapMetadata
* attributes,
Blackboard
* blackboard)
override
;
30
31
virtual
void
getAttributes(
AtomsCore::MapMetadata
* attributes,
Blackboard
* blackboard)
override
;
32
33
virtual
void
getAttributeProperties(
AtomsCore::MapMetadata
* attributes)
override
;
34
35
static
Behaviour
* creator();
36
37
public
:
38
39
BlackboardStringValue
blackboardKey;
40
41
BlackboardVector3Value
vector;
42
43
BlackboardVector3Value
axis;
44
45
BlackboardDoubleValue
angle;
46
};
47
}
Atoms::Behaviour
Definition:
Behaviour.h:21
Atoms::BehaviourTreeContext
Definition:
BehaviourTreeContext.h:24
Atoms::Blackboard
Definition:
Blackboard.h:35
Atoms::BlackboardValue< std::string >
Atoms::RotateVectorBehaviour
Definition:
RotateVectorBehaviour.h:16
AtomsCore::MapMetadata
MapMetadata class.
Definition:
MapMetadata.h:24
Atoms
Atoms namespace.
Definition:
Agent.h:29
Atoms::Behaviour::State
Definition:
Behaviour.h:34
Atoms
Public
Atoms
BehaviourTree
Behaviours
RotateVectorBehaviour.h