• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

Stellaris Dev Diary #372 - Modding: Pop Groups and Jobs

Hi everyone!

This week, @Gruntsatwork will discuss the technical details of pop group scripting. This topic is likely to be of most interest to the modding community.

The systems we’re implementing now are just scratching the surface of where we want to go with them - we’re looking forward to some of the things we’ll be able to do with these tools over the next few years as well as seeing what you do with them.

As with all of these dev diaries, some of this is still subject to change during implementation and during the beta.

Pop Groups and Jobs​

Hello everyone, @Gruntsatwork here! Let us talk about some of the script changes that are coming with 4.0 when it comes to pops and jobs…

As Eladrin already mentioned in Dev Diary 370, we are changing the way we look at Pops by grouping them together into Pop Groups. These groups are defined by their species, traits, ethics, and factions but NOT their jobs. It is entirely possible and likely for a pop group to have pops working different jobs.

The goal is that for most purposes in the game, you will reference pop groups instead of pops, which should hopefully save us from iterating through every single pop in our empire whenever a modifier needs to be re-calculated.

This allows us to tone down or remove some of the most performance-intensive actions we used before and replace them with far more performance-friendly variations instead.

For example, that means that both “random_owned_pop” or “any_owned_pop” have been relegated to the dark corners of history and replaced with “random_owned_pop_group” and “any_owned_pop_group”.

The same holds true for many of the effects used on those pops, like create_pop or kill_pop, or move_pop. Going forward, we will now create, move and kill pop groups, either in their entirety or through percentages. And for the eagle-eyed among you, YES, that means you no longer have to loop through singular pops to do unspeakable things to them, you can nicely target their pop group and let it do the math for you.

Thanks to the tireless efforts of our programmers, who have given us some new functionality for scripted triggers like comparators, other old tools, like num_pops, will see a resurgence as a scripted trigger. We expect the modding folks to find a lot of use in that, even as we slightly dread what you will come up with.

As also mentioned by Eladrin, this means we no longer have a constant contact between pops and their job.

Instead, there is a single moment of assignment when the pop group briefly knows which job it is supplying and with how much workforce. From then on, the job only knows that it has been supplied with workforce and thus must produce the associated resource. As long as the assignment stands, we have no need to check on the pop again.

This brings us to one of our biggest changes: removing all production modifiers on species traits and replacing them with bonus workforce. Simply put, because the workforce assigned to a job does not know which species it came from during most checks, production bonuses from species (modifiers like +10% Research from Jobs from the Psionic trait) cannot be applied. Instead, species traits now provide modifiers like “+10% Bonus Workforce for Researcher Jobs”, which means 100 Psionic Pops working 100 Physicist jobs will have the job upkeep and output of 110 Physicist jobs. In other words, we only pay upkeep on 100 Pops, but we get the output of 110 Researchers! This also has the side effect of the modifiers for job output from species traits are now multiplicative with other modifiers.

As an example, in 3.14 if we had 1 Psionic (+10% Research from Jobs) Pop working a Researcher job in an empire with the Meritocracy civic (+10% Specialist Job Output) on a Relic world with a Central Spire (+15% Research from Jobs), the total output would be 3 × (1 + 0.1 + 0.1 + 0.15) = 3 × 1.35 = 4.05 of each type of research.

In 4.0 if we have 100 Psionic (+10% Bonus Workforce for Researcher Jobs) Pops working 100 Physics jobs in an empire with the Meritocracy civic (+10% Specialist Job Output) on a Relic world with a Central Spire (+15% Research from Jobs), the total output would be 3 × (1 + 0.1) × (1 + 0.1 + 0.15) = 3 × 1.1 × 1.25 = 4.125 physics research.

This brings us beautiful new script entries like this one from the Psionic trait:
A sample of a job that he really made as bad as possible.

It doesn’t have to be like this. But it can be. Grunts made his choice. - E
This is perfectly serviceable - G
I have hopes to refactor this - AS

