https://github.com/without-eyes/castaway
**UNFINISHED** ASCII console survival game written in C
https://github.com/without-eyes/castaway
ascii ascii-game ascii-graphics c17 console-game game ncurses ncurses-game ncurses-library ncurses-ui survival survival-game
Last synced: about 1 year ago
JSON representation
**UNFINISHED** ASCII console survival game written in C
- Host: GitHub
- URL: https://github.com/without-eyes/castaway
- Owner: without-eyes
- License: gpl-3.0
- Created: 2024-06-23T13:22:51.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-13T19:35:00.000Z (over 1 year ago)
- Last Synced: 2025-01-02T07:21:08.867Z (about 1 year ago)
- Topics: ascii, ascii-game, ascii-graphics, c17, console-game, game, ncurses, ncurses-game, ncurses-library, ncurses-ui, survival, survival-game
- Language: C
- Homepage:
- Size: 140 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Castway
## Overview
Welcome to **Castaway**! Castaway is a multiplayer sandbox survival ASCII game set on remote island where main character
have to survive in harsh conditions.
## Table of Contents
- [Installation](#installation)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)
## Installation
### Prerequisites
Before running the game, ensure you have the following installed:
- [GNU Compiler Collection](https://gcc.gnu.org/) - Version 11.4 or above
- [ncurses](https://invisible-island.net/ncurses/) - Version 6.3 or above
- [valgrind](https://valgrind.org/) - Version 3.23 or above
- [criterion](https://criterion.readthedocs.io/en/master/intro.html) - Version 2.4 or above
### Setup
#### Linux:
1. Clone the repository:
```bash
git clone https://github.com/without-eyes/Castaway.git
```
2. Navigate to the project directory:
```bash
cd Castaway
```
3. Install libraries:
```bash
sudo apt-get install libncurses5-dev libncursesw5-dev
sudo apt-get install valgrind
sudo apt install libcriterion-dev
```
4. Run the game:
```bash
make
```
## Usage
### Controls
- **Move and attack**: WASD
## Contributing
Contributions are welcome! Please follow these steps:
1. Fork the repository.
2. Create a new branch:
```bash
git checkout -b feature/your-feature-name
```
3. Make your changes and commit them:
```bash
git commit -m "Add your message here"
```
4. Push to your branch:
```bash
git push origin feature/your-feature-name
```
5. Open a Pull Request.
## License
This project is licensed under the [GPL-3.0 License](LICENSE).