From d3e273139b7b1c654e56cb77c8849a3d59fe53b7 Mon Sep 17 00:00:00 2001 From: msf Date: Tue, 22 May 2007 18:31:33 +0000 Subject: [PATCH] initial import of wormux 0.7.9 Have the mascots of your favorite free software battle in the Wormux arena. Using dynamite, grenades, baseball bat and others bazookas,... exterminate your opponent in a 2D toon style scenery and a funny environment. ok jasper@ --- games/wormux/Makefile | 36 + games/wormux/distinfo | 5 + games/wormux/files/openbsd.h | 5 + games/wormux/patches/patch-src_map_ground_cpp | 11 + .../wormux/patches/patch-src_map_tileitem_cpp | 29 + .../patches/patch-src_object_physics_cpp | 11 + games/wormux/pkg/DESCR | 4 + games/wormux/pkg/PLIST | 773 ++++++++++++++++++ 8 files changed, 874 insertions(+) create mode 100644 games/wormux/Makefile create mode 100644 games/wormux/distinfo create mode 100644 games/wormux/files/openbsd.h create mode 100644 games/wormux/patches/patch-src_map_ground_cpp create mode 100644 games/wormux/patches/patch-src_map_tileitem_cpp create mode 100644 games/wormux/patches/patch-src_object_physics_cpp create mode 100644 games/wormux/pkg/DESCR create mode 100644 games/wormux/pkg/PLIST diff --git a/games/wormux/Makefile b/games/wormux/Makefile new file mode 100644 index 00000000000..042f4417716 --- /dev/null +++ b/games/wormux/Makefile @@ -0,0 +1,36 @@ +# $OpenBSD: Makefile,v 1.1.1.1 2007/05/22 18:31:33 msf Exp $ + +COMMENT= "free software clone of Worms(R) game concept" + +DISTNAME= wormux-0.7.9 +CATEGORIES= games + +HOMEPAGE= http://wormux.org + +# GPL +PERMIT_PACKAGE_CDROM= Yes +PERMIT_PACKAGE_FTP= Yes +PERMIT_DISTFILES_CDROM= Yes +PERMIT_DISTFILES_FTP= Yes +WANTLIB= SDL X11 Xext c crypto glib-2.0 glibmm-2.4 gobject-2.0 \ + iconv idn intl m pthread sigc-2.0 ssl stdc++ usbhid \ + xml2 z + +MASTER_SITES= http://download.gna.org/wormux/ + +LIB_DEPENDS= SDL_gfx::devel/sdl-gfx \ + SDL_image::devel/sdl-image \ + SDL_mixer::devel/sdl-mixer \ + SDL_net::devel/sdl-net \ + SDL_ttf::devel/sdl-ttf \ + curl.>=5::net/curl \ + xml++-2.6::textproc/libxml++ + +CONFIGURE_STYLE= gnu +CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +post-extract: + @cp ${FILESDIR}/openbsd.h ${WRKSRC}/src/include/ + +.include diff --git a/games/wormux/distinfo b/games/wormux/distinfo new file mode 100644 index 00000000000..6425c2ab382 --- /dev/null +++ b/games/wormux/distinfo @@ -0,0 +1,5 @@ +MD5 (wormux-0.7.9.tar.gz) = 2SGuW60kPex7toJdbgudFg== +RMD160 (wormux-0.7.9.tar.gz) = SUMkirZckz8scJCKpLHwhwWtKg4= +SHA1 (wormux-0.7.9.tar.gz) = cP/H5+3AKSEizmCeuCwBEZh7vRI= +SHA256 (wormux-0.7.9.tar.gz) = nCYMHdPHcVnMtxoh32HceE6HX9pKfldB3LIv56SKgoI= +SIZE (wormux-0.7.9.tar.gz) = 31674094 diff --git a/games/wormux/files/openbsd.h b/games/wormux/files/openbsd.h new file mode 100644 index 00000000000..ca805d5b8c9 --- /dev/null +++ b/games/wormux/files/openbsd.h @@ -0,0 +1,5 @@ +/* $OpenBSD: openbsd.h,v 1.1.1.1 2007/05/22 18:31:33 msf Exp $ */ + +#ifndef NAN +#define NAN (0.0/atof("?")) +#endif diff --git a/games/wormux/patches/patch-src_map_ground_cpp b/games/wormux/patches/patch-src_map_ground_cpp new file mode 100644 index 00000000000..5e8fc932ec5 --- /dev/null +++ b/games/wormux/patches/patch-src_map_ground_cpp @@ -0,0 +1,11 @@ +$OpenBSD: patch-src_map_ground_cpp,v 1.1.1.1 2007/05/22 18:31:33 msf Exp $ +--- src/map/ground.cpp.orig Tue Apr 10 15:27:08 2007 ++++ src/map/ground.cpp Tue Apr 10 15:27:14 2007 +@@ -33,6 +33,7 @@ + #include "../include/constant.h" + #include "../tool/i18n.h" + #include "../tool/resource_manager.h" ++#include "../include/openbsd.h" + + Ground::Ground() + { //FIXME (a effacer) diff --git a/games/wormux/patches/patch-src_map_tileitem_cpp b/games/wormux/patches/patch-src_map_tileitem_cpp new file mode 100644 index 00000000000..1530575434e --- /dev/null +++ b/games/wormux/patches/patch-src_map_tileitem_cpp @@ -0,0 +1,29 @@ +$OpenBSD: patch-src_map_tileitem_cpp,v 1.1.1.1 2007/05/22 18:31:33 msf Exp $ +--- src/map/tileitem.cpp.orig Sun Jan 28 15:03:48 2007 ++++ src/map/tileitem.cpp Sun May 20 17:29:28 2007 +@@ -125,15 +125,14 @@ void TileItem_AlphaSoftware::Dig(const Point2i ¢er + while ( (uint) y <= center.y + radius + EXPLOSION_BORDER_SIZE&& y < CELL_SIZE.y ) + { + //Abscisse distance from the center of the circle to the circle +- int dac = center.y - y; ++ int dac = y - center.y; + + //Angle on the circle +- float angle = asin( (float)dac / (float)radius); ++ float angle = asin( (float)dac / (float)(radius + EXPLOSION_BORDER_SIZE)); + + //Zone of the line which needs to be emptied + int start_x, end_x, lenght; + lenght = (int) ((float) radius * cos (angle)); +- lenght = lenght > 0 ? lenght : - lenght; + start_x = center.x - lenght; + lenght *= 2; + end_x = start_x + lenght; +@@ -144,7 +143,6 @@ void TileItem_AlphaSoftware::Dig(const Point2i ¢er + int bstart_x, bend_x, blenght; + angle = asin( (float)dac / (float)(radius + EXPLOSION_BORDER_SIZE)); + blenght = (int) ((float) (radius + EXPLOSION_BORDER_SIZE) * cos (angle)); +- blenght = blenght > 0 ? blenght : - blenght; + bstart_x = center.x - blenght; + bend_x = bstart_x + (blenght - lenght/2); + Darken(bstart_x, bend_x, buf, bpp); diff --git a/games/wormux/patches/patch-src_object_physics_cpp b/games/wormux/patches/patch-src_object_physics_cpp new file mode 100644 index 00000000000..0efdc8dd088 --- /dev/null +++ b/games/wormux/patches/patch-src_object_physics_cpp @@ -0,0 +1,11 @@ +$OpenBSD: patch-src_object_physics_cpp,v 1.1.1.1 2007/05/22 18:31:33 msf Exp $ +--- src/object/physics.cpp.orig Tue Apr 10 15:25:46 2007 ++++ src/object/physics.cpp Tue Apr 10 15:26:18 2007 +@@ -33,6 +33,7 @@ + #include "../tool/debug.h" + #include "../tool/math_tools.h" + #include "../map/wind.h" ++#include "../include/openbsd.h" + + // Physical constants + const double STOP_REBOUND_LIMIT = 0.5 ; diff --git a/games/wormux/pkg/DESCR b/games/wormux/pkg/DESCR new file mode 100644 index 00000000000..03ebe0cce9d --- /dev/null +++ b/games/wormux/pkg/DESCR @@ -0,0 +1,4 @@ +Have the mascots of your favorite free software battle in the Wormux +arena. Using dynamite, grenades, baseball bat and others bazookas,... +exterminate your opponent in a 2D toon style scenery and a funny +environment. diff --git a/games/wormux/pkg/PLIST b/games/wormux/pkg/PLIST new file mode 100644 index 00000000000..443aa2548ee --- /dev/null +++ b/games/wormux/pkg/PLIST @@ -0,0 +1,773 @@ +@comment $OpenBSD: PLIST,v 1.1.1.1 2007/05/22 18:31:33 msf Exp $ +bin/wormux +@man man/man6/wormux.6 +share/applications/ +share/applications/wormux.desktop +share/locale/ +share/locale/bs/ +share/locale/bs/LC_MESSAGES/ +share/locale/bs/LC_MESSAGES/wormux.mo +share/locale/ca/ +share/locale/ca/LC_MESSAGES/ +share/locale/ca/LC_MESSAGES/wormux.mo +share/locale/da/ +share/locale/da/LC_MESSAGES/ +share/locale/da/LC_MESSAGES/wormux.mo +share/locale/de/ +share/locale/de/LC_MESSAGES/ +share/locale/de/LC_MESSAGES/wormux.mo +share/locale/eo/ +share/locale/eo/LC_MESSAGES/ +share/locale/eo/LC_MESSAGES/wormux.mo +share/locale/es/ +share/locale/es/LC_MESSAGES/ +share/locale/es/LC_MESSAGES/wormux.mo +share/locale/fi/ +share/locale/fi/LC_MESSAGES/ +share/locale/fi/LC_MESSAGES/wormux.mo +share/locale/fr/ +share/locale/fr/LC_MESSAGES/ +share/locale/fr/LC_MESSAGES/wormux.mo +share/locale/hu/ +share/locale/hu/LC_MESSAGES/ +share/locale/hu/LC_MESSAGES/wormux.mo +share/locale/it/ +share/locale/it/LC_MESSAGES/ +share/locale/it/LC_MESSAGES/wormux.mo +share/locale/nl/ +share/locale/nl/LC_MESSAGES/ +share/locale/nl/LC_MESSAGES/wormux.mo +share/locale/pl/ +share/locale/pl/LC_MESSAGES/ +share/locale/pl/LC_MESSAGES/wormux.mo +share/locale/pt/ +share/locale/pt-BR/ +share/locale/pt-BR/LC_MESSAGES/ +share/locale/pt-BR/LC_MESSAGES/wormux.mo +share/locale/pt/LC_MESSAGES/ +share/locale/pt/LC_MESSAGES/wormux.mo +share/locale/ro/ +share/locale/ro/LC_MESSAGES/ +share/locale/ro/LC_MESSAGES/wormux.mo +share/locale/ru/ +share/locale/ru/LC_MESSAGES/ +share/locale/ru/LC_MESSAGES/wormux.mo +share/locale/sk/ +share/locale/sk/LC_MESSAGES/ +share/locale/sk/LC_MESSAGES/wormux.mo +share/locale/sv/ +share/locale/sv/LC_MESSAGES/ +share/locale/sv/LC_MESSAGES/wormux.mo +share/locale/tr/ +share/locale/tr/LC_MESSAGES/ +share/locale/tr/LC_MESSAGES/wormux.mo +share/wormux/ +share/wormux/authors.dtd +share/wormux/authors.xml +share/wormux/body/ +share/wormux/body/beastieteam/ +share/wormux/body/beastieteam/arm-left.png +share/wormux/body/beastieteam/arm-right.png +share/wormux/body/beastieteam/black.png +share/wormux/body/beastieteam/body.png +share/wormux/body/beastieteam/c1.png +share/wormux/body/beastieteam/c2.png +share/wormux/body/beastieteam/config.xml +share/wormux/body/beastieteam/dead.png +share/wormux/body/beastieteam/foot.png +share/wormux/body/beastieteam/head.png +share/wormux/body/beastieteam/helmet.png +share/wormux/body/beastieteam/jetpack-heli.png +share/wormux/body/beastieteam/jetpack.png +share/wormux/body/beastieteam/tail.png +share/wormux/body/beastieteam/yoyo.png +share/wormux/body/body.dtd +share/wormux/body/firefoxteam/ +share/wormux/body/firefoxteam/arm1.png +share/wormux/body/firefoxteam/arm2.png +share/wormux/body/firefoxteam/black.png +share/wormux/body/firefoxteam/body.png +share/wormux/body/firefoxteam/c1.png +share/wormux/body/firefoxteam/c2.png +share/wormux/body/firefoxteam/config.xml +share/wormux/body/firefoxteam/dead.png +share/wormux/body/firefoxteam/ear-left.png +share/wormux/body/firefoxteam/ear-right.png +share/wormux/body/firefoxteam/eyes.png +share/wormux/body/firefoxteam/flag.png +share/wormux/body/firefoxteam/foot.png +share/wormux/body/firefoxteam/helmet.png +share/wormux/body/firefoxteam/jetpack-belt.png +share/wormux/body/firefoxteam/jetpack-fire.png +share/wormux/body/firefoxteam/jetpack.png +share/wormux/body/firefoxteam/pupil.png +share/wormux/body/firefoxteam/tail.png +share/wormux/body/firefoxteam/yoyo.png +share/wormux/body/gnuteam/ +share/wormux/body/gnuteam/arm.png +share/wormux/body/gnuteam/black.png +share/wormux/body/gnuteam/body.png +share/wormux/body/gnuteam/c1.png +share/wormux/body/gnuteam/c2.png +share/wormux/body/gnuteam/config.xml +share/wormux/body/gnuteam/dead.png +share/wormux/body/gnuteam/foot.png +share/wormux/body/gnuteam/head.png +share/wormux/body/gnuteam/helmet.png +share/wormux/body/gnuteam/jetpack-belt.png +share/wormux/body/gnuteam/jetpack-fire.png +share/wormux/body/gnuteam/jetpack.png +share/wormux/body/gnuteam/tail.png +share/wormux/body/gnuteam/yoyo.png +share/wormux/body/konqiteam/ +share/wormux/body/konqiteam/arm1.png +share/wormux/body/konqiteam/arm2.png +share/wormux/body/konqiteam/black.png +share/wormux/body/konqiteam/body.png +share/wormux/body/konqiteam/c1.png +share/wormux/body/konqiteam/c2.png +share/wormux/body/konqiteam/config.xml +share/wormux/body/konqiteam/dead.png +share/wormux/body/konqiteam/eyes.png +share/wormux/body/konqiteam/foot-left.png +share/wormux/body/konqiteam/foot-right.png +share/wormux/body/konqiteam/helmet.png +share/wormux/body/konqiteam/horns.png +share/wormux/body/konqiteam/nose.png +share/wormux/body/konqiteam/tail.png +share/wormux/body/konqiteam/wing.png +share/wormux/body/konqiteam/yoyo.png +share/wormux/body/nupikteam/ +share/wormux/body/nupikteam/arm.png +share/wormux/body/nupikteam/black.png +share/wormux/body/nupikteam/body.png +share/wormux/body/nupikteam/c1.png +share/wormux/body/nupikteam/c2.png +share/wormux/body/nupikteam/config.xml +share/wormux/body/nupikteam/dead.png +share/wormux/body/nupikteam/fixedarm.png +share/wormux/body/nupikteam/foot.png +share/wormux/body/nupikteam/head.png +share/wormux/body/nupikteam/helmet.png +share/wormux/body/nupikteam/jetpack-heli.png +share/wormux/body/nupikteam/jetpack.png +share/wormux/body/nupikteam/spines1.png +share/wormux/body/nupikteam/spines2.png +share/wormux/body/nupikteam/yoyo.png +share/wormux/body/oooteam/ +share/wormux/body/oooteam/black.png +share/wormux/body/oooteam/body.png +share/wormux/body/oooteam/c1.png +share/wormux/body/oooteam/c2.png +share/wormux/body/oooteam/config.xml +share/wormux/body/oooteam/dead.png +share/wormux/body/oooteam/eyes.png +share/wormux/body/oooteam/foot.png +share/wormux/body/oooteam/helmet.png +share/wormux/body/oooteam/nozzle.png +share/wormux/body/oooteam/wingleft.png +share/wormux/body/oooteam/wingright.png +share/wormux/body/oooteam/yoyo.png +share/wormux/body/phpteam/ +share/wormux/body/phpteam/arm.png +share/wormux/body/phpteam/black.png +share/wormux/body/phpteam/body.png +share/wormux/body/phpteam/c1.png +share/wormux/body/phpteam/c2.png +share/wormux/body/phpteam/config.xml +share/wormux/body/phpteam/dead.png +share/wormux/body/phpteam/ear-left.png +share/wormux/body/phpteam/ear-right.png +share/wormux/body/phpteam/foot-left.png +share/wormux/body/phpteam/foot-right.png +share/wormux/body/phpteam/head.png +share/wormux/body/phpteam/helmet.png +share/wormux/body/phpteam/jetpack-belt.png +share/wormux/body/phpteam/jetpack-fire.png +share/wormux/body/phpteam/jetpack.png +share/wormux/body/phpteam/tail.png +share/wormux/body/phpteam/yoyo.png +share/wormux/body/snortteam/ +share/wormux/body/snortteam/arm.png +share/wormux/body/snortteam/black.png +share/wormux/body/snortteam/body.png +share/wormux/body/snortteam/c1.png +share/wormux/body/snortteam/c2.png +share/wormux/body/snortteam/config.xml +share/wormux/body/snortteam/dead.png +share/wormux/body/snortteam/head.png +share/wormux/body/snortteam/helmet.png +share/wormux/body/snortteam/jetpack-belt.png +share/wormux/body/snortteam/jetpack-fire.png +share/wormux/body/snortteam/jetpack.png +share/wormux/body/snortteam/tail.png +share/wormux/body/snortteam/yoyo.png +share/wormux/body/spipteam/ +share/wormux/body/spipteam/arm.png +share/wormux/body/spipteam/black.png +share/wormux/body/spipteam/body.png +share/wormux/body/spipteam/c1.png +share/wormux/body/spipteam/c2.png +share/wormux/body/spipteam/config.xml +share/wormux/body/spipteam/dead.png +share/wormux/body/spipteam/eyes.png +share/wormux/body/spipteam/foot.png +share/wormux/body/spipteam/head.png +share/wormux/body/spipteam/helmet.png +share/wormux/body/spipteam/jetpack-belt.png +share/wormux/body/spipteam/jetpack-fire.png +share/wormux/body/spipteam/jetpack.png +share/wormux/body/spipteam/pupil.png +share/wormux/body/spipteam/tail.png +share/wormux/body/spipteam/yoyo.png +share/wormux/body/thunderbirdteam/ +share/wormux/body/thunderbirdteam/black.png +share/wormux/body/thunderbirdteam/body.png +share/wormux/body/thunderbirdteam/c1.png +share/wormux/body/thunderbirdteam/c2.png +share/wormux/body/thunderbirdteam/config.xml +share/wormux/body/thunderbirdteam/dead.png +share/wormux/body/thunderbirdteam/eyes.png +share/wormux/body/thunderbirdteam/foot.png +share/wormux/body/thunderbirdteam/hair.png +share/wormux/body/thunderbirdteam/helmet.png +share/wormux/body/thunderbirdteam/nozzle.png +share/wormux/body/thunderbirdteam/wingleft.png +share/wormux/body/thunderbirdteam/wingright.png +share/wormux/body/thunderbirdteam/yoyo.png +share/wormux/body/tuxteam/ +share/wormux/body/tuxteam/black.png +share/wormux/body/tuxteam/body.png +share/wormux/body/tuxteam/c1.png +share/wormux/body/tuxteam/c2.png +share/wormux/body/tuxteam/config.xml +share/wormux/body/tuxteam/dead.png +share/wormux/body/tuxteam/eyes.png +share/wormux/body/tuxteam/foot.png +share/wormux/body/tuxteam/helmet.png +share/wormux/body/tuxteam/nozzle.png +share/wormux/body/tuxteam/wing.png +share/wormux/body/tuxteam/yoyo.png +share/wormux/body/wilberteam/ +share/wormux/body/wilberteam/arm.png +share/wormux/body/wilberteam/black.png +share/wormux/body/wilberteam/body.png +share/wormux/body/wilberteam/c1.png +share/wormux/body/wilberteam/c2.png +share/wormux/body/wilberteam/config.xml +share/wormux/body/wilberteam/dead.png +share/wormux/body/wilberteam/foot.png +share/wormux/body/wilberteam/head.png +share/wormux/body/wilberteam/helmet.png +share/wormux/body/wilberteam/jetpack-belt.png +share/wormux/body/wilberteam/jetpack-fire.png +share/wormux/body/wilberteam/jetpack.png +share/wormux/body/wilberteam/pupil.png +share/wormux/body/wilberteam/yoyo.png +share/wormux/body/wilberteam/yoyo.svg +share/wormux/body/workraveteam/ +share/wormux/body/workraveteam/arm.png +share/wormux/body/workraveteam/black.png +share/wormux/body/workraveteam/body.png +share/wormux/body/workraveteam/c1.png +share/wormux/body/workraveteam/c2.png +share/wormux/body/workraveteam/config.xml +share/wormux/body/workraveteam/dead.png +share/wormux/body/workraveteam/foot.png +share/wormux/body/workraveteam/head.png +share/wormux/body/workraveteam/helmet.png +share/wormux/body/workraveteam/jetpack-belt.png +share/wormux/body/workraveteam/jetpack-fire.png +share/wormux/body/workraveteam/jetpack.png +share/wormux/body/workraveteam/yoyo.png +share/wormux/font/ +share/wormux/font/DejaVuSans.ttf +share/wormux/game_mode/ +share/wormux/game_mode/classic.xml +share/wormux/game_mode/game_mode.dtd +share/wormux/game_mode/objects.dtd +share/wormux/game_mode/objects.xml +share/wormux/gfx/ +share/wormux/gfx/arrow.png +share/wormux/gfx/pointer.png +share/wormux/gfx/water.png +share/wormux/gfx/water_bottom.png +share/wormux/graphism.dtd +share/wormux/graphism.xml +share/wormux/interface/ +share/wormux/interface/background_interface.png +share/wormux/interface/button1.png +share/wormux/interface/button2.png +share/wormux/interface/button3.png +share/wormux/interface/button4.png +share/wormux/interface/button5.png +share/wormux/interface/clock.png +share/wormux/interface/clock_background.png +share/wormux/interface/cursors/ +share/wormux/interface/cursors/arrow-down.left.png +share/wormux/interface/cursors/arrow-down.png +share/wormux/interface/cursors/arrow-down.right.png +share/wormux/interface/cursors/arrow-left.png +share/wormux/interface/cursors/arrow-right.png +share/wormux/interface/cursors/arrow-top.left.png +share/wormux/interface/cursors/arrow-top.png +share/wormux/interface/cursors/arrow-top.right.png +share/wormux/interface/cursors/hand-cursor.png +share/wormux/interface/cursors/hand-fire.left.png +share/wormux/interface/cursors/hand-fire.png +share/wormux/interface/cursors/hand-fire.right.png +share/wormux/interface/cursors/hand-move.png +share/wormux/interface/pause.png +share/wormux/interface/quit.png +share/wormux/interface/small_background_interface.png +share/wormux/interface/wind.png +share/wormux/interface/wind_indicator.png +share/wormux/map/ +share/wormux/map/aquarium/ +share/wormux/map/aquarium/background.png +share/wormux/map/aquarium/config.xml +share/wormux/map/aquarium/preview.jpg +share/wormux/map/aquarium/sky.jpg +share/wormux/map/araignee/ +share/wormux/map/araignee/abeille.png +share/wormux/map/araignee/araignee.png +share/wormux/map/araignee/config.xml +share/wormux/map/araignee/fond.jpg +share/wormux/map/araignee/preview.jpg +share/wormux/map/arbre/ +share/wormux/map/arbre/arbre.png +share/wormux/map/arbre/config.xml +share/wormux/map/arbre/fond.jpg +share/wormux/map/arbre/gland-anim.png +share/wormux/map/arbre/preview.jpg +share/wormux/map/banquise/ +share/wormux/map/banquise/background.jpg +share/wormux/map/banquise/banquise.png +share/wormux/map/banquise/config.xml +share/wormux/map/banquise/flocon.png +share/wormux/map/banquise/preview.jpg +share/wormux/map/battlenight/ +share/wormux/map/battlenight/battlenight-all.jpg +share/wormux/map/battlenight/battlenight-bg.jpg +share/wormux/map/battlenight/battlenight-fg.png +share/wormux/map/battlenight/config.xml +share/wormux/map/catacombes/ +share/wormux/map/catacombes/background1.png +share/wormux/map/catacombes/config.xml +share/wormux/map/catacombes/preview.jpg +share/wormux/map/catacombes/sky1.jpg +share/wormux/map/champignon/ +share/wormux/map/champignon/background.png +share/wormux/map/champignon/config.xml +share/wormux/map/champignon/preview.jpg +share/wormux/map/champignon/sky.jpg +share/wormux/map/cheese/ +share/wormux/map/cheese/config.xml +share/wormux/map/cheese/emmental.png +share/wormux/map/cheese/minicheese.png +share/wormux/map/cheese/preview.jpg +share/wormux/map/cheese/sky.jpg +share/wormux/map/cowland/ +share/wormux/map/cowland/config.xml +share/wormux/map/cowland/cowland.png +share/wormux/map/cowland/cowland_bg.jpg +share/wormux/map/cowland/nuage.png +share/wormux/map/cowland/preview.jpg +share/wormux/map/desert/ +share/wormux/map/desert/config.xml +share/wormux/map/desert/desert.png +share/wormux/map/desert/desert_bg.jpg +share/wormux/map/desert/desert_preview.jpg +share/wormux/map/easterisland/ +share/wormux/map/easterisland/config.xml +share/wormux/map/easterisland/map.png +share/wormux/map/easterisland/preview.jpg +share/wormux/map/easterisland/sky.jpg +share/wormux/map/easterisland/wp.png +share/wormux/map/electronik/ +share/wormux/map/electronik/background.png +share/wormux/map/electronik/config.xml +share/wormux/map/electronik/preview.jpg +share/wormux/map/electronik/sky.jpg +share/wormux/map/goodandevil/ +share/wormux/map/goodandevil/config.xml +share/wormux/map/goodandevil/goodandevil.png +share/wormux/map/goodandevil/preview.jpg +share/wormux/map/goodandevil/sky.jpg +share/wormux/map/grenouilles/ +share/wormux/map/grenouilles/config.xml +share/wormux/map/grenouilles/grenouilles.png +share/wormux/map/grenouilles/jungle.jpg +share/wormux/map/grenouilles/nuage.png +share/wormux/map/grenouilles/preview.jpg +share/wormux/map/halloween/ +share/wormux/map/halloween/confetis.png +share/wormux/map/halloween/config.xml +share/wormux/map/halloween/halloween.png +share/wormux/map/halloween/noir_lune.jpg +share/wormux/map/halloween/preview.jpg +share/wormux/map/hell/ +share/wormux/map/hell/bones.png +share/wormux/map/hell/config.xml +share/wormux/map/hell/hell.png +share/wormux/map/hell/hellsky.jpg +share/wormux/map/hell/preview.jpg +share/wormux/map/island/ +share/wormux/map/island/config.xml +share/wormux/map/island/island.png +share/wormux/map/island/preview.jpg +share/wormux/map/island/sky.jpg +share/wormux/map/leafs/ +share/wormux/map/leafs/back.jpg +share/wormux/map/leafs/birds.png +share/wormux/map/leafs/config.xml +share/wormux/map/leafs/front.png +share/wormux/map/leafs/preview.jpg +share/wormux/map/map.dtd +share/wormux/map/monkeybubbleworld/ +share/wormux/map/monkeybubbleworld/config.xml +share/wormux/map/monkeybubbleworld/feuille.png +share/wormux/map/monkeybubbleworld/monkeybubbleworld.png +share/wormux/map/monkeybubbleworld/preview.jpg +share/wormux/map/monkeybubbleworld/sky.jpg +share/wormux/map/noel/ +share/wormux/map/noel/bleu.jpg +share/wormux/map/noel/config.xml +share/wormux/map/noel/nege-anim.png +share/wormux/map/noel/noel.png +share/wormux/map/noel/preview.jpg +share/wormux/map/paradis/ +share/wormux/map/paradis/config.xml +share/wormux/map/paradis/decor_paradis.png +share/wormux/map/paradis/decor_paradis_BG.jpg +share/wormux/map/paradis/paradis_preview.jpg +share/wormux/map/pirates/ +share/wormux/map/pirates/config.xml +share/wormux/map/pirates/islands.jpg +share/wormux/map/pirates/pirates.png +share/wormux/map/pirates/preview.jpg +share/wormux/map/prehistorik/ +share/wormux/map/prehistorik/config.xml +share/wormux/map/prehistorik/fond.jpg +share/wormux/map/prehistorik/prehistorik.png +share/wormux/map/prehistorik/preview.jpg +share/wormux/map/qingqong/ +share/wormux/map/qingqong/config.xml +share/wormux/map/qingqong/preview.jpg +share/wormux/map/qingqong/qingqong.png +share/wormux/map/qingqong/sky.jpg +share/wormux/map/space/ +share/wormux/map/space/config.xml +share/wormux/map/space/lune.jpg +share/wormux/map/space/preview.jpg +share/wormux/map/space/space.png +share/wormux/map/vulcano/ +share/wormux/map/vulcano/background.png +share/wormux/map/vulcano/config.xml +share/wormux/map/vulcano/preview.jpg +share/wormux/map/vulcano/sky2.jpg +share/wormux/map/wildwestdv/ +share/wormux/map/wildwestdv/backgr.jpg +share/wormux/map/wildwestdv/config.xml +share/wormux/map/wildwestdv/preview.jpg +share/wormux/map/wildwestdv/wildwestdv.png +share/wormux/menu/ +share/wormux/menu/img/ +share/wormux/menu/img/arrow-left.png +share/wormux/menu/img/arrow-right.png +share/wormux/menu/img/audio_label.png +share/wormux/menu/img/background.png +share/wormux/menu/img/background_credits.png +share/wormux/menu/img/background_network.png +share/wormux/menu/img/background_options.png +share/wormux/menu/img/background_play.png +share/wormux/menu/img/big_left.png +share/wormux/menu/img/big_right.png +share/wormux/menu/img/button.png +share/wormux/menu/img/cancel.png +share/wormux/menu/img/check.png +share/wormux/menu/img/display_energy.png +share/wormux/menu/img/display_name.png +share/wormux/menu/img/display_wind_particles.png +share/wormux/menu/img/down.png +share/wormux/menu/img/fullscreen.png +share/wormux/menu/img/ico_maps.png +share/wormux/menu/img/ico_skins.png +share/wormux/menu/img/ico_sounds.png +share/wormux/menu/img/ico_weapons.png +share/wormux/menu/img/loading.png +share/wormux/menu/img/map_label.png +share/wormux/menu/img/minus.png +share/wormux/menu/img/mode_label.png +share/wormux/menu/img/music_enable.png +share/wormux/menu/img/plus.png +share/wormux/menu/img/scroll_on_border.png +share/wormux/menu/img/send_txt.png +share/wormux/menu/img/skin01.png +share/wormux/menu/img/skin02.png +share/wormux/menu/img/sound_effects_enable.png +share/wormux/menu/img/teams_label.png +share/wormux/menu/img/timing_end_turn.png +share/wormux/menu/img/timing_turn.png +share/wormux/menu/img/title.png +share/wormux/menu/img/up.png +share/wormux/menu/img/validate.png +share/wormux/menu/img/video_label.png +share/wormux/music/ +share/wormux/music/ingame/ +share/wormux/music/ingame/ingame.m3u +share/wormux/music/menu/ +share/wormux/music/menu/Olivier_Militon.-.Le_Calumet.ogg +share/wormux/music/menu/Olivier_Militon.-.Le_Calumet_F.ogg +share/wormux/music/menu/menu.m3u +share/wormux/music/profile.xml +share/wormux/object/ +share/wormux/object/barrel.png +share/wormux/object/blue_star.png +share/wormux/object/bonus_box.png +share/wormux/object/dark_smoke.png +share/wormux/object/fire.png +share/wormux/object/ill_bubble.png +share/wormux/object/pink_star.png +share/wormux/object/smoke.png +share/wormux/object/smoke2.png +share/wormux/object/smoke3.png +share/wormux/object/star.png +share/wormux/object/yellow_star.png +share/wormux/sound/ +share/wormux/sound/default/ +share/wormux/sound/default/crazy_01.ogg +share/wormux/sound/default/crazy_02.ogg +share/wormux/sound/default/crazy_03.ogg +share/wormux/sound/default/crazy_04.ogg +share/wormux/sound/default/crazy_05.ogg +share/wormux/sound/default/cuss_01.ogg +share/wormux/sound/default/cuss_02.ogg +share/wormux/sound/default/cuss_03.ogg +share/wormux/sound/default/cuss_04.ogg +share/wormux/sound/default/death_01.ogg +share/wormux/sound/default/death_02.ogg +share/wormux/sound/default/fire_01.ogg +share/wormux/sound/default/fire_02.ogg +share/wormux/sound/default/hehe.ogg +share/wormux/sound/default/hop_01.ogg +share/wormux/sound/default/out_01.ogg +share/wormux/sound/default/profile.xml +share/wormux/sound/default/sink.ogg +share/wormux/sound/default/skip_turn.ogg +share/wormux/sound/default/step_01.ogg +share/wormux/sound/default/step_02.ogg +share/wormux/sound/default/suicide_01.ogg +share/wormux/sound/default/superjump_01.ogg +share/wormux/sound/default/uuh_01.ogg +share/wormux/sound/default/uuh_02.ogg +share/wormux/sound/default/uuh_03.ogg +share/wormux/sound/default/uuh_04.ogg +share/wormux/sound/default/uuh_05.ogg +share/wormux/sound/default/uuh_06.ogg +share/wormux/sound/default/uuh_07.ogg +share/wormux/sound/default/uuh_08.ogg +share/wormux/sound/flying/ +share/wormux/sound/flying/flying.ogg +share/wormux/sound/flying/profile.xml +share/wormux/sound/francais/ +share/wormux/sound/francais/crazy.ogg +share/wormux/sound/francais/fire_01.ogg +share/wormux/sound/francais/fire_02.ogg +share/wormux/sound/francais/profile.xml +share/wormux/sound/share/ +share/wormux/sound/share/end_turn.ogg +share/wormux/sound/share/explosion.ogg +share/wormux/sound/share/frog_music.ogg +share/wormux/sound/share/laughing.ogg +share/wormux/sound/share/menu/ +share/wormux/sound/share/menu/cancel.ogg +share/wormux/sound/share/menu/clic.ogg +share/wormux/sound/share/menu/ok.ogg +share/wormux/sound/share/profile.xml +share/wormux/sound/share/step.ogg +share/wormux/sound/share/victory.ogg +share/wormux/team/ +share/wormux/team/beastieteam/ +share/wormux/team/beastieteam/flag.png +share/wormux/team/beastieteam/team.xml +share/wormux/team/firefoxteam/ +share/wormux/team/firefoxteam/flag.png +share/wormux/team/firefoxteam/team.xml +share/wormux/team/gnuteam/ +share/wormux/team/gnuteam/flag.png +share/wormux/team/gnuteam/team.xml +share/wormux/team/konqiteam/ +share/wormux/team/konqiteam/flag.png +share/wormux/team/konqiteam/team.xml +share/wormux/team/nupikteam/ +share/wormux/team/nupikteam/flag.png +share/wormux/team/nupikteam/team.xml +share/wormux/team/oooteam/ +share/wormux/team/oooteam/flag.png +share/wormux/team/oooteam/team.xml +share/wormux/team/phpteam/ +share/wormux/team/phpteam/flag.png +share/wormux/team/phpteam/team.xml +share/wormux/team/snortteam/ +share/wormux/team/snortteam/flag.png +share/wormux/team/snortteam/team.xml +share/wormux/team/spipteam/ +share/wormux/team/spipteam/flag.png +share/wormux/team/spipteam/flag.svg +share/wormux/team/spipteam/team.xml +share/wormux/team/team.dtd +share/wormux/team/thunderbirdteam/ +share/wormux/team/thunderbirdteam/flag.png +share/wormux/team/thunderbirdteam/team.xml +share/wormux/team/tuxteam/ +share/wormux/team/tuxteam/flag.png +share/wormux/team/tuxteam/team.xml +share/wormux/team/wilberteam/ +share/wormux/team/wilberteam/flag.png +share/wormux/team/wilberteam/team.xml +share/wormux/team/workraveteam/ +share/wormux/team/workraveteam/flag.png +share/wormux/team/workraveteam/team.xml +share/wormux/weapon/ +share/wormux/weapon/air_attack/ +share/wormux/weapon/air_attack/air_attack.png +share/wormux/weapon/air_attack/air_attack_ico.png +share/wormux/weapon/air_attack/air_attack_plane.png +share/wormux/weapon/air_attack/obus.png +share/wormux/weapon/airhammer/ +share/wormux/weapon/airhammer/airhammer.png +share/wormux/weapon/airhammer/airhammer_ico.png +share/wormux/weapon/airhammer/airhammer_impact.png +share/wormux/weapon/anvil/ +share/wormux/weapon/anvil/anvil.png +share/wormux/weapon/anvil/anvil_ico.png +share/wormux/weapon/anvil/anvil_launcher.png +share/wormux/weapon/baseball/ +share/wormux/weapon/baseball/baseball.png +share/wormux/weapon/baseball/baseball_hit.png +share/wormux/weapon/baseball/baseball_ico.png +share/wormux/weapon/bazooka/ +share/wormux/weapon/bazooka/baz_cible.png +share/wormux/weapon/bazooka/bazooka.png +share/wormux/weapon/bazooka/bazooka_auto_ico.png +share/wormux/weapon/bazooka/bazooka_ico.png +share/wormux/weapon/bazooka/missile.png +share/wormux/weapon/blowtorch/ +share/wormux/weapon/blowtorch/blowtorch.png +share/wormux/weapon/blowtorch/blowtorch_ico.png +share/wormux/weapon/blowtorch/fire.png +share/wormux/weapon/bounce_ball/ +share/wormux/weapon/bounce_ball/bounce_ball.png +share/wormux/weapon/bounce_ball/bounce_ball_ico.png +share/wormux/weapon/cluster_bomb/ +share/wormux/weapon/cluster_bomb/cluster.png +share/wormux/weapon/cluster_bomb/clusterbomb.png +share/wormux/weapon/cluster_bomb/clusterbomb_ico.png +share/wormux/weapon/construct/ +share/wormux/weapon/construct/construct_icon.png +share/wormux/weapon/construct/construct_icon_mini.png +share/wormux/weapon/construct/construct_spr.png +share/wormux/weapon/disco_grenade/ +share/wormux/weapon/disco_grenade/disco_grenade.png +share/wormux/weapon/disco_grenade/disco_grenade_ico.png +share/wormux/weapon/dynamite/ +share/wormux/weapon/dynamite/dynamite.png +share/wormux/weapon/dynamite/dynamite_ani.png +share/wormux/weapon/dynamite/dynamite_ico.png +share/wormux/weapon/gnu/ +share/wormux/weapon/gnu/gnu.png +share/wormux/weapon/gnu/gnu_ico.png +share/wormux/weapon/gnu/gnulauncher.png +share/wormux/weapon/grenade/ +share/wormux/weapon/grenade/grenade.png +share/wormux/weapon/grenade/grenade_ico.png +share/wormux/weapon/gun/ +share/wormux/weapon/gun/gun.png +share/wormux/weapon/gun/gun_bullet.png +share/wormux/weapon/gun/gun_fire.png +share/wormux/weapon/gun/gun_ico.png +share/wormux/weapon/jet_pack/ +share/wormux/weapon/jet_pack/jet_pack_ico.png +share/wormux/weapon/lowgrav/ +share/wormux/weapon/lowgrav/lowgrav_ico.png +share/wormux/weapon/m16/ +share/wormux/weapon/m16/m16.png +share/wormux/weapon/m16/m16_ico.png +share/wormux/weapon/mine/ +share/wormux/weapon/mine/mine.png +share/wormux/weapon/mine/mine_anim.png +share/wormux/weapon/mine/mine_ico.png +share/wormux/weapon/mine/mine_impact.png +share/wormux/weapon/ninja_rope/ +share/wormux/weapon/ninja_rope/ninjahook.png +share/wormux/weapon/ninja_rope/ninjanode.png +share/wormux/weapon/ninja_rope/ninjarope.png +share/wormux/weapon/ninja_rope/ninjarope_ico.png +share/wormux/weapon/parachute/ +share/wormux/weapon/parachute/parachute.png +share/wormux/weapon/parachute/parachute_ico.png +share/wormux/weapon/polecat/ +share/wormux/weapon/polecat/polecat.png +share/wormux/weapon/polecat/polecat_fart.png +share/wormux/weapon/polecat/polecat_ico.png +share/wormux/weapon/polecat/polecatlauncher.png +share/wormux/weapon/riot_bomb/ +share/wormux/weapon/riot_bomb/missile.png +share/wormux/weapon/riot_bomb/riot_ico.png +share/wormux/weapon/shotgun/ +share/wormux/weapon/shotgun/buckshot.png +share/wormux/weapon/shotgun/shotgun.png +share/wormux/weapon/shotgun/shotgun_ico.png +share/wormux/weapon/skip_turn/ +share/wormux/weapon/skip_turn/skipturn.png +share/wormux/weapon/skip_turn/skipturn_ico.png +share/wormux/weapon/snipe_rifle/ +share/wormux/weapon/snipe_rifle/snipe_rifle.png +share/wormux/weapon/snipe_rifle/snipe_rifle_ico.png +share/wormux/weapon/snipe_rifle/snipe_rifle_laser.png +share/wormux/weapon/sound/ +share/wormux/weapon/sound/airhammer.ogg +share/wormux/weapon/sound/alleluia.ogg +share/wormux/weapon/sound/baseball.ogg +share/wormux/weapon/sound/commit_suicide.ogg +share/wormux/weapon/sound/dynamite.ogg +share/wormux/weapon/sound/dynamite_exp.ogg +share/wormux/weapon/sound/dynamite_fuze.ogg +share/wormux/weapon/sound/grenade_bounce.ogg +share/wormux/weapon/sound/gun.ogg +share/wormux/weapon/sound/holly_grenade_bounce.ogg +share/wormux/weapon/sound/jetpack.ogg +share/wormux/weapon/sound/load.ogg +share/wormux/weapon/sound/m16.ogg +share/wormux/weapon/sound/mine_beep.ogg +share/wormux/weapon/sound/pistolet.ogg +share/wormux/weapon/sound/ricoche1.ogg +share/wormux/weapon/sound/ricoche2.ogg +share/wormux/weapon/sound/ricoche3.ogg +share/wormux/weapon/sound/riot_bomb_exp.ogg +share/wormux/weapon/sound/shotgun.ogg +share/wormux/weapon/sound/teleport_land.ogg +share/wormux/weapon/sound/teleport_start.ogg +share/wormux/weapon/suicide/ +share/wormux/weapon/suicide/suicide.png +share/wormux/weapon/suicide/suicide_ico.png +share/wormux/weapon/supertux/ +share/wormux/weapon/supertux/superman.png +share/wormux/weapon/supertux/supertux.png +share/wormux/weapon/supertux/supertux_ico.png +share/wormux/weapon/syringe/ +share/wormux/weapon/syringe/syringe.png +share/wormux/weapon/syringe/syringe_ico.png +share/wormux/weapon/teleportation/ +share/wormux/weapon/teleportation/teleportation.png +share/wormux/weapon/teleportation/teleportation_ico.png +share/wormux/weapons.dtd +share/wormux/weapons.xml +share/wormux/wormux.desktop +share/wormux/wormux.svg +share/wormux/wormux_128x128.png +share/wormux/wormux_128x128.xpm +share/wormux/wormux_256x256.png +share/wormux/wormux_32x32.png +share/wormux/wormux_32x32.xpm