Skip to content
Snippets Groups Projects
Commit 963e8fae authored by Zoey76's avatar Zoey76
Browse files

BETA: Removing dynamic translation system!

	* Due the amount of reports, we have decided to remove this system, until it's working as it should.
	* Read the [http://www.l2jserver.com/2013/04/translation-system-prank/ Official Announcement].
parent 9652cd9d
No related branches found
No related tags found
No related merge requests found
Showing
with 13 additions and 76 deletions
...@@ -104,7 +104,7 @@ public class ChatAll implements IChatHandler ...@@ -104,7 +104,7 @@ public class ChatAll implements IChatHandler
} }
else else
{ {
CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getAppearance().getVisibleName(), ChatTranslationTool.traslate(text)); CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getAppearance().getVisibleName(), text);
Collection<L2PcInstance> plrs = activeChar.getKnownList().getKnownPlayers().values(); Collection<L2PcInstance> plrs = activeChar.getKnownList().getKnownPlayers().values();
for (L2PcInstance player : plrs) for (L2PcInstance player : plrs)
{ {
......
...@@ -46,7 +46,7 @@ public class ChatAlliance implements IChatHandler ...@@ -46,7 +46,7 @@ public class ChatAlliance implements IChatHandler
return; return;
} }
CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), ChatTranslationTool.traslate(text)); CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), text);
activeChar.getClan().broadcastToOnlineAllyMembers(cs); activeChar.getClan().broadcastToOnlineAllyMembers(cs);
} }
} }
......
...@@ -52,7 +52,7 @@ public class ChatBattlefield implements IChatHandler ...@@ -52,7 +52,7 @@ public class ChatBattlefield implements IChatHandler
return; return;
} }
CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), ChatTranslationTool.traslate(text)); CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), text);
for (L2PcInstance player : L2World.getInstance().getAllPlayersArray()) for (L2PcInstance player : L2World.getInstance().getAllPlayersArray())
{ {
if (player.getSiegeSide() == activeChar.getSiegeSide()) if (player.getSiegeSide() == activeChar.getSiegeSide())
......
...@@ -50,7 +50,7 @@ public class ChatClan implements IChatHandler ...@@ -50,7 +50,7 @@ public class ChatClan implements IChatHandler
return; return;
} }
CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), ChatTranslationTool.traslate(text)); CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), text);
activeChar.getClan().broadcastCSToOnlineMembers(cs, activeChar); activeChar.getClan().broadcastCSToOnlineMembers(cs, activeChar);
} }
} }
......
...@@ -59,7 +59,7 @@ public class ChatHeroVoice implements IChatHandler ...@@ -59,7 +59,7 @@ public class ChatHeroVoice implements IChatHandler
return; return;
} }
CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), ChatTranslationTool.traslate(text)); CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), text);
for (L2PcInstance player : L2World.getInstance().getAllPlayersArray()) for (L2PcInstance player : L2World.getInstance().getAllPlayersArray())
{ {
if ((player != null) && !BlockList.isBlocked(player, activeChar)) if ((player != null) && !BlockList.isBlocked(player, activeChar))
......
...@@ -50,7 +50,7 @@ public class ChatParty implements IChatHandler ...@@ -50,7 +50,7 @@ public class ChatParty implements IChatHandler
return; return;
} }
CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), ChatTranslationTool.traslate(text)); CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), text);
activeChar.getParty().broadcastCreatureSay(cs, activeChar); activeChar.getParty().broadcastCreatureSay(cs, activeChar);
} }
} }
......
...@@ -55,7 +55,7 @@ public class ChatPartyMatchRoom implements IChatHandler ...@@ -55,7 +55,7 @@ public class ChatPartyMatchRoom implements IChatHandler
return; return;
} }
CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), ChatTranslationTool.traslate(text)); CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), text);
for (L2PcInstance _member : _room.getPartyMembers()) for (L2PcInstance _member : _room.getPartyMembers())
{ {
_member.sendPacket(cs); _member.sendPacket(cs);
......
...@@ -52,7 +52,7 @@ public class ChatPartyRoomAll implements IChatHandler ...@@ -52,7 +52,7 @@ public class ChatPartyRoomAll implements IChatHandler
return; return;
} }
CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), ChatTranslationTool.traslate(text)); CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), text);
activeChar.getParty().getCommandChannel().broadcastCreatureSay(cs, activeChar); activeChar.getParty().getCommandChannel().broadcastCreatureSay(cs, activeChar);
} }
} }
......
...@@ -52,7 +52,7 @@ public class ChatPartyRoomCommander implements IChatHandler ...@@ -52,7 +52,7 @@ public class ChatPartyRoomCommander implements IChatHandler
return; return;
} }
CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), ChatTranslationTool.traslate(text)); CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), text);
activeChar.getParty().getCommandChannel().broadcastCreatureSay(cs, activeChar); activeChar.getParty().getCommandChannel().broadcastCreatureSay(cs, activeChar);
} }
} }
......
...@@ -55,7 +55,7 @@ public class ChatPetition implements IChatHandler ...@@ -55,7 +55,7 @@ public class ChatPetition implements IChatHandler
return; return;
} }
PetitionManager.getInstance().sendActivePetitionMessage(activeChar, ChatTranslationTool.traslate(text)); PetitionManager.getInstance().sendActivePetitionMessage(activeChar, text);
} }
/** /**
......
...@@ -52,7 +52,7 @@ public class ChatShout implements IChatHandler ...@@ -52,7 +52,7 @@ public class ChatShout implements IChatHandler
return; return;
} }
CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), ChatTranslationTool.traslate(text)); CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), text);
L2PcInstance[] pls = L2World.getInstance().getAllPlayersArray(); L2PcInstance[] pls = L2World.getInstance().getAllPlayersArray();
......
...@@ -63,7 +63,7 @@ public class ChatTell implements IChatHandler ...@@ -63,7 +63,7 @@ public class ChatTell implements IChatHandler
return; return;
} }
CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), ChatTranslationTool.traslate(text)); CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), text);
L2PcInstance receiver = null; L2PcInstance receiver = null;
receiver = L2World.getInstance().getPlayer(target); receiver = L2World.getInstance().getPlayer(target);
......
...@@ -52,7 +52,7 @@ public class ChatTrade implements IChatHandler ...@@ -52,7 +52,7 @@ public class ChatTrade implements IChatHandler
return; return;
} }
CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), ChatTranslationTool.traslate(text)); CreatureSay cs = new CreatureSay(activeChar.getObjectId(), type, activeChar.getName(), text);
L2PcInstance[] pls = L2World.getInstance().getAllPlayersArray(); L2PcInstance[] pls = L2World.getInstance().getAllPlayersArray();
......
/*
* Copyright (C) 2004-2013 L2J DataPack
*
* This file is part of L2J DataPack.
*
* L2J DataPack is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* L2J DataPack is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package handlers.chathandlers;
import java.util.Arrays;
import java.util.List;
import com.l2jserver.util.Rnd;
/**
* Translation tool.
* @author Zoey76
*/
public class ChatTranslationTool
{
private static final List<Character> TRANSLATION_TABLE = Arrays.asList('@', '8', '(', '9', '3', 'F', '6', 'h', '|', 'j', 'k', 'L', 'm', 'n', '0', 'p', 'q', 'R', '$', '7', 'u', 'v', 'W', '%', 'y', 'z');
protected static String traslate(String text)
{
final StringBuilder result = new StringBuilder(text.length() + 10);
Character x;
for (char c : text.toCharArray())
{
x = getChar(c);
if (Character.isLetter(x) && Rnd.nextBoolean())
{
x = Character.isUpperCase(x) ? Character.toLowerCase(x) : Character.toUpperCase(x);
}
result.append(x);
}
return result.toString();
}
private static final Character getChar(char c)
{
int index = -1;
if ((c > 96) && (c < 123))
{
index = c - 97;
}
else if ((c > 64) && (c < 91))
{
index = c - 65;
}
return index < 0 ? c : TRANSLATION_TABLE.get(index);
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment