FunGEn: A lightweight, cross-platform, OpenGL/GLUT-based game engine.

[ bsd3, game, library, program ] [ Propose Tags ]

FunGEn (Functional Game Engine) is a BSD-licensed, cross-platform, OpenGL & GLUT-based, non-FRP game engine written in Haskell. Created by Andre Furtado in 2002, it's the oldest Haskell game engine, and with very few dependencies and two example games, it's one of the easiest ways to get started with Haskell game development.


[Skip to Readme]

Modules

[Index]

  • Graphics
    • UI
      • Graphics.UI.Fungen
        • Graphics.UI.Fungen.Display
        • Graphics.UI.Fungen.Game
        • Graphics.UI.Fungen.Init
        • Graphics.UI.Fungen.Input
        • Graphics.UI.Fungen.Loader
        • Graphics.UI.Fungen.Map
        • Graphics.UI.Fungen.Objects
        • Graphics.UI.Fungen.Text
        • Graphics.UI.Fungen.Timer
        • Graphics.UI.Fungen.Types
        • Graphics.UI.Fungen.Util
      • GLUT

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1, 0.3, 0.4, 0.4.1, 0.4.2, 0.4.3, 0.4.4, 0.4.5, 0.4.6, 0.4.6.1, 1.0, 1.0.1, 1.1, 1.1.1, 1.2
Change log CHANGES
Dependencies base (>=4 && <4.12), base-compat, FunGEn (>=1.0 && <1.1), GLUT (<=2.8), OpenGL (<=2.14), random [details]
License BSD-3-Clause
Copyright (C) 2002 Andre Furtado <awbf@cin.ufpe.br>
Author Andre Furtado <awbf@cin.ufpe.br>
Maintainer Simon Michael <simon@joyful.com>
Revised Revision 5 made by SimonMichael at 2020-10-18T21:08:22Z
Category Game
Home page http://joyful.com/fungen
Source repo head: git clone https://github.com/haskell-game/fungen
Uploaded by SimonMichael at 2015-09-21T20:29:52Z
Distributions NixOS:1.2
Reverse Dependencies 1 direct, 0 indirect [details]
Executables fungen-worms, fungen-pong, fungen-hello
Downloads 12441 total (43 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2015-09-27 [all 2 reports]

Readme for FunGEn-1.0

[back to package description]


Functional Game Engine

FunGEn (Functional Game Engine) is a BSD-licensed, cross-platform, OpenGL/GLUT-based, non-FRP game engine/framework written in Haskell. Created by Andre Furtado in 2002, it's the oldest Haskell game engine, and with very few dependencies and two example games, it's one of the easiest ways to get started with Haskell game development. It provides:

  • Initialization, updating, removing, rendering and grouping routines for game objects
  • Definition of a game background (or map), including texture-based maps and tile maps
  • Reading and intepretation of the player's keyboard and mouse input
  • Collision detection
  • Time-based functions and pre-defined game actions
  • Loading and displaying of 24-bit bitmap files
  • Some debugging and game performance evaluation facilities

Simon Michael provides basic maintenance for this package. If you'd like to take it over, contact me (sm on the #haskell-game IRC channel).

Home: http://joyful.com/fungen
Hackage: http://hackage.haskell.org/package/FunGEn
Code: https://github.com/haskell-game/fungen

Docs:
  Changelog
  API docs
  Andre's original pong tutorial
  Haskell wiki Game_Development
  Haskell wiki OpenGL tutorial \


Community:
  #haskell-game IRC channel (join)
  FunGEn questions on Stack Overflow
  haskellgamedev reddit
  haskell-cafe mail list \

Getting started

$ cabal update
$ [cabal sandbox init]    # if needed, to avoid dependency problems
$ cabal install FunGEn    # & make sure ~/.cabal/bin or ./.cabal-sandbox/bin or windows equiv. are in your PATH
$ fungen-hello
$ fungen-pong
$ fungen-worms

or

$ git clone http://github.com/haskell-game/fungen
$ cd fungen
$ stack install
$ fungen-hello
$ fungen-pong
$ fungen-worms

History

Andre's 2002 site included this Q & A:

What is a game engine?

A game engine can be considered as a library that provides game facilities to a game programmer. When using a game engine, the programmer must specify when the game events happen, rather than how they are implemented. A same functionality may have its implementation varying from platform to platform, in the case the engine is platform-independent. The main advantage of a game engine is that it can be reused to the development of many different kind of games, in an automated way, saving a lot of programming time.

Why Haskell?

We believe that Haskell is a great language to develop games, because of its high level of abstraction and the generation of a more concise, elegant and shorter code. This is great for code maintenance and understanding. Combining the power of Haskell with the facilities provided by game engines seems a promising project. You can find more info on Haskell in its official site.

What is HOpenGL?

HOpenGL stands for Haskell Open Graphics Library. Actually, it is a binding to one of the most famous graphics libraries around the world (OpenGL) and its auxiliary toolkit (GLUT). In other words, it makes possible to call OpenGL/GLUT routines (which were written in the C language) when programming in Haskell. You can find more info on HOpenGL in my HOpenGL Tutorial site, or in its official site.

and this:

Current Status: Some feedback indicated that the first version of FunGEn was not as "functional" as it was desired: some game issues were still being dealt through an imperative fashion. This way, the authors of this project decided to change the game engine philosophy: programmers should describe a game as a set of "specifications" rather than defining its behavior imperatively. One plausible alternative for accomplishing this task is porting the Clean Game Library (CGL) to Haskell, adding some FunGEn specific features. Hence, this is the actual status of the FunGEn project: it is being rebuilt in order to provide game programming mechanisms following the CGL concepts. This really demands some time, but the authors expect a new version to be released soon.

... PLEASE NOTE: this is the very first version of FunGEn, and it was released just to get some feedback from game programmers. You are strongly invited to tell your game programming experiences with FunGEn, helping us to release a definitive, stable version). Ok, after this disclaimer, please fell yourself free to take a quick tour in the site; it contains a lot of useful information for those who are really interested in trying a new game programming experience. Nice coding...

