LowRezJam 2023 Kaiju Save Earth A game where you play as a giant monster trying to save as many humans as possible before they destroy themselves and the world!
Go to file
2023-08-13 17:28:41 -04:00
.kdev4 New tileset & map; todo fix tile sanity check 2023-08-04 22:05:07 -04:00
assets Clean up git merge on Game.cpp added assets 2023-08-12 23:27:14 -04:00
build Tileson working with tsj tileset 2023-07-21 00:08:23 -04:00
design added Nic's collision pseudocode 2021-08-02 17:46:06 -04:00
src Tilemap doesn't use hardcoded path instead uses generated path from Game.cpp 2023-08-13 17:27:07 -04:00
.DS_Store Tilemap doesn't use hardcoded path instead uses generated path from Game.cpp 2023-08-13 17:27:07 -04:00
.gitignore All asset paths corrected to use Boost::FS 2023-08-12 14:44:08 -04:00
CMakeLists.txt Initial build on macOS 2023-08-12 08:50:32 -04:00
KaijuSaveEarth.kdev4 Pulling in engine files 2023-08-01 16:34:22 -04:00
LICENSE Clean up various files 2023-08-01 16:58:06 -04:00
README.md Updated README.md 2023-08-13 03:39:09 +00:00

Kaiju Saves Earth

Low Rez Jam 2023

Kaiju Saves Earth Title Screen

In the distant future humans are panicked and pose a great risk to each other and themselves. Fortunately there is a giant monster "Kaiju" that come in to scoop up these people before they hurt anyone, storing them safely on its protected shell on its back. You play as the Kaiju trying to save as many people as possible before they hurt themselves.

Controls: w,a,s,d for movement and u,i,j,k for other actions, escape to quit. Currently on builds on linux and macOS; uses CMake and should be easy enough to port to other systems.

By: Alan Youngblood

INSTALL

Linux

  1. Download and unzip the project files
  2. Install KDevelop with your package manager
  3. Install dependencies (listed as apt packages with debian/ubuntu and derivative distros): sudo apt install libboost-dev cmake build-essential libsdl2-2.0-0 libsdl2-dev libsdl2-image-2.0.-0 libsdl2-image-dev libsdl2-mixer-2.0-0 libsdl2-mixer-dev
  4. Open the .kdev4 project file in KDevelop, configure launch to be the executable which should be KaijuSaveEarth/build/KaijuSaveEarth; build should be configured already.
  5. Build in KDevelop.
  6. Launch/Run from KDevelop.
  7. Enjoy playing!

macOS

  1. Download and unzip the project files
  2. Install Apple Mac Developer tools in terminal.app: xcode-select --install
  3. Install dependencies, we recommend using brew: brew install boost cmake sdl2 sdl2_image sdl2_mixer
  4. In terminal: cd KaijuSaveEarth/build
  5. cmake ..
  6. make
  7. open ..
  8. Double Click the executable KaijuSaveEarth
  9. Enjoy playing!