2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.6 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # izanagi
  2. A run-and-gun shooter inspired by Metal Slug.
  3. ## Setup
  4. > **Note:** CMake and OpenSSL are required.
  5. ### Windows
  6. 1. Clone this repo.
  7. 2. Clone the repositories under `dependencies.txt` except for SDL2.
  8. 3. Unpack the **MSVC** archive under `dependencies` folder in this project's root. Rename the directory as `SDL2`.
  9. 4. Build the following dependencies first:
  10. - `portmidi`
  11. - `libwebsockets` (follow the [instructions on building LWS](https://libwebsockets.org/lws-api-doc-master/html/md_README_8build.html))
  12. 5. Build via CMake.
  13. ### macOS/*NIX
  14. 1. Clone this repo.
  15. 2. Clone the repositories under `dependencies.txt`, including SDL2.
  16. 3. Build the SDL, SDL_image, and SDL_ttf dependencies using the [build instructions for Linux/UNIX](https://wiki.libsdl.org/SDL2/Installation#linuxunix)
  17. or [build instructions for macOS](https://wiki.libsdl.org/SDL2/Installation#macos).
  18. > **Note:** You may need to download other tools to build the libraries:
  19. > - autoconf
  20. > - make
  21. > **Note:** Clone the submodules under SDL_ttf to download freetype and harfbuzz:
  22. >
  23. > ```shell
  24. > git submodule update --init --recursive
  25. > ```
  26. 4. For OpenSSL, simply run:
  27. ```shell
  28. ./Configure
  29. make
  30. make test
  31. ```
  32. 5. Build the following dependencies first:
  33. - `portmidi` (Linux needs [ALSA libraries](https://www.alsa-project.org/files/pub/lib/) to be compiled)
  34. - ALSA Lib requires `libtool` to be compiled.
  35. - `libwebsockets` (follow the [instructions on building LWS](https://libwebsockets.org/lws-api-doc-master/html/md_README_8build.html))
  36. 6. Build via CMake.