spacemacs/layers/+fun/games/README.org

116 lines
3.4 KiB
Org Mode
Raw Normal View History

#+TITLE: Games layer
2015-06-10 16:44:30 +00:00
2019-05-02 21:49:30 +00:00
#+TAGS: fun|layer
2015-06-10 16:44:30 +00:00
[[file:img/games.png]]
2019-05-07 20:05:06 +00:00
* Table of Contents :TOC_5_gh:noexport:
2017-05-22 14:16:12 +00:00
- [[#description][Description]]
- [[#features][Features:]]
2017-05-22 14:16:12 +00:00
- [[#install][Install]]
- [[#games-instructions][Games instructions]]
- [[#2048][2048]]
- [[#pacmacs][Pacmacs]]
- [[#sudoku][Sudoku]]
- [[#tetris][Tetris]]
- [[#typit][Typit]]
- [[#create-a-new-dictionary][Create a new dictionary]]
2015-06-10 16:44:30 +00:00
* Description
This layer allows you to play evilified games in spacemacs.
** Features:
2018-09-19 03:54:47 +00:00
- 2048-game
- Pacmacs (Pacman for Emacs)
- Sudoku
- Tetris
- Typit
2015-06-10 16:44:30 +00:00
* Install
To use this configuration layer, add it to your =~/.spacemacs=. You will need to
add =games= to the existing =dotspacemacs-configuration-layers= list in this
file.
2015-06-10 16:44:30 +00:00
* Games instructions
2015-06-10 16:44:30 +00:00
To run a game:
| Key binding | Description |
2015-06-10 16:44:30 +00:00
|-------------+----------------------------------------|
| ~SPC a G~ | Open an =helm= buffer to select a game |
Possible helm actions:
- run (default)
- quit
- reset
2015-06-10 16:44:30 +00:00
** 2048
| Key binding | Description |
2015-06-10 16:44:30 +00:00
|-------------+----------------------|
| ~h~ | Move the tiles left |
| ~j~ | Move the tiles down |
| ~k~ | Move the tiles up |
| ~l~ | Move the tiles right |
2015-10-13 17:54:12 +00:00
** Pacmacs
| Key binding | Description |
|-------------+-------------|
| ~h~ | Move left |
| ~j~ | Move down |
| ~k~ | Move up |
| ~l~ | Move right |
| | |
2016-11-14 01:37:12 +00:00
** Sudoku
| Key bindings | Description |
2016-11-14 01:37:12 +00:00
| ~h~ | Move left |
| ~j~ | Move down |
| ~k~ | Move up |
| ~l~ | Move right |
| ~1 ... 9~ | Insert value |
| ~0~ | Remove value |
| ~N~ | New puzzle |
| ~, h~ | Hint |
| ~, s~ | Save puzzle |
| ~, l~ | Load puzzle |
2015-06-10 16:44:30 +00:00
** Tetris
| Key binding | Description |
2015-06-10 16:44:30 +00:00
|-------------+--------------------------------|
| ~h~ | Move block to the left |
| ~i~ | Rotate block counter-clockwise |
| ~j~ | Move block to the bottom |
| ~k~ | Rotate block clockwise |
| ~l~ | Move block to the right |
| ~n~ | Start a new game |
| ~p~ | Pause the game |
| ~q~ | Quit the game |
** Typit
There is no specific key bindings for this game, just launch it and begin
typing. Use ~C-g~ to exit the game at any time.
There are two difficulties:
- beginner: use 200 most common words
- expert: use 1000 most common words
By default a game duration is one minute.
The game can be customized with the following variables:
| Vsariable | Description |
|---------------------+-------------------------------------------------------|
| =typit-dict= | Language dictionary to use (default is =english.txt=) |
| =typit-dict-dir= | A directory path where to find dictionaries |
| =typit-line-length= | Length of generated lines (default 80) |
| =typit-test-time= | Duration of a game in seconds (default 60) |
*** Create a new dictionary
To add a new dictionary, you need to create a text file named your-language.txt
and put it under the dict directory. That file should contain 1000 most common
words from the language, a word per line. Please make sure that it uses
Unix-style (that is, LF) end-of-line sequence and the file ends with a newline.