|
1 | 1 | import {Injectable} from '@nestjs/common';
|
2 |
| -import {GameService} from '../game/game.service'; |
3 | 2 | import {EmpireService} from '../empire/empire.service';
|
4 | 3 | import {SystemService} from '../system/system.service';
|
5 | 4 | import {Empire, EmpireDocument} from '../empire/empire.schema';
|
6 | 5 | import {System, SystemDocument} from '../system/system.schema';
|
7 |
| -import {calculateVariable, calculateVariables, getInitialVariables} from './variables'; |
| 6 | +import {calculateVariables, getInitialVariables} from './variables'; |
8 | 7 | import {Technology, Variable} from './types';
|
9 | 8 | import {ResourceName} from './resources';
|
10 | 9 | import {DistrictName, DISTRICTS} from './districts';
|
11 | 10 | import {BUILDINGS} from './buildings';
|
12 |
| -import {SYSTEM_UPGRADES, SystemUpgradeName} from './system-upgrade'; |
| 11 | +import {SYSTEM_UPGRADES} from './system-upgrade'; |
13 | 12 | import {AggregateItem, AggregateResult} from './aggregates';
|
14 | 13 | import {TECHNOLOGIES} from './technologies';
|
15 | 14 | import {Types} from 'mongoose';
|
16 | 15 | import {notFound} from '@mean-stream/nestx';
|
| 16 | +import {Game} from '../game/game.schema'; |
| 17 | +import {HOMESYSTEM_BUILDINGS, HOMESYSTEM_DISTRICT_COUNT, HOMESYSTEM_DISTRICTS} from './constants'; |
| 18 | +import {MemberService} from '../member/member.service'; |
17 | 19 |
|
18 | 20 | @Injectable()
|
19 | 21 | export class GameLogicService {
|
20 | 22 | constructor(
|
21 |
| - private gameService: GameService, |
| 23 | + private memberService: MemberService, |
22 | 24 | private empireService: EmpireService,
|
23 | 25 | private systemService: SystemService,
|
24 | 26 | ) {
|
25 | 27 | }
|
26 | 28 |
|
27 |
| - async updateGames(speed: number) { |
28 |
| - const games = await this.gameService.findAll({started: true, speed}); |
29 |
| - const gameIds = games.map(game => game._id); |
30 |
| - const empires = await this.empireService.findAll({game: {$in: gameIds}}); |
31 |
| - const systems = await this.systemService.findAll({game: {$in: gameIds}}); |
32 |
| - for (const game of games) { |
33 |
| - game.$inc('period', 1); |
34 |
| - const gameEmpires = empires.filter(empire => empire.game.equals(game._id)); |
35 |
| - const gameSystems = systems.filter(system => system.game.equals(game._id)); |
36 |
| - this.updateGame(gameEmpires, gameSystems); |
| 29 | + async startGame(game: Game): Promise<void> { |
| 30 | + const members = await this.memberService.findAll({ |
| 31 | + game: game._id, |
| 32 | + empire: {$exists: true}, |
| 33 | + }); |
| 34 | + const empires = await this.empireService.initEmpires(members); |
| 35 | + if (!empires.length) { |
| 36 | + // game was already started |
| 37 | + return; |
| 38 | + } |
| 39 | + |
| 40 | + const systems = await this.systemService.generateMap(game); |
| 41 | + const homeSystems = new Set<string>(); |
| 42 | + |
| 43 | + // select a home system for each empire |
| 44 | + for (const empire of empires) { // NB: cannot be indexed because some members may not have empires (spectators) |
| 45 | + const member = members.find(m => empire.user.equals(m.user)); |
| 46 | + const homeSystem = this.selectHomeSystem(systems, homeSystems); |
| 47 | + |
| 48 | + homeSystem.owner = empire._id; |
| 49 | + homeSystem.population = empire.resources.population; |
| 50 | + homeSystem.upgrade = 'developed'; |
| 51 | + homeSystem.capacity *= SYSTEM_UPGRADES.developed.capacity_multiplier; |
| 52 | + if (member?.empire?.homeSystem) { |
| 53 | + homeSystem.type = member.empire.homeSystem; |
| 54 | + } |
| 55 | + this.systemService.generateDistricts(homeSystem, empire); |
| 56 | + |
| 57 | + // every home system starts with 15 districts |
| 58 | + this.generateDistricts(homeSystem); |
| 59 | + |
| 60 | + // plus 7 buildings, so 22 jobs in total |
| 61 | + homeSystem.buildings = HOMESYSTEM_BUILDINGS; |
| 62 | + |
| 63 | + const totalJobs = Object.values(homeSystem.districts).sum() + homeSystem.buildings.length; |
| 64 | + if (homeSystem.capacity < totalJobs) { |
| 65 | + homeSystem.capacity = totalJobs; |
| 66 | + } |
| 67 | + |
| 68 | + // then 3 pops will be unemployed initially. |
| 69 | + empire.homeSystem = homeSystem._id; |
37 | 70 | }
|
| 71 | + |
38 | 72 | await this.empireService.saveAll(empires);
|
39 | 73 | await this.systemService.saveAll(systems);
|
40 |
| - await this.gameService.saveAll(games); |
41 |
| - for (const game of games) { |
42 |
| - this.gameService.emit('ticked', game); |
| 74 | + } |
| 75 | + |
| 76 | + private selectHomeSystem(systems: SystemDocument[], homeSystems: Set<string>) { |
| 77 | + let homeSystem: SystemDocument; |
| 78 | + do { |
| 79 | + homeSystem = systems.random(); |
| 80 | + } while ( |
| 81 | + homeSystems.has(homeSystem._id.toString()) |
| 82 | + || Object.keys(homeSystem.links).some(link => homeSystems.has(link)) |
| 83 | + ); |
| 84 | + homeSystems.add(homeSystem._id.toString()); |
| 85 | + return homeSystem; |
| 86 | + } |
| 87 | + |
| 88 | + private generateDistricts(homeSystem: SystemDocument) { |
| 89 | + for (const district of HOMESYSTEM_DISTRICTS) { |
| 90 | + homeSystem.districts[district] = HOMESYSTEM_DISTRICT_COUNT; |
| 91 | + if (!homeSystem.districtSlots[district] || homeSystem.districtSlots[district]! < HOMESYSTEM_DISTRICT_COUNT) { |
| 92 | + homeSystem.districtSlots[district] = HOMESYSTEM_DISTRICT_COUNT; |
| 93 | + homeSystem.markModified('districtSlots'); |
| 94 | + } |
43 | 95 | }
|
| 96 | + homeSystem.markModified('districts'); |
| 97 | + } |
| 98 | + |
| 99 | + async updateGame(game: Game) { |
| 100 | + const empires = await this.empireService.findAll({game: game._id}); |
| 101 | + const systems = await this.systemService.findAll({game: game._id}); |
| 102 | + this._updateGame(empires, systems); |
| 103 | + await this.empireService.saveAll(empires); |
| 104 | + await this.systemService.saveAll(systems); |
44 | 105 | }
|
45 | 106 |
|
46 |
| - private updateGame(empires: EmpireDocument[], systems: SystemDocument[]) { |
| 107 | + private _updateGame(empires: EmpireDocument[], systems: SystemDocument[]) { |
47 | 108 | for (const empire of empires) {
|
48 | 109 | const empireSystems = systems.filter(system => system.owner?.equals(empire._id));
|
49 | 110 | this.updateEmpire(empire, empireSystems);
|
|
0 commit comments