/Game_3-The_Simplest_Tetris

This is my 3rd game for my portfolio. This project is written on C++ with SFML. It's a classic Tetris game with some statistics (rows completed, current level, and score).

Primary LanguageC++

en ru ua

Overview

This is my 3rd game for my portfolio. This project is written on C++ with SFML. It's a classic Tetris game with some statistics (rows completed, current level, and score).

image

Game controls:

Arrow down -> Move tetramino down
Arrow left -> Move tetramino left
Arrow right -> Move tetramino right
A -> Rotate tetramino left
D -> Rotate tetramino right
Escape -> Close the game

How to play?

The game starts right after you launch it. You get a random tetramino, and must place it at the bottom of the grid. After you place it, the next random tetramino appears. You must build a row of them to destroy it and the you will get points for this. If you build a tower of tetraminos that touches the top of the grid - you lose. You go to the next level every 10 completed rows. The more level you have - the more points you get from completed rows.

How to create and build this project in Visual Studio?

  1. Download this repository as a .zip file and extract it:
    image

  2. Create an empty C++ project in Visual Studio:
    image

  3. Open the project's folder in File Explorer and move all files from the archive into it:
    image

  4. Now you have to include these files to your project. At first, to make all those files visible in your project, click the button "Show all files" in Solution Explorer. After this select them, RMB on them and click "Include in Project":
    image

  5. Now let's go to Project's Properties:
    image

  6. Let's link "Binaries" Folder to the project. Select "All Configurations" and "All Platforms". Then go to "Debugging" tab, find field "Working Directory" and type "$(ProjectDir)Binaries":
    image

  7. Now let's connect SFML library to the project. Let's start from "include" folder. Go to the "C/C++" tab, find "Additional Include Directories", press the arrow on its right, and click "<Edit...>":
    image

  8. In the new window double-click on the empty line, type "$(ProjectDir)Libraries\SFML\include", and press "OK" at the bottom of the window:
    image

  9. Now do the same with "lib" folder: go to the tab "Linker", find "Additional Library Directories", press the arrow on its right, and click "<Edit...>":
    image

  10. In the new window double-click on the empty line, type "$(ProjectDir)Libraries\SFML\lib", and press "OK" at the bottom of the window:
    image

  11. Almost done. We only need to add .dll files to our project. Save your changes by clicking the "Apply" button at the bottom of the project's properties, change the configuration to "Debug", go to "Linker" -> "Input" tab, find "Additional Dependencies", click the arrow on its right, and click "<Edit...>".
    image

  12. In the new window write the next lines:
    sfml-system-d.lib
    sfml-window-d.lib
    sfml-audio-d.lib
    sfml-graphics-d.lib
    sfml-network-d.lib
    and press "Ok" button.
    image

  13. Press "Apply", switch configuration to "Release" and do the same things, but write the next lines:
    sfml-system.lib
    sfml-window.lib
    sfml-audio.lib
    sfml-graphics.lib
    sfml-network.lib
    and press "Ok" button.
    image

  14. That's it! Press "Apply", and now SFML is linked to your project.

  15. To compile & launch the game, press "Ctrl + F5".