Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andrewexton373/geometry-wars
Astroid Mining Game written in Rust with the Bevy ECS Framework
https://github.com/andrewexton373/geometry-wars
2d-game bevy rust
Last synced: 1 day ago
JSON representation
Astroid Mining Game written in Rust with the Bevy ECS Framework
- Host: GitHub
- URL: https://github.com/andrewexton373/geometry-wars
- Owner: andrewexton373
- Created: 2022-09-20T07:50:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-17T01:55:55.000Z (12 days ago)
- Last Synced: 2024-12-17T02:43:56.688Z (12 days ago)
- Topics: 2d-game, bevy, rust
- Language: Rust
- Homepage:
- Size: 103 MB
- Stars: 5
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About The Project
This is a game where the player controls an asteroid mining spaceship. Taking inspiration from the familiar Asteroids arcade game, shooting asteroids causes them to split. Splitting asteroids into smaller ore chunks allows the player to then collect these chunks in order to mine them.
## Gameplay
![](https://github.com/andrewexton373/geometry-wars/blob/main/resources/geometry-wars-gameplay.gif)
### [Play WASM Build](https://andrewexton373.github.io/geometry-wars/)
## Controls
```
W - Move Up
A - Move Left
S - Move Down
D - Move RightUse the mouse pointer to aim projectiles
LMB - Fire Laser in direction of ship
RMB - Lock camera to Selected TargetX - Lock camera to Player's Ship
B - Enter/Exit Build Mode (Space Station Modules)
< - Zoom Out
> - Zoom In
```## Built With
* Rust
* Bevy
* Rapier2d## Getting Started
### Prerequisites
* Bash: rust (install rust and cargo package manager)
```sh
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
```
* Windows: There's a .exe file availible at [rustup.rs](https://rustup.rs/) for installation.### Running the Game
1. Clone the repo
```sh
git clone https://github.com/andrewexton373/geometry-wars.git
```
2. Change directory to the cloned repo
```sh
cd geometry-wars
```
3. Compile and run the game
```sh
cargo run
```## Roadmap
- [x] **Ship Fuel System**
- [x] Ship has limited fuel capacity that can be upgraded
- [ ] (more efficent engine/larger fuel tank)
- [x] **Refueling System**- [x] **Ship Handling Characteristics?**
- [x] change with added cargo weight
- [ ] (can mitigate with stronger engines?)
- [x] **Upgrade System**
- [x] *Ship Upgrade System*
- [ ] Cargo Bay Size
- [x] Ship Maximum Health
- [x] Fuel Tank Size
- [ ] Engine Fuel Efficency
- [ ] Ore Attractor Strength
- [ ] Weapon Strength/Rate of Fire
- [ ] *Refinery Upgrade System*
- [ ] Processing Speed
- [ ] Less ore losses from processing? (ore losses are not implemented yet)
- [ ] *Base Station Upgrade System*
- [ ] Cargo Bay Size
- [ ] Refueling Speed
- [ ] Asteroid Repel Strength?
- [x] **Asteroid Ore Rarity**
- [x] Asteroids further from the base station have a higher chance of spawning rarer ores.
- [ ] Refine values for interpolated system
- [ ] ? OR use noise function to generate pockets with higher rarity ores.
- [x] **Components Crafting System**
- [x] Factory to turn metal ingots into components used for upgrades.
- [x] **Context Clues**
- [x] Near Base Station (Press SPACE to Deposit)
- [x] Ship Battery is Empty
- [x] Ship Cargo Bay is Full- [x] **Particles**
- [ ] Improve Look and Feel- [ ] **UI**
- [ ] Dont fire weapon when clicking on UI
**Is this a good 0.1 release?**## Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
Don't forget to give the project a star! Thanks again!1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request## License
TBD