Breakable objects

From The DarkMod Wiki
Revision as of 13:20, 28 January 2008 by Tels (talk | contribs) (first stub)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Things to remember:

This article represents work-in-progress and does not necessarily reflect the current working state of the code!

Introduction

This article deals with details in regarding of breakable objects in the physics simulation.

Destroying Objects

When the force acting on one entity becomes very strong, it should be destroyed. This can happen while the entity is still bound to another entity, or after they have become unbound. These cases are already working for some objects, like wine bottles.

Currently, this is done by setting the following Category:spawnargs on one entity:

       "broken"                        "models/darkmod/junk/wbottle01_broken.lwo"
       "health"                        "20"

The Spawnarg:health sets the amount of damage that needs to be done to the object until it breaks, and the Spawnarg:broken sets the model that will replace the default model after the destruction.

Drawbacks of this method are that health can drop by small forces acting on the entity. After the health has dropped considerable, a small force can then suddenly break the object. For instance, damaging a wine bottle by 9 points 2 times would leave the bottle with only 2 points health, and thus suddenly a damage of 2 points can destroy the bottle.

Another drawback is that forces do not translate into damage except in some specially coded exceptions, like hits from weapons.

TODO

  • Except wine bottles, no object breaks when a sufficient force acts on it.
  • Strong forces do not nec. damage entities. For instance dropping a crate on a bottle does not break the bottle.

Unbinding

Bind entities.png

It is possible to bind entities together via the spawnarg bind.

The bound entity is called "slave" (or bindslave), while the entity it is bound to is usually called "master (or "bindmaster").

Binding means that the relative position of the slave to the master will stay the same. Forces that act on either the slave or the master are relayed to the other entity, making them act as if they were one unit.

When the force acting on one of the bind-members becomes to strong, the bind should break up.

TODO

This is currently never the case.

Forces acting on bound entities