#console #game-console #game

bin+lib console-games

A collection of console games written in Rust

23 releases (10 stable)

1.1.7 Feb 2, 2023
1.1.2 Feb 1, 2023
1.0.2 Jan 30, 2023
0.1.12 Jan 28, 2023

#60 in Games

Download history 64/week @ 2024-02-26 10/week @ 2024-03-11 280/week @ 2024-04-01

290 downloads per month

MIT/Apache and AGPL-3.0

39KB
1K SLoC

console games

A hobby project for console games. New games are coming, hopefully 🙂🙂🙂.

Or you want to write some Rust? Help me out by adding a game of your choice!!!
See Contribution section for more details.

Games

List of available games:

  • Guess the Word
  • Guess the Number
  • Word Type
  • Four in A Line
  • Tower of Hanoi
  • Minesweeper

Usage

cargo install console-games

then run

console-games

Or as a library

use console_games::GameCenter;

fn main() {
    GameCenter::enter();
}

To run an individual game

use console_games::{games::MineSweeper, Play};

fn main() {
    println!("{}", MineSweeper.name());
    if let Some(instruction) = MineSweeper.instructions() {
        println!("{}", instruction);
    };
    MineSweeper.start();
}

Contribution

I need your help!!! Let's grow this project together. If you have any ideas, wether it's a new game, performance improvements, code refactor/redesign, etc, please open an issue or a pull request.

To create a game

A game must implement the Play trait.

// games/my_game.rs

pub struct MyGame;

impl Play for MyGame {
    fn name(&self) -> &'static str {
        "My Game"
    }

    fn start(&self) {
        // create the internal game instance local to this method
        let game = MyGameImpl::new();
        game.start();
    }
}

struct MyGameImpl {
    // --- snip ---
}

// --- snip ---

Lastly, make the game visible in the module tree.

// games.rs

// --- snip ---
mod my_game;
pub use my_game::*;

To add a new game to the game center

Add the game to the return value of GameCenter::games method.

// game_center.rs

// --- snip ---

impl GameCenter {
    // --- snip ---

    pub fn games() -> [Box<dyn Play>; 5 /* <-- update this number */] {
        [
            Box::new(GuessTheWord),
            Box::new(GuessTheNumber),
            Box::new(WordType),
            // -- snip --
            Box::new(MyGame), // <-- add this line
        ]
    }

    // --- snip ---
}

Dependencies

~1–10MB
~86K SLoC