├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── assets ├── Magero.ttf ├── agent.png ├── bound-truck.png ├── car-icon.png ├── end-point.png ├── enemy-blue-1.png ├── enemy-blue-2.png ├── enemy-blue-3.png ├── enemy-red-2.png ├── enemy-red.png ├── enemy-truck.png ├── enemy-yellow-1.png ├── enemy-yellow-2.png ├── enemy-yellow-3.png ├── flag-bottom.png ├── flag-top.png └── road.png ├── gui.png └── src ├── car.rs ├── configs.rs ├── enemy.rs ├── gui.rs ├── lib.rs ├── main.rs ├── nn.rs ├── population.rs ├── resources.rs └── road.rs /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/README.md -------------------------------------------------------------------------------- /assets/Magero.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/assets/Magero.ttf -------------------------------------------------------------------------------- /assets/agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/assets/agent.png -------------------------------------------------------------------------------- /assets/bound-truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/assets/bound-truck.png -------------------------------------------------------------------------------- /assets/car-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/assets/car-icon.png -------------------------------------------------------------------------------- /assets/end-point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/assets/end-point.png -------------------------------------------------------------------------------- /assets/enemy-blue-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/assets/enemy-blue-1.png -------------------------------------------------------------------------------- /assets/enemy-blue-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/assets/enemy-blue-2.png -------------------------------------------------------------------------------- /assets/enemy-blue-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/assets/enemy-blue-3.png -------------------------------------------------------------------------------- /assets/enemy-red-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/assets/enemy-red-2.png -------------------------------------------------------------------------------- /assets/enemy-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/assets/enemy-red.png -------------------------------------------------------------------------------- /assets/enemy-truck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/assets/enemy-truck.png -------------------------------------------------------------------------------- /assets/enemy-yellow-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/assets/enemy-yellow-1.png -------------------------------------------------------------------------------- /assets/enemy-yellow-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/assets/enemy-yellow-2.png -------------------------------------------------------------------------------- /assets/enemy-yellow-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/assets/enemy-yellow-3.png -------------------------------------------------------------------------------- /assets/flag-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/assets/flag-bottom.png -------------------------------------------------------------------------------- /assets/flag-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/assets/flag-top.png -------------------------------------------------------------------------------- /assets/road.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/assets/road.png -------------------------------------------------------------------------------- /gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/gui.png -------------------------------------------------------------------------------- /src/car.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/src/car.rs -------------------------------------------------------------------------------- /src/configs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/src/configs.rs -------------------------------------------------------------------------------- /src/enemy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/src/enemy.rs -------------------------------------------------------------------------------- /src/gui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/src/gui.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/nn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/src/nn.rs -------------------------------------------------------------------------------- /src/population.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/src/population.rs -------------------------------------------------------------------------------- /src/resources.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bones-ai/rust-drive-ai/HEAD/src/resources.rs -------------------------------------------------------------------------------- /src/road.rs: -------------------------------------------------------------------------------- 1 | struct RoadPlugin; 2 | --------------------------------------------------------------------------------