From 40a0849151c63065ecefdedbac47bf376e2176b2 Mon Sep 17 00:00:00 2001 From: lkddi Date: Mon, 27 Apr 2026 13:27:38 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=20=E6=96=B0=E4=BA=BA=20?= =?UTF-8?q?=E5=B0=8F=E7=8F=AD=E9=95=BF=20=E8=87=AA=E5=8A=A8=E5=8F=91?= =?UTF-8?q?=E9=80=81=E6=AC=A2=E8=BF=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Http/Controllers/ChatController.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/app/Http/Controllers/ChatController.php b/app/Http/Controllers/ChatController.php index cf6889f..eeb9442 100644 --- a/app/Http/Controllers/ChatController.php +++ b/app/Http/Controllers/ChatController.php @@ -152,6 +152,30 @@ class ChatController extends Controller // 传给前端,让新人自己的屏幕上也燃放烟花 $newbieEffect = 'fireworks'; + + // AI小班长发送欢迎消息,附带聊天室简单介绍 + $aiWelcomeTemplates = [ + "🫡 呀!新战友【{$user->username}】来了!我是本聊天室的 AI小班长——女兵班长在此!咱们这儿能聊天交友、玩百家乐/赛马/钓鱼/五子棋,还能每日签到领金币、逛商店买道具。有啥不懂的随时问我,班长罩着你!", + "✨ 欢迎新兵【{$user->username}】入伍!我是 AI小班长,你的贴心兵姐姐~ 本聊天室可以群聊私聊、玩各种小游戏(百家乐/赛马/钓鱼/五子棋)、每日签到赚金币。新人有 6666 金币见面礼哦!有问题喊班长!", + "🐻 立正!欢迎【{$user->username}】同志加入!我是这里的 AI小班长,负责带新兵熟悉环境。本聊天室可聊天交友、玩游戏(百家乐/赛马/钓鱼/五子棋/老虎机)、签到领福利、商店买道具。别客气,把这儿当家!", + "💪 热烈欢迎【{$user->username}】!我是 AI小班长,你的战友兼客服兵姐姐。这儿可以聊天、玩游戏(百家乐/赛马/钓鱼)、签到打卡、逛商店,功能多多!有不懂的随时 @我,班长在线答疑!", + ]; + $aiWelcomeContent = $aiWelcomeTemplates[array_rand($aiWelcomeTemplates)]; + + $aiWelcomeMsg = [ + 'id' => $this->chatState->nextMessageId($id), + 'room_id' => $id, + 'from_user' => 'AI小班长', + 'to_user' => $user->username, + 'content' => $aiWelcomeContent, + 'is_secret' => false, + 'font_color' => '#16a34a', + 'action' => '大声宣告', + 'sent_at' => now()->toDateTimeString(), + ]; + $this->chatState->pushMessage($id, $aiWelcomeMsg); + broadcast(new MessageSent($id, $aiWelcomeMsg)); + SaveMessageJob::dispatch($aiWelcomeMsg); } // superlevel 管理员进入:触发全房间烟花 + 系统公告,其他人走通用播报