Dormant roguelike project
Find a file
2025-03-31 19:53:34 -05:00
src fix zig 14.0 2025-03-31 19:53:34 -05:00
vendor migrate to SDL3 2025-01-26 16:38:18 -06:00
.gitignore start sdl impl 2025-01-26 16:06:15 -06:00
.gitmodules migrate to SDL3 2025-01-26 16:38:18 -06:00
build.zig migrate to SDL3 2025-01-26 16:38:18 -06:00
build.zig.zon fix zig 14.0 2025-03-31 19:53:34 -05:00
LICENSE license under GPL (#6) 2024-02-15 02:46:05 +00:00
README.md reformat readme 2024-04-11 21:20:57 -05:00

URLG (Untitled Rogue-Like Game)

About

This is a simple Rogue-like game implemented in C with minimal use of libraries (only curses and the C standard library as of right now). It is primarily a place for me to experiment with ideas I have while procrastinating.

Features Implemented

  • TUI interface
  • Basic movement
  • Procedurally generated caves
  • Basic entity-component system

Building and Installing

Release Version

The application can be installed on any Unix system by downloading a release and running

tar xzf urlg-<version>.tar.gz
cd urlg-<version>
./configure && make
make install # run as root

and uninstalled with

make uninstall # run as root

It is only available to be installed from source. I do not distribute pre-compiled binaries.

The game can then be run as urlg in your terminal.

Development Version

The development version of the software is can be installed from the =git= repository if you have GNU Autotools installed with the following commands

autoreconf --install
./configure
make
make install # run as root

and uninstalled with

make uninstall # run as root