from tdw.add_ons.oculus_leap_motion import OculusLeapMotion
Add a VR rig to the scene that uses Leap Motion hand tracking.
Variable | Type | Description | Value |
---|---|---|---|
AVATAR_ID |
str | If an avatar is attached to the VR rig, this is the ID of the VR rig's avatar. | "vr" |
BONES |
List[FingerBone] | The finger bones as FingerBone values in the order that they'll appear in this add-on's dictionaries. |
[__b for __b in FingerBone] |
NUM_DOFS |
Dict[FingerBone, int] | A dictionary. Key = FingerBone . Value = The number degrees of freedom for that bone. |
{__f: 3 if __f.name[-1] == "0" else 1 for __f in FingerBone if __f != FingerBone.palm} |
-
left_hand_transforms
A dictionary ofTransform
for each bone in the left hand. Key =FingerBone
. Value =Transform
. -
right_hand_transforms
A dictionary ofTransform
for each bone on the right hand. Key =FingerBone
. Value =Transform
. -
left_hand_collisions
A dictionary of object IDs for each bone on the left hand. Key =FingerBone
. Value = A list of IDs of objects that the bone is colliding with. -
right_hand_collisions
A dictionary of object IDs for each bone in the right hand. Key =FingerBone
. Value = A list of IDs of objects that the bone is colliding with. -
left_hand_angles
A dictionary of angles per finger bone on the left hand. Key =FingerBone
. Value = A numpy array of angles in degrees. Some bones have 3 angles and some have 1. See:LeapMotion.NUM_DOFS
. The palm isn't in this dictionary. -
right_hand_angles
A dictionary of angles per finger bone on the right hand. Key =FingerBone
. Value = A numpy array of angles in degrees. Some bones have 3 angles and some have 1. See:LeapMotion.NUM_DOFS
. The palm isn't in this dictionary. -
done
If True, the rig and the simulation are done. This can be useful to break a while loop in a controller. Pressing the quit button (seequit_button
) will set this to True. -
rig
TheTransform
data of the root rig object. Ifoutput_data == False
, this is never updated. -
left_hand
TheTransform
data of the left hand. Ifoutput_data == False
, this is never updated. -
right_hand
TheTransform
data of the right hand. Ifoutput_data == False
, this is never updated. -
head
TheTransform
data of the head. Ifoutput_data == False
, this is never updated. -
held_left
A numpy of object IDs held by the left hand. -
held_right
A numpy of object IDs held by the right hand. -
commands
These commands will be appended to the commands of the nextcommunicate()
call. -
initialized
If True, this module has been initialized. -
rig
TheTransform
data of the root rig object. Ifoutput_data == False
, this is never updated. -
left_hand
TheTransform
data of the left hand. Ifoutput_data == False
, this is never updated. -
right_hand
TheTransform
data of the right hand. Ifoutput_data == False
, this is never updated. -
head
TheTransform
data of the head. Ifoutput_data == False
, this is never updated. -
held_left
A numpy of object IDs held by the left hand. -
held_right
A numpy of object IDs held by the right hand. -
commands
These commands will be appended to the commands of the nextcommunicate()
call. -
initialized
If True, this module has been initialized.
OculusOculusLeapMotion()
OculusOculusLeapMotion(set_graspable=True, output_data=True, position=None, rotation=0, attach_avatar=False, avatar_camera_width=512, headset_aspect_ratio=0.9, headset_resolution_scale=1.0, non_graspable=None, max_graspable_mass=50, min_mass=1, discrete_collision_detection_mode=True, set_object_physic_materials=True, object_static_friction=1, object_dynamic_friction=1, object_bounciness=0, time_step=0.02, quit_button=3)
Parameter | Type | Default | Description |
---|---|---|---|
set_graspable | bool | True | If True, enabled "physics helpers" for all non-kinematic objects that aren't listed in non_graspable . It's essentially not possible to grasp an object that doesn't have physics helpers. |
output_data | bool | True | If True, send VRRig output data per-frame. |
position | Dict[str, float] | None | The initial position of the VR rig. If None, defaults to {"x": 0, "y": 0, "z": 0} |
rotation | float | 0 | The initial rotation of the VR rig in degrees. |
attach_avatar | bool | False | If True, attach an avatar to the VR rig's head. Do this only if you intend to enable image capture. The avatar's ID is "vr" . |
avatar_camera_width | int | 512 | The width of the avatar's camera in pixels. This is not the same as the VR headset's screen resolution! This only affects the avatar that is created if attach_avatar is True . Generally, you will want this to lower than the headset's actual pixel width, otherwise the framerate will be too slow. |
headset_aspect_ratio | float | 0.9 | The width / height aspect ratio of the VR headset. This is only relevant if attach_avatar is True because it is used to set the height of the output images. The default value is the correct value for all Oculus devices. |
headset_resolution_scale | float | 1.0 | The headset resolution scale controls the actual size of eye textures as a multiplier of the device's default resolution. A value greater than 1 improves image quality but at a slight performance cost. Range: 0.5 to 1.75 |
non_graspable | List[int] | None | A list of IDs of non-graspable objects, meaning that they don't have physics helpers (see set_graspable ). By default, all non-kinematic objects are graspable and all kinematic objects are non-graspable. Set this to make non-kinematic objects non-graspable. |
max_graspable_mass | float | 50 | Any objects with mass greater than or equal to this value won't have physics helpers. This will prevent the hands from attempting to grasp furniture. |
min_mass | float | 1 | Unlike max_graspable_mass , this will actually set the mass of objects. Any object with a mass less than this value will be set to this value. |
discrete_collision_detection_mode | bool | True | If True, the VR rig's hands and all graspable objects in the scene will be set to the "discrete" collision detection mode, which seems to reduce physics glitches in VR. If False, the VR rig's hands and all graspable objects will be set to the "continuous_dynamic" collision detection mode (the default in TDW). |
set_object_physic_materials | bool | True | If True, set the physic material of each non-kinematic graspable object (see: non_graspable ). |
object_static_friction | float | 1 | If set_object_physic_materials == True , all non-kinematic graspable object will have this static friction value. |
object_dynamic_friction | float | 1 | If set_object_physic_materials == True , all non-kinematic graspable object will have this dynamic friction value. |
object_bounciness | float | 0 | If set_object_physic_materials == True , all non-kinematic graspable object will have this bounciness value. |
time_step | float | 0.02 | The physics time step. Leap Motion tends to work better at this value. The TDW default is 0.01. |
quit_button | Optional[int] | 3 | The button used to quit the program as an integer: 0, 1, 2, or 3. If None, no quit button will be assigned. |
self.get_initialization_commands()
This function gets called exactly once per add-on. To re-initialize, set self.initialized = False
.
Returns: A list of commands that will initialize this add-on.
self.on_send(resp)
This is called after commands are sent to the build and a response is received.
Use this function to send commands to the build on the next frame, given the resp
response.
Any commands in the self.commands
list will be sent on the next frame.
Parameter | Type | Default | Description |
---|---|---|---|
resp | List[bytes] | The response from the build. |
self.set_position(position)
Set the position of the VR rig.
Parameter | Type | Default | Description |
---|---|---|---|
position | Dict[str, float] | The new position. |
self.rotate_by(angle)
Rotate the VR rig by an angle.
Parameter | Type | Default | Description |
---|---|---|---|
angle | float | The angle in degrees. |
self.reset()
self.reset(non_graspable=None, position=None, rotation=0)
Reset the VR rig. Call this whenever a scene is reset.
Parameter | Type | Default | Description |
---|---|---|---|
non_graspable | List[int] | None | A list of IDs of non-graspable objects. By default, all non-kinematic objects are graspable and all kinematic objects are non-graspable. Set this to make non-kinematic objects non-graspable. |
position | Dict[str, float] | None | The initial position of the VR rig. If None, defaults to {"x": 0, "y": 0, "z": 0} |
rotation | float | 0 | The initial rotation of the VR rig in degrees. |
self.show_loading_screen(show)
Show or hide the VR loading screen. To use this correctly, call this function followed by c.communicate(commands)
.
Parameter | Type | Default | Description |
---|---|---|---|
show | bool | If True, show the loading screen. If False, hide the loading screen. |
self.before_send(commands)
This is called within Controller.communicate(commands)
before sending commands to the build. By default, this function doesn't do anything.
Parameter | Type | Default | Description |
---|---|---|---|
commands | List[dict] | The commands that are about to be sent to the build. |
self.get_early_initialization_commands()
This function gets called exactly once per add-on. To re-initialize, set self.initialized = False
.
These commands are added to the list being sent on communicate()
before any other commands, including those added by the user and by other add-ons.
Usually, you shouldn't override this function. It is useful for a small number of add-ons, such as loading screens, which should initialize before anything else.
Returns: A list of commands that will initialize this add-on.
self.listen_to_button(button, callback)
Listen for when a button is pressed.
Parameter | Type | Default | Description |
---|---|---|---|
button | int | The button as an integer: 0, 1, 2, or 3. | |
callback | Callable[[] | A callback function to invoke when the button is pressed. The function must have no arguments and no return value. |