add readme; name project (#4)

This commit is contained in:
jacob janzen 2024-02-14 19:45:43 -06:00 committed by GitHub
parent 4c337161da
commit 762ce27927
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 54 additions and 3 deletions

1
.gitignore vendored
View file

@ -18,3 +18,4 @@ Makefile
/src/main
/stamp-h1
/*.gz
/src/urlg

46
README.org Normal file
View file

@ -0,0 +1,46 @@
#+title: 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
#+begin_src sh
tar xzf urlg-<version>.tar.gz
cd urlg-<version>
./configure && make
make install # run as root
#+end_src
and uninstalled with
#+begin_src sh
make uninstall # run as root
#+end_src
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
#+begin_src sh
autoreconf --install
./configure
make
make install # run as root
#+end_src
and uninstalled with
#+begin_src sh
make uninstall # run as root
#+end_src

View file

@ -1,5 +1,5 @@
AC_PREREQ([2.65])
AC_INIT([roguelike], [0.1], [jacob.a.s.janzen@gmail.com])
AC_INIT([urlg], [0.0.1], [jacob.a.s.janzen@gmail.com])
AC_CONFIG_SRCDIR([src/main.c])
AC_CONFIG_AUX_DIR([build-aux])

View file

@ -1,6 +1,6 @@
bin_PROGRAMS = main
bin_PROGRAMS = urlg
main_SOURCES = \
urlg_SOURCES = \
cavegen.c \
cavegen.h \
display.c \

View file

@ -93,6 +93,10 @@ int main(void)
display_t *disp = display_init();
if (!disp) {
return EXIT_FAILURE;
}
// create the map
struct map map;
create_cave(&map);