• 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:
Pls make it possible to kill random pops on a planet.

kill_random_pops = 100

Also pls add an easy way to remove items, the "remove" property, eg.

item_id = {
remove = yes
}
 
Given that we reached the modding part, we can expect a release of the beta "soon" right?

How does this changes affect pop growth? Will it remain the old system, or will we gain slight changes? With the new system of civilians and pop groups, it seems like having tons of pops isn't a problem anymore. (It would be cool if empires, especially tall ones, could have a huge amount of civilian pops, to feel more lively and less like pure efficiency)

In the past I made a mod that changed pop growth to a more realistic behavior by adding pop growth to the strata and living standard rights.
Will it still be possible to add modifiers to pops, or will the new pop groups prevent this (because the modifier would count per group and not per pop in a group)?
 
  • 1
Reactions:
Okay, so if I'm understanding this correctly, species traits no longer directly increase resource production but instead increase the workforce into jobs that are relevant to that resource.

The biggest implication from this change that I can see is that food-based economies/Agrarian is gonna be quite a powerful species trait/playstyle after this change if the Baol and Bio-reactors buildings and several civics remain the same.

For example, currently in Stellaris PI version we have this:
Farmers can potentially produce:
Food -> Can be boosted by Agrarians
Consumer Goods (with Baol Organic Plant) -> Can be boosted by Natural Machinists trait
Energy Credits (with Bio-Reactors) -> Can be boosted by Ingenious trait
Exotic Gas (With Advanced Bio-Reactors)
Trade Value (with Anglers civic) -> Can be boosted by Thrifty trait
Amenities (with Agrarian Idyll civic) -> Can be boosted by Charismatic trait
+ Any other ascension/origin traits that do the same i.e. Overtuned and Cybernetics

In 4.0, it looks like:
Agrarians and/or Farm Appendages and/or Proles Pre-Sapient trait and/or Harvesters -> Extra Farmers Workforce -> Increases
Food
Consumer Goods
Energy Credits
Exotic Gas
Trade Value
Amenities

I mean, in terms of narrative flavor it makes sense since it's all stuff that's coming out of the "farmer" job in the first place but it's a little crazy that it's reduced multiple selections of traits down to basically just 3 or 4 to retain all the bonuses of PI version plus the multiplicative bonus from the change. Of course all of this is assuming the buildings and civic bonuses remain the same.

Just some food for thought.
Well these are very good points. I agree it is logical, but it would also be very powerful for the reasons you mention.

However, in the anglers example, Agrarian would increase the number of farmers, but not pearl divers. So I think the best way would be to redesign/rebalance the civics to account for these changes.

In fact, several civics should receive major changes with 4.0 as some are going to get a bit weird/op.
 
But I don't get why there's an entirely separate system that can't go over the cap.
To simulate situations where building fully automated mines create a bunch of unemployment workers, I guess.
As devs says, all traits are currently "+Bonus workforce", "+Regular workforce" will come from buildings (that not It's not explicitly stated, but that's my inference from the words about automation in 371) and/or some structures/leaders/etc. (my own wild guessing)
 
  • 3
Reactions:
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.

To simulate situations where building fully automated mines create a bunch of unemployment workers, I guess.
As devs says, all traits are currently "+Bonus workforce", "+Regular workforce" will come from buildings (that not It's not explicitly stated, but that's my inference from the words about automation in 371) and/or some structures/leaders/etc. (my own wild guessing)

Ah ok these answers make sense if that's the case. I was thinking in terms of these being just for pop traits and therefore we'd have two classes of traits that sound similar but do very different things and would interact weirdly, but I can see how one of them would be useful for non pop production of workforce.
 
  • 1
Reactions:
How are Mod-created jobs intended to interact with this new system?

Are the Engineer / Physicist / etc. workforce bonuses applied to specific jobs only (like the Coordinator bonus), or do they apply to all Researcher category jobs?


Like if there's a new job from a mod ("Research Doctor") which provides some benefits of both a Researcher and a Medical Worker, which modifiers will it benefit from? Right now it's pretty easy to imagine -- the Research Doctor might have some (low) research output, and some non-output benefits (Amenities, pop growth, etc.) which won't be scaled by any pop trait, and a Pharma Corp civic could add +TV to the job.

