diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/net/auctionhandler.h | 3 | ||||
-rw-r--r-- | src/net/eathena/auctionhandler.cpp | 8 | ||||
-rw-r--r-- | src/net/eathena/auctionhandler.h | 3 | ||||
-rw-r--r-- | src/net/eathena/protocol.h | 1 | ||||
-rw-r--r-- | src/net/tmwa/auctionhandler.cpp | 5 | ||||
-rw-r--r-- | src/net/tmwa/auctionhandler.h | 3 |
6 files changed, 23 insertions, 0 deletions
diff --git a/src/net/auctionhandler.h b/src/net/auctionhandler.h index b803f6bf6..815393056 100644 --- a/src/net/auctionhandler.h +++ b/src/net/auctionhandler.h @@ -48,6 +48,9 @@ class AuctionHandler notfinal virtual void cancel(const int auctionId) const = 0; virtual void close(const int auctionId) const = 0; + + virtual void bid(const int auctionId, + const int money) const = 0; }; } // namespace Net diff --git a/src/net/eathena/auctionhandler.cpp b/src/net/eathena/auctionhandler.cpp index afb5adbb5..0afe441a9 100644 --- a/src/net/eathena/auctionhandler.cpp +++ b/src/net/eathena/auctionhandler.cpp @@ -161,4 +161,12 @@ void AuctionHandler::close(const int auctionId) const outMsg.writeInt32(auctionId, "auction id"); } +void AuctionHandler::bid(const int auctionId, + const int money) const +{ + createOutPacket(CMSG_AUCTION_BID); + outMsg.writeInt32(auctionId, "auction id"); + outMsg.writeInt32(money, "money"); +} + } // namespace EAthena diff --git a/src/net/eathena/auctionhandler.h b/src/net/eathena/auctionhandler.h index e8406f317..4cf336b96 100644 --- a/src/net/eathena/auctionhandler.h +++ b/src/net/eathena/auctionhandler.h @@ -49,6 +49,9 @@ class AuctionHandler final : public MessageHandler, public Net::AuctionHandler void close(const int auctionId) const override final; + void bid(const int auctionId, + const int money) const override final; + protected: static void processOpenWindow(Net::MessageIn &msg); diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h index e1c3f4775..dd53a12f0 100644 --- a/src/net/eathena/protocol.h +++ b/src/net/eathena/protocol.h @@ -521,5 +521,6 @@ #define CMSG_AUCTION_REGISTER 0x024d #define CMSG_AUCTION_CANCEL 0x024e #define CMSG_AUCTION_CLOSE 0x025d +#define CMSG_AUCTION_BID 0x024f #endif // NET_EATHENA_PROTOCOL_H diff --git a/src/net/tmwa/auctionhandler.cpp b/src/net/tmwa/auctionhandler.cpp index 2909881f5..a52a01b36 100644 --- a/src/net/tmwa/auctionhandler.cpp +++ b/src/net/tmwa/auctionhandler.cpp @@ -65,4 +65,9 @@ void AuctionHandler::close(const int auctionId A_UNUSED) const { } +void AuctionHandler::bid(const int auctionId A_UNUSED, + const int money A_UNUSED) const +{ +} + } // namespace TmwAthena diff --git a/src/net/tmwa/auctionhandler.h b/src/net/tmwa/auctionhandler.h index f36c07fa8..4abe9f514 100644 --- a/src/net/tmwa/auctionhandler.h +++ b/src/net/tmwa/auctionhandler.h @@ -49,6 +49,9 @@ class AuctionHandler final : public MessageHandler, public Net::AuctionHandler void cancel(const int auctionId) const override final; void close(const int auctionId) const override final; + + void bid(const int auctionId, + const int money) const override final; }; } // namespace TmwAthena |