Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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!
- Host: GitHub
- URL: https://github.com/mataruzz/arcadeplayground
- Owner: mataruzz
- Created: 2024-06-17T07:00:22.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-07-26T12:57:52.000Z (5 months ago)
- Last Synced: 2024-07-26T15:30:24.353Z (5 months ago)
- Topics: classic-game, cpp, gamedev, qt, tetris, tic-tac-toe
- Language: C++
- Homepage:
- Size: 38.5 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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 ArcadePlayground2. **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
```