User Tools

Site Tools


public:t-gede-16-1:lab6

Differences

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

Link to this comparison view

Next revision
Previous revision
public:t-gede-16-1:lab6 [2016/02/23 19:32] – created marinopublic:t-gede-16-1:lab6 [2024/04/29 13:33] (current) – external edit 127.0.0.1
Line 5: Line 5:
 ===== Discussion ===== ===== Discussion =====
  
-Discussion thread for this lab is here: [[https://piazza.com/class/i4l9of1fw8j3ew?cid=52|Lab 6 Discussion Thread]]+Discussion thread for this lab is here: [[https://piazza.com/class/ij2xbg3ztb41qt|Lab 6 Discussion Thread]]
  
 ===== Goal ====== ===== Goal ======
Line 13: Line 13:
 ===== Preparation ===== ===== Preparation =====
    
-Continue with your project or use an older version starting from lab2. +Continue with your project or create a new project from the template, you need to be able to move the camera.
-  +
-For the bonus point you might have to replace the pk3 file ''/Ogre1.9_vc100/OgreSDK_vc10_v1-9-0 +
-/media/packs/chiropteraDM.pk3'' **Use of course your own Ogre sdk path.** +
- +
-with this pk3 file: {{:public:t-gede-14-1:chiropteradm.zip| chiropteraDM.zip}} **Rename it back to chiropteraDM.pk3, make sure to change the extension of the file to pk3 not just the name** +
- +
-The original file in the OgreSdk folder seemed to be missing a few textures, for this one I replaced the missing textures with one colored textures.+
 ===== Lab Project ===== ===== Lab Project =====
  
Line 69: Line 62:
 </code> Finally, after we have added all the entities to our ''field'', we need to ask the static geometry to "bake"/optimize with the following call: <code cpp>field->build(); </code> Finally, after we have added all the entities to our ''field'', we need to ask the static geometry to "bake"/optimize with the following call: <code cpp>field->build();
 </code>Now you should try running the scene again and see if there is any improved performance!  </code>Now you should try running the scene again and see if there is any improved performance! 
-  - <box green 100% | Bonus point>**Testing Another Scene Manager** The so called "world geometry" of a game is often considered static and can be highly optimized for rendering. One optimized format for representing a static world is the BSP level format used originally by id's Quake engine. Ogre can read worlds in this format and display them using the ''BspSceneManager''. To try this, add the following method in your application<code cpp> void loadQuakeMap() {     +===== Bonus ===== 
 +<box green 100% | **Manual Object**> Create a method that takes 3 parameters,  
 +<code cpp> 
 + // radius of the base of the cone 
 + // height of the cone 
 + // detail is the number of vertices around the base. 
 + void createCone(float radius, float height, int detail); 
 +</code> 
 +This method should create a cone mesh with the tools used in the lab. Extra kudos for those who get the object to cast shadows and have an okish normal mapping.  
 +You can use this material for the object 
 +<code>material MyMat/Red 
 +
 +    receive_shadows on  
 + 
 +    technique 
 +    { 
 +        pass 
 +        { 
 +            ambient 0.3 0.1 0.1 1.0 
 +            diffuse 1.0 0.1 0.1 1.0 
 +            specular 1.0 1.0 1.0 1.0 0.2 
 + 
 +             
 +            shading flat 
 + 
 + 
 +        } 
 +    } 
 +}</code></box> 
 +<box green 100% | **Notice**> If you encounter problems starting your project after finishing the next bonus part and it complains about missing textures, you might have to replace the pk3 file ''/Ogre1.9_vc110/OgreSDK_vc11_v1-9-0 
 +/media/packs/chiropteraDM.pk3'' **Use of course your own Ogre sdk path.** 
 + 
 +with this pk3 file: {{:public:t-gede-14-1:chiropteradm.zip| chiropteraDM.zip}} **Rename it back to chiropteraDM.pk3, make sure to change the extension of the file to pk3 not just the name** 
 + 
 +The original file in the OgreSdk folder seemed to be missing a few textures, for this one I replaced the missing textures with one colored textures. </box> 
 +<box green 100% | **Bonus point**>**Testing Another Scene Manager** The so called "world geometry" of a game is often considered static and can be highly optimized for rendering. One optimized format for representing a static world is the BSP level format used originally by id's Quake engine. Ogre can read worlds in this format and display them using the ''BspSceneManager''. To try this, add the following method in your application<code cpp> void loadQuakeMap() {     
  // add the Quake archive to the world resource group  // add the Quake archive to the world resource group
  Ogre::ResourceGroupManager& rgm = Ogre::ResourceGroupManager::getSingleton();  Ogre::ResourceGroupManager& rgm = Ogre::ResourceGroupManager::getSingleton();
/var/www/cadia.ru.is/wiki/data/attic/public/t-gede-16-1/lab6.1456255929.txt.gz · Last modified: 2024/04/29 13:32 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki