Both sides previous revisionPrevious revisionNext revision | Previous revision |
public:t-vien-07-1:lab_4_materials [2007/02/02 03:47] – hannes | public:t-vien-07-1:lab_4_materials [2024/04/29 13:33] (current) – external edit 127.0.0.1 |
---|
| |
* Download and unzip the [[http://www.ru.is/kennarar/hannes/classes/ve2007/Lab4Assets.zip|Lab 4 Asset File]] into your working director | * Download and unzip the [[http://www.ru.is/kennarar/hannes/classes/ve2007/Lab4Assets.zip|Lab 4 Asset File]] into your working director |
| |
| |
| |
==== Making a functional trap door ==== | ==== Making a functional trap door ==== |
| |
- **Create a new scene:** Create a new program called "factory.py" and include the following imports at the beginning of the file:<code python> | {{public:t-vien-07-1:ve-lab4-screenshot.jpg|}} |
| |
| - **Creating a new scene:**\\ Create a new program called "factory.py" and include the following imports at the beginning of the file:<code python> |
import direct.directbase.DirectStart | import direct.directbase.DirectStart |
from direct.showbase.DirectObject import DirectObject | from direct.showbase.DirectObject import DirectObject |
from pandac.PandaModules import * | from pandac.PandaModules import * |
from direct.interval.IntervalGlobal import * | from direct.interval.IntervalGlobal import * |
</code>. In your code, you should disable the mouse and then place the **camera** at **(1,-8,5)** with a pitch of **-25 degrees**. Then define a class called **World** that derives from **DirectObject** (this allows **World** to receive events). In the constructor of the **World** class load and display two models: **./Models/factoryfloor.egg** and **./Models/box.egg**. Position the box at **(1,0,2)**, scale it down to **30%** and give it a heading of **45 degrees**. Make sure you can see both the floor and the box. | </code> In your code, you should disable the mouse and then place the **camera** at **(1,-8,5)** with a pitch of **-25 degrees**. Then define a class called **World** that derives from **DirectObject** (this allows **World** to receive events). In the constructor of the **World** class load and display two models: **./Models/factoryfloor.egg** and **./Models/box.egg**. Position the box at **(1,0,2)**, scale it down to **30%** and give it a heading of **45 degrees**. Make sure you can see both the floor and the box. |
- **Opening and closing the door:** The floor contains a **door** object. Acquire a pathnode to it and call it **door**. Create two **LerpPosInterval**s for the **door**, one to open it by moving it to location **(-1,0,0)** and one to close it by moving it to location **(1,0,0)**. You can play with the duration but **2.0 seconds** is a good place to start. Make the **World** accept a 'space' (spacebar key) event and call the handler **self.door_handler**. In that handler, either start the opening interval for the door or the closing interval, depending on whether it's open or closed already (you'll need a new boolean member variable to keep track of that). Make sure you can now open and close the door with the spacebar. | - **Opening and closing the door:**\\ The floor contains a **door** object. Acquire a pathnode to it and call it **door**. Create two **LerpPosInterval**s for the **door**, one to open it by moving it to location **(-1,0,0)** and one to close it by moving it to location **(1,0,0)**. You can play with the duration but **2.0 seconds** is a good place to start. Make the **World** accept a 'space' (spacebar key) event and call the associated event handler **self.door_handler**. In that handler, either start the opening interval for the door or the closing interval, depending on whether it's open or closed already (you'll need a new boolean member variable to keep track of that). Make sure you can now open and close the door with the spacebar.\\ |
- **Improving the door a little:** When you create the opening and closing intervals, give the constructor attribute **blendType** a value of **"easeInOut"** for a bit more realistic trap door motion (you can play with the other values **"easeIn"** and **"easeOut"** as well). Also, give the attribute **name** the same name for both intervals - this ensures that the first interval gets cancelled when the second one gets starts. | - **Improving the door a little:**\\ When you create the opening and closing intervals, give the constructor attribute **blendType** a value of **"easeInOut"** for a bit more realistic trap door motion (you can play with the other values **"easeIn"** and **"easeOut"** as well). Also, give the attribute **name** the same name for both intervals - this ensures that the first interval gets cancelled when the second one gets starts. |
- **Creating Collision Solids:** Attach a new **CollisionNode** to the box pathnode and give it the name **"box"** (you pass the name into the constructor of the CollisionNode). To thie node of this new pathnode, add a new collision solid of the type sphere and give it a radius of **1.5**.<code python> | - **Creating Collision Solids:**\\ Attach a new **CollisionNode** to the box pathnode and give it the name **"box"** (you pass the name into the constructor of the CollisionNode). To thie node of this new pathnode, add a new collision solid of the type sphere and give it a radius of **1.5**.<code python> |
# HINT - Creating and attaching a CollisionSphere | # HINT - Creating and attaching a CollisionSphere |
nodepath = object.attachNewNode(CollisionNode('object')) | nodepath = object.attachNewNode(CollisionNode('object')) |
# HINT - The CollisionPolygon | # HINT - The CollisionPolygon |
nodepath.node().addSolid(CollisionPolygon(Point3(x,y,z),Point3(x,y,z),Point3(x,y,z),Point3(x,y,z))) | nodepath.node().addSolid(CollisionPolygon(Point3(x,y,z),Point3(x,y,z),Point3(x,y,z),Point3(x,y,z))) |
</code> Call **show()** on your new collision node nodepaths and you should see your collision solids as semi-transparent objects when you view your scene. Verify that your solids are in the right place. | </code> You can call **show()** on your new collision node nodepaths to see your collision solids as semi-transparent objects when you view your scene. Verify that your solids are in the right place and then remove the calls to show(). |
- **Making the box move:** Create a new **LerpPosInterval** for the box and have it move the location **(1,0,-1)**. Make the **World** accept a 'mouse1' event and call a method that starts this interval playing. A duration of **3.0 seconds** for this movement seems good and you might want to try different blend types. Verify that you can make the box move by clicking the left mouse button. Notice that the box goes right through the door. | - **Making the box move:**\\ Create a new **LerpPosInterval** for the box and have it move to the location **(1,0,-1)**. Make the **World** accept a 'mouse1' event and call a method that starts this interval playing. A duration of **3.0 seconds** for this movement seems good and you might want to try different blend types. Verify that you can make the box move by clicking the left mouse button. Notice that the box goes right through the door. |
- **Make a collision happen:** Create a new instance of a **CollisionHandlerEvent** and add the event in pattern shown below:<code python> | - **Making a collision happen:**\\ Create a new instance of a **CollisionHandlerEvent** and add the event pattern shown below:<code python> |
collhandler = CollisionHandlerEvent() | collhandler = CollisionHandlerEvent() |
collhandler.addInPattern('%fn-into-%in') | collhandler.addInPattern('%fn-into-%in') |
print collEntry | print collEntry |
</code> In addition to printing out some information like is done in this example, you should call the **pause()** method on the LerpPosInterval associated with the box object. This will stop the progress of the box movement. Verify that the box stops now when the door is closed but goes all the way down when the door is open. | </code> In addition to printing out some information like is done in this example, you should call the **pause()** method on the LerpPosInterval associated with the box object. This will stop the progress of the box movement. Verify that the box stops now when the door is closed but goes all the way down when the door is open. |
- **Add sounds:** To add sounds to this scene, you can use **thud.wav** for when the box hits the door and **close.wav** for when the door slams shut. You don't have to localize these sounds, just load them in like this: <code python> | - **Adding sounds:**\\ To add sounds to this scene, you can use **thud.wav** for when the box hits the door and **close.wav** for when the door slams shut. You don't have to localize these sounds, just load them in like this: <code python> |
thudsound = loader.loadSfx("thud.wav") | thudsound = loader.loadSfx("thud.wav") |
closesound = loader.loadSfx("close.wav") | closesound = loader.loadSfx("close.wav") |
newinterval = Sequence(interval1, interval2, ... ) | newinterval = Sequence(interval1, interval2, ... ) |
</code> | </code> |
| - It would be great to add lighting and for example have a red flashing warning light go off every time the door moves :) |
| |