A Tetris clone

Date: — Lang: — by Slatian

Table of Contents

Overview

Status
Completed but messy code
Language
Python
Sourcecode
https://codeberg.org/slatian/game.tetris
Started
2019-05-21

A simple Tetris game written in Python that started as a scool exercise.

It uses the cs1graphics library for painting and is the project I learned python with.

Information about gow to play and a little overview for Modding the game is in the README.

A bit about the Engine

The engine is split into two parts:

The tile rotations are calculated on the fly from an array of relative square positions, so if you want to try out some crazy shapes go ahed (The function is a generator so in theory one could also generate crazy tiles on the fly)

Because of the split theming (alias changing the colors) is also pretty simple. Also I remember the black-white version looking rad!