public:t-vien-07-1:lab_6_materials
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
public:t-vien-07-1:lab_6_materials [2007/02/15 21:52] – created hannes | public:t-vien-07-1:lab_6_materials [2024/04/29 13:33] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 14: | Line 14: | ||
* Download and unzip the [[http:// | * Download and unzip the [[http:// | ||
- | ==== A More Advanced Roaming Ralph ==== | ||
+ | ==== Roaming Ralph with some HUDs ==== | ||
+ | In this exercise you'll start with a fully working 3rd person world with Ralph as your avatar. | ||
+ | |||
+ | - Get the **advancedralph.py** running and explore the controls, making sure you understand how to control both Ralph himself and the camera (rotating and tilting by approaching the edge of the screen with your mouse; zooming with the mouse wheel). | ||
+ | - The following code is a **HealthBar** object that can be attached to a scene graph. | ||
+ | class HealthBar(NodePath): | ||
+ | """ | ||
+ | | ||
+ | def __init__(self): | ||
+ | NodePath.__init__(self, | ||
+ | self.group = self.attachNewNode(' | ||
+ | self.group.setPos(-0.5, | ||
+ | cmfg = CardMaker(' | ||
+ | cmfg.setFrame(0, | ||
+ | self.fg = self.group.attachNewNode(cmfg.generate()) | ||
+ | cmbg = CardMaker(' | ||
+ | cmbg.setFrame(-1, | ||
+ | self.bg = self.group.attachNewNode(cmbg.generate()) | ||
+ | self.bg.setPos(1, | ||
+ | self.fg.setColor(0, | ||
+ | self.bg.setColor(0.5, | ||
+ | self.value = 0.8 | ||
+ | self.update() | ||
+ | | ||
+ | def update(self): | ||
+ | self.fg.setScale(self.value, | ||
+ | self.bg.setScale(1.0 - self.value, 1, 1) | ||
+ | |||
+ | def setHealth(self, | ||
+ | self.value = value | ||
+ | self.update() | ||
+ | | ||
+ | def decrease(self, | ||
+ | if (self.value - delta) >= 0: | ||
+ | self.value -= delta | ||
+ | self.update() | ||
+ | </ | ||
+ | - If your health bar rotates with your Avatar, you may notice that it fully disappears when you're looking at the Avatar from another angle. | ||
+ | - The healthbar calls a little too much attention to itself on the display. | ||
+ | - Now make the healthbar start decreasing **while** the Avatar is running and then gain full health when the Avatar stops running. | ||
+ | - The following code is an **OverheadMap** object that can be attached to a scene graph. | ||
+ | class OverheadMap(NodePath): | ||
+ | | ||
+ | def __init__(self, | ||
+ | """ | ||
+ | NodePath.__init__(self, | ||
+ | | ||
+ | cmbg = CardMaker(' | ||
+ | cmbg.setFrame(0, | ||
+ | self.prime = self.attachNewNode(cmbg.generate()) | ||
+ | self.prime.setColor(0.5, | ||
+ | | ||
+ | self.setBoundary(x1, | ||
+ | | ||
+ | cmav = CardMaker(' | ||
+ | cmav.setFrame(-0.02, | ||
+ | self.avatar = self.prime.attachNewNode(cmav.generate()) | ||
+ | self.avatar.setPos(0, | ||
+ | self.avatar.setColor(0, | ||
+ | | ||
+ | def addLandmarks(self, | ||
+ | """ | ||
+ | as little dots on the map in the given color """ | ||
+ | ## To be filled in... | ||
+ | |||
+ | def setBoundary(self, | ||
+ | """ | ||
+ | offset and scaling values that transform world coordinates to map coordinates""" | ||
+ | self.xoffset = x1 | ||
+ | self.xscale = 1.0/(x2-x1) | ||
+ | self.yoffset = y1 | ||
+ | self.yscale = 1.0/(y2-y1) | ||
+ | | ||
+ | def setAvatarPos(self, | ||
+ | """ | ||
+ | self.avatar.setPos((x-self.xoffset)*self.xscale, | ||
+ | </ | ||
+ | - Now add some landmarks to your world and have them show up on your map as little red squares. | ||
+ | - If you feel adventurous, |
/var/www/cadia.ru.is/wiki/data/attic/public/t-vien-07-1/lab_6_materials.1171576360.txt.gz · Last modified: 2024/04/29 13:33 (external edit)