📄 auctiontimecontroller.java
字号:
/*
* 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 2, 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* http://www.gnu.org/copyleft/gpl.html
*/
package l1j.server.server;
import java.util.Calendar;
import java.util.logging.Level;
import java.util.logging.Logger;
import java.util.TimeZone;
import l1j.server.Config;
import l1j.server.server.datatables.AuctionBoardTable;
import l1j.server.server.datatables.ClanTable;
import l1j.server.server.datatables.HouseTable;
import l1j.server.server.datatables.ItemTable;
import l1j.server.server.model.L1Clan;
import l1j.server.server.model.L1World;
import l1j.server.server.model.Instance.L1ItemInstance;
import l1j.server.server.model.Instance.L1PcInstance;
import l1j.server.server.model.item.L1ItemId;
import l1j.server.server.serverpackets.S_ServerMessage;
import l1j.server.server.storage.CharactersItemStorage;
import l1j.server.server.templates.L1AuctionBoard;
import l1j.server.server.templates.L1House;
public class AuctionTimeController implements Runnable {
private static l1j.eric.EricLogger _log = l1j.eric.EricLogger.getLogger2(AuctionTimeController.class
.getName());
private static AuctionTimeController _instance;
public static AuctionTimeController getInstance() {
if (_instance == null) {
_instance = new AuctionTimeController();
}
return _instance;
}
@Override
public void run() {
try {
while (true) {
checkAuctionDeadline();
Thread.sleep(60000);
}
} catch (Exception e1) {
}
}
public Calendar getRealTime() {
TimeZone tz = TimeZone.getTimeZone(Config.TIME_ZONE);
Calendar cal = Calendar.getInstance(tz);
return cal;
}
private void checkAuctionDeadline() {
AuctionBoardTable boardTable = new AuctionBoardTable();
for (L1AuctionBoard board : boardTable.getAuctionBoardTableList()) {
if (board.getDeadline().before(getRealTime())) {
endAuction(board);
}
}
}
private void endAuction(L1AuctionBoard board) {
int houseId = board.getHouseId();
int price = board.getPrice();
int oldOwnerId = board.getOldOwnerId();
String bidder = board.getBidder();
int bidderId = board.getBidderId();
if (oldOwnerId != 0 && bidderId != 0) { // 以前の所有者あり・落札者あり
L1PcInstance oldOwnerPc = (L1PcInstance) L1World.getInstance()
.findObject(oldOwnerId);
int payPrice = (int) (price * 0.9);
if (oldOwnerPc != null) { // 以前の所有者がオンライン中
oldOwnerPc.getInventory().storeItem(L1ItemId.ADENA, payPrice);
// あなたが所有していた家が最終価格%1アデナで落札されました。%n
// 手数料10%%を除いた残りの金額%0アデナを差し上げます。%nありがとうございました。%n%n
oldOwnerPc.sendPackets(new S_ServerMessage(527, String
.valueOf(payPrice)));
} else { // 以前の所有者がオフライン中
L1ItemInstance item = ItemTable.getInstance().createItem(
L1ItemId.ADENA);
item.setCount(payPrice);
try {
CharactersItemStorage storage = CharactersItemStorage
.create();
storage.storeItem(oldOwnerId, item);
} catch (Exception e) {
_log.log(Level.SEVERE, e.getLocalizedMessage(), e);
}
}
L1PcInstance bidderPc = (L1PcInstance) L1World.getInstance()
.findObject(bidderId);
if (bidderPc != null) { // 落札者がオンライン中
// おめでとうございます。%nあなたが参加された競売は最終価格%0アデナの価格で落札されました。%n
// 様がご購入された家はすぐにご利用できます。%nありがとうございました。%n%n
bidderPc.sendPackets(new S_ServerMessage(524, String
.valueOf(price), bidder));
}
deleteHouseInfo(houseId);
setHouseInfo(houseId, bidderId);
deleteNote(houseId);
} else if (oldOwnerId == 0 && bidderId != 0) { // 以前の所有者なし・落札者あり
L1PcInstance bidderPc = (L1PcInstance) L1World.getInstance()
.findObject(bidderId);
if (bidderPc != null) { // 落札者がオンライン中
// おめでとうございます。%nあなたが参加された競売は最終価格%0アデナの価格で落札されました。%n
// 様がご購入された家はすぐにご利用できます。%nありがとうございました。%n%n
bidderPc.sendPackets(new S_ServerMessage(524, String
.valueOf(price), bidder));
}
setHouseInfo(houseId, bidderId);
deleteNote(houseId);
} else if (oldOwnerId != 0 && bidderId == 0) { // 以前の所有者あり・落札者なし
L1PcInstance oldOwnerPc = (L1PcInstance) L1World.getInstance()
.findObject(oldOwnerId);
if (oldOwnerPc != null) { // 以前の所有者がオンライン中
// あなたが申請なさった競売は、競売期間内に提示した金額以上での支払いを表明した方が現れなかったため、結局取り消されました。%n
// 従って、所有権があなたに戻されたことをお知らせします。%nありがとうございました。%n%n
oldOwnerPc.sendPackets(new S_ServerMessage(528));
}
deleteNote(houseId);
} else if (oldOwnerId == 0 && bidderId == 0) { // 以前の所有者なし・落札者なし
// 締め切りを5日後に設定し再度競売にかける
Calendar cal = getRealTime();
cal.add(Calendar.DATE, 5); // 5日後
cal.set(Calendar.MINUTE, 0); // 分、秒は切り捨て
cal.set(Calendar.SECOND, 0);
board.setDeadline(cal);
AuctionBoardTable boardTable = new AuctionBoardTable();
boardTable.updateAuctionBoard(board);
}
}
/**
* 以前の所有者のアジトを消す
*
* @param houseId
*
* @return
*/
private void deleteHouseInfo(int houseId) {
for (L1Clan clan : L1World.getInstance().getAllClans()) {
if (clan.getHouseId() == houseId) {
clan.setHouseId(0);
ClanTable.getInstance().updateClan(clan);
}
}
}
/**
* 落札者のアジトを設定する
*
* @param houseId
* bidderId
*
* @return
*/
private void setHouseInfo(int houseId, int bidderId) {
for (L1Clan clan : L1World.getInstance().getAllClans()) {
if (clan.getLeaderId() == bidderId) {
clan.setHouseId(houseId);
ClanTable.getInstance().updateClan(clan);
break;
}
}
}
/**
* アジトの競売状態をOFFに設定し、競売掲示板から消す
*
* @param houseId
*
* @return
*/
private void deleteNote(int houseId) {
// アジトの競売状態をOFFに設定する
L1House house = HouseTable.getInstance().getHouseTable(houseId);
house.setOnSale(false);
Calendar cal = getRealTime();
cal.add(Calendar.DATE, Config.HOUSE_TAX_INTERVAL);
cal.set(Calendar.MINUTE, 0); // 分、秒は切り捨て
cal.set(Calendar.SECOND, 0);
house.setTaxDeadline(cal);
HouseTable.getInstance().updateHouse(house);
// 競売掲示板から消す
AuctionBoardTable boardTable = new AuctionBoardTable();
boardTable.deleteAuctionBoard(houseId);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -