├── Cargo.lock ├── Cargo.toml ├── README.md ├── assets ├── Roboto-Regular.ttf ├── brown-ball.png ├── cell_red_heart.png ├── red-dot.png ├── turret-focused.png └── turret.png ├── screenshot.png └── src ├── bullet.rs ├── camera.rs ├── cell ├── bundle.rs ├── cell.rs ├── energy.rs ├── focus.rs ├── mod.rs └── user.rs ├── configs.rs ├── food.rs ├── gui.rs ├── lib.rs ├── main.rs ├── nn.rs ├── physics.rs ├── settings.rs └── trackers.rs /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/README.md -------------------------------------------------------------------------------- /assets/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/assets/Roboto-Regular.ttf -------------------------------------------------------------------------------- /assets/brown-ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/assets/brown-ball.png -------------------------------------------------------------------------------- /assets/cell_red_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/assets/cell_red_heart.png -------------------------------------------------------------------------------- /assets/red-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/assets/red-dot.png -------------------------------------------------------------------------------- /assets/turret-focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/assets/turret-focused.png -------------------------------------------------------------------------------- /assets/turret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/assets/turret.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/bullet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/src/bullet.rs -------------------------------------------------------------------------------- /src/camera.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/src/camera.rs -------------------------------------------------------------------------------- /src/cell/bundle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/src/cell/bundle.rs -------------------------------------------------------------------------------- /src/cell/cell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/src/cell/cell.rs -------------------------------------------------------------------------------- /src/cell/energy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/src/cell/energy.rs -------------------------------------------------------------------------------- /src/cell/focus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/src/cell/focus.rs -------------------------------------------------------------------------------- /src/cell/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/src/cell/mod.rs -------------------------------------------------------------------------------- /src/cell/user.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/src/cell/user.rs -------------------------------------------------------------------------------- /src/configs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/src/configs.rs -------------------------------------------------------------------------------- /src/food.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/src/food.rs -------------------------------------------------------------------------------- /src/gui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/src/gui.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/nn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/src/nn.rs -------------------------------------------------------------------------------- /src/physics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/src/physics.rs -------------------------------------------------------------------------------- /src/settings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/src/settings.rs -------------------------------------------------------------------------------- /src/trackers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-ai-wars/HEAD/src/trackers.rs --------------------------------------------------------------------------------