-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.rb
152 lines (135 loc) · 5.08 KB
/
main.rb
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
# frozen_string_literal: true
require 'bundler/setup'
require 'discordrb'
require 'config'
require 'tempfile'
require 'logger'
require_relative './core/voicevox'
# Config
config = Config.load_and_set_settings('./config.yml', './command.yml')
# init
Discordrb::LOGGER.streams << File.open('bot.log', 'a')
bot = Discordrb::Commands::CommandBot.new(
token: config.bot.token,
client_id: config.bot.client_id,
prefix: config.bot.prefix,
ignore_bots: true
)
# logging
logger = Logger.new('bot.log', 'daily')
logger.datetime_format = '%Y-%m-%d %H:%M:%S'
# Bot Init
bot.ready do
logger.info('Main') { 'Bot is Ready.' }
bot.game = config.bot.status
end
@text_channel = []
@voicevox = VoiceVox.new(config, logger)
# 召喚コマンド
bot.command(:summon,
{ aliases: [:s], description: config.command.summon.desc, usage: config.command.summon.usage }) do |event|
# コマンドを実行したユーザーがVCに接続しているか確認
if event.user.voice_channel
# BotがVCに参加している場合は弾く
if !event.voice
bot.voice_connect(event.user.voice_channel)
@text_channel << event.channel.id
logger.info('Main') { "Joined VC: #{event.server.name}(#{event.user.voice_channel.name})" }
logger.debug('Main') { "Monit TC: #{event.channel.name}(#{event.channel.id})" }
event.respond('Hey!')
else
event.respond('すでにボイスチャットに参加しています。')
end
else
event.respond('ボイスチャットに参加してから使用してください。')
end
end
# 再生中の音声を止める
bot.command(:stop,
{ aliases: [:skip], description: config.command.stop.desc, usage: config.command.stop.usage }) do |event|
if event.voice
event.voice.stop_playing if event.voice.playing?
nil
else
event.respond('ボイスチャットに参加していません。')
end
end
# 切断コマンド
bot.command(:bye, { aliases: [:b], description: config.command.bye.desc, usage: config.command.bye.usage }) do |event|
if event.voice
@text_channel.delete(event.channel.id)
event.voice.destroy
logger.info('Main') { "Disconnect VC: #{event.server.name}(#{event.user.voice_channel.name})" }
logger.debug('Main') { "Unmonit TC: #{event.channel.name}(#{event.channel.id})" }
event.respond('Bye!')
else
event.respond('ボイスチャットに参加していません。')
end
end
# 生存確認コマンド
bot.command(:ping, { description: config.command.ping.desc, usage: config.command.ping.usage }) do |event|
event.respond('Pong!')
end
# Debug用 evalコマンド
bot.command(:eval, help_available: false) do |event, *code|
break unless event.user.id == config.bot.owner
begin
eval code.join(' ')
rescue StandardError
event.respond('An error occurred ;(')
event.respond($!)
end
end
# VCに再接続するコマンド
bot.command(:reconnect,
{ aliases: [:re], description: config.command.reconnect.desc,
usage: config.command.reconnect.usage }) do |event|
if event.voice
channel = event.voice.channel
event.voice.destroy
bot.voice_connect(channel)
event.respond('再接続しました。')
else
event.respond('ボイスチャットに参加していません。')
end
end
# VCからユーザーが0人になった場合、自動退出
bot.voice_state_update do |event|
# 退出時はevent.channelがnilになる
# BotがVCに参加してない場合、bot.voice(event.server)はnil
if !event.channel && bot.voice(event.server) && !bot.voice(event.server).channel.users.map(&:current_bot?).include?(false)
tc = (event.server.text_channels.map(&:id) & @text_channel)[0]
@text_channel.delete(tc)
logger.info('Main') { "Disconnect VC: #{event.server.name}(#{event.old_channel.name})" }
logger.debug('Main') { "Unmonit TC: #{bot.channel(tc).name}(#{tc})" }
bot.voice_destroy(event.server)
bot.send_message(tc, 'See you!')
end
end
# メッセージ受信用イベント(@text_channelに入っているテキストチャンネルからのみ受信)
bot.message(start_with: not!(config.bot.prefix), in: @text_channel) do |event|
if event.voice
next if event.message.content == ''
logger.info('Main') do
"SV: #{event.server.name}(#{event.channel.name}) USER: #{event.author.name} MSG: #{event.message.content}"
end
message = event.message.content
message = message.gsub(/<@([0-9]{18})>/) { "@#{bot.member(event.server, Regexp.last_match(1)).display_name}" }
message = message.gsub(URI::DEFAULT_PARSER.make_regexp(%w[http https]), 'URL省略')
message = "#{message[0, config.voicevox.max - 1]} 以下略" if message.size >= config.voicevox.max
say(event.voice, message)
else
# Botがすでにチャンネルに参加していなかった場合、受信除外する
@text_channel.delete(event.channel.id)
logger.debug('Main') { "Unmonit TC: #{event.channel.name}(#{event.channel.id})" }
nil
end
end
def say(voice_chat, message)
Tempfile.create do |tempfile|
sound = @voicevox.speak(message)
tempfile.write(sound)
voice_chat.play_file(tempfile.path)
end
end
bot.run