https://github.com/ralvarezdev/uru-programming-1-dominoes
Simple dominoes terminal game from Programming 1 college course
https://github.com/ralvarezdev/uru-programming-1-dominoes
cpp dominoes game game-development rafael-urdaneta-university terminal universidad-rafael-urdaneta uru
Last synced: about 2 months ago
JSON representation
Simple dominoes terminal game from Programming 1 college course
- Host: GitHub
- URL: https://github.com/ralvarezdev/uru-programming-1-dominoes
- Owner: ralvarezdev
- Created: 2023-06-24T13:32:39.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-08T16:25:00.000Z (about 2 months ago)
- Last Synced: 2025-03-08T17:25:39.460Z (about 2 months ago)
- Topics: cpp, dominoes, game, game-development, rafael-urdaneta-university, terminal, universidad-rafael-urdaneta, uru
- Language: C++
- Homepage:
- Size: 317 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dominoes
This repository contains the source code of a Dominoes terminal game, for the laboratory final project of the Programming I course of the Computer Science career at the Rafael Urdaneta University, located in Maracaibo, Venezuela.
## Developers
- [ralvarezdev](https://github.com/ralvarezdev) - Ramón Álvarez
## Programming Languages
- C++
## Installation
- Clone this repository to your local machine using the following command:
```git clone https://github.com/ralvarezdev/uru-programming-1-dominoes```
- Change your Current Working Directory to where the repository was cloned
- There are two ways to compile the program:
- With G++ (you must have installed MinGW Compiler). Use the following command:
Command for Windows
```g++ -o bin\Dominoes.exe src\main.cpp src\lib\cards.cpp src\lib\cards.h src\lib\input.cpp src\lib\input.h src\lib\terminal.cpp src\lib\terminal.h```
Command for Linux
```g++ -o bin/Dominoes.exe src/main.cpp src/lib/cards.cpp src/lib/cards.h src/lib/input.cpp src/lib/input.h src/lib/terminal.cpp src/lib/terminal.h```
- With CMake (you must have installed CMake and Make). First, get to the
bin
folder inside the repository. Use the following command:Command for Windows
```cmake -S ..\ -G "MinGW Makefiles" -B .\ && make```
Command for Linux
```cmake -S ../ -G "MinGW Makefiles" -B ./ && make```
- Run the program by clicking the
Dominoes.exe
.For a better User Experience, resize the terminal window to fullscreen mode