├── .gitignore ├── .travis.cargo.config ├── .travis.yml ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── README.md ├── install_deps └── install_deps.sh ├── res ├── arial.ttf ├── joystix-mono.ttf ├── nebula.jpg ├── nebula.png ├── platform.jpg ├── rocket.png └── rocket_small.png ├── screenshots └── ss.png ├── shaders ├── shader.frag └── shader.vert └── src ├── main.rs ├── menu.rs ├── particle_manager.rs ├── platform.rs ├── player.rs ├── resource_manager.rs ├── score.rs ├── state_stack.rs └── util.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | !.jpg 3 | -------------------------------------------------------------------------------- /.travis.cargo.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/.travis.cargo.config -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/README.md -------------------------------------------------------------------------------- /install_deps/install_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/install_deps/install_deps.sh -------------------------------------------------------------------------------- /res/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/res/arial.ttf -------------------------------------------------------------------------------- /res/joystix-mono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/res/joystix-mono.ttf -------------------------------------------------------------------------------- /res/nebula.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/res/nebula.jpg -------------------------------------------------------------------------------- /res/nebula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/res/nebula.png -------------------------------------------------------------------------------- /res/platform.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/res/platform.jpg -------------------------------------------------------------------------------- /res/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/res/rocket.png -------------------------------------------------------------------------------- /res/rocket_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/res/rocket_small.png -------------------------------------------------------------------------------- /screenshots/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/screenshots/ss.png -------------------------------------------------------------------------------- /shaders/shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/shaders/shader.frag -------------------------------------------------------------------------------- /shaders/shader.vert: -------------------------------------------------------------------------------- 1 | void main() 2 | { 3 | gl_Position = ftransform(); 4 | } -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/menu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/src/menu.rs -------------------------------------------------------------------------------- /src/particle_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/src/particle_manager.rs -------------------------------------------------------------------------------- /src/platform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/src/platform.rs -------------------------------------------------------------------------------- /src/player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/src/player.rs -------------------------------------------------------------------------------- /src/resource_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/src/resource_manager.rs -------------------------------------------------------------------------------- /src/score.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/src/score.rs -------------------------------------------------------------------------------- /src/state_stack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/src/state_stack.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zakkor/rust-sfml-rocket/HEAD/src/util.rs --------------------------------------------------------------------------------