This is an old revision of the document!
Table of Contents
Lab 5 - Actors and State Machines
Before Coming to Class
- Make sure you can run the Panda 3D sample programs on your machine
Useful Links
- Complete Python Documentation (LOCAL) This is the latest 2.5 release, but new 2.5 features are well marked
In-Class Excercises
Before You Start
- Download and unzip the Lab 5 Asset File into your working directory
Interacting with a moving actor
In this exercise, you have to create a character that paces around while he is unaware of you. But as soon as you come within a certain range, he stops and looks at you. While the character is watching you, you can click on him to start a conversation with him. If you have entered a conversation, you can click on something else to stop talking. If at any point you leave the character, he goes back to his pacing around. These states and the events that trigger transitions are shown in this figure.
- Create a World class derived from DirectObject like before and set up a camera at (0,-70,2) with FOV of 50 and a near clipping plane of 0.01. Load and display the environment model called environment (it comes standard with Panda 3D, so you don't need any path information) and scale it down to 30%. Add your camera movement code from Lab 2. Verify that you can now move around the landscape.
- Create a Character class derived from FSM.FSM (Finite State Machine). In the constructor, you first need to call the constructor of the parent like this:
FSM.FSM.__init__(self,"Character")
Then you should load an Actor from the model “Models/eve” with the animation 'Walk':'Models/eve_walk'“. Place the actor at (0,-20,0) and scale it down to 80%. Start your actor's Walk animation by calling loop(“Walk”) on your instance of it. Now create a new Sequence of intervals that first changes your actor's heading to -90 (in about 0.8 seconds) and then moves him to position (-10,-20,0) in about 9 seconds. Rotate back and move back to the original position. Now loop this interval and watch your actor pace around!