SpaceShipGameSFML is a game developed in C++ with SFML library whose goal is to destroy asteroids or comets with a space ship.
SFML is a cross-platform software development library designed to provide a simple application programming interface (API) to various multimedia components in computers.
- Windows
- SFML (Simple and Fast Multimedia Library)
In the src folder, there are source files (*.cpp) with all methods of classes. In the include folder, there are header files with all attributes and constructors of all classes. In the resources folder, there are all images, the font library and the audio file used in this game application.
Files in src folder:
- Asteroid.cpp
- Coordinates.cpp
- ExceptionResourceNotFound.cpp
- Explosion.cpp
- Game.cpp
- Missile.cpp
- ResourcesManager.cpp
- Ship.cpp
- Space.cpp
- SpaceElement.cpp
- Vector.cpp
Files in include folder:
- Asteroid.h
- Coordinates.h
- ExceptionResourceNotFound.h
- Explosion.h
- Game.h
- Missile.h
- ResourcesManager.h
- Ship.h
- Space.h
- SpaceElement.h
- Vector.h
Files in resources folder:
- asteroid.png
- Chump_Change.otf
- explosion.png
- explosion.wav
- homeGame.png
- laser.wav
- missile.png
- spaceship.png
Use the arrow keys to move the spaceship and press space to shoot asteroids and comets. The last best score is saved.
MIT License
Copyright (c) 2018 Nicolas Chen
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.