GuildOperationHandler.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:14k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file was written by "StellarAshes" <stellar_dust@hotmail.com> 
  3. as a part of the Guild package for
  4. the OdinMS Maple Story Server
  5.     Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  6.                        Matthias Butz <matze@odinms.de>
  7.                        Jan Christian Meyer <vimes@odinms.de>
  8.     This program is free software: you can redistribute it and/or modify
  9.     it under the terms of the GNU Affero General Public License version 3
  10.     as published by the Free Software Foundation. You may not use, modify
  11.     or distribute this program under any other version of the
  12.     GNU Affero General Public License.
  13.     This program is distributed in the hope that it will be useful,
  14.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.     GNU Affero General Public License for more details.
  17.     You should have received a copy of the GNU Affero General Public License
  18.     along with this program.  If not, see <http://www.gnu.org/licenses/>.
  19.  */
  20. package net.sf.odinms.net.channel.handler;
  21. import net.sf.odinms.client.MapleClient;
  22. import net.sf.odinms.net.AbstractMaplePacketHandler;
  23. import net.sf.odinms.tools.data.input.SeekableLittleEndianAccessor;
  24. import org.slf4j.Logger;
  25. import org.slf4j.LoggerFactory;
  26. import net.sf.odinms.net.world.guild.*;
  27. import java.util.Iterator;
  28. import net.sf.odinms.tools.MaplePacketCreator;
  29. import net.sf.odinms.client.MapleCharacter;
  30. import net.sf.odinms.client.MaplePet;
  31. public class GuildOperationHandler extends AbstractMaplePacketHandler {
  32. private boolean isGuildNameAcceptable(String name) {
  33. if (name.length() < 3 || name.length() > 12)
  34. return false;
  35. for (int i = 0; i < name.length(); i++)
  36. if (!Character.isLowerCase(name.charAt(i)) && !Character.isUpperCase(name.charAt(i)))
  37. return false;
  38. return true;
  39. }
  40. private void respawnPlayer(MapleCharacter mc) {
  41. mc.getMap().broadcastMessage(mc, MaplePacketCreator.removePlayerFromMap(mc.getId()), false);
  42. mc.getMap().broadcastMessage(mc, MaplePacketCreator.spawnPlayerMapobject(mc), false);
  43. if (mc.getNoPets() > 0) {
  44. for (MaplePet pet : mc.getPets()) {
  45. mc.getMap().broadcastMessage(mc, MaplePacketCreator.showPet(mc, pet, false, false), false);
  46. }
  47. }
  48. }
  49. private class Invited {
  50. public String name;
  51. public int gid;
  52. public long expiration;
  53. public Invited(String n, int id) {
  54. name = n.toLowerCase();
  55. gid = id;
  56. expiration = System.currentTimeMillis() + 60 * 60 * 1000; // 1 hr expiration
  57. }
  58. @Override
  59. public boolean equals(Object other) {
  60. if (!(other instanceof Invited))
  61. return false;
  62. Invited oth = (Invited) other;
  63. return (gid == oth.gid && name.equals(oth));
  64. }
  65. }
  66. private Logger log = LoggerFactory.getLogger(this.getClass());
  67. private java.util.List<Invited> invited = new java.util.LinkedList<Invited>();
  68. private long nextPruneTime = System.currentTimeMillis() + 20 * 60 * 1000;
  69. @Override
  70. public void handlePacket(SeekableLittleEndianAccessor slea, MapleClient c) {
  71.         if (System.currentTimeMillis() >= nextPruneTime) {
  72.             Iterator<Invited> itr = invited.iterator();
  73.             Invited inv;
  74.             while (itr.hasNext()) {
  75.                 inv = itr.next();
  76.                 if (System.currentTimeMillis() >= inv.expiration)
  77.                     itr.remove();
  78.             }
  79.             nextPruneTime = System.currentTimeMillis() + 20 * 60 * 1000;
  80.         }
  81.         MapleCharacter mc = c.getPlayer();
  82.         byte type = slea.readByte();
  83.         switch (type) {
  84.             case 0x02:
  85.                 if (mc.getGuildId() > 0 || mc.getMapId() != 200000301) {
  86.                     c.getSession().write(MaplePacketCreator.serverNotice(1, "你不能在这里创建家族."));
  87.                     return;
  88.                 }
  89.                 if (mc.getMeso() < MapleGuild.CREATE_GUILD_COST) {
  90.                     c.getSession().write(MaplePacketCreator.serverNotice(1, "你没有足够的金钱创建家族."));
  91.                     return;
  92.                 }
  93.                 String guildName = slea.readMapleAsciiString();
  94.                 if (!isGuildNameAcceptable(guildName)) {
  95.                     c.getSession().write(MaplePacketCreator.serverNotice(1, "The Guild name you have chosen is not accepted."));
  96.                     return;
  97.                 }
  98.                 int gid;
  99.                 try {
  100.                     gid = c.getChannelServer().getWorldInterface().createGuild(mc.getId(), guildName);
  101.                 } catch (java.rmi.RemoteException re) {
  102.                     System.out.println("RemoteException occurred " + re);
  103.                     c.getPlayer().dropMessage(5, "无法连接到服务器,请稍候再试.");
  104.                     return;
  105.                 }
  106.                 if (gid == 0) {
  107.                     c.getSession().write(MaplePacketCreator.genericGuildMessage((byte) 0x1c));
  108.                     return;
  109.                 }
  110.                 mc.gainMeso(-MapleGuild.CREATE_GUILD_COST, true, false, true);
  111.                 mc.setGuildId(gid);
  112.                 mc.setGuildRank(1);
  113.                 mc.saveGuildStatus();
  114.                 c.getSession().write(MaplePacketCreator.showGuildInfo(mc));
  115.                 c.getSession().write(MaplePacketCreator.serverNotice(1, "你已成功创建一个家族."));
  116.                 respawnPlayer(mc);
  117.                 break;
  118.             case 0x05:
  119.                 if (mc.getGuildId() <= 0 || mc.getGuildRank() > 2)
  120.                     return;
  121.                 String name = slea.readMapleAsciiString();
  122.                 MapleGuildResponse mgr = MapleGuild.sendInvite(c, name);
  123.                 if (mgr != null)
  124.                     c.getSession().write(mgr.getPacket());
  125.                  else {
  126.                     Invited inv = new Invited(name, mc.getGuildId());
  127.                     if (!invited.contains(inv)) {
  128.                         invited.add(inv);
  129.                     }
  130.                 }
  131.                 break;
  132.             case 0x06:
  133.                 if (mc.getGuildId() > 0) {
  134.                     System.out.println("[hax] " + mc.getName() + " attempted to join a guild when s/he is already in one.");
  135.                     return;
  136.                 }
  137.                 gid = slea.readInt();
  138.                 int cid = slea.readInt();
  139.                 if (cid != mc.getId()) {
  140.                     System.out.println("[hax] " + mc.getName() + " attempted to join a guild with a different character id.");
  141.                     return;
  142.                 }
  143.                 name = mc.getName().toLowerCase();
  144.                 Iterator<Invited> itr = invited.iterator();
  145.                 boolean bOnList = false;
  146.                 while (itr.hasNext()) {
  147.                     Invited inv = itr.next();
  148.                     if (gid == inv.gid && name.equals(inv.name)) {
  149.                         bOnList = true;
  150.                         itr.remove();
  151.                         break;
  152.                     }
  153.                 }
  154.                 if (!bOnList) {
  155.                     System.out.println("[hax] " + mc.getName() + " is trying to join a guild that never invited him/her (or that the invitation has expired)");
  156.                     return;
  157.                 }
  158.                 mc.setGuildId(gid); // joins the guild
  159.                 mc.setGuildRank(5); // start at lowest rank
  160.                 int s;
  161.                 try {
  162.                     s = c.getChannelServer().getWorldInterface().addGuildMember(mc.getMGC());
  163.                 } catch (java.rmi.RemoteException e) {
  164.                     System.out.println("RemoteException occurred while attempting to add character to guild " + e);
  165.                     c.getPlayer().dropMessage(5, "无法连接到服务器,请稍候再试.");
  166.                     mc.setGuildId(0);
  167.                     return;
  168.                 }
  169.                 if (s == 0) {
  170.                     c.getPlayer().dropMessage(1, "你尝试加入的家族已满人.");
  171.                     mc.setGuildId(0);
  172.                     return;
  173.                 }
  174.                 c.getSession().write(MaplePacketCreator.showGuildInfo(mc));
  175.                 mc.saveGuildStatus(); // update database
  176.                 respawnPlayer(mc);
  177.                 break;
  178.             case 0x07://离开
  179.                 cid = slea.readInt();
  180.                 name = slea.readMapleAsciiString();
  181.                 if (cid != mc.getId() || !name.equals(mc.getName()) || mc.getGuildId() <= 0) {
  182.                     System.out.println("[hax] " + mc.getName() + " tried to quit guild under the name "" + name + "" and current guild id of " + mc.getGuildId() + ".");
  183.                     return;
  184.                 }
  185.                 try {
  186.                     c.getChannelServer().getWorldInterface().leaveGuild(mc.getMGC());
  187.                 } catch (java.rmi.RemoteException re) {
  188.                     System.out.println("RemoteException occurred while attempting to leave guild " + re);
  189.                     c.getPlayer().dropMessage(5, "无法连接到服务器,请稍候再试.");
  190.                     return;
  191.                 }
  192.                 c.getSession().write(MaplePacketCreator.showGuildInfo(null));
  193.                 mc.setGuildId(0);
  194.                 mc.saveGuildStatus();
  195.                 respawnPlayer(mc);
  196.                 break;
  197.             case 0x08:
  198.                 cid = slea.readInt();
  199.                 name = slea.readMapleAsciiString();
  200.                 if (mc.getGuildRank() > 2 || mc.getGuildId() <= 0) {
  201.                     System.out.println("[hax] " + mc.getName() + " is trying to expel without rank 1 or 2.");
  202.                     return;
  203.                 }
  204.                 try {
  205.                     c.getChannelServer().getWorldInterface().expelMember(mc.getMGC(), name, cid);
  206.                 } catch (java.rmi.RemoteException re) {
  207.                     System.out.println("RemoteException occurred while attempting to change rank"+ re);
  208.                     c.getPlayer().dropMessage(5, "无法连接到服务器,请稍候再试.");
  209.                     return;
  210.                 }
  211.                 break;
  212.             case 0x0d:
  213.                 if (mc.getGuildId() <= 0 || mc.getGuildRank() != 1) {
  214.                     System.out.println("[hax] " + mc.getName() + " tried to change guild rank titles when s/he does not have permission.");
  215.                     return;
  216.                 }
  217.                 String ranks[] = new String[5];
  218.                 for (int i = 0; i < 5; i++) {
  219.                     ranks[i] = slea.readMapleAsciiString();
  220.                 }
  221.                 try {
  222.                     c.getChannelServer().getWorldInterface().changeRankTitle(mc.getGuildId(), ranks);
  223.                 } catch (java.rmi.RemoteException re) {
  224.                     System.out.println("RemoteException occurred"+ re);
  225.                     c.getPlayer().dropMessage(5, "无法连接到服务器,请稍候再试.");
  226.                     return;
  227.                 }
  228.                 break;
  229.             case 0x0e:
  230.                 cid = slea.readInt();
  231.                 byte newRank = slea.readByte();
  232.                 if (mc.getGuildRank() > 2 || (newRank <= 2 && mc.getGuildRank() != 1) || mc.getGuildId() <= 0) {
  233.                     System.out.println("[hax] " + mc.getName() + " is trying to change rank outside of his/her permissions.");
  234.                     return;
  235.                 }
  236.                 if (newRank <= 1 || newRank > 5) {
  237.                     return;
  238.                 }
  239.                 try {
  240.                     c.getChannelServer().getWorldInterface().changeRank(mc.getGuildId(), cid, newRank);
  241.                 } catch (java.rmi.RemoteException re) {
  242.                     System.out.println("RemoteException occurred while attempting to change rank"+ re);
  243.                     c.getPlayer().dropMessage(5, "无法连接到服务器,请稍候再试.");
  244.                     return;
  245.                 }
  246.                 break;
  247.             case 0x0f:
  248.                 if (mc.getGuildId() <= 0 || mc.getGuildRank() != 1 || mc.getMapId() != 200000301) {
  249.                     System.out.println("[hax] " + mc.getName() + " tried to change guild emblem without being the guild leader.");
  250.                     return;
  251.                 }
  252.                 if (mc.getMeso() < MapleGuild.CHANGE_EMBLEM_COST) {
  253.                     c.getSession().write(MaplePacketCreator.serverNotice(1, "You do not have enough mesos to create a Guild."));
  254.                     return;
  255.                 }
  256.                 short bg = slea.readShort();
  257.                 byte bgcolor = slea.readByte();
  258.                 short logo = slea.readShort();
  259.                 byte logocolor = slea.readByte();
  260.                 try {
  261.                     c.getChannelServer().getWorldInterface().setGuildEmblem(mc.getGuildId(), bg, bgcolor, logo, logocolor);
  262.                 } catch (java.rmi.RemoteException re) {
  263.                     System.out.println("RemoteException occurred"+ re);
  264.                     c.getPlayer().dropMessage(5, "无法连接到服务器,请稍候再试.");
  265.                     return;
  266.                 }
  267.                 mc.gainMeso(-MapleGuild.CHANGE_EMBLEM_COST, true, false, true);
  268.                 respawnPlayer(mc);
  269.                 // c.getSession().write(MaplePacketCreator.serverNotice(1, "Your Guild's emblem has been changed."));
  270.                 break;
  271.             case 0x10:
  272.                 // guild notice change 3C 00 10 0B 00 74 65 73 74 20 6E 6F 74 69 63 65
  273.                 if (mc.getGuildId() <= 0 || mc.getGuildRank() > 2) {
  274.                     System.out.println("[hax] " + mc.getName() + " tried to change guild notice while not in a guild.");
  275.                     return;
  276.                 }
  277.                 String notice = slea.readMapleAsciiString();
  278.                 if (notice.length() > 100) {
  279.                     return; // hax.
  280.                 }
  281.                 try {
  282.                     c.getChannelServer().getWorldInterface().setGuildNotice(mc.getGuildId(), notice);
  283.                 } catch (java.rmi.RemoteException re) {
  284.                     System.out.println("RemoteException occurred"+ re);
  285.                     c.getPlayer().dropMessage(5, "无法连接到服务器,请稍候再试.");
  286.                     return;
  287.                 }
  288.                 break;
  289.             default:
  290.                 System.out.println("Unhandled GUILD_OPERATION packet: n" + slea.toString());
  291.         }
  292.     }
  293. }