Both sides previous revisionPrevious revisionNext revision | Previous revision |
public:t-gede-14-1:lab4 [2014/01/11 17:56] – [Preparation] marino | public:t-gede-14-1:lab4 [2024/04/29 13:33] (current) – external edit 127.0.0.1 |
---|
| |
You need to do the following to set up the right tools: | You need to do the following to set up the right tools: |
* Download and install the [[http://www.blender.org/|Blender 3D]] modeling and rendering environment, use the latest version (2.65) | * Download and install the [[http://www.blender.org/|Blender 3D]] modeling and rendering environment, use the latest version (2.69) |
* Install the [[http://code.google.com/p/blender2ogre/|Blender2Ogre]] Plug-in for Blender 2.69 and above | * Install the [[http://code.google.com/p/blender2ogre/|Blender2Ogre]] Plug-in for Blender 2.69 and above |
* Download the file [[http://code.google.com/p/blender2ogre/downloads/detail?name=blender2ogre-0.6.0.zip|blender2ogre-0.6.0.zip]] (if you use Blender 2.69) | * Download the file [[http://code.google.com/p/blender2ogre/downloads/detail?name=blender2ogre-0.6.0.zip|blender2ogre-0.6.0.zip]] (if you use Blender 2.69) |
| |
Follow these steps to complete the lab project: | Follow these steps to complete the lab project: |
| - **Create a custom Model Folder** Go to the folder where your compiled executables end up (e.g. in the solution's ''Debug'' folder ''"solutionName"/Debug/"ProjectName"/'') and create a sub-folder called ''Models''. In order for this folder to be found by your Ogre application, you need to add it to the list of FileSystems in your application's ''resources_d.cfg'' file. You can use a relative path (e.g. ''FileSystem=Models''). |
- **Create a New Project** Create a new empty project called "Lab3" in the same solution as the previous lab project and copy your source files over there (make sure you copy them in the file system and don't just drag them around in the solutions browser, because by default the browser creates a symbolic link to the original file instead of copying). Rename source files as necessary. Unfortunately you'll have to review the configuration properties again for this project (see the instructions for [[Lab1]]), it is quite silly that those can't easily be copied between projects. After this step is done, you should have a new project that compiles and runs (and does the same thing as the previous lab). **Make this new project the ACTIVE PROJECT my right clicking on it in the solutions browser and selecting ''Set as StartUp Project''** | |
- **Create a custom Model Folder** Go to the folder where your compiled executables end up (e.g. in the solution's ''Debug'' folder) and create a sub-folder called ''Models''. In order for this folder to be found by your Ogre application, you need to add it to the list of FileSystems in your application's ''resources_d.cfg'' file. You can use a relative path (e.g. ''FileSystem=Models''). | |
- **Create a 3D Model in Blender** If you are completely new to Blender, then you can even just use the default cube you get when you start up the Blender environment. However, you should try to modify the cube a little bit if you can. There are a lot of good resources on Blender modeling, including the [[http://wiki.blender.org/index.php/Doc:2.6/Tutorials/Resources/External_links|Official Getting Started]] tutorials out on the Internet. | - **Create a 3D Model in Blender** If you are completely new to Blender, then you can even just use the default cube you get when you start up the Blender environment. However, you should try to modify the cube a little bit if you can. There are a lot of good resources on Blender modeling, including the [[http://wiki.blender.org/index.php/Doc:2.6/Tutorials/Resources/External_links|Official Getting Started]] tutorials out on the Internet. |
* It is a good idea to save your model in the Blender file format early and often | * It is a good idea to save your model in the Blender file format early and often |
* Pay attention to what you name your geometry, this becomes the name of the exported mesh. You can browse your object hierarchy in the upper right corner of the Blender screen. Right-click on the cube mesh node and select **Rename** to give the mesh a different name. | * Pay attention to what you name your geometry, this becomes the name of the exported mesh. You can browse your object hierarchy in the upper right corner of the Blender screen. Right-click on the cube mesh node and select **Rename** to give the mesh a different name. |
- **Export and Convert Model** Export the model using the Blender2Ogre exporter and save it in your application's **Models** folder. Make sure that any texture imported, baked or generated is saved as a file in the same folder. Run the **OgreXMLConverter** command line tool on the exported **XML** mesh file to turn it into a binary Ogre **mesh** file | - **Export and Convert Model** Export the model using the Blender2Ogre exporter and save it in your application's **Models** folder. Make sure that any texture imported, baked or generated is saved as a file in the same folder. Run the **OgreXMLConverter** command line tool on the exported **XML** mesh file to turn it into a binary Ogre **mesh** file (The OgreXmlConverter should be in your path if you followed the instructions in Lab1). |
- **Create a New Entity** In your ''createScene'' method in your application, you should now create a new Entity that gets associated with the model resource you just created. Make sure that your code makes this new Entity visible in the scene by attaching it to the scene graph. | - **Create a New Entity** In your ''createScene'' method in your application, you should now create a new Entity that gets associated with the model resource you just created. Make sure that your code makes this new Entity visible in the scene by attaching it to the scene graph. |
* In C++ it would look like this: <code cpp> | * In C++ it would look like this: <code cpp> |
</code> | </code> |
| |
| ===== 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. |