Blackboard
dendron.blackboard.Blackboard
A blackboard for a Behavior Tree. Implements a key-value mapping that is accessible by all of the nodes in a behavior tree.
Source code in src/dendron/blackboard.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
|
__delitem__(key)
Delete an entry from the blackboard.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
`Any`
|
The key we want to remove from the blackboard. |
required |
__getitem__(key)
Get the value associated with the given key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
`Any`
|
The key we want the value for. |
required |
Returns:
Type | Description |
---|---|
Any
|
|
Source code in src/dendron/blackboard.py
__iter__()
Get an iterator over key-value pairs.
Returns:
Type | Description |
---|---|
Iterator
|
|
__len__()
Get the number of key-value pairs in the blackboard.
Returns:
Type | Description |
---|---|
int
|
|
__setitem__(key, value)
Add a key-value pair to the blackboard. If key
is not already
in the
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
`Any`
|
Key to query on. Usually a |
required |
value |
`Any`
|
The value that |
required |
Source code in src/dendron/blackboard.py
__str__()
Get a tabular representation of this blackboard in a str
.
Returns:
Type | Description |
---|---|
str
|
|
Source code in src/dendron/blackboard.py
get(key)
Get the value associated with the given key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
`Any`
|
The key we want the value for. |
required |
Returns:
Type | Description |
---|---|
Any
|
|
Source code in src/dendron/blackboard.py
get_entry(key)
Return the value associated with the given key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
`Any`
|
Key to query on. Usually a |
required |
register_entry(entry)
Register a new metadata entry for this blackboard. Primarily useful for specfying a type constructor to use with values that go with a certain key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
entry |
`dendron.blackboard.BlackboardEntryMetadata`
|
The entry to register. |
required |
Source code in src/dendron/blackboard.py
set(key, value)
set_entry(key, description=None, type_constructor=None)
Set the metadata for a particular key in anticipation of future values.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
`Any`
|
Key to query on. Usually a |
required |
description |
`Optional[str`]
|
An optional human-readable description of the key-value pair. |
None
|
type_constructor |
`Type`
|
An optional type constructor to convert data upon reading. |
None
|
Source code in src/dendron/blackboard.py
set_print_len(new_len)
Set the width of the columns for printing this blackboard.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
new_len |
`int`
|
The new column width for printing. |
required |