User Tools

Site Tools


public:t-gede-15-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-15-1:lab1 [2015/01/10 09:01] – [Preparation] marinopublic:t-gede-15-1:lab1 [2024/04/29 13:33] (current) – external edit 127.0.0.1
Line 20: Line 20:
   - **The Ogre run-time libraries (DLLs)** are in folders called bin/debug and bin/release inside the SDK folder. You need to add these two folders to your system path variable so that the system can find them when you launch your application.   - **The Ogre run-time libraries (DLLs)** are in folders called bin/debug and bin/release inside the SDK folder. You need to add these two folders to your system path variable so that the system can find them when you launch your application.
   - **It is good to organize all your lab source code**, from the very beginning of this class to avoid a complete mess later. VC++ helps you organize the code into **solutions** and **projects**. A solution is really a collection of projects, which is a great way to keep track of labs. Once you launch VC++, create a new project called "Lab1" inside a new solution called "GEDE2015" (it is a good idea to let VC++ create a folder for your solution - use the check box - and then your projects will appear inside that folder). The project should be a ''WIN32 Console Application'' and completely **empty**. You will write it from scratch.   - **It is good to organize all your lab source code**, from the very beginning of this class to avoid a complete mess later. VC++ helps you organize the code into **solutions** and **projects**. A solution is really a collection of projects, which is a great way to keep track of labs. Once you launch VC++, create a new project called "Lab1" inside a new solution called "GEDE2015" (it is a good idea to let VC++ create a folder for your solution - use the check box - and then your projects will appear inside that folder). The project should be a ''WIN32 Console Application'' and completely **empty**. You will write it from scratch.
-  - **Right-click on your project inside VC++ project explorer** and choose ''properties''. Add Ogre folders and files in several locations within the properties:+  - **Right-click on your project inside VC++ project explorer** and choose ''properties''. Add Ogre folders and files in several locations within the properties:<box red 100% | Note: >We will be changing configurations for debug builds as well as release builds. So take note that the strings are not always the same for both builds. 
 +</box>
   - **Change your build output directory:** Configuration Properties->General->Output Directory\\ Add ''$(ProjectName)\'' at the end of the output directory so it will look like:''$(SolutionDir)$(Configuration)\$(ProjectName)\''\\ This will help with organizing the builds for each lab project.{{ :public:t-gede-14-1:gede_lab1_outputdir.png?nolink |}}   - **Change your build output directory:** Configuration Properties->General->Output Directory\\ Add ''$(ProjectName)\'' at the end of the output directory so it will look like:''$(SolutionDir)$(Configuration)\$(ProjectName)\''\\ This will help with organizing the builds for each lab project.{{ :public:t-gede-14-1:gede_lab1_outputdir.png?nolink |}}
-  - **Add additional include libraries:** C/C++->General->Additional Include Directories =<code>$(OGRE_HOME)\include\OIS;$(OGRE_HOME)\include\OGRE;$(OGRE_HOME)\include;$(OGRE_HOME)\boost;%(AdditionalIncludeDirectories)</code> <box red 100% | Note: >If the C/C++ tab is missing. For some reason, with some versions of Visual Studio you will need to have created a cpp file in order to get the C/C++ tab in the configuration properties, so adding a main.cpp file with a basic "hello world" to the project and building it will suffice. )+  - **Add additional include libraries:** C/C++->General->Additional Include Directories = **Notice, for all configurations!**<code>$(OGRE_HOME)\include\OIS;$(OGRE_HOME)\include\OGRE;$(OGRE_HOME)\include;$(OGRE_HOME)\boost;%(AdditionalIncludeDirectories)</code> <box red 100% | Note: >If the C/C++ tab is missing. For some reason, with some versions of Visual Studio you will need to have created a cpp file in order to get the C/C++ tab in the configuration properties, so adding a main.cpp file with a basic "hello world" to the project and building it will suffice. )
 </box>{{ :public:t-gede-14-1:gede_lab1_additional_include_directories.png?nolink |}} </box>{{ :public:t-gede-14-1:gede_lab1_additional_include_directories.png?nolink |}}
-  - **Add connections to additional Ogre and input libraries:** Linker->Input->Additional Dependencies <code>OgreMain_d.lib;OIS_d.lib;%(AdditionalDependencies)+  - **Add connections to additional Ogre and input libraries:** Linker->Input->Additional Dependencies  <code>Debug:   OgreMain_d.lib;OIS_d.lib;%(AdditionalDependencies) 
 +Release: OgreMain.lib;OIS.lib;%(AdditionalDependencies)
 </code> <box red 100% | Note:>Add this to the end of the current string, do not replace it, and make sure to seperate it with a semicolon.</box>{{ :public:t-gede-14-1:gede_lab1_additionaldepend_debug.png?nolink |}}{{ :public:t-gede-14-1:gede_lab1_additionaldepend_release.png?nolink |}} </code> <box red 100% | Note:>Add this to the end of the current string, do not replace it, and make sure to seperate it with a semicolon.</box>{{ :public:t-gede-14-1:gede_lab1_additionaldepend_debug.png?nolink |}}{{ :public:t-gede-14-1:gede_lab1_additionaldepend_release.png?nolink |}}
