#numbers #guess #questions #game-1a2b #game-four-digits

bulls-and-cows

A framework for building bulls-and-cows games (1A2B) for any data type

20 stable releases

1.0.21 Sep 9, 2023
1.0.20 Mar 5, 2022
1.0.19 Sep 18, 2021
1.0.17 Apr 21, 2021
1.0.2 Mar 24, 2019

#170 in Game dev

MIT license

22KB
410 lines

Bulls and Cows

CI

This crate provides a framework for building bulls-and-cows games (1A2B) for any data type and any stages.

Typically, Bulls and Cows is a game that has 2 players, a questioner and a guesser. The questioner needs to decide a secret 4-digit (0 to 9) number in his or her mind and asks the guesser to guess the number. If the secret number is 4271 and the guess is 1234, then the questioner needs to answer 1A2B. 1A2B will be a new clue for the guesser to make the next guess better.

Beside 4 digits, players can choose to play on any other length of digits. The 4-digit numbers can be changed to 4-letter words and the number of players can also be more than 2.

Usage

The host struct can be used independently for generating the question and answering for the question.

let host = bulls_and_cows::Host::build_with_known_answer(bulls_and_cows::Letters::generate_numeric_letters(), vec![1, 2, 3, 4]).unwrap();

assert_eq!((4, 0), host.answer(&[1, 2, 3, 4]).unwrap());
assert_eq!((2, 2), host.answer(&[1, 2, 4, 3]).unwrap());
assert_eq!((0, 4), host.answer(&[4, 3, 2, 1]).unwrap());
assert_eq!((0, 0), host.answer(&[5, 6, 7, 8]).unwrap());

If you want to build up a more complete game stage, use the play module. You can see the example custom_2_players to learn how to do that.

Crates.io

https://crates.io/crates/bulls-and-cows

Documentation

https://docs.rs/bulls-and-cows

License

MIT

Dependencies

~2.7–4.5MB
~78K SLoC