You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#1223 has been marked "Won't fix", which is fine. The original Outpost game prevented players from building too far from their colony as well. That said, something does need to change in this regard. There are two underlying issues that need to be fixed:
Nothing in the UI tells the player that this is a limitation when they begin the game. Displaying a color-coded radius around the SEED Lander before it lands will resolve this problem. Two colors for the overlay are probably needed. The first is the maximum distance that the player will be allowed to place structures, and the second is maximum communications range assuming the first circumference is covered in comm towers. These two pieces of info are required to determine the really important part - How many of the planet's mining sites are available to your colony.
This limitation places an overall cap on the amount of mineral resources available to your colony over the course of the game. This isn't a problem in and of itself, but the game needs to be designed to account for this. There needs to be enough available minerals to make the colony self-sustaining long enough to win the game, or if there isn't going to be a final victory condition, long enough to research the tech needed to get past this limitation (MPG, a portal to the mineral dimension, whatever)
The text was updated successfully, but these errors were encountered:
Robots can be placed anywhere on the surface so long as they are within comm range (this includes mining robots which extends to mine facilities). Comm towers are excluded from this limitation of structure placement as should any structure that is considered self-contained (need to check the logic to make sure that's the case and enable that if it isn't)
I want to eventually extend building placement to anywhere within comm range. There are some implications to the underlying logic that come from this, namely what happens if comm range breaks?
I've seen a couple of save games where comm towers are built to extend comm range for mine facilities only to be removed afterward to save on power consumption. Great use of resources but a bit of an exploit of game mechanics and not intended for gameplay.
Also, I wanted to add the concept of 'colony sprawl' -- if structures are too far away things are going to take awhile to get there, CHAP facilities may need a boost, etc. Something I want to think about before just blindly extending the range.
So ultimately not a concept I want to outright deny, but in the original issue it doesn't account for the issues I'm thinking about atm.
For finite mineral resources, some research topics will account for this -- deep core mining, extended mine shafts and ultimately asteroid mining.
Yup -- any structure that's considered 'self contained' such as a comm tower is exempt from this. I know the mine facilities, roads and tubes are also considered self contained so should be affected.
boolselfSustained(StructureID id)
{
switch (id)
{
case StructureID::SID_COMM_TOWER:
case StructureID::SID_ROAD:
returntrue;
default:
returnfalse;
}
}
Well, I thought tubes where anyway. This is the code that checks for that. Not the greatest... but does the job :D
#1223 has been marked "Won't fix", which is fine. The original Outpost game prevented players from building too far from their colony as well. That said, something does need to change in this regard. There are two underlying issues that need to be fixed:
The text was updated successfully, but these errors were encountered: