Make it gnuskii and add new README.md for bitreich. - gnuskii - GNUSki improved for ascii skiing experience.
(HTM) git clone git://bitreich.org/gnuskii git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/gnuskii
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) README
(DIR) LICENSE
---
(DIR) commit 74ad7d9d95b37c12b974586f2c9e6f8488f813a2
(DIR) parent c8f10d133d57af101e0beece67f9c5902ce0ca1a
(HTM) Author: Christoph Lohmann <20h@r-36.net>
Date: Wed, 19 Nov 2025 18:43:59 +0100
Make it gnuskii and add new README.md for bitreich.
Diffstat:
M README.md | 33 ++++++++++++++-----------------
C README.md -> README.md.old | 0
D src/ChangeLog | 27 ---------------------------
A src/ChangeLog.old | 26 ++++++++++++++++++++++++++
M src/Makefile | 4 ++--
R src/readme -> src/readme.old | 0
6 files changed, 43 insertions(+), 47 deletions(-)
---
(DIR) diff --git a/README.md b/README.md
@@ -1,24 +1,21 @@
-# GNUSki
+# GNUski Improved (gnuskii)
-GNUSki is an open source clone of [Skifree](https://en.wikipedia.org/wiki/SkiFree), the old Windows game. It currently uses NCurses for graphics.
+This repository was thankfully taken from
-[License: GNU GPL v2](./LICENSE)
+ https://github.com/rudolfolah/gnuski
-## GNUSki around the web
-- [homebrew formula for gnuski](https://formulae.brew.sh/formula/gnuski)
- - [formula code for gnuski](https://github.com/Homebrew/homebrew-core/blob/543cd71456e4813de4e12f33fea6f38f875b2327/Formula/g/gnuski.rb)
-- [ascii cinema recording of gnuski](https://asciinema.org/a/669357)
- - [demo.gif](./demo.gif)
-- [Termux](https://termux.dev/en/), an Android terminal emulator and Linux environment app, has a games package:
- - [gnuski package for Termux](https://github.com/termux/termux-packages/tree/master/packages/gnuski)
- - [archived games package for Termux](https://github.com/termux/game-packages/tree/master/packages/gnuski)
- - [mentioned in a YouTube video description](https://www.youtube.com/watch?v=5Xu1pu-ftLQ)
-- [Slack 14.0 build of gnuski](https://slackbuilds.org/repository/14.0/games/gnuski/)
-- [mentioned on a blog in 2013, "gnuski: Game Time!" -- Inconsolation](https://inconsolation.wordpress.com/2013/11/14/gnuski-game-time/)
+and modified to fit the needs of bitreich gameroom at
+ ssh://gameroom@bitreich.org
-## News and updates
-Copied over from the original repo:
+Features which were added are:
+
+* Information screen about controls.
+* Bigfoot was added.
+* Snowman was added.
+* Support for jumps/tricks.
+
+See contributors in the commit messages.
+
+Please have fun!
-- 2007-05-31: It's alive! GNUSki is alive again! I've been working on this for the last few days at a leisurely pace and it's looking fine. A GTK or Qt version is planned!
-- 2005-07-01: Plan for 0.3 Drawing methods will be fixed in 0.3. Hopefully we can get the threads working. If they don't work in the next version it's not a problem because we can work on other aspects such as adding jumping and other obstacles (ski lift, Bigfoot, etc.)
(DIR) diff --git a/README.md b/README.md.old
(DIR) diff --git a/src/ChangeLog b/src/ChangeLog
@@ -1,26 +0,0 @@
-GNUSki 0.3
-
-2007-05-30 Rudolf Olah
- * object.c: Coloured trees green.
- * main.c: Decreased refresh rate to counter-act the weird
- attron/attroff cursor crap.
-
-2007-05-29 Rudolf Olah
- * main.c: Proper scrolling. Generates objects as they pass from
- view.
-
-2007-05-28 Rudolf Olah
- * object.c: Facing is specified when drawing objects (there are a
- lot of objects that have the same facing so there's no need for
- the struct to store that info).
- * main.c: Added the proper controls and screen-scrolling.
- * main.c: Using a refresh rate now and a separate variable to
- control speed. Also keeping track of distance.
-
-2007-05-25 Rudolf Olah
- * main.c: Converted everything to C.
- * main.c: GNUSki is starting from version 0.1 all over again.
-
-2006-04-19 Rudolf Olah
- * draw.h: Changed the commands around a bit. The clean-up has
- begun.
-\ No newline at end of file
(DIR) diff --git a/src/ChangeLog.old b/src/ChangeLog.old
@@ -0,0 +1,26 @@
+GNUSki 0.3
+
+2007-05-30 Rudolf Olah
+ * object.c: Coloured trees green.
+ * main.c: Decreased refresh rate to counter-act the weird
+ attron/attroff cursor crap.
+
+2007-05-29 Rudolf Olah
+ * main.c: Proper scrolling. Generates objects as they pass from
+ view.
+
+2007-05-28 Rudolf Olah
+ * object.c: Facing is specified when drawing objects (there are a
+ lot of objects that have the same facing so there's no need for
+ the struct to store that info).
+ * main.c: Added the proper controls and screen-scrolling.
+ * main.c: Using a refresh rate now and a separate variable to
+ control speed. Also keeping track of distance.
+
+2007-05-25 Rudolf Olah
+ * main.c: Converted everything to C.
+ * main.c: GNUSki is starting from version 0.1 all over again.
+
+2006-04-19 Rudolf Olah
+ * draw.h: Changed the commands around a bit. The clean-up has
+ begun.
(DIR) diff --git a/src/Makefile b/src/Makefile
@@ -1,5 +1,5 @@
CC=gcc
-FLAGS=-O2 -o gnuski
+FLAGS=-O2 -o gnuskii
LIBS=-lncurses -ltinfo
FILES=main.c objects.c
@@ -7,4 +7,4 @@ all:
$(CC) $(FLAGS) $(FILES) $(LIBS)
clean:
- rm *~ gnuski
+ rm *~ gnuskii
(DIR) diff --git a/src/readme b/src/readme.old