As a side note, some checks can still query a pop’s job, but only indirectly, by scoping to a job and determining which pop group is filling it. This means we can still ensure functionality for Death Cults and similar targeted kill_pop effects.

In contrast, production bonuses on the planet or the empire are still available since they simply affect everyone.

So for species traits, we encourage the use of these new modifiers

pop_job_bonus_workforce_mult
To increase the bonus workforce a pop generates for a given job.

pop_job_workforce_mult
To increase the workforce a pop generates for a given job, this is not bonus workforce.

job_max_workforce_mult
To increase the maximum workforce a Job can accept

As a reminder, a job's workforce will fill to its maximum allowed but not beyond that. If a pop generates more workforce than usual, fewer pops will be required to fill the job to max, but it will not produce more than its maximum. If a pop generates a bonus workforce, it can go beyond the job's maximum and scale its production up.

In addition, we have also split quite a few of our economic categories that depended on triggered checks of species traits. This also includes the use of triggers to fake an inheritance of economic classes, which we have removed in many cases and only left in the ones we deemed the most reliant on them.

For inheritance, we recommend the normal parent-child structure of economic categories OR, to use static_modifiers to grant the modifiers of any combination of economic_categories.

Most, if not all, of these changes were made to improve performance: reducing calls, loops, and modifier cascades that would otherwise trigger recalculations across every planet and pop in your empire, just in case a deficit check was needed at that moment.

Looking ahead, we see great potential in workforce mechanics, both for us and the modding community. We've hinted at automation – workforce decoupled from pops – and some of you may have already considered new applications for Virtuality. Who knows what other, more extreme variations in the type and number of pops empires require might now be possible?

Simply put, we now have the workforce to power Stellaris for years to come. Pun very much intended.

What’s Next?​

Our planned livestream is going to be delayed a bit, and will likely end up being alongside the Open Beta. Right now our primary focus is on implementation.

Next week we’ll have some more updates on how things have been going.
 
  • 65Like
  • 21
  • 10Love
  • 3
  • 2Haha
  • 2
Reactions:
So which one is it? If we have available 100 Physics Jobs position available, will 100 Psionics work them, providing 110 Researchers? Or will it be 91 Psionics working them providing 100 Researchers?
I had similar confusion, and I think it's explained by the difference between pop_job_bonus_workforce_mult and pop_job_workforce_mult.

+10% pop_job_bonus_workforce_mult would mean 100 researchers work the jobs, producing 110 workforce of resources. In contrast, +10% pop_job_workforce_mult would mean 91 researchers working the jobs, producing 100 workforce of resources.

Those names are really, really similar, though, and I have a feeling I'm going to mix them up a lot (if I haven't already). Perhaps the latter could be named "pop efficiency" on the front end?

Also, please correct me if I'm not understanding that right.
 
Last edited:
  • 2Like
Reactions:
The important question.Does it actually run better late game.

Currently - not really. Right now we're still keeping it mostly single threaded and haven't gotten to many of the other possible optimizations yet, because it's a lot easier to understand what it's up to and debug this way.

Like I mentioned in another thread, we're likely to keep it this way during the early open beta so it's easier to fix any issues you guys hit, but I'm pretty confident about the new architecture being fundamentally better once we actually let it loose.
 
  • 41
  • 5Like
  • 1
Reactions:
This also seems to contradict "In other words, we only pay upkeep on 100 Pops". Are we paying upkeep on 100, or on 110?
If I understood correctly, they meant that the 100 pops produce and need the upkeep of 110, as that is the employed workforce. However, the part about 100 upkeep is about the pop upkeep, that is, food, EC, minerals if lithoid etc. So, just the upkeep for the pops, not the job.
 
  • 1Like
Reactions:
That traits was meant to be strata, thanks for catching that. They are indeed split by strata as well.

No worries, glad to help.

Sorry to ask again but is hiring priority based on which available pop has the highest workforce bonus? I.e if we open up 100 new researcher jobs then from our pool of lower strata/unemployed pops with a research workforce bonus will be hired first until the jobs are full or all those pops are employed?

