BasecodeCSE167F19

From Immersive Visualization Lab Wiki
Jump to: navigation, search

Contents

Starter Code for Programming Projects

The purpose of this web page is to introduce OpenGL programming and set up your computer so that you can begin developing OpenGL applications.

In order to display an image, you must create a drawing canvas, which is essentially a window. With OpenGL, you create a window and then create an OpenGL drawing context associated with that window, which allows you to use your video hardware to draw 3D objects directly into that window. Opening that window and creating the OpenGL context is cumbersome and varies from system to system. The purpose of GLFW is to simplify and unify this initial step.

The PCs in the computer lab already have GLFW and Visual Studio installed. It is also possible to run your projects on the lab computers in the AP&M basement, though you may need to go through the given setup instructions before the projects can work.

For your personal computer we will show you how to download and install GLFW and configure Visual Studio/XCode to use it.

The starter code is available here.

UPDATE YOUR SYSTEM

We're using modern OpenGL (at least 3.3+, but some systems with OpenGL 3.1 somehow have forward compatibility to 3.3) which came out in 2010, meaning most recent systems should support it by default. However, just in case, make sure your graphics drivers are updated to the latest version.

  • Windows: Update your graphics driver to the latest version. If your graphics card is too old, replace your graphics card or use a different computer.
  • OS X: Update your OS X version to at least 10.9. OpenGL is tied to your operating system version.

On Windows

The very first thing you'll be doing is downloading and installing the Microsoft Visual Studio 2017 Community Edition for free.

Once that is done and you have unzipped your starter code, we're ready to begin configuring our Microsoft Visual Studio solution to work with OpenGL.

  1. Open Microsoft Visual Studio. Go to "File->New->Project From Existing Code...".
    SC Windows 1.png
  2. Create a Visual C++ project.
    SC Windows 2.png
  3. On the next page, enter the path to the starter code as the project file location and enter a name for the project (whatever you like).
    SC Windows 3.png
  4. On the next page, create a console application project and click Finish.
    SC Windows 4.png
  5. Open the NuGet Package Manager by right-clicking your project on the left and select Manage NuGet Packages...
    SC Windows 5.png
  6. Make sure you're in the Browse tab. Search for nupengl and install the nupengl.core package (NOT nupengl.core.redist). Alternatively, if you feel that this is too overkill (since nupengl contains 5 or 6 different commonly used libraries in OpenGL applications), download the glew and glfw packages (NOT the .redist packages).
    SC Windows 6.png
  7. Similarly, install the glm package.
    SC Windows 7.png
  8. Now that we have all our packages, we just need to Link against the OpenGL libraries.
  9. We can do that by going to our project's(note: NOT solution) Properties. Right-click your project in the Solution Explorer and select Properties
    SC Windows 8.png
  10. Once in project properties, go to Configuration dropdown to change it to All Configurations. This will ensure we edit both the debug/release configuration at the same time, and don't have to repeat the step.
    VS All Configuration.png
  11. Navigate to Linker->Input to prepend opengl32.lib to Additional Dependencies.
    SC Windows 9.png
  12. Change the active configuration to release for faster execution! If you want to do breakpoint debugging, remember that you'll have to change this back to debug to make sure you can see the variables.
    SC Windows 10.png
  13. Once this is done, build and run the program(CTRL+F5) to see a spinning cube!

On OS X

First, let's make sure we have all of the starter code downloaded (linked above).

Once you have unzipped the project, open XCode and create a new project.

  1. Select Command Line Tool as the template for the new project.
    OSX XCode11 Setup Command Line Tool.png
  2. Name your project any name of your choosing.
  3. Upon completion, you should be presented with something like this:
    OSX XCode11 Setup Project Created.png
  4. Let's open the directory enclosing our newly created XCode project alongside the unzipped starter code directory. Drag and drop the files as shown below.
    OSX XCode Setup Moving Files.png
  5. If presented with the option, replace the already existing files (main.cpp in this case)

All is good for now. We will come back to this later.

Install GLFW and GLM

  1. Begin by installing homebrew following this link, or type the following in your command line:
  2. Install glfw and glm with homebrew by typing the following in your command line:
    • brew install glfw glm
    OSX XCode Setup install libraries.jpg

XCode Setup

The last step is to set up XCode to find where we put all of our code, libraries and headers

  1. Open up the XCode project
  2. In the far left panel of the Xcode window, you will see a folder matching the project name.
    • Right click this folder and click "Add files to <project name>".
    • Choose the files as shown below and press "Add"
    OSX XCode11 Setup Adding Files.png
  3. Above this folder, you will see the top level which shares the same name as your project.
    • Click this and choose the binary with the same name under TARGETS, then in the "Build Settings" option at the top.
    • Type "Search Paths" in the search bar.
    • Add the following paths as shown below so XCode knows where to find all of the glfw and glm headers in our code.
      • /usr/local/include
      • /usr/local/lib
    OSX XCode Setup Adding Header Paths.jpg
  4. At the top of this window, click "Build Phases"
    • Open up the "Link Binary with Libraries" pull down
    • Press the little "+" sign and type "OpenGL"
    • Choose "OpenGL.framework" and press "Add"
    OSX XCode Setup Adding OpenGL Library.png
    • Press the "+" sign again and choose "Add Other..."
    • Navigate to /usr/local/lib, choose "libglfw.dylib" and press "Open"
    OSX XCode Setup Adding GLFW Library.png
    • Open up the "Copy Files (0 items)" pull down
    • Select "Products Directory" as the Destination
    • Clear subpath field and uncheck the "Copy only when installing" box.
    • Click on the little "+" sign and choose shaders.
    OSX XCode Setup Add Shaders.png
  5. Optional: We like to see a good frame rate, so we prefer you run in Release (at least during the grading demo).
    • Open Product > Scheme > Edit Scheme, and choose "Release"
    OSX XCode Setup Release Mode.png
  6. Run that baby (press the play button at the top left or press Command + r). Note that the default color of the cube may change depending on what quarter it is (we like being different).
    OSX XCode11 Setup Running.png

On Linux

The staff don't officially support Linux, but the ingredients you'll need are GLFW3.x.x, GLM 0.9.x.x, and GLEW 1.10+.x. You might be able to find these libraries in your favorite package managers, but make sure the versions are sufficient/compatible.