@@ -9,7 +9,6 @@ import { v4 as uuid } from "uuid";
9
9
import { AddressInfo , RawData , WebSocket , WebSocketServer } from "ws" ;
10
10
import { KGNetSaveFromAnalysts , KGNetSavePersisted , LOCAL_STORAGE_PATH } from "../globals.js" ;
11
11
import { KittenAnalystsMessage , KittenAnalystsMessageId } from "../KittenAnalysts.js" ;
12
- import { cwarn } from "../tools/Log.js" ;
13
12
import { identifyExchange } from "../tools/MessageFormat.js" ;
14
13
15
14
interface RemoteConnection {
@@ -20,6 +19,7 @@ export class KittensGameRemote {
20
19
location : string ;
21
20
port : number ;
22
21
pendingRequests = new Map < string , { resolve : AnyFunction ; reject : AnyFunction } > ( ) ;
22
+ printProtocolMessages : boolean ;
23
23
saveStore : Map < string , KGNetSavePersisted > ;
24
24
sockets = new Set < RemoteConnection > ( ) ;
25
25
wss : WebSocketServer ;
@@ -33,8 +33,13 @@ export class KittensGameRemote {
33
33
34
34
#lastKnownHeadlessSocket: RemoteConnection | null = null ;
35
35
36
- constructor ( saveStore : Map < string , KGNetSavePersisted > , port = 9093 ) {
36
+ constructor (
37
+ saveStore : Map < string , KGNetSavePersisted > ,
38
+ port = 9093 ,
39
+ printProtocolMessages = false ,
40
+ ) {
37
41
this . port = port ;
42
+ this . printProtocolMessages = printProtocolMessages ;
38
43
this . saveStore = saveStore ;
39
44
this . wss = new WebSocketServer ( { port } ) ;
40
45
this . location = `ws://${ ( this . wss . address ( ) as AddressInfo | null ) ?. address ?? "localhost" } :${ this . port } /` ;
@@ -92,7 +97,8 @@ export class KittensGameRemote {
92
97
case "reportFrame" : {
93
98
const payload = message . data as FrameContext ;
94
99
const delta = payload . exit - payload . entry ;
95
- console . info ( `=> Received frame report (${ message . location } ).` , delta ) ;
100
+ if ( this . printProtocolMessages )
101
+ process . stderr . write ( `=> Received frame report (${ message . location } ).\n` ) ;
96
102
97
103
this . ks_iterate_duration . observe (
98
104
{
@@ -123,7 +129,8 @@ export class KittensGameRemote {
123
129
}
124
130
case "reportSavegame" : {
125
131
const payload = message . data as KGNetSaveFromAnalysts ;
126
- console . info ( `=> Received savegame (${ message . location } ).` ) ;
132
+ if ( this . printProtocolMessages )
133
+ process . stderr . write ( `=> Received savegame (${ message . location } ).\n` ) ;
127
134
128
135
const isHeadlessReport = message . location . includes ( "headless.html" ) ;
129
136
if ( isHeadlessReport ) {
@@ -148,29 +155,34 @@ export class KittensGameRemote {
148
155
`${ LOCAL_STORAGE_PATH } /${ payload . telemetry . guid } .json` ,
149
156
JSON . stringify ( savegame ) ,
150
157
) ;
151
- console . debug ( `=> Savegame persisted to disc.` ) ;
158
+ process . stderr . write ( `=> Savegame persisted to disc.\n ` ) ;
152
159
} catch ( error ) {
153
160
console . error ( "!> Error while persisting savegame to disc!" , error ) ;
154
161
}
155
162
156
163
return ;
157
164
}
158
165
default :
159
- console . warn ( `!> Report with type '${ message . type } ' is unexpected! Message ignored.` ) ;
166
+ process . stderr . write (
167
+ `!> Report with type '${ message . type } ' is unexpected! Message ignored.\n` ,
168
+ ) ;
160
169
return ;
161
170
}
162
171
}
163
172
164
173
if ( ! this . pendingRequests . has ( message . responseId ) ) {
165
- console . warn ( `!> Response ID '${ message . responseId } ' is unexpected! Message ignored.` ) ;
174
+ process . stderr . write (
175
+ `!> Response ID '${ message . responseId } ' is unexpected! Message ignored.\n` ,
176
+ ) ;
166
177
return ;
167
178
}
168
179
169
180
const pendingRequest = this . pendingRequests . get ( message . responseId ) ;
170
181
this . pendingRequests . delete ( message . responseId ) ;
171
182
172
183
pendingRequest ?. resolve ( message ) ;
173
- console . debug ( `=> Request ID '${ message . responseId } ' was resolved.` ) ;
184
+ if ( this . printProtocolMessages )
185
+ process . stderr . write ( `=> Request ID '${ message . responseId } ' was resolved.\n` ) ;
174
186
}
175
187
176
188
sendMessage < TMessage extends KittenAnalystsMessageId > (
@@ -198,11 +210,15 @@ export class KittensGameRemote {
198
210
const requestId = uuid ( ) ;
199
211
message . responseId = requestId ;
200
212
201
- console . debug ( `<= ${ identifyExchange ( message ) } ...` ) ;
213
+ if ( this . printProtocolMessages ) process . stderr . write ( `<= ${ identifyExchange ( message ) } ...\n ` ) ;
202
214
203
215
const request = new Promise < KittenAnalystsMessage < TMessage > | null > ( ( resolve , reject ) => {
204
- if ( ! socket . isAlive || socket . ws . readyState === WebSocket . CLOSED ) {
205
- console . warn ( "Send request can't be handled, because socket is dead!" ) ;
216
+ if (
217
+ ! socket . isAlive ||
218
+ socket . ws . readyState === WebSocket . CLOSED ||
219
+ socket . ws . readyState === WebSocket . CLOSING
220
+ ) {
221
+ process . stderr . write ( "Send request can't be handled, because socket is dead!\n" ) ;
206
222
socket . isAlive = false ;
207
223
resolve ( null ) ;
208
224
return ;
@@ -223,13 +239,13 @@ export class KittensGameRemote {
223
239
message : Omit < KittenAnalystsMessage < TMessage > , "client_type" | "location" | "guid" > ,
224
240
) : Promise < KittenAnalystsMessage < TMessage > | null > {
225
241
if ( isNil ( this . #lastKnownHeadlessSocket) ) {
226
- cwarn ( "No headless connection registered. Message is dropped. " ) ;
242
+ process . stderr . write ( "No headless connection registered. Message is dropped!\n " ) ;
227
243
return Promise . resolve ( null ) ;
228
244
}
229
245
230
246
if ( ! this . #lastKnownHeadlessSocket. isAlive ) {
231
- cwarn (
232
- "Trying to send to headless session, but last known headless socket is no longer alive. Request is dropped!" ,
247
+ process . stderr . write (
248
+ "Trying to send to headless session, but last known headless socket is no longer alive. Request is dropped!\n " ,
233
249
) ;
234
250
return Promise . resolve ( null ) ;
235
251
}
0 commit comments