Skip to content

Commit 18a1040

Browse files
committed
Merge branch 'refs/heads/fix/v1'
2 parents 8e293d8 + 908c70d commit 18a1040

File tree

5 files changed

+36
-23
lines changed

5 files changed

+36
-23
lines changed

docs/Changelog.md

+14
Original file line numberDiff line numberDiff line change
@@ -100,3 +100,17 @@
100100
## Documentation
101101

102102
* Documented the possible `403 Forbidden` error in the `PATCH .../systems/:system` endpoint.
103+
104+
# v1.3.1 (2024-06-14)
105+
106+
## Balancing
107+
108+
* Pops consume way more food and (if unemployed) more credits.
109+
* Home systems start as developed instead of upgraded.
110+
* Replaced system food consumption with minerals.
111+
* Halved pop growth for colonized and developed systems.
112+
* Pop growth now follows a logistic curve.
113+
114+
## Bugfixes
115+
116+
* Fixed isolated system clusters without outgoing links. [#19](https://github.com/sekassel/stp-24-server-tracker/issues/19)

src/game-logic/empire-variables.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ export const EMPIRE_VARIABLES = {
44
},
55
pop: {
66
consumption: {
7-
food: 0.1, // nutrition tech tree
7+
food: 1, // nutrition tech tree
88
credits: {
9-
unemployed: 0.1, // social benefits tech tree
9+
unemployed: 1, // social benefits tech tree
1010
},
1111
},
1212
},

src/game-logic/game-logic.service.ts

+7-8
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ export class GameLogicService {
4747

4848
homeSystem.owner = empire._id;
4949
homeSystem.population = empire.resources.population;
50-
homeSystem.upgrade = 'developed';
51-
homeSystem.capacity *= SYSTEM_UPGRADES.developed.capacity_multiplier;
50+
homeSystem.upgrade = 'upgraded';
51+
homeSystem.capacity *= SYSTEM_UPGRADES.upgraded.capacity_multiplier;
5252
if (member?.empire?.homeSystem) {
5353
homeSystem.type = member.empire.homeSystem;
5454
}
@@ -303,12 +303,11 @@ export class GameLogicService {
303303

304304
private popGrowth(system: SystemDocument, variables: Record<Variable, number>, aggregates?: Partial<Record<ResourceName, AggregateResult>>) {
305305
const {population, capacity} = system;
306-
const growthVariable: Variable = population >= capacity
307-
? 'systems.developed.pop_growth'
308-
: `systems.${system.upgrade}.pop_growth`;
309-
const newValue = variables[growthVariable] * population;
310-
this.updateAggregate(aggregates?.population, growthVariable, 1, newValue - population);
311-
system.population = newValue;
306+
const growthVariable: Variable = `systems.${system.upgrade}.pop_growth`;
307+
const growthRate = variables[growthVariable];
308+
const growth = growthRate * population * Math.clamp(1 - population / capacity, 0, 1); // logistic growth
309+
this.updateAggregate(aggregates?.population, growthVariable, 1, growth);
310+
system.population = population + growth;
312311
}
313312

314313
aggregateResources(empire: Empire, systems: System[], resources: ResourceName[]): AggregateResult[] {

src/game-logic/system-upgrade.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,44 +17,44 @@ export const SYSTEM_UPGRADES = {
1717
},
1818
colonized: {
1919
id: 'colonized',
20-
pop_growth: 1.10, // pop_growth_colonized tech tree
20+
pop_growth: 0.05, // pop_growth_colonized tech tree
2121
cost: {
2222
minerals: 100, // cheap_claims tech tree
2323
energy: 100, // cheap_claims tech tree
2424
},
2525
upkeep: {
2626
energy: 1,
27+
minerals: 1,
2728
fuel: 1,
28-
food: 1,
2929
},
3030
capacity_multiplier: 1,
3131
},
3232
upgraded: {
3333
id: 'upgraded',
34-
pop_growth: 1.05, // pop_growth_upgraded tech tree
34+
pop_growth: 0.02, // pop_growth_upgraded tech tree
3535
cost: {
3636
minerals: 100, // cheap_claims tech tree
3737
alloys: 100, // cheap_claims tech tree
3838
},
3939
upkeep: {
4040
energy: 2,
41+
minerals: 2,
4142
fuel: 2,
42-
food: 2,
4343
alloys: 1, // upgraded systems provide defense that must be maintained
4444
},
4545
capacity_multiplier: 1.25,
4646
},
4747
developed: {
4848
id: 'developed',
49-
pop_growth: 1.01,
49+
pop_growth: 0.01,
5050
cost: {
5151
alloys: 200, // cheap_claims tech tree
5252
fuel: 100, // cheap_claims tech tree
5353
},
5454
upkeep: {
5555
energy: 4,
56+
minerals: 4,
5657
fuel: 4,
57-
food: 4,
5858
alloys: 3,
5959
},
6060
capacity_multiplier: 1.25,

src/game-logic/technologies.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -182,20 +182,20 @@ export const TECHNOLOGIES: Record<string, Technology> = {
182182
},
183183
efficient_systems_3: {
184184
id: 'efficient_systems_3',
185-
tags: ['society', 'biology'],
185+
tags: ['engineering', 'materials'],
186186
cost: 8,
187187
requires: ['efficient_systems_2'],
188188
effects: [
189189
{
190-
variable: 'systems.colonized.upkeep.food',
190+
variable: 'systems.colonized.upkeep.minerals',
191191
multiplier: 0.9,
192192
},
193193
{
194-
variable: 'systems.upgraded.upkeep.food',
194+
variable: 'systems.upgraded.upkeep.minerals',
195195
multiplier: 0.9,
196196
},
197197
{
198-
variable: 'systems.developed.upkeep.food',
198+
variable: 'systems.developed.upkeep.minerals',
199199
multiplier: 0.9,
200200
},
201201
],
@@ -1104,11 +1104,11 @@ export const TECHNOLOGIES: Record<string, Technology> = {
11041104
// special resources
11051105
generate_sequence('pop_food_consumption', ['society', 'biology'], 'empire.pop.consumption.food',
11061106
{multiplierIncrement: -0.05}, ['demographic']);
1107-
// pop growth is already a multiplier, so it will be 1.05 -> 1.05 * 1.025 = 1.07625 -> 1.05 * 1.025^2 = 1.10390625
1107+
// pop growth is already a multiplier, so it will be 0.05 -> 0.05 * 1.1 = 0.055 -> 0.05 * 1.2 = 0.06
11081108
generate_sequence('pop_growth_colonized', ['society', 'biology'], 'systems.colonized.pop_growth',
1109-
{multiplierIncrement: +0.025}, ['demographic']);
1109+
{multiplierIncrement: +0.1}, ['demographic']);
11101110
generate_sequence('pop_growth_upgraded', ['society', 'biology'], 'systems.upgraded.pop_growth',
1111-
{multiplierIncrement: +0.025}, ['demographic']);
1111+
{multiplierIncrement: +0.1}, ['demographic']);
11121112
generate_sequence('unemployed_pop_cost', ['society', 'state'],
11131113
'empire.pop.consumption.credits.unemployed',
11141114
{

0 commit comments

Comments
 (0)