This is an old revision of the document!
Table of Contents
LAB1: Ogre Startup Sequence
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.
Discussion
Discussion thread for this lab will be on Piazza: Lab 1 Discussion Thread. Please don't hesitate to ask questions or comment on the Lab assignment.
Preparation
- Download and install C++ development environment, the instructions will assume you are using the 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 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 :)
To prepare your environment and project you need to:
- Create a system environment variable OGRE_HOME that points to Ogre SDK folder. You can then refer to this variable in your project setup as $(OGRE_HOME). This is so that you can easily take your project to a different machine where Ogre might be installed in a different folder. If each machine defines this variable, the project should be able to find the needed includes and libraries (see below).
example: C:\Ogre1.9_vc100\OgreSDK_vc10_v1-9-0
- 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 “GEDE2013” (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:
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.
C/C++→General→Additional Include Directories =
$(OGRE_HOME)\include\OIS;$(OGRE_HOME)\include\OGRE;$(OGRE_HOME)\include;$(OGRE_HOME)\boost;%(AdditionalIncludeDirectories)
Note:
Linker→Input→Additional Dependencies =
OgreMain_d.lib;OIS_d.lib;%(AdditionalDependencies)
note: Add this to the end of the current string, do not replace it, and make sure to seperate it with a semicolon.
Linker→General→Additional Library Directories =
$(OGRE_HOME)\boost\lib;$(OGRE_HOME)\lib\debug;%(AdditionalLibraryDirectories)
Finally if you are using a different version of Visual studio than 2010, make sure to be using the vc100 toolset
Project Configuration→General→Platform Toolset = Visual Studio 2010 (v100)
- 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)
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.
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=C:/Ogre1.9_vc100/OgreSDK_vc10_v1-9-0/media/materials/programs
Note
Notice that Ogre cfg file wants forward slashes!
Lab Project
Your final results should look something like this:
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.