-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbackground.js
More file actions
287 lines (244 loc) · 8.34 KB
/
background.js
File metadata and controls
287 lines (244 loc) · 8.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
let creatingOffscreen = null;
let stockfishWorker = null;
let currentResolve = null;
let currentAudio = null;
let activeMusicTabId = null;
let latestEval = 0;
let latestMate = null;
let currentActiveColor = 'w';
const isChrome = typeof chrome.offscreen !== 'undefined';
async function setupOffscreen() {
if (!isChrome) return;
if (creatingOffscreen) {
await creatingOffscreen;
return;
}
if (chrome.runtime.getContexts) {
const contexts = await chrome.runtime.getContexts({
contextTypes: ['OFFSCREEN_DOCUMENT']
});
if (contexts.length > 0) return;
}
creatingOffscreen = chrome.offscreen.createDocument({
url: 'offscreen.html',
reasons: ['WORKERS'],
justification: 'Run Stockfish Web Worker locally'
}).catch((err) => {
if (!err.message.includes('Only a single offscreen')) {
console.error('[ch:background] Failed to create offscreen document:', err);
}
}).finally(() => {
creatingOffscreen = null;
});
await creatingOffscreen;
}
function getStockfishWorker() {
if (stockfishWorker) return stockfishWorker;
stockfishWorker = new Worker('stockfish/stockfish.js');
stockfishWorker.onmessage = (event) => {
const line = event.data;
if (line.startsWith('info') && line.includes('score')) {
if (line.includes('score cp ')) {
const match = line.match(/score cp (-?\d+)/);
if (match) {
latestEval = parseInt(match[1]) / 100;
latestMate = null;
}
} else if (line.startsWith('info') && line.includes('score mate ')) {
const match = line.match(/score mate (-?\d+)/);
if (match) {
latestMate = parseInt(match[1]);
latestEval = 0;
}
}
}
if (line.startsWith('bestmove')) {
const parts = line.split(' ');
const bestMove = parts[1];
if (currentResolve) {
let finalEval = latestEval;
let finalMate = latestMate;
if (currentActiveColor === 'b') {
finalEval = -latestEval;
if (latestMate !== null) {
finalMate = -latestMate;
}
}
currentResolve({
best: bestMove,
eval: finalEval,
mate: finalMate
});
currentResolve = null;
}
}
};
stockfishWorker.postMessage('uci');
stockfishWorker.postMessage('isready');
stockfishWorker.postMessage('ucinewgame');
return stockfishWorker;
}
async function sendDailyPing() {
try {
let storage = await chrome.storage.local.get(['anonymousClientId', 'lastPingDate', 'telemetryEnabled']);
if (storage.telemetryEnabled === false) {
return;
}
let clientId = storage.anonymousClientId;
let lastPingDate = storage.lastPingDate;
if (!clientId) {
clientId = 'usr_' + Math.random().toString(36).substring(2, 15) + Math.random().toString(36).substring(2, 15);
await chrome.storage.local.set({ anonymousClientId: clientId });
}
const today = new Date().toDateString();
if (lastPingDate === today) {
return;
}
const serverUrl = 'https://script.google.com/macros/s/AKfycbwdu8LZ6sgs49xgYL3noWeRLFkFjBKf9kkQXgJzvbp2PCyU1n8CPe3OxI88pzzpmylu/exec';
const response = await fetch(serverUrl, {
method: 'POST',
headers: { 'Content-Type': 'text/plain' },
body: JSON.stringify({ id: clientId })
});
if (response.ok) {
await chrome.storage.local.set({ lastPingDate: today });
}
} catch (err) {
}
}
function handleVisibilityChange(visible) {
if (currentAudio && currentAudio.src.includes('sf.mp3')) {
if (visible) {
currentAudio.play().catch(() => {});
} else {
currentAudio.pause();
}
}
}
function stopMusic() {
if (currentAudio) {
currentAudio.pause();
currentAudio.currentTime = 0;
currentAudio = null;
}
}
chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
if (message.target !== 'background') return;
if (message.type === 'SET_VISIBILITY') {
if (isChrome) {
setupOffscreen().then(() => {
chrome.runtime.sendMessage({
target: 'offscreen',
type: 'SET_VISIBILITY',
visible: message.visible
});
});
} else {
handleVisibilityChange(message.visible);
}
return;
}
if (message.type === 'STOP_SOUND') {
if (isChrome) {
setupOffscreen().then(() => {
chrome.runtime.sendMessage({
target: 'offscreen',
type: 'STOP_SOUND'
}).catch(() => {});
});
} else {
stopMusic();
}
return;
}
if (message.type === 'PLAY_SOUND') {
if (message.sound === 'sf.mp3') {
activeMusicTabId = sender.tab?.id;
}
if (isChrome) {
setupOffscreen().then(() => {
chrome.runtime.sendMessage({
target: 'offscreen',
type: 'PLAY_SOUND',
sound: message.sound,
tabId: sender.tab?.id
});
});
} else {
try {
if (currentAudio && !currentAudio.paused && !currentAudio.ended) {
return;
}
currentAudio = new Audio(chrome.runtime.getURL(`assets/${message.sound}`));
currentAudio.volume = 0.55;
currentAudio.play().catch(() => {});
} catch (_) {}
}
return;
}
if (message.type === 'ANALYZE') {
const tabId = sender.tab?.id;
if (!tabId) return;
if (isChrome) {
setupOffscreen().then(() => {
chrome.runtime.sendMessage({
target: 'offscreen',
type: 'ANALYZE',
fen: message.fen,
depth: message.depth,
requestId: message.requestId,
tabId: tabId
});
});
} else {
const worker = getStockfishWorker();
latestEval = 0;
latestMate = null;
currentActiveColor = message.fen.split(' ')[1] || 'w';
if (currentResolve) {
currentResolve({ eval: 0, mate: null, best: null });
}
const analysisPromise = new Promise((resolve) => {
currentResolve = resolve;
});
worker.postMessage(`position fen ${message.fen}`);
worker.postMessage(`go depth ${message.depth}`);
analysisPromise.then((result) => {
chrome.tabs.sendMessage(tabId, {
type: 'ANALYSIS_RESULT',
requestId: message.requestId,
data: result
});
});
}
return true;
}
if (message.type === 'ANALYSIS_RESULT') {
chrome.tabs.sendMessage(message.tabId, {
type: 'ANALYSIS_RESULT',
requestId: message.requestId,
data: message.data
});
}
});
chrome.tabs.onRemoved.addListener((tabId) => {
if (activeMusicTabId === tabId) {
activeMusicTabId = null;
if (isChrome) {
chrome.runtime.sendMessage({
target: 'offscreen',
type: 'STOP_SOUND'
}).catch(() => {});
} else {
stopMusic();
}
}
});
if (!isChrome) {
setInterval(() => {
try {
chrome.runtime.getPlatformInfo(() => {});
} catch (e) {}
}, 20000);
}
sendDailyPing();