64 lines
2.4 KiB
Markdown
64 lines
2.4 KiB
Markdown
#  ETRIS2000
|
||
|
||
Another Tetris clone using Qt5 on Python 3.x
|
||
|
||

|
||
|
||
### Requirements
|
||
|
||
* Python 3.x
|
||
* A Qt5 library (PyQt5 or PySide)
|
||
* Optionnal: [QDarkStylesheet](https://github.com/ColinDuquesnoy/QDarkStyleSheet)
|
||
|
||
As for now, qdarkstyle doesn't support PySide2 so PyQt5 is recommanded
|
||
|
||
### Installation
|
||
|
||
#### Download ready to use archive
|
||
|
||
No need to install requirements
|
||
|
||
* Windows (x64): [Download self-extracting archive](https://github.com/adrienmalin/Tetris2000/raw/master/dist/Tetris2000.exe) (46 Mo)
|
||
* Linux: [Download TAR.GZ archive](https://github.com/adrienmalin/Tetris2000/raw/master/dist/Tetris2000.tar.gz) (77 Mo)
|
||
|
||
Extract the archive and launch Tetris2000
|
||
|
||
#### From [GitHub](https://github.com)
|
||
|
||
* Install [Python 3.x](https://www.python.org/downloads/)
|
||
|
||
* From a terminal, install PyQt5:
|
||
|
||
pip3 install --user PyQt5
|
||
|
||
or PySide2:
|
||
|
||
pip3 install --user PySide2
|
||
|
||
* Install QDarkStylesheet:
|
||
|
||
pip3 install --user qdarkstyle
|
||
|
||
* Download the [archive from GitHub](https://github.com/adrienmalin/Tetris2000)
|
||
* Unzip the archive
|
||
* Launch Tetris2000.py
|
||
|
||
### Credits
|
||
|
||
* [Tetris](https://tetris.com) Game Design by Alekseï Pajitnov
|
||
* Graphism inspired by [Tetris Effect](https://www.tetriseffect.game)
|
||
* Window style sheet: [qdarkstyle by Colin Duquesnoy](https://github.com/ColinDuquesnoy/QDarkStyleSheet)
|
||
* Fonts by [Markus Koellmann](http://markus-designs.com), [Peter Wiegel](http://www.peter-wiegel.de)
|
||
* Images from:<br>
|
||
[OpenGameArt.org](https://opengameart.org) by beren77, Duion<br>
|
||
[Pexels](https://www.pexels.com) by Min An, Jaymantri, Felix Mittermeier<br>
|
||
[Pixabay](https://pixabay.com) by LoganArt<br>
|
||
[PIXNIO](https://pixnio.com) by Adrian Pelletier<br>
|
||
[Unsplash](https://unsplash.com) by Aron, Patrick Fore, Ilnur Kalimullin, Gabriel Garcia Marengo, Adnanta Raharja<br>
|
||
[StockSnap.io](https://stocksnap.io) by Nathan Anderson, José Ignacio Pompé
|
||
* Musics from [Overclocked Remix](https://ocremix.org/game/510/tetris-gb) by:<br>
|
||
CheDDer Nardz, djpretzel, MkVaff, Sir_NutS, R3FORGED, Sir_NutS
|
||
* Sound effects made with [voc-one by Simple-Media](http://www.simple-media.co.uk/vsti.htm)
|
||
|
||
Thanks to my pythonista friends [krakozaure](https://github.com/krakozaure) and ABR
|