Both sides previous revisionPrevious revisionNext revision | Previous revision |
public:t-vien-10-3:lab_4_materials [2010/10/06 23:04] – hannes | public:t-vien-10-3:lab_4_materials [2024/04/29 13:33] (current) – external edit 127.0.0.1 |
---|
====== Lab 4 - Events, Collision and Movement ====== | ====== Lab 4 - Events, Collision and Movement ====== |
| |
<note warning>Under Construction! Do not use yet!</note> | |
| |
==== Before You Start ==== | ==== Before You Start ==== |
| |
* Download and unzip the [[http://www.ru.is/kennarar/hannes/classes/ve2010/Lab4Assets.zip|Lab 4 Asset File]] into your working directory | * Download and unzip the [[http://www.ru.is/kennarar/hannes/classes/ve2010/Lab4Assets.zip|Lab 4 Asset File]] into your working directory |
| * (Optional) For working with PhysX (see last step below), you need to install [[http://www.ru.is/kennarar/hannes/share/PhysX_9.10.0513_SystemSoftware.exe|The PhysX Software System]] |
| |
==== Making a functional trap door ==== | ==== Making a functional trap door ==== |
- **A Physics Based Version**:\\ In the version of the factory above, you were faking movement in a physical world by using interpolators to move objects around. You had to do everything by hand, and even so, not everything is looking right. For example, if the box hits the edge of the door, the box stops, even if physics tell us that the box should just tip over and fall off the edge. In fact, if it lands on the door, it doesn't even move with the door. All of these details can be taken care of with a good simulation of physics and rigid body dynamics. One such engine is the [[http://www.ode.org/|Open Dynamics Engine (ODE)]] and another such engine is [[http://developer.nvidia.com/object/physx.html|NVidia PhysX]]. Both of these engines are supported by Panda3D. ODE is an open source project, and therefore the whole source (which is in C++) is available for those that are interested. PhysX is a commercial product, and is somewhat more robust and precise (used in a number of high-end games), but you only get access to run-time binaries in addition to the API. In this part of the lab, you can choose to create the above scene with ODE or PhysX (or both if you wish). Simply follow the instructions for each below: | - **A Physics Based Version**:\\ In the version of the factory above, you were faking movement in a physical world by using interpolators to move objects around. You had to do everything by hand, and even so, not everything is looking right. For example, if the box hits the edge of the door, the box stops, even if physics tell us that the box should just tip over and fall off the edge. In fact, if it lands on the door, it doesn't even move with the door. All of these details can be taken care of with a good simulation of physics and rigid body dynamics. One such engine is the [[http://www.ode.org/|Open Dynamics Engine (ODE)]] and another such engine is [[http://developer.nvidia.com/object/physx.html|NVidia PhysX]]. Both of these engines are supported by Panda3D. ODE is an open source project, and therefore the whole source (which is in C++) is available for those that are interested. PhysX is a commercial product, and is somewhat more robust and precise (used in a number of high-end games), but you only get access to run-time binaries in addition to the API. In this part of the lab, you can choose to create the above scene with ODE or PhysX (or both if you wish). Simply follow the instructions for each below: |
- [[public:t-vien-10-3:lab_4_materials:ode|Open Dynamics Engine (ODE) Instructions]] | - [[public:t-vien-10-3:lab_4_materials:ode|Open Dynamics Engine (ODE) Instructions]] |
- [[public:t-vien-10-3:lab_4_materials:physx|NVidia PhysX Instructions]] | - [[public:t-vien-10-3:lab_4_materials:physx|NVidia PhysX Instructions (unfairly only for Windows)]] |
| |
| |
| |
| |