HPong: A simple OpenGL Pong game based on GLFW

[ game, program ] [ Propose Tags ]

A simple single-player OpenGL Pong game based on GLFW.

Its main goal is to serve as a basis for other games.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1, 0.1.1, 0.1.2
Dependencies base, data-accessor, data-accessor-template, GLFW, OpenGL [details]
License LicenseRef-GPL
Author Remco Niemeijer
Maintainer Remco Niemeijer <R.A.Niemeijer@tue.nl>
Category Game
Home page http://bonsaicode.wordpress.com/2009/04/23/hpong-012/
Uploaded by RemcoNiemeijer at 2009-04-23T17:13:35Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables hpong
Downloads 3301 total (6 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 2016-10-25 [all 17 reports]

Readme for HPong-0.1.2

[back to package description]
---------------------------------- HPong ----------------------------------

With the release of the Haskell Platform it is now trivial to start making
OpenGL programs with Haskell.

HPong is a very simple OpenGL game that was made both to experiment with
OpenGL and as a starting point for more complex games, since there seem
to be fairly few examples of GLFW programs in Haskell.

Controls : Up arrow moves your paddle up.
           Down arrow moves your paddle down.
           Esc quits the game.

HPong is based on GLFW instead of GLUT for the simple reason that GLUT
does not provide a working window close callback.