-  - **Also you will need to add additional Library folders** where the Ogre specific libraries and the required boost libraries are stored: Linker->General->Additional Library Directories =<code>$(OGRE_HOME)\boost\lib;$(OGRE_HOME)\lib\debug;%(AdditionalLibraryDirectories)</code>{{ :public:t-gede-14-1:gede_lab1_debug_additional_libs.png?nolink |}}{{ :public:t-gede-14-1:gede_lab1_release_additional_libs.png?nolink |}}+  - **Also you will need to add additional Library folders** where the Ogre specific libraries and the required boost libraries are stored: Linker->General->Additional Library Directories =<code>Debug: $(OGRE_HOME)\boost\lib;$(OGRE_HOME)\lib\debug;%(AdditionalLibraryDirectories) 
 +Release: $(OGRE_HOME)\boost\lib;$(OGRE_HOME)\lib\Release;%(AdditionalLibraryDirectories)</code>{{ :public:t-gede-14-1:gede_lab1_debug_additional_libs.png?nolink |}}{{ :public:t-gede-14-1:gede_lab1_release_additional_libs.png?nolink |}}
   - **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 express, whether you use it or not, 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:> You need to modify the resources_d.cfg file by replacing the relative path of the resources with an absalute path +  - **Set up the engine configuration files.**  
-Example: where the Ogre SDK path is "C:\Ogre1.9_vc100\OgreSDK_vc10_v1-9-0" \\  +    - Now navigate to your solution folder ''In my case: C:\Code\GEDE2015_Ogre_Labs'' and create a new Folder called ''LabFiles'', 
-''FileSystem=../../OgreSDK_vc10_v1-9-0/media/materials/programs''\\  **to**\\  +    - In the folder LabFiles, create another folder called ''OgreConfig'' 
-''FileSystem=C:/Ogre1.9_vc100/OgreSDK_vc10_v1-9-0/media/materials/programs'' \\  +    - In ''<OGRE SDK folder(same as OGRE_HOME)>/bin/debug/'' you will find two files ''resources_d.cfg'' and ''plugins_d.cfg'', copy those two into the folder ''OgreConfig'' from the previous step <box green 100% | Note: >Plugins_d.cfg directs the Ogre application to what modules and plugins it should load (Rendering engine, scene manager etc...). The resources however are what the Ogre application uses (such as 3D models, shaders, particle systems)We put them in a separate directory so that we can reuse the configurations between projects.</box> 
-Make sure to change all references of ../../ to your absalute path.\\  +    - One final thing before we can start coding, edit the resources_d.cfg file, and replace all instances of ''../..'' with the path to the root of your Ogre SDK(again same as OGRE_HOME). 
-Notice that Ogre cfg file wants forward slashes!\\  +    - We will be adding more files to the ''LabFiles'' Please try to keep file and folder names the same as in the examples so it won't be a nightmare for me to review them :)
-</box>+
 ===== Lab Project ===== ===== Lab Project =====
 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.\\  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.\\ 
  
 The first 2 labs will be following this guide and getting familiar with the Ogre3D environment.  The first 2 labs will be following this guide and getting familiar with the Ogre3D environment. 
-<box red 100% | Note:>+<box red 100% | Important:> 
 + 
 +In step 1.2 change the path from ''plugins_d.cfg'' to ''../LabFiles/OgreConfig/plugins_d.cfg''  
 +<code cpp> 
 +Ogre::Root* root = new Ogre::Root("../LabFiles/OgreConfig/plugins_d.cfg"); 
 +</code> 
 + 
 +Additionally in step 3.1 change the path from ''resourcfes_d.cfg'' to ''../LabFiles/OgreConfig/resourcfes_d.cfg'' 
 +<code cpp> 
 +cf.load("../LabFiles/OgreConfig/resources_d.cfg"); 
 +</code> 
 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. 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>
 +
 +A friendly note: In the guide #include ''"OGRE/Ogre.h"'' makes compiler go through a lot of jargon you are not using making compilation times horrible. Try to include only what you need, like so for Ogre::Root* ''#include "OGRE/OgreRoot.h"''.
 +
 +When you manage to run your first application and get the configuration dialog after section 1 of the guide, **Do not run it in fullscreen! Especially if you run it through the VS environment :)**
 +
 +Finally after you successfully render your first window, black or with Sinbad, do the following.
 +  - Navigate to <your solution directory>/(Debug or Release depending what you built). There should be a directory for your first Lab project. 
 +  - In the first lab directory you should find ''ogre.cfg'', move it to the folder ''<solution dir>/LabFiles/OgreConfig/''
 +  - Change the line <code cpp>
 +Ogre::Root* root = new Ogre::Root("../LabFiles/OgreConfig/plugins_d.cfg");
 +to
 +Ogre::Root* root = new Ogre::Root("../LabFiles/OgreConfig/plugins_d.cfg","../LabFiles/OgreConfig/ogre.cfg");
 +</code>
 +  - This will guarantee that you will always be using the same configuration for all runs independent of the project you are working on.
 </box> </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 =====
  
 <code cpp> <code cpp>
