User Tools

Site Tools


public:t-gede-14-1:lab1

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:lab1 [2014/01/13 17:26] – Grammar corrections marinopublic:t-gede-14-1:lab1 [2024/04/29 13:33] (current) – external edit 127.0.0.1
Line 2: Line 2:
  
 This first Lab assignment is intended to get the Ogre3D environment started. Getting the development environment set up and configured can be a little tricky for the first time, so this Lab will be solely used to get the "Hello World" of Ogre3D built.\\  This first Lab assignment is intended to get the Ogre3D environment started. Getting the development environment set up and configured can be a little tricky for the first time, so this Lab will be solely used to get the "Hello World" of Ogre3D built.\\ 
-There will be a paper hand out in the first lab class that will take you through the basic application step by step. I strongly encourage you to try to understand the steps not just writing it down like a zombie parrot, as the follow up Labs will all be built on top of the base you create in Lab 1. +There will be a pdf guide that will take you through the basic application step by step. I strongly encourage you to try to understand the steps not just writing it down like a zombie parrot, as the follow up Labs will all be built on top of the base you create in Lab 1. 
  
 ===== Discussion ===== ===== Discussion =====
Line 11: Line 11:
  
 - Download and install C++ development environment, the instructions will assume you are using the [[http://www.microsoft.com/visualstudio/eng/downloads#d-2010-express|MS Visual C++ Express 2010 environment]], which you can get for free. You're free to use other environments or platforms as long as you take care of making it work on your own (with the help of the Internet). - Download and install C++ development environment, the instructions will assume you are using the [[http://www.microsoft.com/visualstudio/eng/downloads#d-2010-express|MS Visual C++ Express 2010 environment]], which you can get for free. You're free to use other environments or platforms as long as you take care of making it work on your own (with the help of the Internet).
-  - Download and install [[http://www.ogre3d.org/download/sdk|OGRE 1.9 SDK for Visual C++ 2010 (32-bit)]]. I recommend extracting this to a folder with a relatively short path and no spaces. E.g. into "C:\Development". You are free to use other versions, but be advised you will be rowing your own boat if problems arise :)+  - Download and install [[http://www.ogre3d.org/download/sdk|OGRE 1.9 SDK for Visual C++ 2010 (32-bit)]]. I recommend extracting this to a folder with a relatively short path and no spaces. E.g. into "C:\OgreSDK". You are free to use other versions, but be advised you will be rowing your own boat if problems arise :)
  
  
Line 29: Line 29:
   - **If you are using a different version of Visual studio than 2010,** make sure to be using the vc100 toolset <code>Project Configuration->General->Platform Toolset = Visual Studio 2010 (v100)   - **If you are using a different version of Visual studio than 2010,** make sure to be using the vc100 toolset <code>Project Configuration->General->Platform Toolset = Visual Studio 2010 (v100)
 </code> <box red 100% | Note: >If the v100 toolset is not available, you will need to install VS 2010, or at least the correct VC++ toolset</box>{{ :public:t-gede-14-1:gede_lab1_toolset_v100.png?nolink |}} </code> <box red 100% | Note: >If the v100 toolset is not available, you will need to install VS 2010, or at least the correct VC++ toolset</box>{{ :public:t-gede-14-1:gede_lab1_toolset_v100.png?nolink |}}
-  - Copy **plugins_d.cfg** and **resources_d.cfg** from the SDK bin/debug folder into your own GEDE2013/debug (or wherever your own compiled executables will be placed) if you followed section 5, thats where you will want to copy the files.\\ <box red 100% | Note:> For some (likely most) it is required to modify the resources_d.cfg file by replacing the relative path of the resources with an absalute path. +  - Copy **plugins_d.cfg** and **resources_d.cfg** from the SDK bin/debug folder into your own GEDE2013/debug (or wherever your own compiled executables will be placed) if you followed section 5, thats where you will want to copy the files.\\ <box red 100% | Note:> You need to modify the resources_d.cfg file by replacing the relative path of the resources with an absalute path. 
 Example: where the Ogre SDK path is "C:\Ogre1.9_vc100\OgreSDK_vc10_v1-9-0" \\  Example: where the Ogre SDK path is "C:\Ogre1.9_vc100\OgreSDK_vc10_v1-9-0" \\ 
 ''FileSystem=../../OgreSDK_vc10_v1-9-0/media/materials/programs''\\  **to**\\  ''FileSystem=../../OgreSDK_vc10_v1-9-0/media/materials/programs''\\  **to**\\ 
Line 37: Line 37:
 </box> </box>
 ===== Lab Project ===== ===== Lab Project =====
-You should now follow the hand out given to you by the instructor. For this Lab we will only do the sections 1 - 3 of the Ogre 3D beginners Guide. The rest will be covered in the next Lab assignment.\\ +You should now follow the guide from "Ogre3D 1.7 Beginners Guide by Felix Kerger" which you can get {{:public:t-gede-14-1:ogrestartup_ogre3d_1.7_beginners_guide_chapter_9_by_felix_kerger.pdf|Here}}.\\  For this Lab we will only do the sections 1 - 3 of the Ogre 3D beginners Guide. The rest will be covered in the next Lab assignment.\\ 
  
-After line 2 in section 2 of the Guide, please add these lines to the code. Since the Ogre 1.9 default Scene Manager does not set the ambient light by default, we have to that our selves.+The first 2 labs will be following this guide and getting familiar with the Ogre3D environment.  
 +<box red 100% | Note:> 
 +After line 2 in section 2 of the Guide, please add this line to the code. Since the Ogre 1.9 default Scene Manager does not set the ambient light by default like back in 1.7, we have to that our selves.
 <code cpp>  <code cpp> 
  sceneManager->setAmbientLight(Ogre::ColourValue(0.3f, 0.3f, 0.3f));  sceneManager->setAmbientLight(Ogre::ColourValue(0.3f, 0.3f, 0.3f));
 </code> </code>
 +</box>
  
 Your final results should look something like this: Your final results should look something like this:
 {{ :public:t-gede-14-1:gede_lab1_final_example.png?nolink |}} {{ :public:t-gede-14-1:gede_lab1_final_example.png?nolink |}}
  
 +===== CODE =====
  
 +<code cpp>
 + #include "OGRE/Ogre.h"
 + 
 + int main()
 + {
 +  Ogre::Root* root = new Ogre::Root("plugins_d.cfg");
 +
 + if(!root->showConfigDialog()) {
 + return -1;
 + }
 +
 + Ogre::RenderWindow* window = root->initialise(true, "Ogre3D Beginners Guide");
 +
 + Ogre::SceneManager* sceneManager = root->createSceneManager(Ogre::ST_GENERIC);
 +
 + Ogre::Camera* camera = sceneManager->createCamera("Camera");
 + camera->setPosition(Ogre::Vector3(0,0,30));
 + camera->lookAt(Ogre::Vector3(0,0,0));
 + camera->setNearClipDistance(5);
 +
 + Ogre::Viewport* viewport = window->addViewport(camera);
 + viewport->setBackgroundColour(Ogre::ColourValue(0.0,0.0,0.0));
 +
 + camera->setAspectRatio(Ogre::Real(viewport->getActualWidth())/Ogre::Real(viewport->getActualHeight()));
 +
 +
 +
 + //Ogre::ResourceGroupManager::getSingleton().addResourceLocation("/Ogre SDK/OgreSDK_vc10_v1-8-1/media/packs/Sinbad.zip","Zip");
 +
 + Ogre::String sectionName, typeName, dataName;
 + Ogre::ConfigFile cf;
 + cf.load("resources_d.cfg");
 + Ogre::ConfigFile::SectionIterator sectionIter = cf.getSectionIterator();
 +
 + while(sectionIter.hasMoreElements()) {
 + sectionName = sectionIter.peekNextKey();
 + Ogre::ConfigFile::SettingsMultiMap *settings = sectionIter.getNext();
 + Ogre::ConfigFile::SettingsMultiMap::iterator i;
 + for( i = settings->begin() ; i != settings->end() ; ++i ) {
 + typeName = i->first;
 + dataName = i->second;
 + Ogre::ResourceGroupManager::getSingleton().addResourceLocation(dataName, typeName, sectionName);
 + }
 + }
 +
 + Ogre::ResourceGroupManager::getSingleton().initialiseAllResourceGroups();
 +
 + Ogre::Entity* ent = sceneManager->createEntity("Sinbad.mesh");
 + sceneManager->getRootSceneNode()->attachObject(ent);
 +
 + sceneManager->setAmbientLight(Ogre::ColourValue(.3f,.3f,.3f));
 +
 + root->startRendering();
 +
 + return 0;
 + }
 +</code>
 ===== When You Are Finished ===== ===== When You Are Finished =====
  
 Upload your **commented source files** into Lab1 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** into Lab1 in MySchool (zip them up if more than one). The lab projects will not be graded, but their completion counts towards your participation grade.
 +
 +And check out the next [[public:t-gede-14-1:lab2|Lab]] :)
/var/www/cadia.ru.is/wiki/data/attic/public/t-gede-14-1/lab1.1389633966.txt.gz · Last modified: 2024/04/29 13:32 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki