This commit is contained in:
L̷O̷N̷D̷O̷N̷少林 2025-01-21 11:48:55 -05:00 committed by GitHub
parent c8e31bf25b
commit 7d43c00abc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -54,7 +54,7 @@ export default class extends Module {
if (config.reversiEnabled) { if (config.reversiEnabled) {
msg.reply(serifs.reversi.ok); msg.reply(serifs.reversi.ok);
if (msg.includes(['接待'])) { if (msg.includes(['play a game'])) {
msg.friend.updateReversiStrength(0); msg.friend.updateReversiStrength(0);
} }
@ -76,14 +76,14 @@ export default class extends Module {
this.log(`Someone invited me: @${inviter.username}`); this.log(`Someone invited me: @${inviter.username}`);
if (config.reversiEnabled) { if (config.reversiEnabled) {
// 承認 // Approval
const game = await this.ai.api('reversi/match', { const game = await this.ai.api('reversi/match', {
userId: inviter.id userId: inviter.id
}); });
this.onReversiGameStart(game); this.onReversiGameStart(game);
} else { } else {
// todo (リバーシできない旨をメッセージで伝えるなど) // todo (Send a message saying that you can't reverse the game.)
} }
} }
@ -98,12 +98,12 @@ export default class extends Module {
this.log(`enter reversi game room: ${game.id}`); this.log(`enter reversi game room: ${game.id}`);
// ゲームストリームに接続 // Connect to a game stream
const gw = this.ai.connection.connectToChannel('reversiGame', { const gw = this.ai.connection.connectToChannel('reversiGame', {
gameId: game.id gameId: game.id
}); });
// フォーム // Forms
const form = [{ const form = [{
id: 'publish', id: 'publish',
type: 'switch', type: 'switch',
@ -132,10 +132,10 @@ export default class extends Module {
}] }]
}]; }];
//#region バックエンドプロセス開始 //#region Backend process started
const ai = childProcess.fork(_dirname + '/back.js'); const ai = childProcess.fork(_dirname + '/back.js');
// バックエンドプロセスに情報を渡す // Passing information to a backend process
ai.send({ ai.send({
type: '_init_', type: '_init_',
body: { body: {
@ -158,7 +158,7 @@ export default class extends Module {
} }
}); });
// ゲームストリームから情報が流れてきたらそのままバックエンドプロセスに伝える // When information comes in from the game stream, it is passed directly to the backend process.
gw.addListener('*', message => { gw.addListener('*', message => {
ai.send(message); ai.send(message);
@ -174,7 +174,7 @@ export default class extends Module {
}); });
//#endregion //#endregion
// どんな設定内容の対局でも受け入れる // Accepts any game setting
setTimeout(() => { setTimeout(() => {
gw.send('ready', true); gw.send('ready', true);
}, 1000); }, 1000);
@ -184,7 +184,7 @@ export default class extends Module {
private onGameEnded(game: any) { private onGameEnded(game: any) {
const user = game.user1Id == this.ai.account.id ? game.user2 : game.user1; const user = game.user1Id == this.ai.account.id ? game.user2 : game.user1;
//#region 1日に1回だけ親愛度を上げる //#region Increases intimacy once a day
const today = getDate(); const today = getDate();
const friend = new Friend(this.ai, { user: user }); const friend = new Friend(this.ai, { user: user });