SFML community forums
General => SFML projects => Topic started by: Milerius on December 12, 2017, 10:46:31 pm
-
Hello, I'm creating this topic to share with you our new school project: re-create the R-Type game, for those who may not know it, the R-Type is a famous shoot'em up.
It is still under development and we plan to leave it open source for the community at the end of the project.
It is coded in C++ 17, and runs on Windows, OSX, and Linux.
It takes advantage of modern c++: semantics of displacement, modern CMake, variadic templates, structured bindings, lambda, nested namespace etc ...
The game will be playable in network, up to 4 players.
Lore:
2032. A war was declared between Maul and an unknown enemy, the first wave of attacks was already past, Maul has never been in a worse condition than this one. Soldiers lost hope, people lived in fear and the government wasn’t able to find a plan that would save their planet. There were actually two more planets close by called Bheet and Kooy, but god knows for how many centuries both of them hated Maul. They never agreed on many aspects such as religion or politics. The thing is that Bheet and Kooy tried to approach the enemy saying they had the same goals in mind but the enemy didn’t pay attention to them nor he gave them a chance to prove their selves as good allies. This is why Bheet and Kooy realized that once the enemy was done with Maul, they would be next on the list and decided to help out Maul knowing that they would probably have more chance to beat him as three planets than only two.
The idea of the game is to be able to create the "Character", here you will be the pilot of your spaceship, then you will have the choice between 3 factions:
* Bheet (Offensive Faction)
* Kooy (Support Faction)
* Maul (Defensive Faction)
Video :
https://www.youtube.com/watch?v=5fpIXDZ1It0
As you can see in the video, you have stats, these stats will change depending on your progress in the game,
for each level you'll get 5 points that you'll be able to spend to increase your statistics.
The bosses of the game, will adapt according to your team composition, for example if you have two support ships and an offensive spaceship in your composition then the boss will change his behavior during the confrontation.
When you get level 10, you have to choose a specialization.
For example if you took the support class you can either choose to specialize in shields or in heals.
After that every 10 levels you can either change that specialization or upgrade it.
Your spaceship will change its skins depending on the specialization you choose and on the upgrades you made.
We haven't made up our mind on the game design yet, so do not hesitate to give us your ideas.
The deadline is for January 26, 2018, but even after that, we really want to continue improving it with the feedback of the community.
For external libraries we use:
* SFML (Audio / Graphics)
* Boost (Asio)
* RapidJson (Parsing)
* Sol2.hpp (Lua)
* CEGUI (Game User Interfaces)
* CPPRESTSDK (Api communication)
Other videos:
https://www.youtube.com/watch?v=YO1qoMQNIPE
Screenshots:
Login :
(https://img15.hostingpics.net/pics/820173desktop.png) (https://www.hostingpics.net/viewer.php?id=820173desktop.png)
Create Scene :
(https://img15.hostingpics.net/pics/714662bheet.png) (https://www.hostingpics.net/viewer.php?id=714662bheet.png)
Example Window exit :
(https://img15.hostingpics.net/pics/589711window.png) (https://www.hostingpics.net/viewer.php?id=589711window.png)
This topic will be updated everytime we have some new screenshots or new features.
-
UPDATE :
- We can now change the langage in game at runtime
I will explain our approach,
An example of our configuration file :
(https://img15.hostingpics.net/thumbs/mini_400738Screenshotat20171212225324.png) (https://www.hostingpics.net/viewer.php?id=400738Screenshotat20171212225324.png)
Our Tree :
(https://img15.hostingpics.net/thumbs/mini_463758Screenshotat20171212225457.png) (https://www.hostingpics.net/viewer.php?id=463758Screenshotat20171212225457.png)
And one config file for exemple the errors :
(https://img15.hostingpics.net/thumbs/mini_570144Screenshotat20171212225624.png) (https://www.hostingpics.net/viewer.php?id=570144Screenshotat20171212225624.png)
The idea for the language processing in our game is that it is the main configuration file that decides the basic language, behind if the language is "fr" then we will go to the folder "fr" in the other case we will go to the english configuration directory. This allows us a parsing easy to perform, and avoids duplicating of our code.
In C++ :
(https://img15.hostingpics.net/thumbs/mini_982893Screenshotat20171212230028.png) (https://www.hostingpics.net/viewer.php?id=982893Screenshotat20171212230028.png)
cfg::game::lang represents the current langage in the config.json file, and then we can parse the good directory.
runtime changement with the window game settings :
(https://img15.hostingpics.net/thumbs/mini_186178Screenshotat20171212230913.png) (https://www.hostingpics.net/viewer.php?id=186178Screenshotat20171212230913.png)
If one of the files fails during its parsing, we fallback on a default config written in c++.
-
Looks nice!
I really like that "sci-fi" GUI. Waiting to see gameplay video :)
-
Yup the GUI really looks great, very polished and professional.
-
an idea of our in-game UI, (effects and background are still yet to be done those are just dummies ones to give more thrill to the pics :) )
(https://img15.hostingpics.net/pics/279955uiingame1.png) (https://www.hostingpics.net/viewer.php?id=279955uiingame1.png)
(https://img15.hostingpics.net/pics/855770uiingame2.png) (https://www.hostingpics.net/viewer.php?id=855770uiingame2.png)
-
A new video about the animation in game
https://www.youtube.com/watch?v=81-Wzi4tHYE
-
Hey guys we have some news for you :
We just achieve The Entity Component System, and the QuadTree.
There is a video:
https://www.youtube.com/watch?v=Culgx6gJ4c0
As you can see in the video, everything works perfectly, we even have a moving spaceship animation. For the rest we will focus on the network now, because the project ends already in 16 days, we thought go through a scenario system via a configuration file for the gameplay, which could define the different monsters and stages of this scenario by example, we must also finish the parallax and the starfield as soon as possible! see you soon !
-
Vey nice GUI! It is simply awesome.
-
New video with starfield + sound + introduction and resuming base features :
https://www.youtube.com/watch?v=SnQ3Jh0vudg
Do not hesitate to give us your opinion, it counts for us!