Go to file
Niels G. W. Serup c5e7a7b60c
Simplify nix integration a bit
2020-11-07 13:03:39 +01:00
arobotsconundrum Removed debug code. 2012-11-16 14:36:34 +01:00
concept Added new concepts for level 1 tasks. 2012-08-12 17:56:09 +02:00
resources Improved lasers, implemented the weight indicator, created a level 2 with the symbol blocks, deleted the much too difficult level 3 and the no-content level 2, made proper links between the levels, created an end screen. 2012-11-15 18:36:50 +01:00
tests Created teleporter map generation and implemented it in level 1. 2012-08-14 00:28:50 +02:00
.gitignore Started on level 3. 2012-08-08 20:22:13 +02:00
GPLv3.txt Updated filenames and file contents to fit the title of the game. Made proper readme. 2012-10-12 13:50:02 +02:00
README.rst Mention dependency. 2020-08-20 23:33:39 +02:00
a-robots-conundrum Updated filenames and file contents to fit the title of the game. Made proper readme. 2012-10-12 13:50:02 +02:00
cc-by-sa-3.0.txt Updated filenames and file contents to fit the title of the game. Made proper readme. 2012-10-12 13:50:02 +02:00
shell.nix Simplify nix integration a bit 2020-11-07 13:03:39 +01:00

README.rst

===================
A Robot's Conundrum
===================

A Robot's Conundrum is a puzzling game. It has puzzles to solve, but it's up to
you to figure out how to solve them.

You control a robot with the arrow keys and the space key.

The code of A Robot's Conundrum is free software under the terms of the GNU
General Public License version 3 (or any later version). The artwork is free
culture under the terms of the Creative Commons Attribution-Share Alike 3.0
license. See the files GPLv3.txt and cc-by-sa-3.0.txt for the full license
texts.

A Robot's Conundrom was created by Sakse Dalum, Niels G. W. Serup, and Lasse.


Installation
============

A Robot's Conundrum depends on PyGame <http://pygame.org> and NumPy
<https://numpy.org/>.

The game can be run like this:

  $ ./a-robots-conundrum

There is no in-game menu for adjusting things; that happens on the command
line. To see which things can be adjusted, run

  $ a-robots-conundrum --help


Notes
=====

Dangerous randomness in rolling boulder puzzle
----------------------------------------------
There is a puzzle about a rolling boulder in level 1. It's not guaranteed to be
solvable, because you might not be able to move an arrow block to the position
you need to move it to. However, this scenario is so unlikely that we have
chosen to ignore it.


Lack of code niceness
---------------------
The code works but is a bit messy.


Lack of efficiency
------------------
The code could certainly be more effective.