- #include "OGRE/Ogre.h" +#include "OGRE/OgreRoot.h" 
-  +#include "OGRE/OgreSceneManager.h" 
- int main()+#include "OGRE/OgreSceneNode.h" 
 +#include "OGRE/OgreRenderWindow.h" 
 +#include "OGRE/OgreConfigFile.h" 
 +#include "OGRE/OgreEntity.h" 
 + 
 +int main()
  {  {
-  Ogre::Root* root = new Ogre::Root("plugins_d.cfg");+  Ogre::Root* root = new Ogre::Root("../LabFiles/OgreConfig/plugins_d.cfg","../LabFiles/OgreConfig/ogre.cfg");
  
  if(!root->showConfigDialog()) {  if(!root->showConfigDialog()) {
  return -1;  return -1;
  }  }
- + 
  Ogre::RenderWindow* window = root->initialise(true, "Ogre3D Beginners Guide");  Ogre::RenderWindow* window = root->initialise(true, "Ogre3D Beginners Guide");
 + 
  Ogre::SceneManager* sceneManager = root->createSceneManager(Ogre::ST_GENERIC);  Ogre::SceneManager* sceneManager = root->createSceneManager(Ogre::ST_GENERIC);
 + 
  Ogre::Camera* camera = sceneManager->createCamera("Camera");  Ogre::Camera* camera = sceneManager->createCamera("Camera");
  camera->setPosition(Ogre::Vector3(0,0,30));  camera->setPosition(Ogre::Vector3(0,0,30));
  camera->lookAt(Ogre::Vector3(0,0,0));  camera->lookAt(Ogre::Vector3(0,0,0));
  camera->setNearClipDistance(5);  camera->setNearClipDistance(5);
 + 
  Ogre::Viewport* viewport = window->addViewport(camera);  Ogre::Viewport* viewport = window->addViewport(camera);
  viewport->setBackgroundColour(Ogre::ColourValue(0.0,0.0,0.0));  viewport->setBackgroundColour(Ogre::ColourValue(0.0,0.0,0.0));
 + 
  camera->setAspectRatio(Ogre::Real(viewport->getActualWidth())/Ogre::Real(viewport->getActualHeight()));  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::String sectionName, typeName, dataName;
  Ogre::ConfigFile cf;  Ogre::ConfigFile cf;
- cf.load("resources_d.cfg");+ cf.load("../LabFiles/OgreConfig/resources_d.cfg");
  Ogre::ConfigFile::SectionIterator sectionIter = cf.getSectionIterator();  Ogre::ConfigFile::SectionIterator sectionIter = cf.getSectionIterator();
- + 
  while(sectionIter.hasMoreElements()) {  while(sectionIter.hasMoreElements()) {
  sectionName = sectionIter.peekNextKey();  sectionName = sectionIter.peekNextKey();
Line 96: Line 124:
  }  }
  }  }
 + 
  Ogre::ResourceGroupManager::getSingleton().initialiseAllResourceGroups();  Ogre::ResourceGroupManager::getSingleton().initialiseAllResourceGroups();
 + 
  Ogre::Entity* ent = sceneManager->createEntity("Sinbad.mesh");  Ogre::Entity* ent = sceneManager->createEntity("Sinbad.mesh");
  sceneManager->getRootSceneNode()->attachObject(ent);  sceneManager->getRootSceneNode()->attachObject(ent);
 + 
  sceneManager->setAmbientLight(Ogre::ColourValue(.3f,.3f,.3f));  sceneManager->setAmbientLight(Ogre::ColourValue(.3f,.3f,.3f));
 + 
  root->startRendering();  root->startRendering();
 + 
  return 0;  return 0;
- }+}
 </code> </code>
 ===== When You Are Finished ===== ===== When You Are Finished =====
  
-Upload your 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 labs grade. +This lab projects will not be graded, but their completion counts towards your labs grade.
- +
-And check out the next [[public:t-gede-15-1:lab2|Lab]] :)+
/var/www/cadia.ru.is/wiki/data/attic/public/t-gede-15-1/lab1.1420880474.txt.gz · Last modified: 2024/04/29 13:32 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki