DevLog: June/July 2017 - Planet Types and Building Upgrades

Official news, announcements and development updates.
User avatar
StuartMorgan
Developer
Posts: 135
Location: UK

DevLog: June/July 2017 - Planet Types and Building Upgrades

Post #1 »

Welcome to the Galaxial development log for June/July!

My apologies that there was no devlog at the end of last month as I had lots of holiday time off, and there wasn't much "interesting" development stuff to share at the time.

The last two months was mostly spent tidying up the entire code base of the game, rewriting large amounts of code and stripping out anything old that was no longer needed.

Planet Types and Bonuses

Some other things I have been working on recently include:
  • Added Tiny and Huge planet sizes in addition to the existing Small, Medium, Large sizes.
  • Planet size now determines how many buildings can be built at a colony. (Tiny has 2 slots, Huge has 6 slots)
  • Reworking the colony graphics to reflect each planet size
  • Balancing the various planet types and bonuses
Image
  • Better planet tooltips on the galaxy map
Image
The planet effects such as Thin Atmosphere etc. will be listed on the colony screen in more detail, so you can see what bonuses each one provides. The galaxy map tooltip just adds them all up and displays the total for each modifier.

Building Upgrade Slots

Each building built at a colony can now have upgrade slots that provide extra bonuses to the colony.
I haven't decided how many upgrade slots each building can have yet, so the list below might change after some more testing...
Here are some examples of building upgrades:

Entertainment Center
+5% Population Happiness
  • Recreation Facility Upgrade
    +2.5% Population Happiness
  • Communal Housing Upgrade
    +5% Maximum Population
  • Hospital Upgrade
    +10% Population Growth
Mining Command Center
+10 Mining Ship Support Slots
+50% Refinery Unload Speed
  • Docking Bay Upgrade
    +25% Refinery Unload Speed
  • Processing Plant Upgrade
    +20% Refinery Efficiency
  • Resource Silo Upgrade
    +1000 Metal Storage Capacity
You can build multiple buildings of the same type on a planet.

User avatar
TuriusRay
Posts: 21

Re: DevLog: June/July 2017

Post #2 »

Stuart, in the screenshot of the ice planet where you put 2,600 millions, I think its better a dot than a comma so 2.600 millions its what you mean.

User avatar
StuartMorgan
Developer
Posts: 135
Location: UK

Re: DevLog: June/July 2017

Post #3 »

TuriusRay wrote:Stuart, in the screenshot of the ice planet where you put 2,600 millions, I think its better a dot than a comma so 2.600 millions its what you mean.
The value is for 2.6 billion. (2600 million)
We don't use dots to separate thousands in the UK... so perhaps I will change it to just use a space 2 600 M or no space at all 2600 M

User avatar
Silverware
Posts: 1

Re: DevLog: June/July 2017

Post #4 »

StuartMorgan wrote:The value is for 2.6 billion. (2600 million)
We don't use dots to separate thousands in the UK... so perhaps I will change it to just use a space 2 600 M or no space at all 2600 M
Personally I would use comma.

HOWEVER! This is the modern era of computing.
You can quickly grab the localization settings from the System, store it as a variable somewhere, and use that instead.
Then it'll be what ever the user has set it to on their system, and match all other number formats on their system.
:ghost

User avatar
StuartMorgan
Developer
Posts: 135
Location: UK

Re: DevLog: June/July 2017

Post #5 »

You can quickly grab the localization settings from the System, store it as a variable somewhere, and use that instead.
Then it'll be what ever the user has set it to on their system, and match all other number formats on their system.
I have done exactly that. Also for decimals :D