Difference between revisions of "The Rougelike!"

From RogueBasin
Jump to navigation Jump to search
(write stuff)
 
(5 intermediate revisions by 4 users not shown)
Line 1: Line 1:
''Not to be confused with [[Rouge]].''
{{game-7drl| name = The Rougelike!
{{game-7drl| name = The Rougelike!
|developer = [[Timofei Shatrov]]
|developer = [[Timofei Shatrov]]
|theme = [[Wikipedia]], [[parody]], [[:Category:Coffeebreak roguelikes|coffee break]]
|theme = [[Wikipedia]], [[parody]], [[:Category:Coffeebreak roguelikes|coffee break]]
|influences = [http://en.wikipedia.org/wiki/Jimbo_Wales Jimbo Wales] (met in person)
|influences = [http://en.wikipedia.org/wiki/Jimbo_Wales Jimbo Wales] (met in person)
|released = somewhere in March, 2006
|released = March, 2006
|updated = December 9, 2006
|updated = December 9, 2006
|licensing = [[GPL]]
|licensing = [[GPL]]
Line 13: Line 15:
}}
}}


'''''The Rougelike!''''' was created during [[7DRL Contest 2006]]. The latest version is 1.6.
'''''The Rougelike!''''' was created during [[7DRL Contest 2006]]. The latest version is 1.61.


The game takes a satirical approach at [http://en.wikipedia.org Wikipedia]. Your character is a "rouge" admin, and you must commit as many outrageous actions as possible before you'll get forced out of Wikipedia. For each such action you'll get Rouge points. You also have Karma points, which are given for good actions and subtracted for bad actions. When you have low karma, people would hate you a lot.
The game takes a satirical approach at [http://en.wikipedia.org Wikipedia]. Your character is a "rouge" admin, and you must commit as many outrageous actions as possible before you'll get forced out of Wikipedia. For each such action you'll get Rouge points. You also have Karma points, which are given for good actions and subtracted for bad actions. When you have low karma, people would hate you a lot.
Line 26: Line 28:
===How to compile===
===How to compile===


If you want to compile this game on Linux (and perhaps, save others the trouble), do the following.
If you want to compile this game on Linux, do the following:


You need:
You need:
Line 34: Line 36:
#CL-STORE: http://common-lisp.net/project/cl-store/
#CL-STORE: http://common-lisp.net/project/cl-store/
#CFFI: http://common-lisp.net/project/cffi/
#CFFI: http://common-lisp.net/project/cffi/
#trivial-gray-streams: http://cliki.net/trivial-gray-streams
#MD5: http://files.b9.com/md5/
#MD5: http://files.b9.com/md5/
Make directory "~/lisp" and put the libraries into subfolders.
Edit ~/.clisprc to include these commands:
(load "/path/to/asdf.lisp")
(push "~/lisp/" asdf:*central-registry*)
Go to ~/lisp and make a symbolic link to every lib, for example
ln -s ~/lisp/cffi/cffi.asd cffi.asd
for CFFI. Alternatively install [http://www.cliki.net/ASDF-Install ASDF-INSTALL], and use it to install all libraries. It's not a rocket science. Also, add symbolic link to rouge.asd in the same way.


Then, start clisp  
Then, start clisp  
Line 42: Line 58:
And enter these commands:
And enter these commands:


(load "/path/to/asdf.lisp")
(push "/path/to/cl-store/" asdf:*central-registry*)
(push "/path/to/cffi/" asdf:*central-registry*)
(push "/path/to/md5/" asdf:*central-registry*)
(push "/path/to/the-rougelike/src/lisp/" asdf:*central-registry*)
  (asdf:operate 'asdf:load-op :rouge)
  (asdf:operate 'asdf:load-op :rouge)
 
  (ext:cd "/path/to/the-rougelike/")
After that it would presumably compile without errors or warnings. To produce a
  (rougelike::make-exec)
binary enter these commands:
 
  (setf *default-pathname-defaults* #P"/path/to/the-rougelike/")
  (r2::make-exec)


It should produce a file called "rouge.exe". Rename this file appropriately for your operating system. The directory should also contain "controls.cfg".  
It should produce a file called "rouge.exe". Rename this file appropriately for your operating system. The directory should also contain "controls.cfg".  


[[Category:Coffeebreak roguelikes]]
[[Category:Coffeebreak roguelikes]]
[[Category:Featured Roguelikes]]

Latest revision as of 05:10, 13 October 2019

Not to be confused with Rouge.

The Rougelike!
7DRL
Developer Timofei Shatrov
Theme Wikipedia, parody, coffee break
Influences Jimbo Wales (met in person)
Released March, 2006
Updated December 9, 2006
Licensing GPL
P. Language Common Lisp
Platforms Windows, Linux
Interface ASCII
Game Length short
Official site of The Rougelike!


The Rougelike! was created during 7DRL Contest 2006. The latest version is 1.61.

The game takes a satirical approach at Wikipedia. Your character is a "rouge" admin, and you must commit as many outrageous actions as possible before you'll get forced out of Wikipedia. For each such action you'll get Rouge points. You also have Karma points, which are given for good actions and subtracted for bad actions. When you have low karma, people would hate you a lot.

Features

  • unique gameplay
  • unique monsters
  • and so on, just see for yourself


How to compile

If you want to compile this game on Linux, do the following:

You need:

  1. CLISP (http://clisp.cons.org) - probably you can get it with apt-get or something like that. You need CLISP 0.38 or later.
  2. ASDF: save this file somewhere: http://cclan.cvs.sourceforge.net/*checkout*/cclan/asdf/asdf.lisp
  3. CL-STORE: http://common-lisp.net/project/cl-store/
  4. CFFI: http://common-lisp.net/project/cffi/
  5. trivial-gray-streams: http://cliki.net/trivial-gray-streams
  6. MD5: http://files.b9.com/md5/

Make directory "~/lisp" and put the libraries into subfolders.

Edit ~/.clisprc to include these commands:

(load "/path/to/asdf.lisp")
(push "~/lisp/" asdf:*central-registry*)

Go to ~/lisp and make a symbolic link to every lib, for example

ln -s ~/lisp/cffi/cffi.asd cffi.asd

for CFFI. Alternatively install ASDF-INSTALL, and use it to install all libraries. It's not a rocket science. Also, add symbolic link to rouge.asd in the same way.

Then, start clisp

>clisp

And enter these commands:

(asdf:operate 'asdf:load-op :rouge)
(ext:cd "/path/to/the-rougelike/")
(rougelike::make-exec)

It should produce a file called "rouge.exe". Rename this file appropriately for your operating system. The directory should also contain "controls.cfg".