@@ -4,7 +4,7 @@ import {SystemService} from '../system/system.service';
4
4
import { Empire , EmpireDocument } from '../empire/empire.schema' ;
5
5
import { System , SystemDocument } from '../system/system.schema' ;
6
6
import { calculateVariables , getInitialVariables } from './variables' ;
7
- import { Technology , TechnologyCategory , Variable } from './types' ;
7
+ import { Technology , Variable } from './types' ;
8
8
import { RESOURCE_NAMES , ResourceName } from './resources' ;
9
9
import { AggregateItem , AggregateResult } from './aggregates' ;
10
10
import { TECHNOLOGIES } from './technologies' ;
@@ -16,11 +16,13 @@ import {MemberService} from '../member/member.service';
16
16
import { SYSTEM_UPGRADES } from './system-upgrade' ;
17
17
import { JobService } from '../job/job.service' ;
18
18
import { JobDocument } from '../job/job.schema' ;
19
- import { JobType } from '../job/job-type.enum ' ;
19
+ import { SystemLogicService } from '../system/system-logic.service ' ;
20
20
21
21
@Injectable ( )
22
22
export class GameLogicService {
23
23
constructor (
24
+ private systemLogicService : SystemLogicService ,
25
+ // TODO remove these services and try to have only pure logic in this service
24
26
private memberService : MemberService ,
25
27
private empireService : EmpireService ,
26
28
private systemService : SystemService ,
@@ -54,7 +56,7 @@ export class GameLogicService {
54
56
if ( member ?. empire ?. homeSystem ) {
55
57
homeSystem . type = member . empire . homeSystem ;
56
58
}
57
- this . systemService . generateDistricts ( homeSystem , empire ) ;
59
+ this . systemLogicService . generateDistricts ( homeSystem , empire ) ;
58
60
59
61
// every home system starts with 15 districts
60
62
this . generateDistricts ( homeSystem ) ;
@@ -102,79 +104,21 @@ export class GameLogicService {
102
104
const empires = await this . empireService . findAll ( { game : game . _id } ) ;
103
105
const systems = await this . systemService . findAll ( { game : game . _id } ) ;
104
106
const jobs = await this . jobService . findAll ( { game : game . _id } ) ;
105
-
106
- this . _updateGame ( empires , systems ) ;
107
- await this . updateJobs ( jobs , empires , systems ) ;
107
+ this . _updateGame ( empires , systems , jobs ) ;
108
108
await this . empireService . saveAll ( empires ) ;
109
109
await this . systemService . saveAll ( systems ) ;
110
110
await this . jobService . saveAll ( jobs ) ;
111
111
}
112
112
113
- private _updateGame ( empires : EmpireDocument [ ] , systems : SystemDocument [ ] ) {
113
+ private _updateGame ( empires : EmpireDocument [ ] , systems : SystemDocument [ ] , jobs : JobDocument [ ] ) {
114
114
for ( const empire of empires ) {
115
115
const empireSystems = systems . filter ( system => system . owner ?. equals ( empire . _id ) ) ;
116
+ const empireJobs = jobs . filter ( job => job . empire . equals ( empire . _id ) ) ;
117
+ this . jobService . updateJobs ( empire , empireJobs , empireSystems ) ;
116
118
this . updateEmpire ( empire , empireSystems ) ;
117
119
}
118
120
}
119
121
120
- async updateJobs ( jobs : JobDocument [ ] , empires : EmpireDocument [ ] , systems : SystemDocument [ ] ) {
121
- const systemJobsMap : Record < string , JobDocument [ ] > = { } ;
122
- const progressingTechnologyTags : Record < string , boolean > = { } ;
123
-
124
- for ( const job of jobs ) {
125
- if ( job . progress === job . total ) {
126
- await this . jobService . delete ( job . _id ) ;
127
- continue ;
128
- }
129
-
130
- if ( job . type === JobType . TECHNOLOGY ) {
131
- if ( ! job . technology ) {
132
- continue ;
133
- }
134
- const technology = TECHNOLOGIES [ job . technology ] ;
135
- if ( technology ) {
136
- const primaryTag = this . getPrimaryTag ( technology ) ;
137
- if ( primaryTag && ! progressingTechnologyTags [ primaryTag ] ) {
138
- progressingTechnologyTags [ primaryTag ] = true ;
139
- const empire = empires . find ( e => e . _id . equals ( job . empire ) ) ;
140
- empire && await this . progressJob ( job , empire ) ;
141
- }
142
- }
143
- } else {
144
- if ( ! job . system ) {
145
- continue ;
146
- }
147
- ( systemJobsMap [ job . system . toString ( ) ] ??= [ ] ) . push ( job ) ;
148
- }
149
- }
150
-
151
- for ( const [ systemId , jobsInSystem ] of Object . entries ( systemJobsMap ) ) {
152
- const system = systems . find ( s => s . _id . equals ( systemId ) ) ;
153
- // Maybe do a priority sorting in v4?
154
- const sortedJobs = jobsInSystem . sort ( ( a , b ) => a . createdAt . getTime ( ) - b . createdAt . getTime ( ) ) ;
155
-
156
- for ( const job of sortedJobs ) {
157
- if ( job . type === JobType . BUILDING || job . type === JobType . DISTRICT || job . type === JobType . UPGRADE ) {
158
- const empire = empires . find ( e => e . _id . equals ( job . empire ) ) ;
159
- empire && await this . progressJob ( job , empire , system ) ;
160
- }
161
- }
162
- }
163
- }
164
-
165
- private async progressJob ( job : JobDocument , empire : EmpireDocument , system ?: SystemDocument ) {
166
- job . progress += 1 ;
167
- if ( job . progress >= job . total ) {
168
- await this . jobService . completeJob ( job , empire , system ) ;
169
- } else {
170
- job . markModified ( 'progress' ) ;
171
- }
172
- }
173
-
174
- private getPrimaryTag ( technology : Technology ) : TechnologyCategory {
175
- return technology . tags [ 0 ] ;
176
- }
177
-
178
122
private updateEmpire ( empire : EmpireDocument , systems : SystemDocument [ ] , aggregates ?: Partial < Record < ResourceName , AggregateResult > > ) {
179
123
const variables = getInitialVariables ( ) ;
180
124
calculateVariables ( variables , empire ) ;
0 commit comments