Lazy loaded image
GitHub - mgerdes/Open-Golf: A cross-platform minigolf game written in C.
Words 185Read Time 1 min
2023-3-28
Created
Mar 28, 2023 02:20 PM
Tags

Open Golf

A cross-platform minigolf game written in C.

Platforms

  • Windows
  • Linux

Info

notion image
  • Used the Sokol libraries to create a cross platform application with 3D graphics and audio.
  • Wrote the Physics code to handle collision detection and collision response for the golf ball.
  • Used ImGui to create in games tools for fast iteration. Also created an in game-editor that can be used to modify the terrain of a hole and then quickly play to get fast feedback. The game-editor can also run scripts to generate the points and faces of more interesting models.
    • notion image
  • Used the library Lightmapper to generate lightmaps for the terrain and also xatlas to generate lightmap UVs. These lightmaps are then baked into the files for the courses. It can also interpolate between multiple samples to create lightmaps for some moving objects.
    • notion image
      notion image

Building

Windows

    • To compile run build\build-win64.bat
    • To start the game run out\win64\golf.exe
    • This also creates out\win64\golf.sln which can be opened in Visual Studio to compile / run everything

Linux

    • To compile run ./build/build-linux.sh
    • To start the game run out/linux/golf

OSX

    • To compile run ./build/build-osx.sh
    • To start the game run out/osx/golf

3rd Party Libraries

上一篇
Data Structure and Algorithm
下一篇
用面试拷问嵌入式技术栈

Comments
Loading...