How could that be coded in the new system?
 
Hiii!

I'm curious if it will be possible to use hardware acceleration//Graphics cores to do resource calculation with the new pop system. I don't 100% know if it will work, because I'm not an expert in computing, but it seems to me like the calculations can be set up in a way that it's possible.

I'll do my best to explain it in Math and in English. It's really nerdy though so if math isn't your strength, save yourself the pain and maybe don't read it

The basic equation that governs production is Resources from planet = Job Base Production x Workforce x Pop Bonus Workforce x Production Workforce Bonus.

We can turn it into a linear algebra form
Workforce (W) will become an SxT matrix, with T being the type of job and S being the species. It basically represents the number of pop distribution of the job workforce.
Ex. if your planet has species human,blorg,tyznn and jobs of miner, electrician and farmer, think of it like a table in excel which has all of that.

Next, Pop Bonus Workforce (O) will be represented as a BxS matrix, with S being the species and B being the Bonus that the species has on the job. Once again, it's also like a table.

Production Workforce Bonus (x) is a vector, so it just has all list of all the bonuses (miner bonus, farmer, all of the jobs).
For the sake of simplicity, Job base production (j) is just vector which has the resources that the jobs produce (ex. miners make 4 minerals, farmers make 6 food etc.)*

Now, in linear algebra it turns out like this, Resources = (OW)xj
O is BxS, W is SxT, x is Tx1, which gives us a vector of Bx1. (In other words, we start with Pop Bonus Workforce->Workforce Distribution->Workforce Production Bonus which gives us our TOTAL BONUS) then we finally multiply the j vector in to get our final resource production.

This is 100% making the problem much more difficult than it needs to be, but the reason why this form is useful is because it's in matrix multiplication form - GPUs are optimized for this exact scenario, so the work doesn't need to be done by the CPU.


The way we fix that is by making it a BxR matrix with R being the resource and B being the Bonus, elements represent resource production, and then transposing the (OWx)vector I think.
So I think it's:
Resources = (OWx)TJ
[BxS][SxT][Tx1] = [Bx1]
[Bx1]T = [1xB]
[1xB][BxR] = [1xR]... OK!

I would really like to hear from someone who has more insight into this what they think. It's been a really long time since I've done Linear Algebra so I could have made many mistakes or be entirely wrong.

Cheers!
 
Last edited:
  • 1
Reactions:
A little off-topic, but since you guys are presumably still monitoring the thread, and my question is about pops sort of, figured I'd take a shot...