I appreciate that the current system doesn’t optimise over time but it also sometimes has frustrating quirks where the wrong pops get employed even though others are available. Having to shuffle everyone by closing jobs isn’t the worse thing in the world but it is a bit of micro and immersion wise feels a bit weird to fire and rehire an entire planet’s worth of an industry.
 
  • 2
Reactions:
I am curious how the game will fill jobs with workforce.

If you have:
900 pops (no bonus) and 50 pops with +10% bonus to all job types (synthetic trait or something) and 50 pops with +40% (a dark matter trait or something)
1000 workforce required split into 10 different jobs, some needing 50 workforce to fill, some 100, some 200 workforce for 100 jobs.

What happens?
How are mixes of species handled in the new system?
 
  • 2
Reactions:
This also seems to contradict "In other words, we only pay upkeep on 100 Pops". Are we paying upkeep on 100, or on 110?

I think there’s two upkeeps here. The pop upkeep is the stuff regular pops need like food. That stays the same. The job upkeep is what is needed to create the final product.

So 100 metallurgists with 110 workforce will need 100 pops worth of food/consumer goods/amenities for their own use but 110 pops worth of minerals for their alloy job
 
  • 1Love
Reactions:
We do not plan on adding habitable areas to general Megastructures.



If it's +bonus workforce, then you have 100 pops filling the 100 jobs, but with 110 jobs worth of throughput.

So you'll pay the upkeep for 100 pops, but the upkeep and production of 110 jobs. (My 100 Blorg get +10% bonus workforce so are more efficient than those lazy Humans, but they still need 10% more minerals in order to produce 10% more alloys.)
Am I correct that in the edge case of you having insufficient pops avaliable to fill a job that JWFM and JBWFM would be effectively identical? I get the impression that the existence of civilians makes this unlikely to occur but in just making sure I have this right.

Also, will pop traits benefit civilians at all? A planet full of Agrarian civilians feels like it should feel different to one full of Industrious civilians, even if all the government jobs are the same.
 
  • 2
  • 1
Reactions:
You will have as much control as before and tiny bit more with the new pop_category handling for unemployment and slavery.
This is very important to me, but I do not understand something. Is this control mod based or in the base game. I guess that what I am asking is: when you mean we will have more control, are you talking to modders, or the general player?

Because more control for the modder means that they can get to do more/better stuff. While more control for the player means that the player itself has more control over the pops (even if playing Vanilla, and thus unmodded).

This question is very important because of this (copying the comment):

As it was already said that several different species would grow simultaneously, will we be able to 'mark' only some pops to grow or some not to grow on a per planet basis?

THIS IS INCREDIBLY IMPORTANT. I will use an example. With the previous system you could move a few of your main pops to have them be rulers on lets say an energy world. Then you would choose for growth and assembly the pops you ant for that world (energy focused ones in this example, though applies to anything really). Afterwards you disable migration for everybody. That way there would be 2 or 3 species in that planet (depending on if you assemble the same or a different species). You could then 'forget' about that planet and rest assured that there where always going to be the X main pops you moved there as rulers, and the 2 other species you decided to grow and assemble there.

If the new system doesn't allow to 'disable' certain species growth/assembly per planet, then in that same example you would end growing all species, eventually having more rulers than the ones you intended. This would essentially remove a possibility that we currently have to ensure we properly control our population.

In this example you might think that there is no problem as the main pop is probably 'good'. But that's besides the point, I could have just moved X chattel slaves, then Y indentured ones. I want the first to stay in a constant number, so I just choose the other one to grow. Now both would grow, and that is undesirable in many scenarios.

And, just in case, enabling population controls doesn't solve the issue as that would be empire wide, and perhaps I do want those chattel slaves growing freely in other places, but not in this planet.

In any case, the question, will this still be possible?

So essentially that, will be have more/better control over pops as players? Or at least the same? I want to be able to do things like the one I mentioned here (more detailed examples and use cases): Detailed example and use case of growing just 1 species per planet
 
This brings us to one of our biggest changes: removing all production modifiers on species traits and replacing them with bonus workforce. Simply put, because the workforce assigned to a job does not know which species it came from during most checks, production bonuses from species (modifiers like +10% Research from Jobs from the Psionic trait) cannot be applied. Instead, species traits now provide modifiers like “+10% Bonus Workforce for Researcher Jobs”, which means 100 Psionic Pops working 100 Physicist jobs will have the job upkeep and output of 110 Physicist jobs. In other words, we only pay upkeep on 100 Pops, but we get the output of 110 Researchers! This also has the side effect of the modifiers for job output from species traits are now multiplicative with other modifiers.

Look, I *know* this makes sense when it comes to calculations and such and I am happy with it, but I'm having trouble with the "flavor logic", so to speak. How does your body/mind having a specific trait mean you generate more workforce for a job? How does 1 Pop having the Natural Engineers trait produce 1.1 Engineers? Where is the extra 0.1 specimen in workfoce coming from? Should we consider there's an extra level of abstraction, in which 1 Pop = indeterminate number of specimens?
 
Should we consider there's an extra level of abstraction, in which 1 Pop = indeterminate number of specimens?
That's already how it works. Pops do not equal individual entities.
 
  • 8Like
Reactions:
Look, I *know* this makes sense when it comes to calculations and such and I am happy with it, but I'm having trouble with the "flavor logic", so to speak. How does your body/mind having a specific trait mean you generate more workforce for a job? How does 1 Pop having the Natural Engineers trait produce 1.1 Engineers? Where is the extra 0.1 specimen in workfoce coming from? Should we consider there's an extra level of abstraction, in which 1 Pop = indeterminate number of specimens?

Workforce is a bit of a misleading name for this. It's more like productivity. They're not creating 0.1 of a worker, they're doing the work of 1.1 people.

Though I admit I am now confused again as to what the difference is between workforce multiplier and bonus workforce. Bonus workforce I get. If you have 100 jobs and 100 pops with +10% they'll fill those jobs and you'll get 110 jobs worth of output. Makes sense, worded a bit weirdly sure but it essentially means these people do the work of 1.1 people.

But I don't get why there's an entirely separate system that can't go over the cap. If I'm understanding it right a +10% non bonus workforce means that 90 pops could fill 100 jobs with a total output of 99, but no other pop could get a job since it can't carry over?

If that's the case it seems needlessly confusing at first glance and I can't tell what narratively the difference is trying to represent. In the first case it's easy, productivity. But in the latter case it's almost like it's saying the pop is literally so big it takes up more space. To use a visual example:

- Let's say we have an office with 100 desks. Normal workers would fill those 100 desks one person to a desk, and output 100 persons worth of work.

- +10% bonus workforce workers would fill those 100 desks and output 110 persons worth of work

- +10% non-bonus workers would fill 90 of those desks, leaving 10 spare, and output 100 persons worth of work. Presumably this species just likes to dump their coats and bags everywhere so no one else can fit beside them.

Can any dev clarify if this is right? And if so what's the design reason behind not having all traits be the simpler, more intuitive bonus?
 
  • 4
  • 1Like
  • 1Haha
Reactions:
That's already how it works. Pops do not equal individual entities.

Yeah, I kinda forgot about that. I think multiplying Pops by 100 made me think there would be "real" pop numbers now, similar to Victoria 3 and such.

Workforce is a bit of a misleading name for this. It's more like productivity. They're not creating 0.1 of a worker, they're doing the work of 1.1 people.

Oh, this makes a lot more sense. And yeah, I'm having the same issues with "Workforce" and "Bonus Workforce" as you.
 
Workforce multiplier is an option that does not have any use right now as any existing bonus would be a bonus workforce multiplier, but we could imagine options that would use that option.
As an example with an authoritarien possible option : Have some pops like slave have a negative workforce multiplier but a positive bonus workforce. This would represent the fact that you cram as many people as possible to do the same task even if they are less efficients individually to reach a better total output.

