summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-01-06 15:14:42 +0300
committerAndrei Karas <akaras@inbox.ru>2015-01-06 15:14:42 +0300
commit5b0506f5c2c43b155ad18eb346bf381b447f1281 (patch)
tree1c11c1bde031254768d4c6480ff0eddfba6da81b /src
parent4002c63e4164fa496038dee0e9cad2f5e1598772 (diff)
downloadplus-5b0506f5c2c43b155ad18eb346bf381b447f1281.tar.gz
plus-5b0506f5c2c43b155ad18eb346bf381b447f1281.tar.bz2
plus-5b0506f5c2c43b155ad18eb346bf381b447f1281.tar.xz
plus-5b0506f5c2c43b155ad18eb346bf381b447f1281.zip
eathena: add packet CMSG_AUCTION_BID 0x024f.
Diffstat (limited to 'src')
-rw-r--r--src/net/auctionhandler.h3
-rw-r--r--src/net/eathena/auctionhandler.cpp8
-rw-r--r--src/net/eathena/auctionhandler.h3
-rw-r--r--src/net/eathena/protocol.h1
-rw-r--r--src/net/tmwa/auctionhandler.cpp5
-rw-r--r--src/net/tmwa/auctionhandler.h3
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