and this todo list:

Here you have a list of some upcoming FunGEn features, and some other desired features (but with no implementation prevision yet).

  • Support map scrolling (coming soon);
  • Support mouse input management (coming soon);
  • Make a polygon map definition avaiable (coming soon);
  • Make sound avaible to non-Win32 platforms;
  • Create, if possible, some operators to avoid the excessive (x <- ...) syntax;
  • Support auto-animated objects;
  • Create a GLUT independent font support (or perhaps extend it);
  • Improve the installation process;
  • Upgrade FunGEn to be both a 2D (bidimensional) and 2D 1/2 (bi and a half dimensional) engine;
  • Create a map editor/generator (possibly in other language, or using the brand new Haskell GUI...);
  • Take courage to start thinking about the 3D world...

Would you like to suggest a feature? Feel free to do it. Would you like to implement a feature? Please do it! Keep in touch.

and these credits:

FunGEn was created by Andre Furtado, Computation Science graduation student at the Informatics Center (CIn) of the Federal University of Pernambuco (UFPE), as part of a Scientific Iniciation (PIBIC/CNPq) research project (Creating a Game Platform Using Haskell), oriented by lecturer Andre Santos (PhD, 1995, University of Glasgow), who was responsible for figuring out a lot of FunGEn implementation details.

I would like to thank also the following people who contributed for the development of FunGEn:

  • Sven Panne
  • Jay Cox
  • Geber Ramalho
  • Carlos Andre Pessoa
  • Charles Madeira
  • Monique Monteiro
  • The people at the Haskell mailing lists

FunGEn can be distributed freely, in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. I would thank you if you cite my name and this site if you are going to use FunGEn for other things besides home programming.