Ported .Net Core commits:
hondacrx: - Initial commit: Switch to .Net Core 2.0 - Fix build and removed not needed files Fabi: - Updated solution platforms. - Changed folder structure. - Change library target framework to netstandard2.0. - Updated solution platforms again... - Removed windows specific kernel32 function usage (Ctrl-C handler).
This commit is contained in:
@@ -0,0 +1,165 @@
|
||||
/*
|
||||
* Copyright (C) 2012-2017 CypherCore <http://github.com/CypherCore>
|
||||
*
|
||||
* 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/>.
|
||||
*/
|
||||
|
||||
using Framework.Constants;
|
||||
using Framework.Database;
|
||||
using Game.BlackMarket;
|
||||
using Game.Entities;
|
||||
using Game.Network;
|
||||
using Game.Network.Packets;
|
||||
|
||||
namespace Game
|
||||
{
|
||||
public partial class WorldSession
|
||||
{
|
||||
[WorldPacketHandler(ClientOpcodes.BlackMarketOpen)]
|
||||
void HandleBlackMarketOpen(BlackMarketOpen blackMarketOpen)
|
||||
{
|
||||
Creature unit = GetPlayer().GetNPCIfCanInteractWith(blackMarketOpen.Guid, NPCFlags.BlackMarket | NPCFlags.BlackMarketView);
|
||||
if (!unit)
|
||||
{
|
||||
Log.outDebug(LogFilter.Network, "WORLD: HandleBlackMarketHello - {0} not found or you can't interact with him.", blackMarketOpen.Guid.ToString());
|
||||
return;
|
||||
}
|
||||
|
||||
// remove fake death
|
||||
if (GetPlayer().HasUnitState(UnitState.Died))
|
||||
GetPlayer().RemoveAurasByType(AuraType.FeignDeath);
|
||||
|
||||
SendBlackMarketOpenResult(blackMarketOpen.Guid, unit);
|
||||
}
|
||||
|
||||
void SendBlackMarketOpenResult(ObjectGuid guid, Creature auctioneer)
|
||||
{
|
||||
BlackMarketOpenResult packet = new BlackMarketOpenResult();
|
||||
packet.Guid = guid;
|
||||
packet.Enable = Global.BlackMarketMgr.IsEnabled();
|
||||
SendPacket(packet);
|
||||
}
|
||||
|
||||
[WorldPacketHandler(ClientOpcodes.BlackMarketRequestItems)]
|
||||
void HandleBlackMarketRequestItems(BlackMarketRequestItems blackMarketRequestItems)
|
||||
{
|
||||
if (!Global.BlackMarketMgr.IsEnabled())
|
||||
return;
|
||||
|
||||
Creature unit = GetPlayer().GetNPCIfCanInteractWith(blackMarketRequestItems.Guid, NPCFlags.BlackMarket | NPCFlags.BlackMarketView);
|
||||
if (!unit)
|
||||
{
|
||||
Log.outDebug(LogFilter.Network, "WORLD: HandleBlackMarketRequestItems - {0} not found or you can't interact with him.", blackMarketRequestItems.Guid.ToString());
|
||||
return;
|
||||
}
|
||||
|
||||
BlackMarketRequestItemsResult result = new BlackMarketRequestItemsResult();
|
||||
Global.BlackMarketMgr.BuildItemsResponse(result, GetPlayer());
|
||||
SendPacket(result);
|
||||
}
|
||||
|
||||
[WorldPacketHandler(ClientOpcodes.BlackMarketBidOnItem)]
|
||||
void HandleBlackMarketBidOnItem(BlackMarketBidOnItem blackMarketBidOnItem)
|
||||
{
|
||||
if (!Global.BlackMarketMgr.IsEnabled())
|
||||
return;
|
||||
|
||||
Player player = GetPlayer();
|
||||
Creature unit = player.GetNPCIfCanInteractWith(blackMarketBidOnItem.Guid, NPCFlags.BlackMarket);
|
||||
if (!unit)
|
||||
{
|
||||
Log.outDebug(LogFilter.Network, "WORLD: HandleBlackMarketBidOnItem - {0} not found or you can't interact with him.", blackMarketBidOnItem.Guid.ToString());
|
||||
return;
|
||||
}
|
||||
|
||||
BlackMarketEntry entry = Global.BlackMarketMgr.GetAuctionByID(blackMarketBidOnItem.MarketID);
|
||||
if (entry == null)
|
||||
{
|
||||
Log.outDebug(LogFilter.Network, "WORLD: HandleBlackMarketBidOnItem - {0} (name: {1}) tried to bid on a nonexistent auction (MarketId: {2}).", player.GetGUID().ToString(), player.GetName(), blackMarketBidOnItem.MarketID);
|
||||
SendBlackMarketBidOnItemResult(BlackMarketError.ItemNotFound, blackMarketBidOnItem.MarketID, blackMarketBidOnItem.Item);
|
||||
return;
|
||||
}
|
||||
|
||||
if (entry.GetBidder() == player.GetGUID().GetCounter())
|
||||
{
|
||||
Log.outDebug(LogFilter.Network, "WORLD: HandleBlackMarketBidOnItem - {0} (name: {1}) tried to place a bid on an item he already bid on. (MarketId: {2}).", player.GetGUID().ToString(), player.GetName(), blackMarketBidOnItem.MarketID);
|
||||
SendBlackMarketBidOnItemResult(BlackMarketError.AlreadyBid, blackMarketBidOnItem.MarketID, blackMarketBidOnItem.Item);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!entry.ValidateBid(blackMarketBidOnItem.BidAmount))
|
||||
{
|
||||
Log.outDebug(LogFilter.Network, "WORLD: HandleBlackMarketBidOnItem - {0} (name: {1}) tried to place an invalid bid. Amount: {2} (MarketId: {3}).", player.GetGUID().ToString(), player.GetName(), blackMarketBidOnItem.BidAmount, blackMarketBidOnItem.MarketID);
|
||||
SendBlackMarketBidOnItemResult(BlackMarketError.HigherBid, blackMarketBidOnItem.MarketID, blackMarketBidOnItem.Item);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!player.HasEnoughMoney(blackMarketBidOnItem.BidAmount))
|
||||
{
|
||||
Log.outDebug(LogFilter.Network, "WORLD: HandleBlackMarketBidOnItem - {0} (name: {1}) does not have enough money to place bid. (MarketId: {2}).", player.GetGUID().ToString(), player.GetName(), blackMarketBidOnItem.MarketID);
|
||||
SendBlackMarketBidOnItemResult(BlackMarketError.NotEnoughMoney, blackMarketBidOnItem.MarketID, blackMarketBidOnItem.Item);
|
||||
return;
|
||||
}
|
||||
|
||||
if (entry.GetSecondsRemaining() <= 0)
|
||||
{
|
||||
Log.outDebug(LogFilter.Network, "WORLD: HandleBlackMarketBidOnItem - {0} (name: {1}) tried to bid on a completed auction. (MarketId: {2}).", player.GetGUID().ToString(), player.GetName(), blackMarketBidOnItem.MarketID);
|
||||
SendBlackMarketBidOnItemResult(BlackMarketError.DatabaseError, blackMarketBidOnItem.MarketID, blackMarketBidOnItem.Item);
|
||||
return;
|
||||
}
|
||||
|
||||
SQLTransaction trans = new SQLTransaction();
|
||||
|
||||
Global.BlackMarketMgr.SendAuctionOutbidMail(entry, trans);
|
||||
entry.PlaceBid(blackMarketBidOnItem.BidAmount, player, trans);
|
||||
|
||||
DB.Characters.CommitTransaction(trans);
|
||||
|
||||
SendBlackMarketBidOnItemResult(BlackMarketError.Ok, blackMarketBidOnItem.MarketID, blackMarketBidOnItem.Item);
|
||||
}
|
||||
|
||||
void SendBlackMarketBidOnItemResult(BlackMarketError result, uint marketId, ItemInstance item)
|
||||
{
|
||||
BlackMarketBidOnItemResult packet = new BlackMarketBidOnItemResult();
|
||||
|
||||
packet.MarketID = marketId;
|
||||
packet.Item = item;
|
||||
packet.Result = result;
|
||||
|
||||
SendPacket(packet);
|
||||
}
|
||||
|
||||
public void SendBlackMarketWonNotification(BlackMarketEntry entry, Item item)
|
||||
{
|
||||
BlackMarketWon packet = new BlackMarketWon();
|
||||
|
||||
packet.MarketID = entry.GetMarketId();
|
||||
packet.Item = new ItemInstance(item);
|
||||
packet.RandomPropertiesID = item.GetItemRandomPropertyId();
|
||||
|
||||
SendPacket(packet);
|
||||
}
|
||||
|
||||
public void SendBlackMarketOutbidNotification(BlackMarketTemplate templ)
|
||||
{
|
||||
BlackMarketOutbid packet = new BlackMarketOutbid();
|
||||
|
||||
packet.MarketID = templ.MarketID;
|
||||
packet.Item = templ.Item;
|
||||
packet.RandomPropertiesID = templ.Item.RandomPropertiesID;
|
||||
|
||||
SendPacket(packet);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user