Are there any plans to revise and touch up the current species portraits, maybe add evolution stages to them and expand evolution portraits to include Psionics? There's no portraits for Necroids, Lithoids, Molluscoids or Toxoids that have a cybernetic evolution stage, and some of them still look awesome but they don't have any job-specific clothes (Necroid Ascended #5 is amazing for RPing a Spiritualist, but I refuse to believe the Metallurgists and Artisans are working around machinery in their robes). I like most of the Cybernetic options we do have, but the lack of beards on the Cybernetic Humans makes me sad, and I'm not the biggest fan of the Neuromancer visor on most of them. Cybernetic evolution stages for the Human portrait used by UNE/CoM would make me giddy and tingly!
 
we no longer have a constant contact between pops and their job.
Does this mean that jobs will no longer have effects on the pops "holding" them?
  • Ethics attraction
  • Political power
  • Happiness

How will job incumbency be handled for job weights?
Currently, IIRC, nicer jobs have higher job weights for the pops currently holding them, thereby sheltering them from competition from other pops.

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!
For clarification: does bonus Workforce also increase the job upkeep? In the example above, would the 100 Psionic pops have a job upkeep of 110 while having a pop upkeep of 100 (and an output of 110)? (edit: already confirmed in previous dev reply)

How will the Weak trait be handled?
Can there be negative "bonus Workforce"?

Will capital buildings switch from +Output and +Job Upkeep modifiers to +Workforce?
What other sources, besides species traits, are being considered for Workforce bonuses?
(Will there be technologies or edicts that get switched from a current output bonus, to a Workforce bonus?)

If there are multiple sources of Workforce bonuses, will they stack additively or multiplicatively?





Speaking of throughput modifiers (which Workforce modifiers essentially are, if they affect both job output and job upkeep):

Since I started playing Stellaris, I have been bothered by the implications of some/many Worker bonuses: they enable a bigger share of the population sitting in the Specialist stratum, which both accelerates the pace of the game and also distorts the "population hierarchy pyramid".

Authoritarian's Worker output bonus is especially problematic in this regard, since it facilitates a bigger "middle class" in Authoritarian empires than in Egalitarian societies, contrary to the expectation that Authoritarian societies would be more pyramid-shaped with a big base of relatively powerless pops at the bottom, i.e. more Workers and fewer Specialists. Representing a harsher exploitation of Slaves and Workers as an output bonus has the same effect as the Authoritarian output bonus for Workers, since it has a one-sided focus on how the exploited are affected without applying any reciprocating modifier to the upper classes that allow their jobs to benefit directly from the exploitation (currently, they instead need to share their privileged position with more pops in order for the additional resources to be utilized). In contrast, an Elite/Specialist throughput (Workforce) bonus would instead increase the demand for resources from Workers or Slaves, thereby leading to a bigger number of Workers/Slaves and a widening of the base of the population hierarchy pyramid.

If a default society sits at a 1:1 ratio of Specialists and Workers, a +100% throughput (Workforce) bonus to Specialists would shift that ratio to 1:2. A population of 12 would shift from 6 Specialists and 6 Workers to 4 Specialists and 8 Workers, and Specialist output would increase from 3 to 4 i.e. +33%. If we want the total Specialist output to remain the same between the two societies, we could simultaneously increase Specialist job upkeep by +50% (this could represent diminishing returns, education/minion costs, or just wasteful use of resources that are perceived as cheap); this would shift the population ratio even further, to 1:3. We would go from 6 Specialists and 6 Workers to 3 Specialists and 9 Workers, while the 3 Specialists produce the same amount of Specialist output as 6 Specialists did in the more equal society (and the Specialists would supposedly love it, because their bigger productivity would presumably translate to bigger salaries). Hierarchical societies/economies would look massively different from their more egalitarian counterparts. A Stratified Economy could be truly stratified.

This could be implemented via living standards, where the Workforce bonus and job upkeep increase of Specialists and Rulers could be proportional to their levels of Consumer Goods pop upkeep relative to Workers. The table below shows one way this thought experiment could turn out. For simplicity of reading, the table shows multiplier factors rather than percentage additions.

Living standardCG pop upkeepsElite WorkforceElite job upkeepSpecialist WorkforceSpecialist job upkeepSpecialist:Worker ratio change from now
Egalitarian living standardssamex1x1x1x1x1:1
Social Welfare1/0.5/0.5x2x1.5x1x1x1:1
Decadent Lifestyle1.5/1.0/0.5x3x2.0x2x1.5x1:3
Decent Conditions1/0.5/0.25x4x2.5x2x1.5x1:3
Academic Privilege1/1/0.25x4x2.5x4x2.5x1:10
Stratified Economy1/0.5/0.1x10x5.5x5x3.0x1:15
Basic Subsistence0.50/0.25/0.05x10x5.5x5x3.0x1:15
Dystopian Society1.5/0.125/0.1x15x8.0x1.25x1.125x1:1.4

Having Stratified Economy shift its Specialist:Worker ratio by a factor of 15, i.e. making the number of Workers per Specialist 15 times greater than now, might be a bit excessive. If the Workforce and job upkeep increases are cut in half, the result would be a Worker-per-Specialist ratio change of x7.5 for Stratified Economy, i.e. there would be 7.5 times as many Workers per Specialist as now. Presumably. The numbers in the model could also be tweaked in many other ways, to achieve different desired results.

A side-thought on the above:
If Elite jobs produced Edict Funds, the change above would make living standards a choice between Faction Unity (via greater Political Power of the masses) and Edict Funds (via Workforce bonuses for the Elites).
 
Last edited:
  • 7Like
  • 1
  • 1
Reactions:
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.



Oh, this makes a lot more sense. And yeah, I'm having the same issues with "Workforce" and "Bonus Workforce" as you.
I guess now pops will represent "100s of thousands to 10s of millions" instead of "tens of millions to billions" (excluding colonial ship wierdness)?

But it's all good. It's still abstract, just a little finer detail.
 
  • 3Like
Reactions:
You mention this difference between a pop generating more workforce and generating bonus workforce. You also say that all production modifiers from species traits are being replaced with bonus workforce. Do you have any examples for modifiers that grant more workforce?

I would love an example of how this works with different pops and workforce/bonus workforce modifier combinations. I do not fully grasp how this will interact yet.
 
  • 2
Reactions:
I guess now pops will represent "100s of thousands to 10s of millions" instead of "tens of millions to billions" (excluding colonial ship wierdness)?

But it's all good. It's still abstract, just a little finer detail.

Yeah from the WIP mockup earth started with around 6k pops in 2200. I could headcanon that 1 human pop is a million people and the population peaked at around 10k pops before 2100, then declined steadily (as it's predicted to do IRL), but now the age of interstellar colonisation is kicking growth rate back up
 
  • 1Like
Reactions:
Better in the sense of the increase being cheaper? Yes. Better in the sense of total output once everything is multiplied? No. Hopefully more interesting when combined with potential upkeep reductions/production bonuses/automation options from other sources? Perhaps.
If I understand it correctly, the +10% workforce, basically mean "10% more pop form a pop." So those new trait's bonus are 1000% better than the current ones.
 
I still can't quite imagine how this will feel in Stellaris but I am excited to try it. I had trouble knowing what to do with the various pop groups in... erm EUIV and Vic3 and whom to support and embrace and that put me off from interacting with that system, foolishly or not. I'm hopeful with nested tooltips and things it can be intuitive to whatever end ^^
 
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?

We mostly plan on using the non-bonus workforce modifiers for negative stuff, but for my example I'll also include a positive modifier. Imagine if there was a pair of traits Lazy (-50% Workforce) and Overachiever (+100% Workforce), and we have three species, Lazy Humans, Blorg, and Overachiever Starfish.

To fill 100 Miner jobs with each of the three species you would need:
  • 100 Blorg, they have no workforce modifiers so each Blorg contributes 1 Workforce.
  • 200 Lazy Humans, as each Lazy Human pop contributes 0.5 Workforce.
  • 50 Overachiever Starfish, as each Overachiever Starfish contributes 2 Workforce.
 
  • 35
  • 1Like
Reactions:
To fill 100 Miner jobs with each of the three species you would need:
  • 100 Blorg, they have no workforce modifiers so each Blorg contributes 1 Workforce.
  • 200 Lazy Humans, as each Lazy Human pop contributes 0.5 Workforce.
  • 50 Overachiever Starfish, as each Overachiever Starfish contributes 2 Workforce.
Now let`s imagine my planet have 300 Miner jobs. All jobs filled by all 350 planetary population (Don't ask where their foremen are). If know I decrease number of miner Jobs by 50, so only 250 jobs left, how game will go? How many and what unemployment I get? (my guess it will be 100 umeployent Lazy Humans but i`m not sure)

(Bonus question - how living standards impact on it?)
 
We mostly plan on using the non-bonus workforce modifiers for negative stuff, but for my example I'll also include a positive modifier. Imagine if there was a pair of traits Lazy (-50% Workforce) and Overachiever (+100% Workforce), and we have three species, Lazy Humans, Blorg, and Overachiever Starfish.

To fill 100 Miner jobs with each of the three species you would need:
  • 100 Blorg, they have no workforce modifiers so each Blorg contributes 1 Workforce.
  • 200 Lazy Humans, as each Lazy Human pop contributes 0.5 Workforce.
  • 50 Overachiever Starfish, as each Overachiever Starfish contributes 2 Workforce.

Thanks for the explanation! It still seems a bit tricky in my head having both, but doesn’t sound too bad if it’s primarily for building modifiers and I probably just need to try it out.

When new jobs are opened up will the recruitment prioritise pops that give the most workforce per pop?
 
  • 2
Reactions: