Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mataruzz/arcadeplayground

ArcadePlayground is a Qt-based platform featuring classic games like Tic-Tac-Toe and Tetris, with more titles coming soon. Explore and enjoy retro gaming in a simple, fun environment!
https://github.com/mataruzz/arcadeplayground

classic-game cpp gamedev qt tetris tic-tac-toe

Last synced: about 2 months ago
JSON representation

ArcadePlayground is a Qt-based platform featuring classic games like Tic-Tac-Toe and Tetris, with more titles coming soon. Explore and enjoy retro gaming in a simple, fun environment!

Awesome Lists containing this project

README

        

# Arcade Platform Game

Welcome to the Arcade Platform! This project is built using Qt and C++. The idea of this project was mainly for me to learn the Qt library and understand its working principles. The platform hosts a variety of classic games, with the initial release featuring Tic Tac Toe and Tetris. Might include future releases including more exciting games.

## Install from source
In case you want to build and use this project on your own machine (instead of simple playing - downloading the executable), you have first to install [Qt6.7](https://doc.qt.io/qt-6/get-and-install-qt.html). Once all the libs have been set.

1. **Clone the Repository**
```bash
git clone https://github.com/mataruzz/ArcadePlayground.git
cd ArcadePlayground

2. **Build the project with qmake**
```bash
mkdir build && cd build
export PATH=/path/to/your/Qt/bin:/$PATH # might not be needed
qmake ../arcade_playground.pro -config release
make

### Running the project
Run the executable we built in the previous step

```
./arcade_playground
```

### Application Overview




### Creating the AppImage
As reference on how the AppImage has been obtained, I used the tool [linuxdeploy](https://github.com/linuxdeploy/linuxdeploy) with the attached [qt plugin](https://github.com/linuxdeploy/linuxdeploy-plugin-qt). Download the 2 AppImages and run:

```
./linuxdeploy-x86_64.AppImage --appdir AppDir --executable ./path/to/your/executable --output appimage --plugin qt
```