Simple example : A group of 200 pops with -0.5 workforce but +0.25 bonus workforce would be able to fill a 100 workforce job at 150% efficiency job wise but pop wise would be only 0.75% the efficiency of 200 pops working on 2 jobs (200 workforce total) with normal efficency.

Even if it's not used right now in the main game, it will open options both for the devs and modders.
 
Last edited:
  • 4
  • 1Like
Reactions:
If we have diary about modding, that means BETA is near
 
  • 1
Reactions:
Keep wondering about migration. If a free species is modified to be masterful miners and generate more workforce on the mines, will they have an incentive to seek mining worlds with available jobs where they can earn better pay?

I think that even if you dont upgrade to tge higher social classes, pops should be happier doing the jobs they are better suited for and actively seek those jobs if they have no migration restrictions
 
  • 5
Reactions:
These changes as of late has been amazing to read, and it fills me and friends with excitement whilst trying to speculate how to play with these changes - and what other sections of the game might get changed because of this new Workforce system.

One such speculation is centered around Starbases and Habitats with this system, using the Resource Deficit that Trade will be used as upkeep.
We were wondering if the workforce mechanic could possibly be applied to a starbase rework, where the starbase essentially function as a deep space habitat with workforce working the specific Modules and Buildings in the starbase. Through that implementation, Starbases could become the new Habitat, as they are now population centers. Providing Immigration bonuses to system colonies, allowing planets in the same system to share resources before calculating the deficit and trade upkeep (as in the Starbase acts as a local hub for easy civilian trade). That way, you can still build single-focus planets and not get a severe trade upkeep as another planet in the same system is easily fueling it with resources. As with a Mining planet supplying an Ecu.

Another concept for workforce could be applies to Orbitals, such as mining and research orbitals. Without a local starbase, they are either working with Automation or with a workforce that must travel X jumps from the nearest colony - cutting the output by x jumps as more time is spent on travel than work.
If a starbase or colony is present, the workforce could have no difficulty with travel to their work, and thus provide full output of the Orbitals, or even more. As they spend less time travelling to them.
Civilian transportation finally becomes a mechanic, and makes your systems feel more alive - as you would technically have pops living outside the large population centers.

Another use for the workforce mechanic could be eventually implemented to a Manpower pool. Each year, based on your conscription law, more Manpower is gained from your total workforce - which then can be used to man your fleets.
Yes, fleets could cost manpower.
And Combat Computers could lower the Manpower cost as AI takes over jobs.

Technically, Stellaris is suffering from how much performance is put to visualize each models of ships, as every single Corvette is loaded. Thus the spam of 100 corvettes can be heavy on performance.
But what if Fleets were also affected by a similar mechanic as Workforce? Suddenly you wouldn't need to visualize all 100 corvettes, as they were instead compressed to Squadrons with a pool of corvettes.
---

It may not be conveyed properly in text as it was in speech as we brainstormed the potentials, but my friends and I believe 4.0 can bring a lot of potential with this rework on pops.
Starbases can get more uses, and could serve as Habitats/population centers, adding a softcap on Habitats as the AI was constantly overbuilding them.
Manpower could change how fleet construction work, possibly reducing the amount of ships you could field as your pops is the defacto limiter. Losses become more severe as you are losing "pops" with each battle.
Fleets could be visually downsized with their own form of workforce mechanic affecting compressed groups of ships in the fleet.

All I'm saying is that Stellaris could benefit greatly from this new Workforce rework, and my friends and I look forward to see where similar mechanics could be implemented.
I like most of this except the 'compression' of many ships into squads. I don't think it is nice for this game, and I personally would hate it. The rest I like at least to some extent.

However on the mining and research stations, it can be easily justified either saying it is automated, or that people work shifts. For instance a group of 5 man could work a mining station, there is no time lost on travel as the current shift leaves once the next arrives, and while they travel, there is always someone working so no loss in productivity.