public:t-gede-13-1:lab3
This is an old revision of the document!
Table of Contents
LAB3: Resources
This lab is only losely based on Chapter 6 on resource management in the text book. The focus here is on being able to create a new resource (a 3d model) and bringing it into an Ogre 3D scene.
Discussion
Discussion thread for this lab is here: Lab 3 Discussion Thread
Goal
The primary goal with this lab is to go through the process of creating an original external resource (a 3D model in Blender) and bringing it “unharmed” into an Ogre 3D scene. The secondary goal is to gain familiarity with the Ogre 3D “mesh” and “material” file formats.
Preparation
You need to do the following to set up the right tools:
- Download and install the Blender 3D modeling and rendering environment, use the latest version
- Install the Blender2Ogre Plug-in for Blender 2.5 and above
- Download the file blender2ogre-0.5.5.zip
- Run Blender and from File→User Preferences… choose the Addons panel and click the Install Add-On button. Navigate to and select your downloaded ZIP archive.
- Once Blender has processed the ZIP file you should see the exporter listed, but grayed out. Check the check-box next to it to activate it.
- Now you can run the exporter from the Blender File→Export menu (pick the Ogre 3D export) and make sure that the object you want to export has been selected in the 3D scene.
- Make sure that the OgreXMLConverter.exe (or OgreXMLConverter_d.exe) that comes with Ogre is in your executable system path, you will find this tool inside your Ogre bin\Release (or bin\Debug) folder
Lab Project
Follow these steps to complete the lab project:
- 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 calledModels
. 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'sresources_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 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
- Pay attention to what you name your geometry, this becomes the name of the exported mesh (Press
n
on the keyboard inside Blender to open the naming panel for the selected object).
- 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
- Create a New Entity in your Ogre application from the mesh you just exported * In C++ it would look like this: <code cpp> Ogre::Entity* mycube = mSceneMgr→createEntity(“MyCube”, “MyCubeMesh.mesh”); Ogre::SceneNode* cubeNode = mSceneMgr→getRootSceneNode()→createChildSceneNode(); cubeNode→attachObject(mycube); cubeNode→setScale(50,10,50); You may have to scale your object to see it well</code>Make sure you see your object when you run your application! ===== When You Are Finished ===== Upload your commented source files into Lab2 in MySchool (zip them up if more than one). 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-13-1/lab3.1359456631.txt.gz · Last modified: 2024/04/29 13:32 (external edit)