State
State and StateDict classes for Tölvera.
Every Tölvera instance has a StateDict, which is a dictionary of State instances. The StateDict is accessible via the 's' attribute of a Tölvera instance, and can be used to create and access states.
Each State instance has a Taichi struct field and a corresponding NpNdarrayDict, which handles OSC accessors and endpoints.
State
State class for Tölvera.
This class takes a name, dictionary of state attributes, and a shape, and creates a Taichi struct field and a corresponding dictionary of NumPy arrays (NpNdarrayDict) for a state.
The Taichi struct field can be used in Taichi scope, and the NpNdarrayDict can be used in Python scope, and the two are kept in sync by the from_nddict() and to_nddict() methods.
The State class also handles OSC accessors for the state, which use the NpNdarrayDict to get and set data. A Tölvera instance is therefore required to initialise a State instance.
State attributes are defined as a dictionary of attribute names and tuples of (Taichi type, min value, max value). The domain of the attribute is used when randomising the data in the state, and by OSCMap endpoints and client patches.
The state is n-dimensional based on the shape argument, and the NpNdarrayDict provides methods for accessing the data in the state in n-dimensional slices.
Example
Source code in src/tolvera/state.py
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 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 |
|
__call__(*args, **kwds)
__getitem__(index)
Return the Taichi field attribute.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
index |
i32
|
Attribute index. |
required |
__init__(tolvera, name, state, shape=None, osc=None, randomise=True, methods=None)
Initialise a state for Tölvera.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tolvera |
Tolvera
|
Tolvera instance to which this state belongs. |
required |
name |
str
|
Name of this state. |
required |
state |
dict[str, tuple[DataType, Any, Any]]
|
Dict of state attributes. |
required |
shape |
int | tuple[int]
|
Shape of the state. Defaults to 1. |
None
|
methods |
dict[str, Any]
|
Flag for OSC via iipyper. Defaults to False. |
None
|
Source code in src/tolvera/state.py
attr_from_vec(attr, vec)
attr_size(attr)
attr_slice_from_vec(attr, slice_args, slice_vec)
Wrapper for NpNdarrayDict.attr_slice_from_vec().
attr_slice_to_vec(attr, slice_args)
attr_to_vec(attr)
create_npndarray_dict()
Create a NpNdarrayDict for this state.
Raises:
Type | Description |
---|---|
NotImplementedError
|
If no Numpy type is found for a Taichi type. |
Source code in src/tolvera/state.py
create_struct_field(dict, shape, methods=None)
Create a Taichi struct field for this state.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dict |
dict[str, tuple[DataType, Any, Any]]
|
Dict of state attributes. |
required |
shape |
int | tuple[int]
|
Shape of the state. |
required |
methods |
dict[str, Any]
|
Dict of Taichi field struct methods. Defaults to None. |
None
|
Source code in src/tolvera/state.py
fill(value)
from_nddict()
Copy data from NpNdarrayDict to Taichi field.
Raises:
Type | Description |
---|---|
Exception
|
If data cannot be copied. |
Source code in src/tolvera/state.py
from_vec(vec)
randomise()
randomise_attr(attr)
Randomise an attribute in this state.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
attr |
str
|
Attribute name. |
required |
set_from_nddict(data)
Copy data from NumPy array dict to Taichi field.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
dict
|
NumPy array dict to copy. |
required |
Raises:
Type | Description |
---|---|
Exception
|
If data cannot be copied. |
Source code in src/tolvera/state.py
setup_data(dict, shape, randomise=True, methods=None)
Setup data structures and data for this state.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dict |
dict[str, tuple[DataType, Any, Any]]
|
Dict of state attributes. |
required |
shape |
int | tuple[int]
|
Shape of the state. |
required |
randomise |
bool
|
Flag to randomise the data on creation. Defaults to True. |
True
|
methods |
dict[str, Any]
|
Dict of Taichi field struct methods. Defaults to None. |
None
|
Source code in src/tolvera/state.py
setup_osc(osc=None)
Setup OSC for this state.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
osc |
tuple | str
|
("get", "set", "stream"). Defaults to None. |
None
|
Source code in src/tolvera/state.py
slice_from_vec(slice_args, slice_vec)
slice_to_vec(slice_args)
to_nddict()
Copy data from Taichi field to NpNdarrayDict.
Raises:
Type | Description |
---|---|
Exception
|
If data cannot be copied. |
Source code in src/tolvera/state.py
StateDict
Bases: dotdict
StateDict class for Tölvera.
This class is a dictionary of State instances, and is accessible via the 's' attribute of a Tölvera instance.
States can be created by assigning a dictionary or a tuple to a StateDict key. and can be used in Taichi scope and Python scope respectively.
Example
tv = Tolvera(**kwargs)
tv.s.mystate = { "state": { "id": (ti.i32, 0, tv.pn - 1), "pos": (ti.math.vec2, -1.0, 1.0), "vel": (ti.math.vec2, -1.0, 1.0), }, "shape": (tv.pn, 1), "osc": "get", "randomise": True }
tv.s.mystate.field.pos[0] = 0.5
Source code in src/tolvera/state.py
22 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 |
|
__init__(tolvera)
Initialise a StateDict for Tölvera.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tolvera |
Tolvera
|
Tolvera instance to which this StateDict belongs. |
required |
__setattr__(__name, __value)
Set a state in the StateDict.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
__name |
str
|
Name of the state. |
required |
__value |
Any
|
State attributes. |
required |
add(name, kwargs)
Add a state to the StateDict.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
Name of the state. |
required |
kwargs |
Any
|
State attributes. |
required |
Raises:
Type | Description |
---|---|
TypeError
|
If kwargs is not a dict or tuple. |
Source code in src/tolvera/state.py
from_vec(states, vector)
Copy data from a vector to states in the StateDict.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
states |
list[str]
|
List of state names. |
required |
vector |
list[float]
|
Vector of data to copy. |
required |
Raises:
Type | Description |
---|---|
Exception
|
If the vector is not the correct size. |
Source code in src/tolvera/state.py
get_size(states)
Return the size of the states in the StateDict.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
states |
str | list[str]
|
State name or list of state names. |
required |
Returns:
Name | Type | Description |
---|---|---|
int |
int
|
Size of the states. |
Source code in src/tolvera/state.py
set(name, kwargs)
Set a state in the StateDict.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
Name of the state. |
required |
kwargs |
Any
|
State attributes. |
required |
Raises:
Type | Description |
---|---|
ValueError
|
If the state is already in the StateDict. |
Exception
|
If the state cannot be added. |