boomgame


Nameboomgame JSON
Version 0.4.6 PyPI version JSON
download
home_pagehttps://github.com/raphaelreme/boomgame
SummaryBOOM (MacOs shareware) remake with pygame
upload_time2023-12-10 21:01:28
maintainer
docs_urlNone
authorRaphael Reme
requires_python>=3.6
licenseMIT
keywords game bomberman boom
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # BoomGame

![Example](boom.gif)

Remake of BOOM (old macintosh game) with python & pygame.

[BOOM](https://www.macintoshrepository.org/3582-boom) was created by Federico Filipponi (FactorSoftware) in the ’90s. It is an arcade game that can be played by up to two player on a single computer. Players are facing an alien invasion in 80 levels. Their goal is to elimitate all the aliens with their bombs.

The game is not supported any more and can be played only on macos X (> 10 years old). This is a fan remake of BOOM in python using pygame library. This implementation can run on any os/laptop that support python3 and pygame. **NOTE: The original BOOM assets belong to Factor Software. We do not hold any intellectual property upon them.** You can play on your browser on [github.io](https://raphaelreme.github.io/boomgame/). We also provide standalone executables for a few modern plateforms. You may have to install python and install from pypi to run BOOM on your specific platform.

This work is still in development. A more mature remake of the game in C++ is available in the [Lifish](https://github.com/silverweed/lifish) project.

## Story
It’s happened again. The Earth is facing a new alien threat and who’s called to save our beloved planet? You guessed!

The aliens have the capability of transform themselves in all sort of deadly creatures. Basically, they act like parasites, attacking humans, animals and even machines and turning them into lethal killers.

Your mission is to penetrate 8 alien infested areas, each one divided in 10 sub-zones, eliminate all enemies using your bombs and finally kick the Big Alien Boss back to where he came from.

## How to play

We provide BOOM standalones for each os in [github releases](https://github.com/raphaelreme/boomgame/releases). **NOTE: The standalone are built only for platform provided by github runners.**

Try to download the executable that matches your platform (or the closest to it) and the game should run! (More details below).

We have also deployed the game online. You can therefore play BOOM on your web browser on [github.io](https://raphaelreme.github.io/boomgame/).

### Online

BOOM is compiled in web assembly so that you can play on any web browser on any platform. The game has been published on [github.io](https://raphaelreme.github.io/boomgame/). This feature is not very stable but seems to work pretty nicely most of the time. You may have to refresh the page several time. We advise to use Google Chrome browser (seems to be more stable with it).

**NOTE: It may be slower on your browser than with a standalone**

### Linux
We provide a BOOM-ubuntu-$VERSION standalone that should work on matching ubuntu distributions (but hopefully on more linux ones, provided some default libs are here). Download the file, then make it executable (in a terminal):
```bash
$ chmod +x BOOM-ubuntu-20.04  # May requires sudo rights
```

Launch the game by double clicking on the file or using a terminal:
```bash
$ ./BOOM-ubuntu-20.04
```

We also provide a .deb package that wraps this standalone and install it correctly on your os. (This should work on matching ubuntu distribution and hopefull on other debians ones). Download the package (boom-$VERSION-1_all.$BUILDOS.deb), then install it using your package manager:
```bash
$ apt install ./boom*.deb  # Requires sudo rights
$ # OR
$ dpkg -i ./boom*.deb  # Requires sudo rights
```

Then BOOM can be found in the search bar of you OS, and launched from there.

### MacOS
We provide a BOOM-macos-$VERSION.app standalone that should work on updated macos 11 and 12. (We are limited by github runners and have not worked yet to build the app on more diverse os). MacOs will probably stop you from executing the app (as it is not registered and correctly packaged regarding macos standards). To be able to run it, you have to overwrite macos warnings. **This is not a good practice and advise against it in general**, sadly this currently is our solution before working on macos packaging.

You also may have to make the file executable (in a terminal):
```bash
$ chmod +x BOOM-macos-11  # May requires sudo rights
```

### Windows
We provide a BOOM-windows-$VERSION.exe standalone that should work on recent windows. Windows will probably stop you from downloading this executable (as we did not signed it, nor packaged it correctly yet), because it is dangerous to download random executable from the internet. To be able to download it and run it, you should overwrite windows warnings. **This is not a good practice and advise against it in general**, sadly this currently is our solution before working on windows packaging.


## Install the python library (For developers)
### From pypi

To install our python code, run:

```
$ pip install boomgame
```

Once installed, the game can be launched with

```
$ boom
```

### Build from source
Download the source code.

Run:
```
$ pip install -r requirements-dev.txt
```

Again, the game can be launched with

```
$ boom
```

You can now build the standalone on your platform, following:

```bash
$ cd deploy/$MY_OS/
$ pyinstaller BOOM.spec  # Build the BOOM.exe / BOOM.app / BOOM standalone in the dist/ folder
```

For linux, we also provide a way to build the .deb package with the `build.sh` script:
```bash
$ bash build.sh  # Will run pyinstaller and packaged the result in a .deb
```

## BUGS and missing features

* The final boss is not yet integrated into the game
* The menu is still in beta and the player's controls cannot be changed yet
* Enemies can sometimes be stuck against one another (specially in timeout mode)


## Old BOOM Credits

The game [BOOM](https://www.macintoshrepository.org/3582-boom) has been created by Federico Filipponi.
Copyright 1997-2011 Factor Software. All Rights Reserved.

The sounds and music of BOOM have been created by George E. Kouba, Jr. and are copyrighted by Wizid Multimedia. Used with permission.

BOOM makes use of MGGame, an OpenGL/OpenAL based library suitable for developing 2D games for Mac OS X and iOS (iPhone, iPod Touch, iPad).
MGGame is Copyright © by Sebastian Wegner.
Sebastian is also leading McSebi Software, a team of independent game developers devoted to create fun shareware video games for the Mac and Apple mobiles.

The loading screen artwork has been made by Raymond Zachariasse, a web designer and freelance graphic artist, leader of the Quality Team.

BOOM also makes use of the Tempesta Seven Fonts by Yusuke Kamiyamane.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/raphaelreme/boomgame",
    "name": "boomgame",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "game,bomberman,BOOM",
    "author": "Raphael Reme",
    "author_email": "raphaelreme-dev@protonmail.com",
    "download_url": "https://files.pythonhosted.org/packages/4c/84/2051d96a5c98e09c09275b96c30a9d0602910d645db564fd8dbbf0824e81/boomgame-0.4.6.tar.gz",
    "platform": null,
    "description": "# BoomGame\n\n![Example](boom.gif)\n\nRemake of BOOM (old macintosh game) with python & pygame.\n\n[BOOM](https://www.macintoshrepository.org/3582-boom) was created by Federico Filipponi (FactorSoftware) in the \u201990s. It is an arcade game that can be played by up to two player on a single computer. Players are facing an alien invasion in 80 levels. Their goal is to elimitate all the aliens with their bombs.\n\nThe game is not supported any more and can be played only on macos X (> 10 years old). This is a fan remake of BOOM in python using pygame library. This implementation can run on any os/laptop that support python3 and pygame. **NOTE: The original BOOM assets belong to Factor Software. We do not hold any intellectual property upon them.** You can play on your browser on [github.io](https://raphaelreme.github.io/boomgame/). We also provide standalone executables for a few modern plateforms. You may have to install python and install from pypi to run BOOM on your specific platform.\n\nThis work is still in development. A more mature remake of the game in C++ is available in the [Lifish](https://github.com/silverweed/lifish) project.\n\n## Story\nIt\u2019s happened again. The Earth is facing a new alien threat and who\u2019s called to save our beloved planet? You guessed!\n\nThe aliens have the capability of transform themselves in all sort of deadly creatures. Basically, they act like parasites, attacking humans, animals and even machines and turning them into lethal killers.\n\nYour mission is to penetrate 8 alien infested areas, each one divided in 10 sub-zones, eliminate all enemies using your bombs and finally kick the Big Alien Boss back to where he came from.\n\n## How to play\n\nWe provide BOOM standalones for each os in [github releases](https://github.com/raphaelreme/boomgame/releases). **NOTE: The standalone are built only for platform provided by github runners.**\n\nTry to download the executable that matches your platform (or the closest to it) and the game should run! (More details below).\n\nWe have also deployed the game online. You can therefore play BOOM on your web browser on [github.io](https://raphaelreme.github.io/boomgame/).\n\n### Online\n\nBOOM is compiled in web assembly so that you can play on any web browser on any platform. The game has been published on [github.io](https://raphaelreme.github.io/boomgame/). This feature is not very stable but seems to work pretty nicely most of the time. You may have to refresh the page several time. We advise to use Google Chrome browser (seems to be more stable with it).\n\n**NOTE: It may be slower on your browser than with a standalone**\n\n### Linux\nWe provide a BOOM-ubuntu-$VERSION standalone that should work on matching ubuntu distributions (but hopefully on more linux ones, provided some default libs are here). Download the file, then make it executable (in a terminal):\n```bash\n$ chmod +x BOOM-ubuntu-20.04  # May requires sudo rights\n```\n\nLaunch the game by double clicking on the file or using a terminal:\n```bash\n$ ./BOOM-ubuntu-20.04\n```\n\nWe also provide a .deb package that wraps this standalone and install it correctly on your os. (This should work on matching ubuntu distribution and hopefull on other debians ones). Download the package (boom-$VERSION-1_all.$BUILDOS.deb), then install it using your package manager:\n```bash\n$ apt install ./boom*.deb  # Requires sudo rights\n$ # OR\n$ dpkg -i ./boom*.deb  # Requires sudo rights\n```\n\nThen BOOM can be found in the search bar of you OS, and launched from there.\n\n### MacOS\nWe provide a BOOM-macos-$VERSION.app standalone that should work on updated macos 11 and 12. (We are limited by github runners and have not worked yet to build the app on more diverse os). MacOs will probably stop you from executing the app (as it is not registered and correctly packaged regarding macos standards). To be able to run it, you have to overwrite macos warnings. **This is not a good practice and advise against it in general**, sadly this currently is our solution before working on macos packaging.\n\nYou also may have to make the file executable (in a terminal):\n```bash\n$ chmod +x BOOM-macos-11  # May requires sudo rights\n```\n\n### Windows\nWe provide a BOOM-windows-$VERSION.exe standalone that should work on recent windows. Windows will probably stop you from downloading this executable (as we did not signed it, nor packaged it correctly yet), because it is dangerous to download random executable from the internet. To be able to download it and run it, you should overwrite windows warnings. **This is not a good practice and advise against it in general**, sadly this currently is our solution before working on windows packaging.\n\n\n## Install the python library (For developers)\n### From pypi\n\nTo install our python code, run:\n\n```\n$ pip install boomgame\n```\n\nOnce installed, the game can be launched with\n\n```\n$ boom\n```\n\n### Build from source\nDownload the source code.\n\nRun:\n```\n$ pip install -r requirements-dev.txt\n```\n\nAgain, the game can be launched with\n\n```\n$ boom\n```\n\nYou can now build the standalone on your platform, following:\n\n```bash\n$ cd deploy/$MY_OS/\n$ pyinstaller BOOM.spec  # Build the BOOM.exe / BOOM.app / BOOM standalone in the dist/ folder\n```\n\nFor linux, we also provide a way to build the .deb package with the `build.sh` script:\n```bash\n$ bash build.sh  # Will run pyinstaller and packaged the result in a .deb\n```\n\n## BUGS and missing features\n\n* The final boss is not yet integrated into the game\n* The menu is still in beta and the player's controls cannot be changed yet\n* Enemies can sometimes be stuck against one another (specially in timeout mode)\n\n\n## Old BOOM Credits\n\nThe game [BOOM](https://www.macintoshrepository.org/3582-boom) has been created by Federico Filipponi.\nCopyright 1997-2011 Factor Software. All Rights Reserved.\n\nThe sounds and music of BOOM have been created by George E. Kouba, Jr. and are copyrighted by Wizid Multimedia. Used with permission.\n\nBOOM makes use of MGGame, an OpenGL/OpenAL based library suitable for developing 2D games for Mac OS X and iOS (iPhone, iPod Touch, iPad).\nMGGame is Copyright \u00a9 by Sebastian Wegner.\nSebastian is also leading McSebi Software, a team of independent game developers devoted to create fun shareware video games for the Mac and Apple mobiles.\n\nThe loading screen artwork has been made by Raymond Zachariasse, a web designer and freelance graphic artist, leader of the Quality Team.\n\nBOOM also makes use of the Tempesta Seven Fonts by Yusuke Kamiyamane.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "BOOM (MacOs shareware) remake with pygame",
    "version": "0.4.6",
    "project_urls": {
        "Homepage": "https://github.com/raphaelreme/boomgame"
    },
    "split_keywords": [
        "game",
        "bomberman",
        "boom"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d39a2dc07eb2cc497ee4f45b6ef2a101e13bc504434627fdf62cd2c9d740c1c",
                "md5": "d212f583acb2c220e47992821db92304",
                "sha256": "17af9ee3a6cc5022904a9bbc981d9574f1bb7887df547d57791dfff4208163f0"
            },
            "downloads": -1,
            "filename": "boomgame-0.4.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d212f583acb2c220e47992821db92304",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 15976135,
            "upload_time": "2023-12-10T21:01:26",
            "upload_time_iso_8601": "2023-12-10T21:01:26.288929Z",
            "url": "https://files.pythonhosted.org/packages/9d/39/a2dc07eb2cc497ee4f45b6ef2a101e13bc504434627fdf62cd2c9d740c1c/boomgame-0.4.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c842051d96a5c98e09c09275b96c30a9d0602910d645db564fd8dbbf0824e81",
                "md5": "1d9f4537b148ad970a7e23d5283a08c5",
                "sha256": "22476a3949817a47ff25f527a4ff84fa6817b00fe948a4d497446701ea1b63f4"
            },
            "downloads": -1,
            "filename": "boomgame-0.4.6.tar.gz",
            "has_sig": false,
            "md5_digest": "1d9f4537b148ad970a7e23d5283a08c5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 15931592,
            "upload_time": "2023-12-10T21:01:28",
            "upload_time_iso_8601": "2023-12-10T21:01:28.745721Z",
            "url": "https://files.pythonhosted.org/packages/4c/84/2051d96a5c98e09c09275b96c30a9d0602910d645db564fd8dbbf0824e81/boomgame-0.4.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-10 21:01:28",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "raphaelreme",
    "github_project": "boomgame",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "boomgame"
}
        
Elapsed time: 0.15300s