xxxxxxxxxxx123 / balboa_public

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

balboa

UCSD CSE 167 codebase https://cseweb.ucsd.edu/~tzli/cse167/

Build

All the dependencies are included. Use CMake to build.

git clone --recurse-submodules https://github.com/BachiLi/balboa_public mkdir build
cd build
cmake ..
make -j

It requires compilers that support C++17 (gcc version >= 8, clang version >= 7, Apple Clang version >= 11.0, MSVC version >= 19.14).

For Windows users:

  1. Install Visual Studio 2022 and Visual Studio Code. Choose "Desktop development with C++" and check "C++ CMake tools for Windows" on the recipe.
  2. git clone --recurse-submodules https://github.com/BachiLi/balboa_public
  3. mkdir build; cd build
  4. cmake ..
  5. At this point, you can either open up the balboa.sln in build folder and use Visual Studio as your IDE, or work with Visual Studio Code.

(optional) To build, run, and debug in VS Code:

  1. In the bottom bar, configure CMake as follows (from left to right):
    • Build variant: RelWithDebInfo.
    • Active kit: Visual Studio ... x64, choose the appropriate one depending on your architecture.
    • Default build target: balboa.
  2. Create a launch.json in .vscode folder:
    {
        "version": "0.2.0",
        "configurations": [
            {
                "name": "hw1", 
                "type": "cppvsdbg", 
                "request": "launch", 
                "program": "${workspaceFolder}/build/${command:cmake.buildType}/balboa.exe",
                "cwd": "${workspaceFolder}/build/${command:cmake.buildType}", 
                "args": ["-hw", "1_1"]
            }
        ]
    }
    
    You can pass arguments using args.
  3. Press Ctrl+Shift+D to start the debugger. You can set breakpoints, inspect variables, and trace callstack, etc.

Run

Try

cd build
./balboa -hw 1_1

This will generate an image "hw1_1.png".

Acknowledgement

stb_image, stb_image_write, json, tinyply, GLFW, and glad

We use stb_image and stb_image_write for reading & writing images.

We use json to parse JSON files.

We use tinyply for parsing PLY files.

We use glfw and glad for the OpenGL homeworks.

3D models and textures: Stanford 3D Scanning Repository, KickAir_8p, and Texturemontage.

About

License:MIT License


Languages

Language:TeX 40.9%Language:C++ 31.0%Language:Python 27.3%Language:CMake 0.5%Language:Makefile 0.2%