123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623 |
- /*
- * This program 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.
- *
- * This program 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 net.sf.l2j.gameserver.communitybbs.Manager;
- import java.util.Collections;
- import java.util.Comparator;
- import java.util.StringTokenizer;
- import java.util.logging.Level;
- import java.util.logging.LogRecord;
- import java.util.logging.Logger;
- import javolution.text.TextBuilder;
- import javolution.util.FastList;
- import javolution.util.FastMap;
- import net.sf.l2j.Config;
- import net.sf.l2j.gameserver.GameServer;
- import net.sf.l2j.gameserver.model.BlockList;
- import net.sf.l2j.gameserver.model.L2World;
- import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
- import net.sf.l2j.gameserver.model.base.Experience;
- import net.sf.l2j.gameserver.network.SystemMessageId;
- import net.sf.l2j.gameserver.network.clientpackets.Say2;
- import net.sf.l2j.gameserver.network.serverpackets.CreatureSay;
- import net.sf.l2j.gameserver.network.serverpackets.ShowBoard;
- import net.sf.l2j.gameserver.network.serverpackets.SystemMessage;
- public class RegionBBSManager extends BaseBBSManager
- {
- private static Logger _logChat = Logger.getLogger("chat");
-
- /**
- *
- * @see net.sf.l2j.gameserver.communitybbs.Manager.BaseBBSManager#parsecmd(java.lang.String, net.sf.l2j.gameserver.model.actor.instance.L2PcInstance)
- */
- @Override
- public void parsecmd(String command, L2PcInstance activeChar)
- {
- if (command.equals("_bbsloc"))
- {
- showOldCommunity(activeChar, 1);
- }
- else if (command.startsWith("_bbsloc;page;"))
- {
- StringTokenizer st = new StringTokenizer(command, ";");
- st.nextToken();
- st.nextToken();
- int page = 0;
- try
- {
- page = Integer.parseInt(st.nextToken());
- }
- catch (NumberFormatException nfe)
- {
- }
-
- showOldCommunity(activeChar, page);
- }
- else if (command.startsWith("_bbsloc;playerinfo;"))
- {
- StringTokenizer st = new StringTokenizer(command, ";");
- st.nextToken();
- st.nextToken();
- String name = st.nextToken();
-
- showOldCommunityPI(activeChar, name);
- }
- else
- {
- if (Config.COMMUNITY_TYPE == 1)
- {
- showOldCommunity(activeChar, 1);
- }
- else
- {
- ShowBoard sb = new ShowBoard("<html><body><br><br><center>the command: " + command + " is not implemented yet</center><br><br></body></html>", "101");
- activeChar.sendPacket(sb);
- activeChar.sendPacket(new ShowBoard(null, "102"));
- activeChar.sendPacket(new ShowBoard(null, "103"));
- }
- }
- }
-
- /**
- * @param activeChar
- * @param name
- */
- private void showOldCommunityPI(L2PcInstance activeChar, String name)
- {
- TextBuilder htmlCode = new TextBuilder("<html><body><br>");
- htmlCode.append("<table border=0><tr><td FIXWIDTH=15></td><td align=center>L2J Community Board<img src=\"sek.cbui355\" width=610 height=1></td></tr><tr><td FIXWIDTH=15></td><td>");
- L2PcInstance player = L2World.getInstance().getPlayer(name);
-
- if (player != null)
- {
- String sex = "Male";
- if (player.getAppearance().getSex())
- {
- sex = "Female";
- }
- String levelApprox = "low";
- if (player.getLevel() >= 60)
- levelApprox = "very high";
- else if (player.getLevel() >= 40)
- levelApprox = "high";
- else if (player.getLevel() >= 20)
- levelApprox = "medium";
- htmlCode.append("<table border=0><tr><td>" + player.getName() + " (" + sex + " " + player.getTemplate().className + "):</td></tr>");
- htmlCode.append("<tr><td>Level: " + levelApprox + "</td></tr>");
- htmlCode.append("<tr><td><br></td></tr>");
-
- if (activeChar != null && (activeChar.isGM() || player.getObjectId() == activeChar.getObjectId() || Config.SHOW_LEVEL_COMMUNITYBOARD))
- {
- long nextLevelExp = 0;
- long nextLevelExpNeeded = 0;
- if (player.getLevel() < (Experience.MAX_LEVEL - 1))
- {
- nextLevelExp = Experience.LEVEL[player.getLevel() + 1];
- nextLevelExpNeeded = nextLevelExp - player.getExp();
- }
-
- htmlCode.append("<tr><td>Level: " + player.getLevel() + "</td></tr>");
- htmlCode.append("<tr><td>Experience: " + player.getExp() + "/" + nextLevelExp + "</td></tr>");
- htmlCode.append("<tr><td>Experience needed for level up: " + nextLevelExpNeeded + "</td></tr>");
- htmlCode.append("<tr><td><br></td></tr>");
- }
-
- int uptime = (int) player.getUptime() / 1000;
- int h = uptime / 3600;
- int m = (uptime - (h * 3600)) / 60;
- int s = ((uptime - (h * 3600)) - (m * 60));
-
- htmlCode.append("<tr><td>Uptime: " + h + "h " + m + "m " + s + "s</td></tr>");
- htmlCode.append("<tr><td><br></td></tr>");
-
- if (player.getClan() != null)
- {
- htmlCode.append("<tr><td>Clan: " + player.getClan().getName() + "</td></tr>");
- htmlCode.append("<tr><td><br></td></tr>");
- }
-
- htmlCode.append("<tr><td><multiedit var=\"pm\" width=240 height=40><button value=\"Send PM\" action=\"Write Region PM "
- + player.getName()
- + " pm pm pm\" width=110 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr><tr><td><br><button value=\"Back\" action=\"bypass _bbsloc\" width=40 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr></table>");
- htmlCode.append("</td></tr></table>");
- htmlCode.append("</body></html>");
- separateAndSend(htmlCode.toString(), activeChar);
- }
- else
- {
- ShowBoard sb = new ShowBoard("<html><body><br><br><center>No player with name " + name + "</center><br><br></body></html>", "101");
- activeChar.sendPacket(sb);
- activeChar.sendPacket(new ShowBoard(null, "102"));
- activeChar.sendPacket(new ShowBoard(null, "103"));
- }
- }
-
- /**
- * @param activeChar
- */
- private void showOldCommunity(L2PcInstance activeChar, int page)
- {
- separateAndSend(getCommunityPage(page, activeChar.isGM() ? "gm" : "pl"), activeChar);
- }
-
- /* (non-Javadoc)
- * @see net.sf.l2j.gameserver.communitybbs.Manager.BaseBBSManager#parsewrite(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String, net.sf.l2j.gameserver.model.actor.instance.L2PcInstance)
- */
- @Override
- public void parsewrite(String ar1, String ar2, String ar3, String ar4, String ar5, L2PcInstance activeChar)
- {
- if (activeChar == null)
- return;
-
- if (ar1.equals("PM"))
- {
- TextBuilder htmlCode = new TextBuilder("<html><body><br>");
- htmlCode.append("<table border=0><tr><td FIXWIDTH=15></td><td align=center>L2J Community Board<img src=\"sek.cbui355\" width=610 height=1></td></tr><tr><td FIXWIDTH=15></td><td>");
-
- try
- {
-
- L2PcInstance receiver = L2World.getInstance().getPlayer(ar2);
- if (receiver == null)
- {
- htmlCode.append("Player not found!<br><button value=\"Back\" action=\"bypass _bbsloc;playerinfo;" + ar2 + "\" width=40 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- htmlCode.append("</td></tr></table></body></html>");
- separateAndSend(htmlCode.toString(), activeChar);
- return;
- }
- if (Config.JAIL_DISABLE_CHAT && receiver.isInJail())
- {
- activeChar.sendMessage("Player is in jail.");
- return;
- }
- if (receiver.isChatBanned())
- {
- activeChar.sendMessage("Player is chat banned.");
- return;
- }
- if (activeChar.isInJail() && Config.JAIL_DISABLE_CHAT)
- {
- activeChar.sendMessage("You can not chat while in jail.");
- return;
- }
-
- if (Config.LOG_CHAT)
- {
- LogRecord record = new LogRecord(Level.INFO, ar3);
- record.setLoggerName("chat");
- record.setParameters(new Object[]
- {
- "TELL", "[" + activeChar.getName() + " to " + receiver.getName() + "]"
- });
- _logChat.log(record);
- }
- CreatureSay cs = new CreatureSay(activeChar.getObjectId(), Say2.TELL, activeChar.getName(), ar3);
- if (receiver != null && !BlockList.isBlocked(receiver, activeChar))
- {
- if (!receiver.getMessageRefusal())
- {
- receiver.sendPacket(cs);
- activeChar.sendPacket(new CreatureSay(activeChar.getObjectId(), Say2.TELL, "->" + receiver.getName(), ar3));
- htmlCode.append("Message Sent<br><button value=\"Back\" action=\"bypass _bbsloc;playerinfo;" + receiver.getName() + "\" width=40 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- htmlCode.append("</td></tr></table></body></html>");
- separateAndSend(htmlCode.toString(), activeChar);
- }
- else
- {
- SystemMessage sm = new SystemMessage(SystemMessageId.THE_PERSON_IS_IN_MESSAGE_REFUSAL_MODE);
- activeChar.sendPacket(sm);
- parsecmd("_bbsloc;playerinfo;" + receiver.getName(), activeChar);
- }
- }
- else
- {
- SystemMessage sm = new SystemMessage(SystemMessageId.S1_IS_NOT_ONLINE);
- sm.addString(receiver.getName());
- activeChar.sendPacket(sm);
- sm = null;
- }
- }
- catch (StringIndexOutOfBoundsException e)
- {
- // ignore
- }
- }
- else
- {
- ShowBoard sb = new ShowBoard("<html><body><br><br><center>the command: " + ar1 + " is not implemented yet</center><br><br></body></html>", "101");
- activeChar.sendPacket(sb);
- activeChar.sendPacket(new ShowBoard(null, "102"));
- activeChar.sendPacket(new ShowBoard(null, "103"));
- }
-
- }
- private static RegionBBSManager _instance = null;
- private int _onlineCount = 0;
- private int _onlineCountGm = 0;
- private static FastMap<Integer, FastList<L2PcInstance>> _onlinePlayers = new FastMap<Integer, FastList<L2PcInstance>>().setShared(true);
- private static FastMap<Integer, FastMap<String, String>> _communityPages = new FastMap<Integer, FastMap<String, String>>().setShared(true);
-
- /**
- * @return
- */
- public static RegionBBSManager getInstance()
- {
- if (_instance == null)
- {
- _instance = new RegionBBSManager();
- }
- return _instance;
- }
-
- public synchronized void changeCommunityBoard()
- {
- FastList<L2PcInstance> sortedPlayers = new FastList<L2PcInstance>();
- //synchronized (L2World.getInstance().getAllPlayers())
- {
- sortedPlayers.addAll(L2World.getInstance().getAllPlayers().values());
- }
-
- Collections.sort(sortedPlayers, new Comparator<L2PcInstance>() {
- public int compare(L2PcInstance p1, L2PcInstance p2)
- {
- return p1.getName().compareToIgnoreCase(p2.getName());
- }
- });
-
- _onlinePlayers.clear();
- _onlineCount = 0;
- _onlineCountGm = 0;
-
- for (L2PcInstance player : sortedPlayers)
- {
- addOnlinePlayer(player);
- }
-
- _communityPages.clear();
- writeCommunityPages();
- }
-
- private void addOnlinePlayer(L2PcInstance player)
- {
- boolean added = false;
-
- for (FastList<L2PcInstance> page : _onlinePlayers.values())
- {
- if (page.size() < Config.NAME_PAGE_SIZE_COMMUNITYBOARD)
- {
- if (!page.contains(player))
- {
- page.add(player);
- if (!player.getAppearance().getInvisible())
- _onlineCount++;
- _onlineCountGm++;
- }
- added = true;
- break;
- }
- else if (page.contains(player))
- {
- added = true;
- break;
- }
- }
-
- if (!added)
- {
- FastList<L2PcInstance> temp = new FastList<L2PcInstance>();
- int page = _onlinePlayers.size() + 1;
- if (temp.add(player))
- {
- _onlinePlayers.put(page, temp);
- if (!player.getAppearance().getInvisible())
- _onlineCount++;
- _onlineCountGm++;
- }
- }
- }
-
- private void writeCommunityPages()
- {
- for (int page : _onlinePlayers.keySet())
- {
- FastMap<String, String> communityPage = new FastMap<String, String>();
- TextBuilder htmlCode = new TextBuilder("<html><body><br>");
- String tdClose = "</td>";
- String tdOpen = "<td align=left valign=top>";
- String trClose = "</tr>";
- String trOpen = "<tr>";
- String colSpacer = "<td FIXWIDTH=15></td>";
-
- htmlCode.append("<table>");
-
- htmlCode.append(trOpen);
- htmlCode.append("<td align=left valign=top>Server Restarted: " + GameServer.dateTimeServerStarted.getTime() + tdClose);
- htmlCode.append(trClose);
-
- htmlCode.append("</table>");
-
- htmlCode.append("<table>");
-
- htmlCode.append(trOpen);
- htmlCode.append(tdOpen + "XP Rate: x" + Config.RATE_XP + tdClose);
- htmlCode.append(colSpacer);
- htmlCode.append(tdOpen + "Party XP Rate: x" + Config.RATE_XP * Config.RATE_PARTY_XP + tdClose);
- htmlCode.append(colSpacer);
- htmlCode.append(tdOpen + "XP Exponent: " + Config.ALT_GAME_EXPONENT_XP + tdClose);
- htmlCode.append(trClose);
-
- htmlCode.append(trOpen);
- htmlCode.append(tdOpen + "SP Rate: x" + Config.RATE_SP + tdClose);
- htmlCode.append(colSpacer);
- htmlCode.append(tdOpen + "Party SP Rate: x" + Config.RATE_SP * Config.RATE_PARTY_SP + tdClose);
- htmlCode.append(colSpacer);
- htmlCode.append(tdOpen + "SP Exponent: " + Config.ALT_GAME_EXPONENT_SP + tdClose);
- htmlCode.append(trClose);
-
- htmlCode.append(trOpen);
- htmlCode.append(tdOpen + "Drop Rate: " + Config.RATE_DROP_ITEMS + tdClose);
- htmlCode.append(colSpacer);
- htmlCode.append(tdOpen + "Spoil Rate: " + Config.RATE_DROP_SPOIL + tdClose);
- htmlCode.append(colSpacer);
- htmlCode.append(tdOpen + "Adena Rate: " + Config.RATE_DROP_ADENA + tdClose);
- htmlCode.append(trClose);
-
- htmlCode.append("</table>");
-
- htmlCode.append("<table>");
- htmlCode.append(trOpen);
- htmlCode.append("<td><img src=\"sek.cbui355\" width=600 height=1><br></td>");
- htmlCode.append(trClose);
-
- htmlCode.append(trOpen);
- htmlCode.append(tdOpen + L2World.getInstance().getAllVisibleObjectsCount() + " Object count</td>");
- htmlCode.append(trClose);
-
- htmlCode.append(trOpen);
- htmlCode.append(tdOpen + getOnlineCount("gm") + " Player(s) Online</td>");
- htmlCode.append(trClose);
- htmlCode.append("</table>");
-
- int cell = 0;
- if (Config.BBS_SHOW_PLAYERLIST)
- {
- htmlCode.append("<table border=0>");
- htmlCode.append("<tr><td><table border=0>");
-
- for (L2PcInstance player : getOnlinePlayers(page))
- {
- cell++;
-
- if (cell == 1)
- htmlCode.append(trOpen);
-
- htmlCode.append("<td align=left valign=top FIXWIDTH=110><a action=\"bypass _bbsloc;playerinfo;" + player.getName() + "\">");
-
- if (player.isGM())
- htmlCode.append("<font color=\"LEVEL\">" + player.getName() + "</font>");
- else
- htmlCode.append(player.getName());
-
- htmlCode.append("</a></td>");
-
- if (cell < Config.NAME_PER_ROW_COMMUNITYBOARD)
- htmlCode.append(colSpacer);
-
- if (cell == Config.NAME_PER_ROW_COMMUNITYBOARD)
- {
- cell = 0;
- htmlCode.append(trClose);
- }
- }
- if (cell > 0 && cell < Config.NAME_PER_ROW_COMMUNITYBOARD)
- htmlCode.append(trClose);
- htmlCode.append("</table><br></td></tr>");
-
- htmlCode.append(trOpen);
- htmlCode.append("<td><img src=\"sek.cbui355\" width=600 height=1><br></td>");
- htmlCode.append(trClose);
-
- htmlCode.append("</table>");
- }
-
- if (getOnlineCount("gm") > Config.NAME_PAGE_SIZE_COMMUNITYBOARD)
- {
- htmlCode.append("<table border=0 width=600>");
-
- htmlCode.append("<tr>");
- if (page == 1)
- htmlCode.append("<td align=right width=190><button value=\"Prev\" width=50 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td>");
- else
- htmlCode.append("<td align=right width=190><button value=\"Prev\" action=\"bypass _bbsloc;page;" + (page - 1) + "\" width=50 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td>");
- htmlCode.append("<td FIXWIDTH=10></td>");
- htmlCode.append("<td align=center valign=top width=200>Displaying " + (((page - 1) * Config.NAME_PAGE_SIZE_COMMUNITYBOARD) + 1) + " - " + (((page - 1) * Config.NAME_PAGE_SIZE_COMMUNITYBOARD) + getOnlinePlayers(page).size())
- + " player(s)</td>");
- htmlCode.append("<td FIXWIDTH=10></td>");
- if (getOnlineCount("gm") <= (page * Config.NAME_PAGE_SIZE_COMMUNITYBOARD))
- htmlCode.append("<td width=190><button value=\"Next\" width=50 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td>");
- else
- htmlCode.append("<td width=190><button value=\"Next\" action=\"bypass _bbsloc;page;" + (page + 1) + "\" width=50 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td>");
- htmlCode.append("</tr>");
- htmlCode.append("</table>");
- }
-
- htmlCode.append("</body></html>");
-
- communityPage.put("gm", htmlCode.toString());
-
- htmlCode = new TextBuilder("<html><body><br>");
- htmlCode.append("<table>");
-
- htmlCode.append(trOpen);
- htmlCode.append("<td align=left valign=top>Server Restarted: " + GameServer.dateTimeServerStarted.getTime() + tdClose);
- htmlCode.append(trClose);
-
- htmlCode.append("</table>");
-
- htmlCode.append("<table>");
-
- htmlCode.append(trOpen);
- htmlCode.append(tdOpen + "XP Rate: " + Config.RATE_XP + tdClose);
- htmlCode.append(colSpacer);
- htmlCode.append(tdOpen + "Party XP Rate: " + Config.RATE_PARTY_XP + tdClose);
- htmlCode.append(colSpacer);
- htmlCode.append(tdOpen + "XP Exponent: " + Config.ALT_GAME_EXPONENT_XP + tdClose);
- htmlCode.append(trClose);
-
- htmlCode.append(trOpen);
- htmlCode.append(tdOpen + "SP Rate: " + Config.RATE_SP + tdClose);
- htmlCode.append(colSpacer);
- htmlCode.append(tdOpen + "Party SP Rate: " + Config.RATE_PARTY_SP + tdClose);
- htmlCode.append(colSpacer);
- htmlCode.append(tdOpen + "SP Exponent: " + Config.ALT_GAME_EXPONENT_SP + tdClose);
- htmlCode.append(trClose);
-
- htmlCode.append(trOpen);
- htmlCode.append(tdOpen + "Drop Rate: " + Config.RATE_DROP_ITEMS + tdClose);
- htmlCode.append(colSpacer);
- htmlCode.append(tdOpen + "Spoil Rate: " + Config.RATE_DROP_SPOIL + tdClose);
- htmlCode.append(colSpacer);
- htmlCode.append(tdOpen + "Adena Rate: " + Config.RATE_DROP_ADENA + tdClose);
- htmlCode.append(trClose);
-
- htmlCode.append("</table>");
-
- htmlCode.append("<table>");
- htmlCode.append(trOpen);
- htmlCode.append("<td><img src=\"sek.cbui355\" width=600 height=1><br></td>");
- htmlCode.append(trClose);
-
- htmlCode.append(trOpen);
- htmlCode.append(tdOpen + getOnlineCount("pl") + " Player(s) Online</td>");
- htmlCode.append(trClose);
- htmlCode.append("</table>");
-
- if (Config.BBS_SHOW_PLAYERLIST)
- {
- htmlCode.append("<table border=0>");
- htmlCode.append("<tr><td><table border=0>");
-
- cell = 0;
- for (L2PcInstance player : getOnlinePlayers(page))
- {
- if ((player == null) || (player.getAppearance().getInvisible()))
- continue; // Go to next
-
- cell++;
-
- if (cell == 1)
- htmlCode.append(trOpen);
-
- htmlCode.append("<td align=left valign=top FIXWIDTH=110><a action=\"bypass _bbsloc;playerinfo;" + player.getName() + "\">");
-
- if (player.isGM())
- htmlCode.append("<font color=\"LEVEL\">" + player.getName() + "</font>");
- else
- htmlCode.append(player.getName());
-
- htmlCode.append("</a></td>");
-
- if (cell < Config.NAME_PER_ROW_COMMUNITYBOARD)
- htmlCode.append(colSpacer);
-
- if (cell == Config.NAME_PER_ROW_COMMUNITYBOARD)
- {
- cell = 0;
- htmlCode.append(trClose);
- }
- }
- if (cell > 0 && cell < Config.NAME_PER_ROW_COMMUNITYBOARD)
- htmlCode.append(trClose);
- htmlCode.append("</table><br></td></tr>");
-
- htmlCode.append(trOpen);
- htmlCode.append("<td><img src=\"sek.cbui355\" width=600 height=1><br></td>");
- htmlCode.append(trClose);
-
- htmlCode.append("</table>");
- }
-
- if (getOnlineCount("pl") > Config.NAME_PAGE_SIZE_COMMUNITYBOARD)
- {
- htmlCode.append("<table border=0 width=600>");
-
- htmlCode.append("<tr>");
- if (page == 1)
- htmlCode.append("<td align=right width=190><button value=\"Prev\" width=50 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td>");
- else
- htmlCode.append("<td align=right width=190><button value=\"Prev\" action=\"bypass _bbsloc;page;" + (page - 1) + "\" width=50 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td>");
- htmlCode.append("<td FIXWIDTH=10></td>");
- htmlCode.append("<td align=center valign=top width=200>Displaying " + (((page - 1) * Config.NAME_PAGE_SIZE_COMMUNITYBOARD) + 1) + " - " + (((page - 1) * Config.NAME_PAGE_SIZE_COMMUNITYBOARD) + getOnlinePlayers(page).size())
- + " player(s)</td>");
- htmlCode.append("<td FIXWIDTH=10></td>");
- if (getOnlineCount("pl") <= (page * Config.NAME_PAGE_SIZE_COMMUNITYBOARD))
- htmlCode.append("<td width=190><button value=\"Next\" width=50 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td>");
- else
- htmlCode.append("<td width=190><button value=\"Next\" action=\"bypass _bbsloc;page;" + (page + 1) + "\" width=50 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td>");
- htmlCode.append("</tr>");
- htmlCode.append("</table>");
- }
-
- htmlCode.append("</body></html>");
-
- communityPage.put("pl", htmlCode.toString());
-
- _communityPages.put(page, communityPage);
- }
- }
-
- private int getOnlineCount(String type)
- {
- if (type.equalsIgnoreCase("gm"))
- return _onlineCountGm;
- else
- return _onlineCount;
- }
-
- private FastList<L2PcInstance> getOnlinePlayers(int page)
- {
- return _onlinePlayers.get(page);
- }
-
- public String getCommunityPage(int page, String type)
- {
- if (_communityPages.get(page) != null)
- return _communityPages.get(page).get(type);
- else
- return null;
- }
- }
|