User Tools

Site Tools


public:t-gede-14-1:lab4

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
public:t-gede-14-1:lab4 [2014/01/26 19:30] – [Lab Project] marinopublic:t-gede-14-1:lab4 [2024/04/29 13:33] (current) – external edit 127.0.0.1
Line 45: Line 45:
    
 ===== Bonus Points ===== ===== Bonus Points =====
 +<box 100% green> 
 +  - **Add a new color to Sinbad**. In the zip file ''Sinbad.zip'' in the folder ''"../OgreSDK/media/pakcs/"''. There are various files that are related to mr. Sinbad. Including a Material file, some textures and extra mesh for Sinbads swords. 
 +    - **Sinbad has 7 "submeshes"** that can be accessed like so ''_SinbadEnt->getSubEntity( number here )'' 
 +    - **The list of submeshes are:** <code>0 -> Eyes. 
 +1 -> Green Skin. 
 +2 -> Jewelry, cuffs, belt buckle. 
 +3 -> Teeth. 
 +4 -> Sword Sheaths. 
 +5 -> Accessory spikes. 
 +6 -> Boots, Pants, hat, accessories color.</code> 
 +    - **Now change the material of a submesh.** 
 +      - Create a file ''MyMaterial.material'' and save it in a folder ''Materials'' next to the Model folder. 
 +      - Add the line ''FileSystem=Materials'' to the ''resources_d.cfg'' 
 +      - paste this material script into the file ''MyMaterial.material'' <code>material Sinbad/Body2 
 +
 +    receive_shadows on 
 +    technique 
 +    { 
 +        pass 
 +        { 
 +            ambient 0.75 0.75 0.75 
 +            diffuse 1 1 1 1 
 +             
 +            texture_unit 
 +            { 
 +                texture my_sinbad_body.png 
 +            } 
 +        } 
 +    } 
 +}</code> 
 +    - **Copy {{:public:t-gede-14-1:my_sinbad_body.png?linkonly| this_image }} into the folder** ''Models'' And now finally apply this mesh to the body of Sinbad, you can tweak the texture if that's your fancy :) <code cpp>// In the MyApplication::createScene function 
 +_SinbadEnt->getSubEntity(1)->setMaterialName("Sinbad/Body2");</code> 
 +  - **Add additional entities into the scene** As you could have noticed in the ''Sinbad.zip'' pack file, there was also a mesh for his sword ''sword.mesh''
 +    - **Add a couple of swords to the sheaths on Sinbads back.** 
 +    - Create an ''Entity*'' for each sword using the ''sword.mesh'' as a mesh file. 
 +    - **Now you need to attach the swords to the sheath.** Each sheath has a "bone" that is an anchor point to attach the swords. This can be done using the function: <code cpp>Ogre::Entity::attachObjectToBone(std::string boneName, Ogre::Entity* object); 
 +// Usage would be like 
 +_sinbadEnt->attachObjectToBone("OhMyBone", mySword);</code>//(**Briefly about bones:** Bones are the logical structure of an animatable 3D object, bones are points of a skeleton that you can move, and assigned vertices will be transformed with the bones thus giving the illusion that the model has joints and movable limbs that follow a skeleton. Objects can be attached to those bones and they will be inserted to that bones transformation space.)// 
 +    - **A list of bones on the Sinbad model** can be accessed very similarly as the Animation states:<code cpp>// Create a bone iterator. 
 +Ogre::Skeleton::BoneIterator biter = _Sinbad->sinbadEnt->getSkeleton()->getBoneIterator(); 
 +// Iterate over the available bones and write their names to the console. 
 +while (biter.hasMoreElements()) { 
 + Ogre::Bone *bone = biter.getNext(); 
 + std::cout << bone->getName() << std::endl; 
 +}</code> 
 +  - **With the click of a button or some event; equip the swords to his hands.** The bones of Sinbads hands are labeled Handle in the list of bones. Even though Sinbad has animation for drawing the swords, implementing that will not be required to get this bonus point. Though implementing that Sinbad clasps his hands around the hilts is easy to do using the animations ''HandsRelaxed and HandsClosed''\\  //**Note:** Enabling one and disabling the other is enough for the animation, adding time to them has no effect at all.// 
 +</box>
 ===== When You Are Finished ===== ===== When You Are Finished =====
  
-Upload your **commented source files** into Lab3 in MySchool (zip them up if more than one). The lab projects will not be graded, but their completion counts towards your participation grade.+Upload your **commented SOURCE files, no solution or project files please** into Lab4 in MySchool (zip them up if more than one) also include the required files such as materials or mesh files 
 + 
 +The lab projects will not be graded, but their completion counts towards your participation grade.
/var/www/cadia.ru.is/wiki/data/attic/public/t-gede-14-1/lab4.1390764633.txt.gz · Last modified: 2024/04/29 13:32 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki