2010-11-29 10:05:53 +01:00
|
|
|
|
import java.util.ArrayList;
|
2010-11-28 08:10:14 +01:00
|
|
|
|
import java.util.logging.Level;
|
|
|
|
|
import java.util.logging.Logger;
|
|
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
|
//Class: vMinecraftChat
|
|
|
|
|
//Use: Encapsulates all chat commands added by this mod
|
|
|
|
|
//Author: nossr50, TrapAlice, cerevisiae
|
|
|
|
|
//=====================================================================
|
|
|
|
|
public class vminecraftChat {
|
|
|
|
|
protected static final Logger log = Logger.getLogger("Minecraft");
|
|
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
|
//Function: gmsg
|
|
|
|
|
//Input: String msg: The message to be broadcast to all players
|
|
|
|
|
//Output: None
|
|
|
|
|
//Use: Outputs a message to everybody
|
|
|
|
|
//=====================================================================
|
|
|
|
|
public static void gmsg(String msg){
|
|
|
|
|
for (Player p : etc.getServer().getPlayerList()) {
|
|
|
|
|
if (p != null) {
|
|
|
|
|
p.sendMessage(msg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-29 00:43:42 +01:00
|
|
|
|
//=====================================================================
|
|
|
|
|
//Function: wordWrap
|
|
|
|
|
//Input: String msg: The message to be wrapped
|
|
|
|
|
//Output: String[]: The array of substrings
|
|
|
|
|
//Use: Cuts the message apart into whole words short enough to fit
|
|
|
|
|
// on one line
|
|
|
|
|
//=====================================================================
|
|
|
|
|
public static String[] wordWrap(String msg){
|
|
|
|
|
//Split each word apart
|
2010-11-29 10:05:53 +01:00
|
|
|
|
String[] split = msg.split(" ");
|
|
|
|
|
|
2010-11-30 02:13:16 +01:00
|
|
|
|
//Create an arraylist for the output
|
2010-11-29 10:05:53 +01:00
|
|
|
|
ArrayList<String> out = new ArrayList<String>();
|
2010-11-29 00:43:42 +01:00
|
|
|
|
|
|
|
|
|
//While i is less than the length of the array of words
|
|
|
|
|
int i = 0;
|
2010-11-29 10:05:53 +01:00
|
|
|
|
while(i < split.length){
|
2010-11-29 00:43:42 +01:00
|
|
|
|
int len = 0;
|
|
|
|
|
int j = i;
|
2010-11-29 10:05:53 +01:00
|
|
|
|
|
2010-11-29 00:43:42 +01:00
|
|
|
|
//Loop through the words finding their length and increasing
|
|
|
|
|
//j, the end point for the sub string
|
2010-11-29 10:05:53 +01:00
|
|
|
|
while(len <= 316 && i < split.length)
|
2010-11-29 00:43:42 +01:00
|
|
|
|
{
|
2010-11-29 10:05:53 +01:00
|
|
|
|
len += msgLength(split[i]) + 4;
|
2010-11-29 00:43:42 +01:00
|
|
|
|
if( len <= 316)
|
2010-11-29 10:05:53 +01:00
|
|
|
|
i++;
|
2010-11-29 00:43:42 +01:00
|
|
|
|
|
|
|
|
|
}
|
2010-11-29 10:05:53 +01:00
|
|
|
|
//Copy the words in the selection into a new array
|
2010-11-30 02:13:16 +01:00
|
|
|
|
String[] temp = new String[i - j];
|
2010-11-29 10:05:53 +01:00
|
|
|
|
System.arraycopy(split, j, temp, 0, i - j);
|
2010-11-29 00:43:42 +01:00
|
|
|
|
|
2010-11-29 10:05:53 +01:00
|
|
|
|
//Merge them and add them to the output array
|
|
|
|
|
out.add( etc.combineSplit(0, temp, " ") );
|
2010-11-29 00:43:42 +01:00
|
|
|
|
}
|
2010-11-30 02:13:16 +01:00
|
|
|
|
|
|
|
|
|
//Convert to an array and return
|
2010-11-29 10:05:53 +01:00
|
|
|
|
String[] tempout = new String[out.size()];
|
|
|
|
|
out.toArray(tempout);
|
|
|
|
|
return tempout;
|
2010-11-29 00:43:42 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static int msgLength(String str){
|
|
|
|
|
int length = 0;
|
|
|
|
|
for(int x = 0; x<str.length(); x++)
|
|
|
|
|
{
|
2010-11-30 07:25:16 +01:00
|
|
|
|
if(str.charAt(x) == '<27>')
|
|
|
|
|
x++;
|
|
|
|
|
else if("i;,.:|!".indexOf(str.charAt(x)) != -1)
|
2010-11-29 00:43:42 +01:00
|
|
|
|
length+=2;
|
|
|
|
|
else if("l'".indexOf(str.charAt(x)) != -1)
|
|
|
|
|
length+=3;
|
|
|
|
|
else if("tI[]".indexOf(str.charAt(x)) != -1)
|
|
|
|
|
length+=4;
|
|
|
|
|
else if("kf{}<>\"*()".indexOf(str.charAt(x)) != -1)
|
|
|
|
|
length+=5;
|
|
|
|
|
else if("hequcbrownxjmpsvazydgTHEQUCKBROWNFXJMPSVLAZYDG1234567890#\\/?$%-=_+&".indexOf(str.charAt(x)) != -1)
|
|
|
|
|
length+=6;
|
|
|
|
|
else if("@~".indexOf(str.charAt(x)) != -1)
|
|
|
|
|
length+=7;
|
|
|
|
|
else if(str.charAt(x)==' ')
|
|
|
|
|
length+=4;
|
|
|
|
|
}
|
|
|
|
|
return length;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static String rainbow(String msg){
|
|
|
|
|
String temp = "";
|
|
|
|
|
//The array of colors to use
|
2010-11-30 08:15:10 +01:00
|
|
|
|
String[] rainbow = new String[] {Colors.Red, Colors.Rose, Colors.Gold,
|
|
|
|
|
Colors.Yellow, Colors.LightGreen, Colors.Green, Colors.Blue,
|
|
|
|
|
Colors.Navy, Colors.DarkPurple, Colors.Purple, Colors.LightPurple};
|
2010-11-29 00:43:42 +01:00
|
|
|
|
int counter=0;
|
|
|
|
|
//Loop through the message applying the colors
|
|
|
|
|
for(int x=0; x<msg.length(); x++)
|
|
|
|
|
{
|
|
|
|
|
temp+=rainbow[counter]+msg.charAt(x);
|
|
|
|
|
|
|
|
|
|
if(msg.charAt(x)!=' ') counter++;
|
2010-11-30 08:15:10 +01:00
|
|
|
|
if(counter==rainbow.length) counter = 0;
|
2010-11-29 00:43:42 +01:00
|
|
|
|
}
|
|
|
|
|
return temp;
|
|
|
|
|
}
|
2010-11-28 08:10:14 +01:00
|
|
|
|
//=====================================================================
|
|
|
|
|
//Function: nameColor
|
|
|
|
|
//Input: Player player: The player to get name as color
|
|
|
|
|
//Output: String: The name colored
|
|
|
|
|
//Use: Returns the colored name;
|
|
|
|
|
//=====================================================================
|
|
|
|
|
public static String nameColor(Player player){
|
2010-11-30 07:25:16 +01:00
|
|
|
|
|
|
|
|
|
//Get the prefix
|
2010-11-30 06:02:23 +01:00
|
|
|
|
String[] playerPrefix = new String[]{player.getPrefix()};
|
2010-11-30 07:25:16 +01:00
|
|
|
|
|
|
|
|
|
//Add the name
|
|
|
|
|
String output = player.getName();
|
|
|
|
|
|
|
|
|
|
//Add the color if there is one
|
|
|
|
|
if(player.getColor() != null && player.getColor() != "")
|
|
|
|
|
output = player.getColor().substring(0,2) + output;
|
|
|
|
|
//Add the prefix if there is one
|
|
|
|
|
if(playerPrefix[0] != null && playerPrefix[0] != "")
|
|
|
|
|
output = applyColors(playerPrefix)[0].substring(3) + output;
|
|
|
|
|
|
|
|
|
|
//Return the name
|
|
|
|
|
return output;
|
2010-11-28 08:10:14 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
|
//Function: colorChange
|
|
|
|
|
//Input: char colour: The color code to find the color for
|
|
|
|
|
//Output: String: The color that the code identified
|
|
|
|
|
//Use: Finds a color giving a color code
|
|
|
|
|
//=====================================================================
|
|
|
|
|
public static String colorChange(char colour)
|
|
|
|
|
{
|
|
|
|
|
String color = "";
|
|
|
|
|
switch(colour)
|
|
|
|
|
{
|
|
|
|
|
case '0':
|
|
|
|
|
color = Colors.Black;
|
|
|
|
|
break;
|
|
|
|
|
case '1':
|
|
|
|
|
color = Colors.Navy;
|
|
|
|
|
break;
|
|
|
|
|
case '2':
|
|
|
|
|
color = Colors.Green;
|
|
|
|
|
break;
|
|
|
|
|
case '3':
|
|
|
|
|
color = Colors.Blue;
|
|
|
|
|
break;
|
|
|
|
|
case '4':
|
|
|
|
|
color = Colors.Red;
|
|
|
|
|
break;
|
|
|
|
|
case '5':
|
|
|
|
|
color = Colors.Purple;
|
|
|
|
|
break;
|
|
|
|
|
case '6':
|
|
|
|
|
color = Colors.Gold;
|
|
|
|
|
break;
|
|
|
|
|
case '7':
|
|
|
|
|
color = Colors.LightGray;
|
|
|
|
|
break;
|
|
|
|
|
case '8':
|
|
|
|
|
color = Colors.Gray;
|
|
|
|
|
break;
|
|
|
|
|
case '9':
|
|
|
|
|
color = Colors.DarkPurple;
|
|
|
|
|
break;
|
|
|
|
|
case 'a':
|
|
|
|
|
color = Colors.LightGreen;
|
|
|
|
|
break;
|
|
|
|
|
case 'b':
|
|
|
|
|
color = Colors.LightBlue;
|
|
|
|
|
break;
|
|
|
|
|
case 'c':
|
|
|
|
|
color = Colors.Rose;
|
|
|
|
|
break;
|
|
|
|
|
case 'd':
|
|
|
|
|
color = Colors.LightPurple;
|
|
|
|
|
break;
|
|
|
|
|
case 'e':
|
|
|
|
|
color = Colors.Yellow;
|
|
|
|
|
break;
|
|
|
|
|
case 'f':
|
|
|
|
|
color = Colors.White;
|
|
|
|
|
break;
|
|
|
|
|
case 'A':
|
|
|
|
|
color = Colors.LightGreen;
|
|
|
|
|
break;
|
|
|
|
|
case 'B':
|
|
|
|
|
color = Colors.LightBlue;
|
|
|
|
|
break;
|
|
|
|
|
case 'C':
|
|
|
|
|
color = Colors.Rose;
|
|
|
|
|
break;
|
|
|
|
|
case 'D':
|
|
|
|
|
color = Colors.LightPurple;
|
|
|
|
|
break;
|
|
|
|
|
case 'E':
|
|
|
|
|
color = Colors.Yellow;
|
|
|
|
|
break;
|
|
|
|
|
case 'F':
|
|
|
|
|
color = Colors.White;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
color = Colors.White;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return color;
|
|
|
|
|
}
|
2010-11-30 08:15:10 +01:00
|
|
|
|
|
2010-11-28 08:10:14 +01:00
|
|
|
|
//=====================================================================
|
|
|
|
|
//Function: adminChat
|
|
|
|
|
//Input: Player player: The player talking
|
|
|
|
|
// String message: The message to apply the effect to
|
|
|
|
|
//Output: boolean: If this feature is enabled
|
|
|
|
|
//Use: Sends messages only to admins
|
|
|
|
|
//=====================================================================
|
|
|
|
|
public static boolean adminChat(Player player, String message){
|
|
|
|
|
|
|
|
|
|
//Check if the player can use this feature
|
|
|
|
|
if(player.isAdmin() || player.canUseCommand("/adminchat"))
|
|
|
|
|
{
|
|
|
|
|
//Special formatting for adminchat {Username}
|
2010-11-29 00:43:42 +01:00
|
|
|
|
String adminchat = Colors.DarkPurple + "{" + nameColor(player)
|
|
|
|
|
+ Colors.DarkPurple +"}" + Colors.White + " ";
|
|
|
|
|
|
2010-11-30 02:13:16 +01:00
|
|
|
|
String[] msg = wordWrap(adminchat + message.substring(1, message.length()));
|
2010-11-28 08:10:14 +01:00
|
|
|
|
|
|
|
|
|
//Get the player from the playerlist to send the message to.
|
|
|
|
|
for (Player p: etc.getServer().getPlayerList()) {
|
|
|
|
|
|
|
|
|
|
//If p is not null
|
|
|
|
|
if (p != null) {
|
|
|
|
|
|
|
|
|
|
//And if p is an admin or has access to adminchat
|
|
|
|
|
if (p.isAdmin() || (p.canUseCommand("/adminchat"))) {
|
2010-11-29 00:43:42 +01:00
|
|
|
|
|
|
|
|
|
//Output the first line
|
2010-11-30 06:02:23 +01:00
|
|
|
|
for(String str: msg)
|
2010-11-29 00:43:42 +01:00
|
|
|
|
p.sendMessage(str);
|
2010-11-28 08:10:14 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//So you can read adminchat from the server console
|
|
|
|
|
log.log(Level.INFO, "@" + "<" + nameColor(player)
|
|
|
|
|
+ Colors.White +"> " + message);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
|
//Function: quote
|
|
|
|
|
//Input: Player player: The player talking
|
|
|
|
|
// String message: The message to apply the effect to
|
|
|
|
|
//Output: boolean: If this feature is enabled
|
|
|
|
|
//Use: Displays a message as a quote
|
|
|
|
|
//=====================================================================
|
|
|
|
|
public static boolean quote(Player player, String message)
|
|
|
|
|
{
|
|
|
|
|
//Format the name
|
2010-11-30 04:00:03 +01:00
|
|
|
|
String playerName = Colors.White + "<" + nameColor(player)
|
|
|
|
|
+ Colors.White + "> ";
|
2010-11-28 08:10:14 +01:00
|
|
|
|
if(vminecraftSettings.getInstance().greentext()) {
|
|
|
|
|
//Log the chat
|
2010-11-30 04:00:03 +01:00
|
|
|
|
log.log(Level.INFO, "<"+player.getName()+"> " +message);
|
2010-11-29 00:43:42 +01:00
|
|
|
|
|
|
|
|
|
//Get the multi line array
|
2010-11-30 04:00:03 +01:00
|
|
|
|
String[] msg = wordWrap(playerName + Colors.LightGreen + message);
|
2010-11-29 00:43:42 +01:00
|
|
|
|
|
2010-11-30 04:00:03 +01:00
|
|
|
|
//Output the lines
|
|
|
|
|
for(String str: msg)
|
2010-11-29 00:43:42 +01:00
|
|
|
|
gmsg(Colors.LightGreen + str);
|
|
|
|
|
return true;
|
2010-11-28 08:10:14 +01:00
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
|
//Function: rage
|
|
|
|
|
//Input: Player player: The player talking
|
|
|
|
|
// String message: The message to apply the effect to
|
|
|
|
|
//Output: boolean: If this feature is enabled
|
|
|
|
|
//Use: Displays a message in red
|
|
|
|
|
//=====================================================================
|
|
|
|
|
public static boolean rage(Player player, String message)
|
|
|
|
|
{
|
|
|
|
|
//Format the name
|
2010-11-30 04:00:03 +01:00
|
|
|
|
String playerName = Colors.White + "<"
|
|
|
|
|
+ nameColor(player) + Colors.White +"> ";
|
2010-11-28 08:10:14 +01:00
|
|
|
|
if (vminecraftSettings.getInstance().FFF()) {
|
|
|
|
|
log.log(Level.INFO, "<"+player.getName()+"> "+message);
|
2010-11-29 00:43:42 +01:00
|
|
|
|
|
|
|
|
|
//Get the multi line array
|
2010-11-30 04:00:03 +01:00
|
|
|
|
String[] msg = wordWrap(playerName + Colors.Red + message);
|
2010-11-29 00:43:42 +01:00
|
|
|
|
|
2010-11-30 04:00:03 +01:00
|
|
|
|
//Output the message
|
|
|
|
|
for(String str: msg)
|
2010-11-29 00:43:42 +01:00
|
|
|
|
gmsg(Colors.Red + str);
|
2010-11-28 08:10:14 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
|
//Function: quakeColors
|
|
|
|
|
//Input: Player player: The player talking
|
|
|
|
|
// String message: The message to apply the effect to
|
|
|
|
|
//Output: boolean: If this feature is enabled
|
|
|
|
|
//Use: Displays a message in red
|
|
|
|
|
//=====================================================================
|
|
|
|
|
public static boolean quakeColors(Player player, String message)
|
|
|
|
|
{
|
|
|
|
|
//Format the name
|
2010-11-30 04:00:03 +01:00
|
|
|
|
String playerName = Colors.White + "<"
|
|
|
|
|
+ nameColor(player) + Colors.White +"> ";
|
2010-11-30 06:02:23 +01:00
|
|
|
|
if(vminecraftSettings.getInstance().quakeColors()) {
|
2010-11-29 00:43:42 +01:00
|
|
|
|
|
|
|
|
|
//Log the chat
|
|
|
|
|
log.log(Level.INFO, "<"+player.getName()+"> "+message);
|
|
|
|
|
|
|
|
|
|
//Get the multi line array
|
2010-11-30 02:13:16 +01:00
|
|
|
|
String[] msg = wordWrap(playerName + message);
|
2010-11-29 00:43:42 +01:00
|
|
|
|
//Apply colors to the lines
|
|
|
|
|
applyColors(msg);
|
|
|
|
|
|
2010-11-30 04:00:03 +01:00
|
|
|
|
//Output the message
|
|
|
|
|
for(String str: msg)
|
2010-11-29 00:43:42 +01:00
|
|
|
|
gmsg(str);
|
2010-11-28 08:10:14 +01:00
|
|
|
|
|
|
|
|
|
//Loop through the string finding the color codes and inserting them
|
2010-11-29 00:43:42 +01:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
|
//Function: applyColors
|
|
|
|
|
//Input: String[] message: The lines to be colored
|
|
|
|
|
//Output: String[]: The lines, but colorful
|
|
|
|
|
//Use: Colors each line
|
|
|
|
|
//=====================================================================
|
|
|
|
|
private static String[] applyColors(String[] message)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
//The color to start the line with
|
|
|
|
|
String recentColor = Colors.White;
|
|
|
|
|
|
|
|
|
|
//Go through each line
|
|
|
|
|
int counter = 0;
|
|
|
|
|
for(String msg: message)
|
|
|
|
|
{
|
|
|
|
|
//Start the line with the most recent color
|
|
|
|
|
String temp = recentColor;
|
|
|
|
|
|
|
|
|
|
//Loop through looking for a color code
|
|
|
|
|
for(int x = 0; x< msg.length(); x++)
|
2010-11-28 08:10:14 +01:00
|
|
|
|
{
|
2010-11-29 00:43:42 +01:00
|
|
|
|
if(msg.charAt(x)=='^' && x != msg.length() - 1)
|
2010-11-28 08:10:14 +01:00
|
|
|
|
{
|
2010-11-29 00:43:42 +01:00
|
|
|
|
//Set the most recent color to the new color
|
|
|
|
|
recentColor = vminecraftChat.colorChange(msg.charAt(x+1));
|
|
|
|
|
temp += recentColor;
|
2010-11-28 08:10:14 +01:00
|
|
|
|
x++;
|
|
|
|
|
}
|
|
|
|
|
else{
|
2010-11-29 00:43:42 +01:00
|
|
|
|
temp += msg.charAt(x);
|
2010-11-28 08:10:14 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2010-11-29 00:43:42 +01:00
|
|
|
|
//Replace the message with the colorful message
|
|
|
|
|
message[counter] = temp;
|
|
|
|
|
counter++;
|
2010-11-28 08:10:14 +01:00
|
|
|
|
}
|
2010-11-29 00:43:42 +01:00
|
|
|
|
return message;
|
2010-11-28 08:10:14 +01:00
|
|
|
|
}
|
|
|
|
|
}
|