hback: N-back memory game

[ bsd3, game, program ] [ Propose Tags ]

N-back memory game using gtk2hs.

Instructions on installation and gameplay available at: http://hback.googlecode.com/


[Skip to Readme]

Flags

Automatic Flags
NameDescriptionDefault
small_base

Choose the new smaller, split-up base package.

Enabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.0, 0.0.1, 0.0.2, 0.0.3
Dependencies base, cairo, filepath, glade, gtk, haskell98, process, svgcairo, time, unix [details]
License BSD-3-Clause
Author Norbert Wojtowicz <wojtowicz.norbert@gmail.com>
Maintainer Norbert Wojtowicz <wojtowicz.norbert@gmail.com>
Category Game
Home page http://hback.googlecode.com/
Uploaded by NorbertWojtowicz at 2008-06-19T04:43:02Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables hback
Downloads 3661 total (13 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2017-01-03 [all 10 reports]

Readme for hback-0.0.3

[back to package description]
Based on a recent [research paper](http://www.pnas.org/cgi/content/abstract/0801268105v1) that claims fluid intelligence could be improved by training working memory, I wrote up a dual n-back test memory game in Haskell and gtk2hs. This is an alpha release: all comments are most welcome.

Project homepage: [http://hback.googlecode.com/]

Gameplay
--------

The n-back memory game tests whether the player can remember if the nth previous turn matches the current one. The dual n-back test will measure how well the player can remember both visual and graphic stimuli simultaneously.

Given a difficulty level n, the player is expected to remember on each turn whether the nth previous sound or graphic (or both) matches the current one, and toggle the appropriate button(s). The graphic flashes for 500ms and the player has another 2.5 seconds to answer.

The training game consists of b block iterations, where each block will present (20+n) visual and audio stimuli. After each iteration, the difficulty of the n-back test may increase or decrease, depending on the performance of the player: the goal is to constantly keep the player at peak concentration.

Installation
------------

     % tar -xzf hback-x.y.tar.gz
     % cd hback-x.y

Game can be played without system-wide installation:

     % make trial
     % ./bin/hback

If you like what you see, feel free to install it:

     % make build
     % make install    # you may need root privileges for this
     % rehash
     % hback

hback takes two optional arguments:

     % ./hback b n
         - b determines the number of block iterations (eg. try 20 for an effective daily workout)
         - n determines the initial level (defaults to 1)