freekick2: A soccer game

[ game, program ] [ Propose Tags ]

A soccer game.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1.0, 0.1.1, 0.1.2
Dependencies array (>=0.3.0.0), base (>3 && <5), binary (>=0.5.0.0), bytestring (>=0.9.0.0), containers (>=0.3.0.0), directory (>=1.0.0.0), EdisonCore (>=1.2.1.0), filepath (>=1.1.0.0), FTGL (>=1.333), haskell98, mtl (>=1.1.0.0), OpenGL (>=2.1.0.0), pngload (>=0.1), random (>=1.0.0.0), SDL (>=0.5.5), template-haskell [details]
License LicenseRef-GPL
Copyright Antti Salonen 2010
Author Antti Salonen<ajsalonen at gmail dot com>
Maintainer Antti Salonen<ajsalonen at gmail dot com>
Category Game
Home page http://github.com/anttisalonen/freekick2
Source repo head: git clone git://github.com/anttisalonen/freekick2.git
Uploaded by AnttiSalonen at 2011-06-25T13:08:11Z
Distributions
Reverse Dependencies 1 direct, 0 indirect [details]
Executables createteam, swos2gen, freekick2
Downloads 2841 total (7 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-12-27 [all 9 reports]

Readme for freekick2-0.1.2

[back to package description]
Freekick2 Readme

Introduction
============

Freekick2 is an open source 2D arcade style soccer game.

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

Freekick2 can be installed from sources using cabal (see 
http://www.haskell.org/cabal/).

Step-by-step:

1. Install cabal if you haven't already.

To install system-wide, switch to the directory with freekick2 sources and do:

2. $ cabal configure
3. $ cabal build
4. # cabal install

To install user-wide, use 

"cabal configure --user" 

instead of 

"cabal configure".

Freekick2 depends on some libraries that can be found in Hackage, including 
SDL, OpenGL, FTGL and others. See the freekick2.cabal file for a list.

Freekick2 depends on some Haskell extensions, at least some of which, as far 
as I know, have only been implemented in GHC. I haven't tried compiling
freekick2 with a different compiler.

When installing freekick2 from source, three executables are built:

1. freekick2 - this is the actual game.
2. swos2gen - a program for creating freekick2 tactics and teams from 
Sensible Soccer tactics and teams - see below.
3. createteam - a program for creating random teams.

Alternatively, you can install freekick2 from Hackage, with a simple
"cabal install freekick2".

Playing
=======

To run, simply type in freekick2. Click on the teams to choose them.
Pink background means the team is controlled by the computer. Blue means it's
controlled by a human. Currently only one team can be controlled by a human.
You can control all players except the goalkeeper during the match, but restarts
are handled by the computer. Use the arrow keys to run around with the player 
you're controlling and the right control key to shoot the ball. The longer you
hold down the right control key the stronger the shot will be.

Teams
=====

Freekick2 includes some made-up teams. If you want to play with other teams,
you can convert Sensible Soccer teams into freekick2 teams if you have the
data files.

Usage:

swos2gen 0 <fromdir> <todir>

swos2gen converts the files in the given directory to freekick2 files. All
the files in the given directory must be in the given format. To install your
new teams, copy the files to ~/.freekick2/teams or, in Windows, to
C:\Documents And Settings\user\Application Data\freekick2\teams (insert your
username).

Troubleshooting
===============

If you have any problems, or other feedback, let me know.
ajsalonen <at> gmail <dot> com.

Antti Salonen