Committu
This commit is contained in:
54
src/main/java/.idea/workspace.xml
generated
Normal file
54
src/main/java/.idea/workspace.xml
generated
Normal file
@@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="AutoImportSettings">
|
||||
<option name="autoReloadType" value="SELECTIVE" />
|
||||
</component>
|
||||
<component name="ChangeListManager">
|
||||
<list default="true" id="92be5a76-72cc-4791-b8e0-146745624e77" name="Default Changelist" comment="" />
|
||||
<option name="SHOW_DIALOG" value="false" />
|
||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
||||
<option name="LAST_RESOLUTION" value="IGNORE" />
|
||||
</component>
|
||||
<component name="ExternalProjectsData">
|
||||
<projectState path="$PROJECT_DIR$">
|
||||
<ProjectState />
|
||||
</projectState>
|
||||
</component>
|
||||
<component name="Git.Settings">
|
||||
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$/../../.." />
|
||||
</component>
|
||||
<component name="ProjectId" id="1ptZSIDZd86tmu17YY146ADRTUU" />
|
||||
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
|
||||
<component name="ProjectViewState">
|
||||
<option name="hideEmptyMiddlePackages" value="true" />
|
||||
<option name="showLibraryContents" value="true" />
|
||||
</component>
|
||||
<component name="PropertiesComponent">
|
||||
<property name="RunOnceActivity.OpenProjectViewOnStart" value="true" />
|
||||
<property name="RunOnceActivity.ShowReadmeOnStart" value="true" />
|
||||
<property name="settings.editor.selected.configurable" value="Errors" />
|
||||
</component>
|
||||
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
|
||||
<component name="TaskManager">
|
||||
<task active="true" id="Default" summary="Default task">
|
||||
<changelist id="92be5a76-72cc-4791-b8e0-146745624e77" name="Default Changelist" comment="" />
|
||||
<created>1616004344851</created>
|
||||
<option name="number" value="Default" />
|
||||
<option name="presentableId" value="Default" />
|
||||
<updated>1616004344851</updated>
|
||||
</task>
|
||||
<servers />
|
||||
</component>
|
||||
<component name="Vcs.Log.Tabs.Properties">
|
||||
<option name="TAB_STATES">
|
||||
<map>
|
||||
<entry key="MAIN">
|
||||
<value>
|
||||
<State />
|
||||
</value>
|
||||
</entry>
|
||||
</map>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
||||
55
src/main/java/fr/Skydust/JdrBot/JdrBot.java
Executable file
55
src/main/java/fr/Skydust/JdrBot/JdrBot.java
Executable file
@@ -0,0 +1,55 @@
|
||||
package fr.Skydust.JdrBot;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.security.auth.login.LoginException;
|
||||
|
||||
import fr.Skydust.JdrBot.cmds.*;
|
||||
import fr.Skydust.JdrBot.cmds.playmusic.*;
|
||||
import fr.Skydust.JdrBot.stock.Command;
|
||||
import net.dv8tion.jda.api.JDA;
|
||||
import net.dv8tion.jda.api.JDABuilder;
|
||||
import net.dv8tion.jda.api.entities.Activity;
|
||||
|
||||
public class JdrBot {
|
||||
public static String Version = "2.4";
|
||||
|
||||
static JDA jda;
|
||||
public static LocalDateTime basedate;
|
||||
public static List<Command> commandList;
|
||||
|
||||
public static String startcmdchar = "!|:";
|
||||
|
||||
public static void main(String args[]) {
|
||||
try {
|
||||
basedate = LocalDateTime.now();
|
||||
jda = JDABuilder.createDefault("MTY5OTMzMzgxMDMzOTE4NDY0.DerlJg.m7BdNv_OMHlYa-f4T3O0jJ9LldM").build();
|
||||
jda.awaitReady();
|
||||
jda.getPresence().setActivity(Activity.playing("un jeu de rôle"));
|
||||
|
||||
commandList = new ArrayList<Command>();
|
||||
|
||||
registerCommand(new Aide());
|
||||
registerCommand(new Etat());
|
||||
registerCommand(new Roll());
|
||||
//registerCommand(new Record());
|
||||
//registerCommand(new StopRecord());
|
||||
registerCommand(new Emote());
|
||||
registerCommand(new PlayMusic());
|
||||
registerCommand(new StopMusic());
|
||||
registerCommand(new FLoad());
|
||||
registerCommand(new FLoadLoop());
|
||||
|
||||
jda.addEventListener(new JdrBotListener());
|
||||
} catch (LoginException e) {
|
||||
System.out.println("The login token is wrong");
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
public static void registerCommand(Command cmd) {
|
||||
commandList.add(cmd);
|
||||
}
|
||||
}
|
||||
60
src/main/java/fr/Skydust/JdrBot/JdrBotListener.java
Executable file
60
src/main/java/fr/Skydust/JdrBot/JdrBotListener.java
Executable file
@@ -0,0 +1,60 @@
|
||||
package fr.Skydust.JdrBot;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
import fr.Skydust.JdrBot.cmds.LastTimeOnline;
|
||||
import fr.Skydust.JdrBot.cmds.playmusic.PlayMusic;
|
||||
import fr.Skydust.JdrBot.jukebox.JukeboxGUISystem;
|
||||
import fr.Skydust.JdrBot.stock.Command;
|
||||
import net.dv8tion.jda.api.events.guild.voice.GuildVoiceLeaveEvent;
|
||||
import net.dv8tion.jda.api.events.guild.voice.GuildVoiceMoveEvent;
|
||||
import net.dv8tion.jda.api.events.message.guild.GuildMessageReceivedEvent;
|
||||
import net.dv8tion.jda.api.events.message.react.MessageReactionAddEvent;
|
||||
import net.dv8tion.jda.api.events.user.update.UserUpdateOnlineStatusEvent;
|
||||
import net.dv8tion.jda.api.hooks.ListenerAdapter;
|
||||
|
||||
public class JdrBotListener extends ListenerAdapter {
|
||||
|
||||
Random r = new Random();
|
||||
|
||||
@Override
|
||||
public void onGuildMessageReceived(GuildMessageReceivedEvent e) {
|
||||
System.out.println(e.getMessage().getAuthor().getName() + ": " + e.getMessage().getContentRaw());
|
||||
|
||||
// IF it doesn't start with the startcmdchar, ignore for optimization
|
||||
if (!e.getMessage().getContentRaw().matches("^("+ JdrBot.startcmdchar+").*$") || e.getMessage().getAuthor().isBot())
|
||||
return;
|
||||
|
||||
// Go through all cmds and call the one corresponding
|
||||
for (Command cmd : JdrBot.commandList) {
|
||||
if (isACommand(e.getMessage().getContentRaw(), cmd.cmdName)) {
|
||||
cmd.call(e);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (isACommand(e.getMessage().getContentRaw(), "yay"))
|
||||
{
|
||||
e.getChannel().sendMessage("Bien joue! Tu as su surpasse toutes les epreuves pour en arriver la! Je suis fier de toi!").queue();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onUserUpdateOnlineStatus(UserUpdateOnlineStatusEvent e) {
|
||||
LastTimeOnline.onUserUpdateOnlineStatus(e);
|
||||
}
|
||||
@Override
|
||||
public void onGuildVoiceMove(GuildVoiceMoveEvent e) {
|
||||
PlayMusic.onGuildVoiceMove(e);
|
||||
}
|
||||
@Override
|
||||
public void onGuildVoiceLeave(GuildVoiceLeaveEvent e) {
|
||||
PlayMusic.onGuildVoiceLeave(e);
|
||||
}
|
||||
@Override
|
||||
public void onMessageReactionAdd(MessageReactionAddEvent e) { JukeboxGUISystem.onMessageReactionAdd(e); }
|
||||
|
||||
public boolean isACommand(String message, String cmd) {
|
||||
return message.matches("^("+ JdrBot.startcmdchar+")("+cmd+").*$");
|
||||
}
|
||||
}
|
||||
35
src/main/java/fr/Skydust/JdrBot/audio/GuildMusicManager.java
Executable file
35
src/main/java/fr/Skydust/JdrBot/audio/GuildMusicManager.java
Executable file
@@ -0,0 +1,35 @@
|
||||
package fr.Skydust.JdrBot.audio;
|
||||
|
||||
import com.sedmelluq.discord.lavaplayer.player.AudioPlayer;
|
||||
import com.sedmelluq.discord.lavaplayer.player.AudioPlayerManager;
|
||||
|
||||
import fr.Skydust.JdrBot.audio.handler.JdrBotASH;
|
||||
import net.dv8tion.jda.api.managers.AudioManager;
|
||||
|
||||
public class GuildMusicManager {
|
||||
/**
|
||||
* Audio player for the guild.
|
||||
*/
|
||||
public final AudioPlayer player;
|
||||
/**
|
||||
* Track scheduler for the player.
|
||||
*/
|
||||
public final TrackScheduler scheduler;
|
||||
|
||||
/**
|
||||
* Creates a player and a track scheduler.
|
||||
* @param manager Audio player manager to use for creating the player.
|
||||
*/
|
||||
public GuildMusicManager(AudioPlayerManager manager, AudioManager am) {
|
||||
player = manager.createPlayer();
|
||||
scheduler = new TrackScheduler(player, am);
|
||||
player.addListener(scheduler);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Wrapper around AudioPlayer to use it as an AudioSendHandler.
|
||||
*/
|
||||
public JdrBotASH getSendHandler() {
|
||||
return new JdrBotASH(player);
|
||||
}
|
||||
}
|
||||
42
src/main/java/fr/Skydust/JdrBot/audio/TrackScheduler.java
Executable file
42
src/main/java/fr/Skydust/JdrBot/audio/TrackScheduler.java
Executable file
@@ -0,0 +1,42 @@
|
||||
package fr.Skydust.JdrBot.audio;
|
||||
|
||||
import com.sedmelluq.discord.lavaplayer.player.AudioPlayer;
|
||||
import com.sedmelluq.discord.lavaplayer.player.event.AudioEventAdapter;
|
||||
import com.sedmelluq.discord.lavaplayer.track.AudioTrack;
|
||||
import com.sedmelluq.discord.lavaplayer.track.AudioTrackEndReason;
|
||||
|
||||
import net.dv8tion.jda.api.managers.AudioManager;
|
||||
|
||||
public class TrackScheduler extends AudioEventAdapter {
|
||||
private final AudioPlayer player;
|
||||
private boolean loop;
|
||||
private AudioManager am;
|
||||
|
||||
public TrackScheduler(AudioPlayer player, AudioManager am) {
|
||||
this.player = player;
|
||||
loop = true;
|
||||
this.am = am;
|
||||
}
|
||||
|
||||
public void play(AudioTrack track, boolean loop) {
|
||||
player.startTrack(track, false);
|
||||
this.loop = loop;
|
||||
}
|
||||
|
||||
public void stop() {
|
||||
player.stopTrack();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onTrackEnd(AudioPlayer player, AudioTrack track, AudioTrackEndReason endReason) {
|
||||
if (endReason.mayStartNext) {
|
||||
if(loop) {
|
||||
player.startTrack(track.makeClone(), false);
|
||||
System.out.println("Launching track:"+track.getInfo().title);
|
||||
} else {
|
||||
stop();
|
||||
//am.closeAudioConnection();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
36
src/main/java/fr/Skydust/JdrBot/audio/handler/JdrBotARH.java
Executable file
36
src/main/java/fr/Skydust/JdrBot/audio/handler/JdrBotARH.java
Executable file
@@ -0,0 +1,36 @@
|
||||
package fr.Skydust.JdrBot.audio.handler;
|
||||
|
||||
import fr.Skydust.JdrBot.cmds.record.Record;
|
||||
import net.dv8tion.jda.api.audio.AudioReceiveHandler;
|
||||
import net.dv8tion.jda.api.audio.CombinedAudio;
|
||||
import net.dv8tion.jda.api.audio.UserAudio;
|
||||
|
||||
public class JdrBotARH implements AudioReceiveHandler {
|
||||
String guild;
|
||||
public JdrBotARH(String guild) {
|
||||
this.guild = guild;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canReceiveCombined() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canReceiveUser() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void handleCombinedAudio(CombinedAudio arg0) {
|
||||
if(Record.rbs.get(guild) != null) {
|
||||
Record.rbs.get(guild).addBytes(arg0.getAudioData(1.0));
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void handleUserAudio(UserAudio arg0) {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
35
src/main/java/fr/Skydust/JdrBot/audio/handler/JdrBotASH.java
Executable file
35
src/main/java/fr/Skydust/JdrBot/audio/handler/JdrBotASH.java
Executable file
@@ -0,0 +1,35 @@
|
||||
package fr.Skydust.JdrBot.audio.handler;
|
||||
|
||||
import com.sedmelluq.discord.lavaplayer.player.AudioPlayer;
|
||||
import com.sedmelluq.discord.lavaplayer.track.playback.AudioFrame;
|
||||
|
||||
import net.dv8tion.jda.api.audio.AudioSendHandler;
|
||||
|
||||
import java.nio.ByteBuffer;
|
||||
|
||||
public class JdrBotASH implements AudioSendHandler {
|
||||
|
||||
private final AudioPlayer audioPlayer;
|
||||
private AudioFrame lastFrame;
|
||||
|
||||
public JdrBotASH(AudioPlayer audioPlayer) {
|
||||
this.audioPlayer = audioPlayer;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canProvide() {
|
||||
lastFrame = audioPlayer.provide();
|
||||
return lastFrame != null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ByteBuffer provide20MsAudio() {
|
||||
return ByteBuffer.wrap(lastFrame.getData());
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isOpus() {
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
36
src/main/java/fr/Skydust/JdrBot/cmds/Aide.java
Executable file
36
src/main/java/fr/Skydust/JdrBot/cmds/Aide.java
Executable file
@@ -0,0 +1,36 @@
|
||||
package fr.Skydust.JdrBot.cmds;
|
||||
|
||||
import fr.Skydust.JdrBot.JdrBot;
|
||||
import fr.Skydust.JdrBot.stock.Command;
|
||||
import net.dv8tion.jda.api.EmbedBuilder;
|
||||
import net.dv8tion.jda.api.MessageBuilder;
|
||||
import net.dv8tion.jda.api.events.message.guild.GuildMessageReceivedEvent;
|
||||
|
||||
import java.awt.*;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.format.DateTimeFormatter;
|
||||
|
||||
public class Aide extends Command {
|
||||
public Aide() {
|
||||
SetName("aide");
|
||||
SetDesc("Pour avoir de l'aide !");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void call(GuildMessageReceivedEvent e) {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
|
||||
for (int i = 0; i< JdrBot.commandList.size(); i++)
|
||||
{
|
||||
Command cmd = JdrBot.commandList.get(i);
|
||||
sb.append("`"+cmd.cmdName+"` - *"+cmd.cmdDesc+"*"+ ((i != JdrBot.commandList.size()-1) ? "\n" : ""));
|
||||
}
|
||||
|
||||
e.getChannel().sendMessage(new MessageBuilder().setEmbed(new EmbedBuilder()
|
||||
.setDescription(sb.toString())
|
||||
.setTitle("Aide", null)
|
||||
.setFooter("Fait le " + LocalDateTime.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy 'a' HH:mm:ss")), e.getJDA().getSelfUser().getAvatarUrl())
|
||||
.setColor(Color.red)
|
||||
.build()).build()).queue();
|
||||
}
|
||||
}
|
||||
60
src/main/java/fr/Skydust/JdrBot/cmds/Emote.java
Executable file
60
src/main/java/fr/Skydust/JdrBot/cmds/Emote.java
Executable file
@@ -0,0 +1,60 @@
|
||||
package fr.Skydust.JdrBot.cmds;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
import fr.Skydust.JdrBot.stock.Command;
|
||||
import net.dv8tion.jda.api.events.message.guild.GuildMessageReceivedEvent;
|
||||
|
||||
public class Emote extends Command {
|
||||
public Emote() {
|
||||
SetName("emote");
|
||||
SetDesc("Donne les informations techniques d'une emote");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void call(GuildMessageReceivedEvent e) {
|
||||
String[] args = Arrays.copyOfRange(e.getMessage().getContentRaw().split(" "), 1, e.getMessage().getContentRaw().split(" ").length);
|
||||
|
||||
String str = (String)args[0];
|
||||
if(str.matches("<:.*:\\d+>"))
|
||||
{
|
||||
String id = str.replaceAll("<:.*:(\\d+)>", "$1");
|
||||
net.dv8tion.jda.api.entities.Emote emote = e.getJDA().getEmoteById(id);
|
||||
if(emote==null)
|
||||
{
|
||||
e.getChannel().sendMessage("Unknown emote:\n"
|
||||
+"ID: **"+id+"**\n"
|
||||
+"Guild: Unknown\n"
|
||||
+"URL: https://discordcdn.com/emojis/"+id+".png").queue();
|
||||
return;
|
||||
}
|
||||
e.getChannel().sendMessage("Emote **"+emote.getName()+"**:\n"+"ID: **"+emote.getId()+"**\n"+"Guild: "+(emote.getGuild()==null ? "Unknown" : "**"+emote.getGuild().getName()+"**")+"\n"+"URL: "+emote.getImageUrl());
|
||||
return;
|
||||
}
|
||||
if(str.codePoints().count()>10)
|
||||
{
|
||||
e.getChannel().sendMessage("Invalid emote, or input is too long").queue();;
|
||||
return;
|
||||
}
|
||||
StringBuilder builder = new StringBuilder("Emoji/Character info:");
|
||||
str.codePoints().forEachOrdered(code -> {
|
||||
char[] chars = Character.toChars(code);
|
||||
String hex = Integer.toHexString(code).toUpperCase();
|
||||
while(hex.length()<4)
|
||||
hex = "0"+hex;
|
||||
builder.append("\n`\\u").append(hex).append("` ");
|
||||
if(chars.length>1)
|
||||
{
|
||||
String hex0 = Integer.toHexString(chars[0]).toUpperCase();
|
||||
String hex1 = Integer.toHexString(chars[1]).toUpperCase();
|
||||
while(hex0.length()<4)
|
||||
hex0 = "0"+hex0;
|
||||
while(hex1.length()<4)
|
||||
hex1 = "0"+hex1;
|
||||
builder.append("[`\\u").append(hex0).append("\\u").append(hex1).append("`] ");
|
||||
}
|
||||
builder.append(String.valueOf(chars)).append(" _").append(Character.getName(code)).append("_");
|
||||
});
|
||||
e.getChannel().sendMessage(builder.toString()).queue();;
|
||||
}
|
||||
}
|
||||
69
src/main/java/fr/Skydust/JdrBot/cmds/Etat.java
Executable file
69
src/main/java/fr/Skydust/JdrBot/cmds/Etat.java
Executable file
@@ -0,0 +1,69 @@
|
||||
package fr.Skydust.JdrBot.cmds;
|
||||
|
||||
import java.awt.Color;
|
||||
import java.lang.management.ManagementFactory;
|
||||
import java.text.DecimalFormat;
|
||||
import java.time.Duration;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.format.DateTimeFormatter;
|
||||
|
||||
import com.sedmelluq.discord.lavaplayer.tools.PlayerLibrary;
|
||||
import fr.Skydust.JdrBot.JdrBot;
|
||||
import fr.Skydust.JdrBot.stock.Command;
|
||||
import fr.Skydust.JdrBot.utils.Utils;
|
||||
import net.dv8tion.jda.api.EmbedBuilder;
|
||||
import net.dv8tion.jda.api.JDAInfo;
|
||||
import net.dv8tion.jda.api.MessageBuilder;
|
||||
import net.dv8tion.jda.api.events.message.guild.GuildMessageReceivedEvent;
|
||||
|
||||
public class Etat extends Command {
|
||||
public Etat() {
|
||||
SetName("status");
|
||||
SetDesc("Donne le status du bot");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void call(GuildMessageReceivedEvent e) {
|
||||
|
||||
//StringBuilder sb = new StringBuilder();
|
||||
//SystemInfo si = new SystemInfo();
|
||||
//HardwareAbstractionLayer hal = si.getHardware();
|
||||
Runtime rt = Runtime.getRuntime();
|
||||
DecimalFormat df = new DecimalFormat("#.##");
|
||||
/*sb.append("------------------------------------\n");
|
||||
sb.append("**CPU** (Current/Average): "+ + "\n**Threads**: "++ "\n");
|
||||
sb.append("**Memory** (Used/Total):"
|
||||
+ "\n Principal: "+(df.format((hal.getMemory().getTotal()-hal.getMemory().getAvailable())/1024/1024))+"Mb/"+df.format(hal.getMemory().getTotal()/1024/1024)+"Mb"
|
||||
+ "\n JVM: "+((rt.totalMemory()-rt.freeMemory())/1024/1024)+"Mb/"+(rt.totalMemory()/1024/1024)+"Mb"
|
||||
+ "\n Swap: "+df.format(hal.getMemory().getSwapUsed()/1024/1024)+"Mb/"+df.format(hal.getMemory().getSwapTotal()/1024/1024)+"Mb\n"
|
||||
+ "\n");
|
||||
sb.append("**Servers**: "+e.getJDA().getGuilds().size()+"\n");
|
||||
sb.append("**Servers w/ Music Started**: "+PlayMusic.musicManagers.size()+"\n");
|
||||
sb.append("**Servers w/ Recording Started**: "+Record.rbs.size()+"\n");*/
|
||||
LocalDateTime currentDate = LocalDateTime.now();
|
||||
Duration difference = Duration.between(JdrBot.basedate, currentDate);
|
||||
//sb.append("**Uptime**: "+Utils.formatDuration(difference));
|
||||
|
||||
|
||||
e.getChannel().sendMessage(new MessageBuilder().setEmbed(new EmbedBuilder()
|
||||
.setAuthor("Etat de "+ e.getGuild().getSelfMember().getEffectiveName())
|
||||
.addBlankField(false)
|
||||
//.addField("CPU","-----", false)
|
||||
//.addField("Load (Current/Average)",df.format(hal.getProcessor().getSystemCpuLoad()*100)+"%/"+df.format(hal.getProcessor().getSystemLoadAverage()*100)+"%",false)
|
||||
//.addField("CPU Temperature", String.format("%.1f°C", hal.getSensors().getCpuTemperature()), true)
|
||||
//.addField("Fan Speed", Arrays.toString(hal.getSensors().getFanSpeeds()), true)
|
||||
.addField("Threads", ManagementFactory.getThreadMXBean().getThreadCount()+"", true)
|
||||
.addBlankField(false)
|
||||
.addField("Memory (Used/Total)", "-----",false)
|
||||
//.addField("Principal",(df.format((hal.getMemory().getTotal()-hal.getMemory().getAvailable())/1024/1024))+"Mb/"+df.format(hal.getMemory().getTotal()/1024/1024)+"Mb", true)
|
||||
.addField("JVM",((rt.totalMemory()-rt.freeMemory())/1024/1024)+"Mb/"+(rt.totalMemory()/1024/1024)+"Mb", true)
|
||||
//.addField("Swap",df.format(hal.getMemory().getSwapUsed()/1024/1024)+"Mb/"+df.format(hal.getMemory().getSwapTotal()/1024/1024)+"Mb", true)
|
||||
.addBlankField(false)
|
||||
.addField("Servers",e.getJDA().getGuilds().size()+"",true)
|
||||
.addField("Versions", "JdrBot: "+JdrBot.Version+ " - JDA: " + JDAInfo.VERSION + " - Lavaplayer: "+ PlayerLibrary.VERSION, true)
|
||||
.addField("Uptime", Utils.formatDuration(difference), true)
|
||||
.setFooter("*Fait le "+currentDate.format(DateTimeFormatter.ofPattern("dd/MM/yyyy à HH:mm:ss"))+"*", e.getJDA().getSelfUser().getAvatarUrl())
|
||||
.setColor(Color.BLUE)
|
||||
.build()).build()).queue();
|
||||
}
|
||||
}
|
||||
56
src/main/java/fr/Skydust/JdrBot/cmds/LastTimeOnline.java
Executable file
56
src/main/java/fr/Skydust/JdrBot/cmds/LastTimeOnline.java
Executable file
@@ -0,0 +1,56 @@
|
||||
package fr.Skydust.JdrBot.cmds;
|
||||
|
||||
import java.time.Duration;
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.HashMap;
|
||||
|
||||
import fr.Skydust.JdrBot.stock.Command;
|
||||
import fr.Skydust.JdrBot.utils.Utils;
|
||||
import net.dv8tion.jda.api.OnlineStatus;
|
||||
import net.dv8tion.jda.api.entities.User;
|
||||
import net.dv8tion.jda.api.events.message.guild.GuildMessageReceivedEvent;
|
||||
import net.dv8tion.jda.api.events.user.update.UserUpdateOnlineStatusEvent;
|
||||
|
||||
public class LastTimeOnline extends Command {
|
||||
static HashMap<String, LocalDateTime> AllUsers = new HashMap<String, LocalDateTime>();
|
||||
|
||||
public LastTimeOnline() {
|
||||
SetName("lasttimeonline|lto");
|
||||
SetDesc("Dis depuis combien de temps un utilisateur est en ligne/hors-ligne");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void call(GuildMessageReceivedEvent e) {
|
||||
if(e.getMessage().getMentionedUsers().size() < 1) {
|
||||
e.getChannel().sendMessage("Vous n'avez pas mentionne d'utilisateur !").queue();
|
||||
return;
|
||||
}
|
||||
User u = e.getMessage().getMentionedUsers().get(0);
|
||||
if(AllUsers.get(u.getId()) == null) {
|
||||
e.getChannel().sendMessage(u.getAsMention()+" n'a pas change d'etat entre le demarrage du bot et maintenant").queue();
|
||||
return;
|
||||
}
|
||||
OnlineStatus status = e.getGuild().getMember(u).getOnlineStatus();
|
||||
LocalDateTime UserDate = AllUsers.get(e.getMessage().getMentionedUsers().get(0).getId());
|
||||
StringBuilder sb = new StringBuilder();
|
||||
if(status.equals(OnlineStatus.INVISIBLE) || status.equals(OnlineStatus.OFFLINE)) {
|
||||
sb.append(u.getAsMention()+" est en hors-ligne depuis ");
|
||||
} else {
|
||||
sb.append(u.getAsMention()+" est en ligne depuis ");
|
||||
}
|
||||
sb.append(Utils.formatDurationSmooth(Duration.between(UserDate, LocalDateTime.now())));
|
||||
e.getChannel().sendMessage(sb.toString()).queue();
|
||||
}
|
||||
|
||||
/** Called from the main Listener */
|
||||
public static void onUserUpdateOnlineStatus(UserUpdateOnlineStatusEvent e) {
|
||||
if(e.getOldOnlineStatus().equals(OnlineStatus.OFFLINE)) {
|
||||
//Si il est en ligne
|
||||
AllUsers.put(e.getUser().getId(), LocalDateTime.now());
|
||||
} else if(!e.getOldOnlineStatus().equals(OnlineStatus.ONLINE) && !e.getOldOnlineStatus().equals(OnlineStatus.DO_NOT_DISTURB) && !e.getOldOnlineStatus().equals(OnlineStatus.IDLE)) {
|
||||
//Si il est hors-ligne
|
||||
AllUsers.put(e.getUser().getId(), LocalDateTime.now());
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
79
src/main/java/fr/Skydust/JdrBot/cmds/Roll.java
Executable file
79
src/main/java/fr/Skydust/JdrBot/cmds/Roll.java
Executable file
@@ -0,0 +1,79 @@
|
||||
package fr.Skydust.JdrBot.cmds;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
import fr.Skydust.JdrBot.stock.Command;
|
||||
import fr.Skydust.JdrBot.utils.Utils;
|
||||
import net.dv8tion.jda.api.events.message.guild.GuildMessageReceivedEvent;
|
||||
|
||||
public class Roll extends Command {
|
||||
static Random r = new Random();
|
||||
|
||||
public Roll() {
|
||||
SetName("r|roll");
|
||||
SetDesc("Lance un dé (USAGE:roll [NombreDés]d[NombreFaces] OU roll [NombreFaces]");
|
||||
}
|
||||
|
||||
public void call(GuildMessageReceivedEvent e) {
|
||||
if (e.getMessage().getContentRaw().split(" ").length != 1)
|
||||
{
|
||||
String[] args = e.getMessage().getContentRaw().split(" ");
|
||||
|
||||
if (Utils.IsInt(args[1]))
|
||||
{
|
||||
e.getChannel().sendMessage(e.getMember().getAsMention() + " rolled **" + (1 + r.nextInt((Integer.parseInt(args[1])+1) - 1)) + "**").queue();
|
||||
} else if (args[1].contains("d")) {
|
||||
if (Utils.IsInt(args[1].split("d")[0]) && Utils.IsInt(args[1].split("d")[1]))
|
||||
{
|
||||
int number = Integer.parseInt(args[1].split("d")[0]);
|
||||
int number1 = Integer.parseInt(args[1].split("d")[1]);
|
||||
if (number <= 100)
|
||||
{
|
||||
if (number1 <= 1000)
|
||||
{
|
||||
if (number1 != 1)
|
||||
{
|
||||
String finale = "Les nombres sortis sont les suivants : ";
|
||||
|
||||
int finalcount = 0;
|
||||
|
||||
//List<Integer> list = new ArrayList<Integer>();
|
||||
for (int i = 0; i < number; i++)
|
||||
{
|
||||
int CurrentNumber = (1 + r.nextInt((number1+1) - 1));
|
||||
//list.add(CurrentNumber);
|
||||
finalcount += CurrentNumber;
|
||||
|
||||
if(i == number-1) {
|
||||
finale = finale + "**" + CurrentNumber + "**";
|
||||
} else {
|
||||
finale = finale + "**" + CurrentNumber + "**, ";
|
||||
}
|
||||
}
|
||||
|
||||
//Ranger par ordre decroissant
|
||||
//Collections.sort(list, Comparator.reverseOrder());
|
||||
|
||||
e.getChannel().sendMessage(e.getMember().getAsMention() + " " + finale + " pour un total de " + finalcount).queue();
|
||||
} else {
|
||||
e.getChannel().sendMessage("Comment as-tu obtenu un dé avec un seul côté !").queue();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
e.getChannel().sendMessage("Le nombre de faces doit être en dessous de 1000 !").queue();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
e.getChannel().sendMessage("Le nombre de dés doit être en dessous de 100 !").queue();
|
||||
}
|
||||
} else {
|
||||
e.getChannel().sendMessage("Il faut un nombre valide !").queue();
|
||||
}
|
||||
} else {
|
||||
e.getChannel().sendMessage("Il faut un nombre valide !").queue();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
24
src/main/java/fr/Skydust/JdrBot/cmds/playmusic/FLoad.java
Executable file
24
src/main/java/fr/Skydust/JdrBot/cmds/playmusic/FLoad.java
Executable file
@@ -0,0 +1,24 @@
|
||||
package fr.Skydust.JdrBot.cmds.playmusic;
|
||||
|
||||
import fr.Skydust.JdrBot.stock.Command;
|
||||
import net.dv8tion.jda.api.events.message.guild.GuildMessageReceivedEvent;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
public class FLoad extends Command {
|
||||
public FLoad() {
|
||||
SetName("fload");
|
||||
SetDesc("/!\\ Commande test /!\\ Permet de charger une musique de force");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void call(GuildMessageReceivedEvent e) {
|
||||
String args = StringUtils.join(Arrays.copyOfRange(e.getMessage().getContentRaw().split(" "), 1, e.getMessage().getContentRaw().split(" ").length)," ");
|
||||
|
||||
e.getGuild().getAudioManager().openAudioConnection(e.getMember().getVoiceState().getChannel());
|
||||
//ytsearch:query
|
||||
|
||||
PlayMusic.loadAndPlay(e.getChannel(), args, false, false);
|
||||
}
|
||||
}
|
||||
26
src/main/java/fr/Skydust/JdrBot/cmds/playmusic/FLoadLoop.java
Executable file
26
src/main/java/fr/Skydust/JdrBot/cmds/playmusic/FLoadLoop.java
Executable file
@@ -0,0 +1,26 @@
|
||||
package fr.Skydust.JdrBot.cmds.playmusic;
|
||||
|
||||
import fr.Skydust.JdrBot.stock.Command;
|
||||
import net.dv8tion.jda.api.events.message.guild.GuildMessageReceivedEvent;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
public class FLoadLoop extends Command {
|
||||
public FLoadLoop() {
|
||||
SetName("floadloop");
|
||||
SetDesc("/!\\ Commande test /!\\ Permet de charger une musique de force");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void call(GuildMessageReceivedEvent e) {
|
||||
String args = StringUtils.join(Arrays.copyOfRange(e.getMessage().getContentRaw().split(" "), 1, e.getMessage().getContentRaw().split(" ").length)," ");
|
||||
|
||||
e.getGuild().getAudioManager().openAudioConnection(e.getMember().getVoiceState().getChannel());
|
||||
|
||||
if(!args.matches(".*(https?)://.*")) {
|
||||
args = "ytsearch:"+args;
|
||||
}
|
||||
PlayMusic.loadAndPlay(e.getChannel(), StringUtils.join(args," "), true, false);
|
||||
}
|
||||
}
|
||||
146
src/main/java/fr/Skydust/JdrBot/cmds/playmusic/PlayMusic.java
Executable file
146
src/main/java/fr/Skydust/JdrBot/cmds/playmusic/PlayMusic.java
Executable file
@@ -0,0 +1,146 @@
|
||||
package fr.Skydust.JdrBot.cmds.playmusic;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import fr.Skydust.JdrBot.jukebox.JukeboxGUISystem;
|
||||
import fr.Skydust.JdrBot.cmds.record.Record;
|
||||
import fr.Skydust.JdrBot.stock.Command;
|
||||
import net.dv8tion.jda.api.Permission;
|
||||
import net.dv8tion.jda.api.entities.Guild;
|
||||
import net.dv8tion.jda.api.entities.TextChannel;
|
||||
import net.dv8tion.jda.api.events.guild.voice.GuildVoiceLeaveEvent;
|
||||
import net.dv8tion.jda.api.events.guild.voice.GuildVoiceMoveEvent;
|
||||
import net.dv8tion.jda.api.events.message.guild.GuildMessageReceivedEvent;
|
||||
|
||||
import com.sedmelluq.discord.lavaplayer.player.AudioLoadResultHandler;
|
||||
import com.sedmelluq.discord.lavaplayer.player.AudioPlayerManager;
|
||||
import com.sedmelluq.discord.lavaplayer.player.DefaultAudioPlayerManager;
|
||||
import com.sedmelluq.discord.lavaplayer.source.AudioSourceManagers;
|
||||
import com.sedmelluq.discord.lavaplayer.tools.FriendlyException;
|
||||
import com.sedmelluq.discord.lavaplayer.track.AudioPlaylist;
|
||||
import com.sedmelluq.discord.lavaplayer.track.AudioTrack;
|
||||
|
||||
import fr.Skydust.JdrBot.audio.GuildMusicManager;
|
||||
import fr.Skydust.JdrBot.jukebox.JukeboxGUI;
|
||||
|
||||
public class PlayMusic extends Command {
|
||||
private static final AudioPlayerManager playerManager = new DefaultAudioPlayerManager();
|
||||
static Map<Long, GuildMusicManager> musicManagers;
|
||||
|
||||
public PlayMusic() {
|
||||
musicManagers = new HashMap<>();
|
||||
AudioSourceManagers.registerRemoteSources(playerManager);
|
||||
AudioSourceManagers.registerLocalSource(playerManager);
|
||||
|
||||
SetName("playmusic|pm");
|
||||
SetDesc("Demarre le jukebox");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void call(GuildMessageReceivedEvent e) {
|
||||
if(!e.getMember().hasPermission(Permission.ADMINISTRATOR)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if(JukeboxGUISystem.getGuildsJukebox(e.getGuild()) != null) {
|
||||
e.getChannel().sendMessage("/!\\ Le lecteur audio est deja present ici ! Pour l'arreter, tapez \"!stopmusic\" !").queue();
|
||||
return;
|
||||
}
|
||||
|
||||
String[] args = e.getMessage().getContentRaw().split(" ");
|
||||
if (args.length != 1)
|
||||
{
|
||||
JukeboxGUISystem.createJukebox(e.getChannel(), args[1]);
|
||||
} else {
|
||||
JukeboxGUISystem.createJukebox(e.getChannel());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public static void onGuildVoiceLeave(GuildVoiceLeaveEvent e) {
|
||||
if(e.getGuild().getAudioManager().isConnected() && e.getChannelLeft().getName().equals(e.getGuild().getAudioManager().getConnectedChannel().getName()) && e.getChannelLeft().getMembers().size() == 1) {
|
||||
JukeboxGUI gui = JukeboxGUISystem.getGuildsJukebox(e.getGuild());
|
||||
if(gui != null) {
|
||||
e.getGuild().getTextChannelById(gui.TextChannelID).deleteMessageById(gui.MessageID)
|
||||
.queue(msg -> {
|
||||
JukeboxGUISystem.setGuildsJukebox(e.getGuild(), null);
|
||||
});
|
||||
}
|
||||
getGuildAudioPlayer(e.getGuild()).scheduler.stop();
|
||||
if(Record.rbs.get(e.getGuild().getId()) == null) {
|
||||
e.getGuild().getAudioManager().closeAudioConnection();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static void onGuildVoiceMove(GuildVoiceMoveEvent e) {
|
||||
if(e.getGuild().getAudioManager().isConnected() && e.getChannelLeft().getName().equals(e.getGuild().getAudioManager().getConnectedChannel().getName()) && e.getChannelLeft().getMembers().size() == 1) {
|
||||
JukeboxGUI gui = JukeboxGUISystem.getGuildsJukebox(e.getGuild());
|
||||
if(gui != null) {
|
||||
e.getGuild().getTextChannelById(gui.TextChannelID).deleteMessageById(gui.MessageID)
|
||||
.queue(msg -> {
|
||||
JukeboxGUISystem.setGuildsJukebox(e.getGuild(), null);
|
||||
});
|
||||
}
|
||||
getGuildAudioPlayer(e.getGuild()).scheduler.stop();
|
||||
//if(Record.rbs.get(e.getGuild().getId()) == null) {
|
||||
e.getGuild().getAudioManager().closeAudioConnection();
|
||||
//}
|
||||
}
|
||||
}
|
||||
|
||||
public static void loadAndPlay(final TextChannel channel, final String trackUrl, boolean loop, boolean nomsg) {
|
||||
System.out.println(trackUrl);
|
||||
GuildMusicManager musicManager = getGuildAudioPlayer(channel.getGuild());
|
||||
playerManager.loadItemOrdered(musicManager, trackUrl, new AudioLoadResultHandler() {
|
||||
@Override
|
||||
public void trackLoaded(AudioTrack track) {
|
||||
if(!nomsg) {
|
||||
channel.sendMessage("**Now Playing**: "+track.getInfo().title).queue();
|
||||
}
|
||||
System.out.println("Launching track pre:"+track.getInfo().title);
|
||||
musicManager.scheduler.play(track, loop);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void playlistLoaded(AudioPlaylist playlist) {
|
||||
AudioTrack firstTrack = playlist.getSelectedTrack();
|
||||
|
||||
if (firstTrack == null) {
|
||||
firstTrack = playlist.getTracks().get(0);
|
||||
}
|
||||
|
||||
if(!nomsg) {
|
||||
channel.sendMessage("**Now Playing**: "+firstTrack.getInfo().title).queue();
|
||||
}
|
||||
System.out.println("Launching track pre:"+firstTrack.getInfo().title);
|
||||
musicManager.scheduler.play(firstTrack, loop);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void noMatches() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void loadFailed(FriendlyException exception) {
|
||||
channel.sendMessage(exception.getMessage()).queue();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
public static synchronized GuildMusicManager getGuildAudioPlayer(Guild guild) {
|
||||
long guildId = Long.parseLong(guild.getId());
|
||||
GuildMusicManager musicManager = musicManagers.get(guildId);
|
||||
|
||||
if (musicManager == null) {
|
||||
musicManager = new GuildMusicManager(playerManager, guild.getAudioManager());
|
||||
musicManagers.put(guildId, musicManager);
|
||||
}
|
||||
|
||||
guild.getAudioManager().setSendingHandler(musicManager.getSendHandler());
|
||||
|
||||
return musicManager;
|
||||
}
|
||||
|
||||
}
|
||||
35
src/main/java/fr/Skydust/JdrBot/cmds/playmusic/StopMusic.java
Executable file
35
src/main/java/fr/Skydust/JdrBot/cmds/playmusic/StopMusic.java
Executable file
@@ -0,0 +1,35 @@
|
||||
package fr.Skydust.JdrBot.cmds.playmusic;
|
||||
|
||||
import fr.Skydust.JdrBot.cmds.record.Record;
|
||||
import fr.Skydust.JdrBot.jukebox.JukeboxGUI;
|
||||
import fr.Skydust.JdrBot.jukebox.JukeboxGUISystem;
|
||||
import fr.Skydust.JdrBot.stock.Command;
|
||||
import net.dv8tion.jda.api.Permission;
|
||||
import net.dv8tion.jda.api.events.message.guild.GuildMessageReceivedEvent;
|
||||
|
||||
public class StopMusic extends Command {
|
||||
public StopMusic() {
|
||||
SetName("stopmusic|sm");
|
||||
SetDesc("Arrete le jukebox et supprime son message");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void call(GuildMessageReceivedEvent e) {
|
||||
if(!e.getGuild().getAudioManager().isConnected() && e.getMember().hasPermission(Permission.ADMINISTRATOR)) {
|
||||
return;
|
||||
}
|
||||
|
||||
JukeboxGUI gui = JukeboxGUISystem.getGuildsJukebox(e.getGuild());
|
||||
|
||||
if(gui != null) {
|
||||
e.getGuild().getTextChannelById(gui.TextChannelID).deleteMessageById(gui.MessageID)
|
||||
.queue(msg -> {
|
||||
JukeboxGUISystem.setGuildsJukebox(e.getGuild(), null);
|
||||
});
|
||||
}
|
||||
PlayMusic.getGuildAudioPlayer(e.getGuild()).scheduler.stop();
|
||||
if(Record.rbs.get(e.getGuild().getId()) == null) {
|
||||
e.getGuild().getAudioManager().closeAudioConnection();
|
||||
}
|
||||
}
|
||||
}
|
||||
38
src/main/java/fr/Skydust/JdrBot/cmds/record/Record.java
Executable file
38
src/main/java/fr/Skydust/JdrBot/cmds/record/Record.java
Executable file
@@ -0,0 +1,38 @@
|
||||
package fr.Skydust.JdrBot.cmds.record;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.HashMap;
|
||||
|
||||
import fr.Skydust.JdrBot.audio.handler.JdrBotARH;
|
||||
import fr.Skydust.JdrBot.stock.RecordState;
|
||||
import fr.Skydust.JdrBot.stock.Command;
|
||||
import net.dv8tion.jda.api.events.message.guild.GuildMessageReceivedEvent;
|
||||
|
||||
public class Record extends Command {
|
||||
public static HashMap<String, RecordState> rbs = new HashMap<String, RecordState>();
|
||||
|
||||
public Record() {
|
||||
SetName("record");
|
||||
SetDesc("Enregistre le chat vocal");
|
||||
}
|
||||
|
||||
public void call(GuildMessageReceivedEvent e)
|
||||
{
|
||||
if(rbs.get(e.getGuild().getId()) == null) {
|
||||
rbs.put(e.getGuild().getId(), new RecordState());
|
||||
}
|
||||
|
||||
if(e.getGuild().getMember(e.getAuthor()).getVoiceState().getChannel() != null && !rbs.get(e.getGuild().getId()).isRecording() && !rbs.get(e.getGuild().getId()).isProcessing()) {
|
||||
if(rbs.get(e.getGuild().getId()).isProcessing()) {
|
||||
e.getChannel().sendMessage(e.getAuthor().getAsMention()+" Un enregistrement est en train d'etre sauvegarde envoye");
|
||||
return;
|
||||
}
|
||||
e.getChannel().sendMessage(e.getAuthor().getAsMention()+" Lancement du record").queue();
|
||||
System.out.println("["+new Date().toString()+"] Le serveur ID "+e.getGuild().getId()+"("+e.getGuild().getName()+") vient de lancer un enregistrement");
|
||||
e.getGuild().getAudioManager().openAudioConnection(e.getGuild().getMember(e.getAuthor()).getVoiceState().getChannel());
|
||||
rbs.get(e.getGuild().getId()).setRecording(true);e.getGuild().getAudioManager().setReceivingHandler(new JdrBotARH(e.getGuild().getId()));
|
||||
} else {
|
||||
e.getChannel().sendMessage(e.getAuthor().getAsMention()+" n'est pas dans la channel vocal et ou a deja demarre un enregistrement!");
|
||||
}
|
||||
}
|
||||
}
|
||||
21
src/main/java/fr/Skydust/JdrBot/cmds/record/StopRecord.java
Executable file
21
src/main/java/fr/Skydust/JdrBot/cmds/record/StopRecord.java
Executable file
@@ -0,0 +1,21 @@
|
||||
package fr.Skydust.JdrBot.cmds.record;
|
||||
|
||||
import fr.Skydust.JdrBot.stock.Command;
|
||||
import net.dv8tion.jda.api.events.message.guild.GuildMessageReceivedEvent;
|
||||
|
||||
public class StopRecord extends Command {
|
||||
public StopRecord() {
|
||||
SetName("stoprecord|sr");
|
||||
SetDesc("Arrete l'enregistrement");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void call(GuildMessageReceivedEvent e) {
|
||||
if(Record.rbs.get(e.getGuild().getId()) != null && Record.rbs.get(e.getGuild().getId()).isRecording()) {
|
||||
Record.rbs.get(e.getGuild().getId()).endRecord(e.getGuild(), e.getChannel());
|
||||
Record.rbs.put(e.getGuild().getId(), null);
|
||||
} else {
|
||||
e.getChannel().sendMessage("PERSONNE N'ENREGISTRE <3").queue();
|
||||
}
|
||||
}
|
||||
}
|
||||
14
src/main/java/fr/Skydust/JdrBot/jukebox/JukeboxGUI.java
Executable file
14
src/main/java/fr/Skydust/JdrBot/jukebox/JukeboxGUI.java
Executable file
@@ -0,0 +1,14 @@
|
||||
package fr.Skydust.JdrBot.jukebox;
|
||||
|
||||
public class JukeboxGUI {
|
||||
public String MessageID = "";
|
||||
public int prevSong = -1;
|
||||
public String TextChannelID = "";
|
||||
public String Menu = "mainMenu";
|
||||
|
||||
public JukeboxGUI(String textChannelID, String MessageID, String Menu) {
|
||||
this.MessageID = MessageID;
|
||||
this.TextChannelID = textChannelID;
|
||||
this.Menu = Menu;
|
||||
}
|
||||
}
|
||||
175
src/main/java/fr/Skydust/JdrBot/jukebox/JukeboxGUISystem.java
Executable file
175
src/main/java/fr/Skydust/JdrBot/jukebox/JukeboxGUISystem.java
Executable file
@@ -0,0 +1,175 @@
|
||||
package fr.Skydust.JdrBot.jukebox;
|
||||
|
||||
import fr.Skydust.JdrBot.cmds.playmusic.PlayMusic;
|
||||
import net.dv8tion.jda.api.EmbedBuilder;
|
||||
import net.dv8tion.jda.api.MessageBuilder;
|
||||
import net.dv8tion.jda.api.entities.Guild;
|
||||
import net.dv8tion.jda.api.entities.TextChannel;
|
||||
import net.dv8tion.jda.api.events.message.react.MessageReactionAddEvent;
|
||||
|
||||
import java.awt.*;
|
||||
import java.io.File;
|
||||
import java.util.HashMap;
|
||||
|
||||
public class JukeboxGUISystem {
|
||||
/*0to10*/
|
||||
public static final String[] AllChars = {"\u0030\u20E3","\u0031\u20E3","\u0032\u20E3","\u0033\u20E3","\u0034\u20E3","\u0035\u20E3","\u0036\u20E3","\u0037\u20E3","\u0038\u20E3","\u0039\u20E3","\uD83D\uDD1F",
|
||||
/*Alphabet*/ "\uD83C\uDDE6","\uD83C\uDDE7","\uD83C\uDDE8","\uD83C\uDDE9","\uD83C\uDDEA","\uD83C\uDDEB","\uD83C\uDDEC","\uD83C\uDDED","\uD83C\uDDEE","\uD83C\uDDEF","\uD83C\uDDF0","\uD83C\uDDF1","\uD83C\uDDF2","\uD83C\uDDF3","\uD83C\uDDF4","\uD83C\uDDF5","\uD83C\uDDF6","\uD83C\uDDF7","\uD83C\uDDF8","\uD83C\uDDF9","\uD83C\uDDFA","\uD83C\uDDFB","\uD83C\uDDFC","\uD83C\uDDFD","\uD83C\uDDFE","\uD83C\uDDFF"};
|
||||
|
||||
public static final String UP = "\uD83D\uDD3C";
|
||||
public static final String DOWN = "\uD83D\uDD3D";
|
||||
public static final String SELECT = "\u2705";
|
||||
public static final String CANCEL = "\u274E";
|
||||
|
||||
private static String songsLocation = "Songs";
|
||||
|
||||
public static HashMap<String, JukeboxGUI> JukeboxGUIs = new HashMap<String, JukeboxGUI>();
|
||||
|
||||
public static void createJukebox(TextChannel tc) {
|
||||
createJukebox(tc, "mainMenu");
|
||||
}
|
||||
|
||||
public static void createJukebox(TextChannel tc, String menu) {
|
||||
File path = new File(songsLocation + ((menu.equals("mainMenu") ? "" : "/"+menu)));
|
||||
|
||||
if(!path.exists())
|
||||
return;
|
||||
|
||||
String[] filePaths = path.list();
|
||||
|
||||
StringBuilder str = new StringBuilder();
|
||||
int i = 0;
|
||||
for (String s : filePaths) {
|
||||
str.append(AllChars[i]+":"+s+"\n");
|
||||
i++;
|
||||
}
|
||||
|
||||
tc.sendMessage(new MessageBuilder().append("Music Player 3000").setEmbed(new EmbedBuilder().setThumbnail("https://cdn4.iconfinder.com/data/icons/miu/24/device-volume-loudspeaker-speaker-up-glyph-128.png").setTitle("Choisi un jdr:",null).setColor(Color.green).setDescription("\n"+str.toString()).build()).build()).queue(msg -> {
|
||||
for(int i2=0;i2<filePaths.length;i2++) {
|
||||
msg.addReaction(AllChars[i2]).queue();
|
||||
}
|
||||
|
||||
JukeboxGUIs.put(msg.getGuild().getId(), new JukeboxGUI(msg.getTextChannel().getId(),msg.getId(), menu));
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
public static void onMessageReactionAdd(MessageReactionAddEvent e) {
|
||||
if(e.getChannel() instanceof TextChannel) {
|
||||
TextChannel tc = (TextChannel) e.getChannel();
|
||||
JukeboxGUI cm = JukeboxGUIs.get(tc.getGuild().getId());
|
||||
|
||||
if(cm != null && cm.MessageID.equals(e.getMessageId()) && !e.getUser().isBot()) {
|
||||
e.getReaction().removeReaction(e.getUser()).queue();
|
||||
if(tc.getGuild().getMember(e.getUser()).getVoiceState().getChannel() == null) {
|
||||
return;
|
||||
}
|
||||
int i=0;
|
||||
for(String s : AllChars){
|
||||
if(s.equals(e.getReaction().getReactionEmote().getEmoji().replace("(null)","").replace("RE:",""))) {
|
||||
break;
|
||||
}
|
||||
i++;
|
||||
}
|
||||
//Autre Emote TG
|
||||
if(i == 37){
|
||||
return;
|
||||
}
|
||||
|
||||
final int i2 = i;
|
||||
|
||||
e.getChannel().retrieveMessageById(e.getMessageId()).queue(msg -> {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
for (String s : msg.getEmbeds().get(0).getDescription().split("\n")) {
|
||||
if (s.contains(AllChars[i2])) {
|
||||
sb.append(s.replaceAll(AllChars[i2] + ":", ""));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (cm.Menu.equals("mainMenu")) {
|
||||
String[] filePaths = new File("Songs/" + sb.toString()).list();
|
||||
|
||||
// Si "i2", qui est le nombre du choix que tu viens de cliquer, est au dessus du nombre d'options du menu >> Annuler
|
||||
// OU
|
||||
// Si il essaye de mettre un menu avec + de 20 reactions >> Annuler
|
||||
|
||||
if (i2 > new File("Songs/").list().length || filePaths.length > 20) {
|
||||
return;
|
||||
}
|
||||
|
||||
StringBuilder str = new StringBuilder();
|
||||
int i3 = 0;
|
||||
for (String s : filePaths) {
|
||||
str.append(AllChars[i3] + ":" + s.replace(".mp3", "") + "\n");
|
||||
i3++;
|
||||
}
|
||||
|
||||
str.append(AllChars[i3] + ":Retour");
|
||||
|
||||
msg.editMessage(new MessageBuilder().append("Music Player 3000").setEmbed(new EmbedBuilder().setThumbnail("https://cdn4.iconfinder.com/data/icons/miu/24/device-volume-loudspeaker-speaker-up-glyph-128.png").setTitle("Choisi une musique:", null).setColor(Color.green).setDescription("\n" + str.toString()).build()).build()).queue(msg2 -> {
|
||||
//msg2.clearReactions().queue(msg3 -> {
|
||||
try {
|
||||
for (int i4 = 0; i4 < filePaths.length + 1; i4++) {
|
||||
msg2.addReaction(AllChars[i4]).queue();
|
||||
}
|
||||
|
||||
cm.Menu = sb.toString();
|
||||
} catch (Exception e5) {
|
||||
e5.printStackTrace();
|
||||
}
|
||||
//});
|
||||
});
|
||||
} else {
|
||||
if (sb.toString().equals("Retour") || sb.toString().equals("")) {
|
||||
String[] filePaths = new File("Songs").list();
|
||||
|
||||
if (i2 > new File("Songs/" + cm.Menu + "/").list().length || filePaths.length > 20) {
|
||||
return;
|
||||
}
|
||||
|
||||
StringBuilder str = new StringBuilder();
|
||||
int i9 = 0;
|
||||
for (String s : filePaths) {
|
||||
str.append(AllChars[i9] + ":" + s + "\n");
|
||||
i9++;
|
||||
}
|
||||
msg.editMessage(new MessageBuilder().append("Music Player 3000").setEmbed(new EmbedBuilder().setThumbnail("https://cdn4.iconfinder.com/data/icons/miu/24/device-volume-loudspeaker-speaker-up-glyph-128.png").setTitle("Choisi un jdr:", null).setColor(Color.green).setDescription("\n" + str.toString()).build()).build()).queue(msg1 -> {
|
||||
for (int y = filePaths.length; y < msg1.getReactions().size(); y++) {
|
||||
msg1.getReactions().get(y).removeReaction().queue();
|
||||
}
|
||||
try {
|
||||
for (int i8 = 0; i8 < filePaths.length; i8++) {
|
||||
msg1.addReaction(AllChars[i8]).queue();
|
||||
}
|
||||
JukeboxGUIs.get(e.getGuild().getId()).Menu = "mainMenu";
|
||||
|
||||
} catch (Exception e5) {
|
||||
e5.printStackTrace();
|
||||
}
|
||||
//});
|
||||
});
|
||||
return;
|
||||
}
|
||||
tc.getGuild().getAudioManager().openAudioConnection(tc.getGuild().getMember(e.getUser()).getVoiceState().getChannel());
|
||||
if (cm.prevSong == -1) {
|
||||
msg.editMessage(new MessageBuilder().append("Music Player 3000").setEmbed(new EmbedBuilder().setThumbnail("https://cdn4.iconfinder.com/data/icons/miu/24/device-volume-loudspeaker-speaker-up-glyph-128.png").setTitle("Choisi une musique:", null).setColor(Color.green).setDescription(msg.getEmbeds().get(0).getDescription().replace(AllChars[i2], "\u25B6" + AllChars[i2])).build()).build()).queue();
|
||||
} else {
|
||||
msg.editMessage(new MessageBuilder().append("Music Player 3000").setEmbed(new EmbedBuilder().setThumbnail("https://cdn4.iconfinder.com/data/icons/miu/24/device-volume-loudspeaker-speaker-up-glyph-128.png").setTitle("Choisi une musique:", null).setColor(Color.green).setDescription(msg.getEmbeds().get(0).getDescription().replace("\u25B6", "").replace(AllChars[i2], "\u25B6" + AllChars[i2])).build()).build()).queue();
|
||||
}
|
||||
cm.prevSong = i2;
|
||||
PlayMusic.loadAndPlay(tc, "Songs/" + cm.Menu + "/" + sb.toString() + ".mp3", true, true);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static synchronized JukeboxGUI getGuildsJukebox(Guild guild) {
|
||||
return JukeboxGUIs.get(guild.getId());
|
||||
}
|
||||
|
||||
public static void setGuildsJukebox(Guild guild, JukeboxGUI gui) {
|
||||
JukeboxGUIs.put(guild.getId(), gui);
|
||||
}
|
||||
}
|
||||
18
src/main/java/fr/Skydust/JdrBot/stock/Command.java
Executable file
18
src/main/java/fr/Skydust/JdrBot/stock/Command.java
Executable file
@@ -0,0 +1,18 @@
|
||||
package fr.Skydust.JdrBot.stock;
|
||||
|
||||
import net.dv8tion.jda.api.events.message.guild.GuildMessageReceivedEvent;
|
||||
|
||||
public abstract class Command {
|
||||
public String cmdName;
|
||||
public String cmdDesc;
|
||||
|
||||
public abstract void call(GuildMessageReceivedEvent e);
|
||||
|
||||
public void SetName(String name) {
|
||||
this.cmdName = name;
|
||||
}
|
||||
|
||||
public void SetDesc(String desc) {
|
||||
this.cmdDesc = desc;
|
||||
}
|
||||
}
|
||||
154
src/main/java/fr/Skydust/JdrBot/stock/RecordState.java
Executable file
154
src/main/java/fr/Skydust/JdrBot/stock/RecordState.java
Executable file
@@ -0,0 +1,154 @@
|
||||
package fr.Skydust.JdrBot.stock;
|
||||
|
||||
import java.io.*;
|
||||
import java.nio.ByteBuffer;
|
||||
import java.nio.ByteOrder;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
import java.util.zip.ZipException;
|
||||
|
||||
import fr.Skydust.JdrBot.jukebox.JukeboxGUISystem;
|
||||
import fr.Skydust.JdrBot.utils.ByteArrayOutputStreamT;
|
||||
import net.dv8tion.jda.api.entities.Guild;
|
||||
import net.dv8tion.jda.api.entities.TextChannel;
|
||||
import net.lingala.zip4j.ZipFile;
|
||||
import net.lingala.zip4j.model.ZipParameters;
|
||||
import net.lingala.zip4j.model.enums.CompressionLevel;
|
||||
import net.lingala.zip4j.model.enums.CompressionMethod;
|
||||
import org.apache.commons.codec.EncoderException;
|
||||
import ws.schild.jave.AudioAttributes;
|
||||
import ws.schild.jave.Encoder;
|
||||
import ws.schild.jave.EncodingAttributes;
|
||||
import ws.schild.jave.MultimediaObject;
|
||||
|
||||
public class RecordState {
|
||||
private boolean isRecording;
|
||||
private final ByteArrayOutputStreamT bytes;
|
||||
private boolean isProcessing;
|
||||
|
||||
public RecordState() {
|
||||
isRecording = false;
|
||||
isProcessing = false;
|
||||
bytes = new ByteArrayOutputStreamT();
|
||||
}
|
||||
|
||||
public void setRecording(boolean Record) {
|
||||
isRecording = Record;
|
||||
}
|
||||
|
||||
public boolean isRecording() {
|
||||
return isRecording;
|
||||
}
|
||||
|
||||
public void setProcessing(boolean Process) {
|
||||
isProcessing = Process;
|
||||
}
|
||||
|
||||
public boolean isProcessing() {
|
||||
return isProcessing;
|
||||
}
|
||||
|
||||
public void addBytes(byte[] bytes) {
|
||||
if(!isProcessing && isRecording) {
|
||||
try {
|
||||
this.bytes.write(bytes);
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public ByteArrayOutputStreamT getBytes() {
|
||||
return bytes;
|
||||
}
|
||||
|
||||
public void endRecord(Guild g, TextChannel tc) {
|
||||
setRecording(false);
|
||||
setProcessing(true);
|
||||
if(JukeboxGUISystem.getGuildsJukebox(g) == null) {
|
||||
g.getAudioManager().closeAudioConnection();
|
||||
}
|
||||
|
||||
System.out.println("["+new Date().toString()+"] Le serveur ID "+g.getId()+"("+g.getName()+") vient de terminer un enregistrement");
|
||||
new Thread(() -> {
|
||||
try {
|
||||
recordFinish(tc);
|
||||
setProcessing(false);
|
||||
} catch (Exception e1) {
|
||||
e1.printStackTrace();
|
||||
tc.sendMessage("["+new Date().toString()+"] Une erreur est survenue pendant l'enregistrement sur le serveur ID "+g.getId()+"("+g.getName()+")").queue();
|
||||
try {
|
||||
bytes.close();
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
setProcessing(false);
|
||||
}
|
||||
}).start();
|
||||
}
|
||||
|
||||
public void recordFinish(TextChannel tc) throws ZipException, IOException, IllegalArgumentException, EncoderException, ws.schild.jave.EncoderException {
|
||||
//Bytes to Wav
|
||||
|
||||
|
||||
FileOutputStream out = new FileOutputStream("test.pcm");
|
||||
out.write(bytes.toByteArray());
|
||||
out.close();
|
||||
|
||||
|
||||
String OriginalName = new Date().toString().replaceAll(":", "-");
|
||||
|
||||
File wavFile = new File(OriginalName+".wav");
|
||||
File mp3File = new File(OriginalName+".mp3");
|
||||
|
||||
//AudioSystem.write(ais, AudioFileFormat.Type.WAVE, wavFile);
|
||||
//rawToWave(bytes.toByteArray(), wavFile);
|
||||
|
||||
//bais.close();
|
||||
bytes.close();
|
||||
|
||||
//ais.close();
|
||||
|
||||
//Wav to MP3
|
||||
Encoder encoder = new Encoder();
|
||||
AudioAttributes audio = new AudioAttributes();
|
||||
audio.setCodec("libmp3lame");
|
||||
audio.setBitRate(128000);
|
||||
audio.setChannels(2);
|
||||
EncodingAttributes ea = new EncodingAttributes();
|
||||
ea.setAudioAttributes(audio);
|
||||
ea.setFormat("mp3");
|
||||
|
||||
encoder.encode(new MultimediaObject(wavFile),mp3File,ea);
|
||||
//wavFile.delete();
|
||||
|
||||
//MP3 to Zip
|
||||
ZipParameters parameters = new ZipParameters();
|
||||
parameters.setCompressionMethod(CompressionMethod.DEFLATE);
|
||||
parameters.setCompressionLevel(CompressionLevel.NORMAL);
|
||||
ZipFile zipFile;
|
||||
zipFile = new ZipFile(OriginalName+".zip");
|
||||
|
||||
//List filesToAdd = new ArrayList<File>();
|
||||
//filesToAdd.add(mp3File);
|
||||
|
||||
//zipFile.createSplitZipFile(filesToAdd, parameters, true, 8283750);
|
||||
//mp3File.delete();
|
||||
|
||||
//Send Files through Discord
|
||||
if(zipFile.getSplitZipFiles().size() > 1) {
|
||||
tc.sendMessage("Envoi du fichier audio(Via plusieurs fichiers zip)...").queue();
|
||||
for(Object file : zipFile.getSplitZipFiles()) {
|
||||
File currentFile = new File(file+"");
|
||||
tc.sendFile(currentFile, "").queue(msg -> currentFile.delete());
|
||||
}
|
||||
} else {
|
||||
tc.sendMessage("Envoi du fichier audio(Via un fichier zip)...").queue();
|
||||
File currentFile = new File(zipFile.getSplitZipFiles().get(0)+"");
|
||||
tc.sendFile(currentFile, currentFile.getName()).queue(msg -> currentFile.delete());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
10
src/main/java/fr/Skydust/JdrBot/utils/ByteArrayOutputStreamT.java
Executable file
10
src/main/java/fr/Skydust/JdrBot/utils/ByteArrayOutputStreamT.java
Executable file
@@ -0,0 +1,10 @@
|
||||
package fr.Skydust.JdrBot.utils;
|
||||
|
||||
import java.io.ByteArrayOutputStream;
|
||||
|
||||
public class ByteArrayOutputStreamT extends ByteArrayOutputStream {
|
||||
@Override
|
||||
public byte toByteArray()[] {
|
||||
return buf;
|
||||
}
|
||||
}
|
||||
37
src/main/java/fr/Skydust/JdrBot/utils/Utils.java
Executable file
37
src/main/java/fr/Skydust/JdrBot/utils/Utils.java
Executable file
@@ -0,0 +1,37 @@
|
||||
package fr.Skydust.JdrBot.utils;
|
||||
|
||||
import java.time.Duration;
|
||||
|
||||
public class Utils {
|
||||
public static boolean IsInt(String info) {
|
||||
try {
|
||||
Integer.parseInt(info);
|
||||
return true;
|
||||
} catch(Exception e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
public static String formatDuration(Duration duration) {
|
||||
long seconds = duration.getSeconds();
|
||||
long absSeconds = Math.abs(seconds);
|
||||
String positive = String.format(
|
||||
"%d:%02d:%02d",
|
||||
absSeconds / 3600,
|
||||
(absSeconds % 3600) / 60,
|
||||
absSeconds % 60);
|
||||
return seconds < 0 ? "-" + positive : positive;
|
||||
}
|
||||
|
||||
public static String formatDurationSmooth(Duration duration) {
|
||||
long absSeconds = Math.abs(duration.getSeconds());
|
||||
|
||||
if((absSeconds/3600) == 0) {//Hours
|
||||
if(((absSeconds%3600)/60) == 0)
|
||||
{//Minutes
|
||||
return String.format("%d secondes", absSeconds % 60);
|
||||
}
|
||||
return String.format("%d minutes", (absSeconds % 3600) / 60);
|
||||
}
|
||||
return String.format("%d heures", (absSeconds /3600));
|
||||
}
|
||||
}
|
||||
3
src/main/resources/META-INF/MANIFEST.MF
Normal file
3
src/main/resources/META-INF/MANIFEST.MF
Normal file
@@ -0,0 +1,3 @@
|
||||
Manifest-Version: 1.0
|
||||
Main-Class: fr.Skydust.JdrBot.JdrBot
|
||||
|
||||
Reference in New Issue
Block a user