About

Crates.io Documentation License: MIT This library is wrapper of curses games for AI making. What this crate provie is - Spawning CUI game as child process - Emulation of vt100 control sequence(helped by vte crate)

Usage

``` rust extern crate cursesgamewrapper as cgw; use cgw::{Reactor, ActioResult, AsciiChar, GameSetting, Severity}; fn main() { struct EmptyAI { loopnum: usize, }; impl Reactor for EmptyAI { fn action(&mut self, screen: ActionResult, turn: usize) -> Option> { let mut res = Vec::new(); match turn { val if val == self.loopnum - 1 => res.push(AsciiChar::CarriageReturn.asbyte()), val if val == self.loopnum - 2 => res.push(b'y'), val if val == self.loopnum - 3 => res.push(b'Q'), _ => { let c = match (turn % 4) as u8 { 0u8 => b'h', 1u8 => b'j', 2u8 => b'k', _ => b'l', }; res.push(c); } }; Some(res) } } let loopnum = 50; let gs = GameSetting::new("rogue") .env("ROGUEUSER", "EmptyAI") .lines(24) .columns(80) .debugfile("debug.txt") .maxloop(loopnum + 1) .drawon(Duration::frommillis(100)); let game = gs.build(); let mut ai = EmptyAI { loopnum: loopnum }; game.play(&mut ai); }

```

You can run above code by shell cargo test -- --nocapture