published on 10. April 2016 in devlog
Development Log Week 22
The language this post was written in (Englisch) differs from the one you have currently selected (Deutsch) as we do not have a translation available at this time.
published on 10. April 2016 in devlog
The language this post was written in (Englisch) differs from the one you have currently selected (Deutsch) as we do not have a translation available at this time.
This week was dominated by work on a relatively boring but nonetheless important topic: accounting. By that I mean that the game needs to keep track of the assets a player owns and of values that enter or leave their company. This data can be used for all kinds of purposes, like simply showing a player how well they are doing or generating high scores. But maybe the most important reason to have this data is to be able to generate a "player score" that will tell other players something about how reliable a particular player probably is. To do this, a whole range of indicators is compiled from different data sources, including of course the current and historic data from the newly added accounting system. Work on the actual player score algorithm hasn't started yet, though, as I need to clean up a few things around the accounting system first and I have some unrelated interface work coming up.
This week I started on detailing the slower than light (STL) travel. First I looked into how real rocket motors work and derived a simple system that works with some of the parameters of the real thing. Our ships will now have STL engines that have a certain thrust level and a fuel flow (consumption) measured in units per second. These factors will give the ships a maximum burn rate that is being used to accelerate and decelerate on a coures to another planet. Acceleration will is limited by 10 time the earth's gravitation (so the crew and passengers won't get squished ;)). This leads to two interesting effects:
The STL engines and all the mechanics around it will probably keep me busy one or two more weeks.