Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 1.7 KB

execution-scheme.md

File metadata and controls

22 lines (20 loc) · 1.7 KB

Execution Scheme

The following diagram illustrates the sequence of execution of the plugin callback functions. In addition, the principal interactions of Webots with the ODE functions are indicated.

%figure "Physics Plugin Execution Scheme" %chart graph TD S0["dWorldCreate()
dSimpleSpaceCreate(NULL)
contactJointGroup = dJointGroupCreate(0)"] --> S1["Webots joints creation:
dJointCreateHinge() for HingeJoint
dJointCreateSlider() for SliderJoint
etc.
dJointAttach"] S1 --> S2["Loading the plugin
webots_physics_init()
(can be used to initialize data, open files, etc.)"] S2 --> S3["Webots motor PID-controller:
dJointSetHinge/SliderParam(joint, dParamVel, Vc) and
dJointSetHinge/SliderParam(joint, dParamFMax, F)
are called for each joint

dBodyAddTorque/Force()
is called if spring/damping behavior is wanted (spring/dampingConstant != 0)
or if wb_motor_set_force/torque was invoked"] S3 --> S4["dSpaceCollide(space)
is invoked which eventually causes multiple callbacks to
webots_physics_collide()"] S4 --> S5["webots_physics_step()
is called to allow the user to setup additional forces, etc."] S5 --> S6["rigid body simulation:
dWorldStep()"] S6 --> S7["webots_physics_step_end()
is called to allow the user to read dJointFeedback structs"] S7 --> S8["dJointGroupEmpty(contactJointGroup)
is invoked to clear the contact joint group"] S7 -.->|simulation step| S3 S8 --> S9["webots_physics_cleanup()
(should be used to cleanup memory, close files, etc.)
Unloading the plugin"] S9 --> S10["dJointGroupDestroy(contactJointGroup)
dSpaceDestroy()
dWorldDestroy()"] S10 -.->|simulation revert| S0 %end %end