[Scummvm-git-logs] scummvm master -> 11a72ca928e1294c2dd23bd0ed0a675094f0fd8d
sev-
sev at scummvm.org
Tue Nov 5 18:44:39 CET 2019
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
11a72ca928 SCUMM HE: MBC: Implement Net::destroyPlayer()
Commit: 11a72ca928e1294c2dd23bd0ed0a675094f0fd8d
https://github.com/scummvm/scummvm/commit/11a72ca928e1294c2dd23bd0ed0a675094f0fd8d
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2019-11-05T16:38:25+01:00
Commit Message:
SCUMM HE: MBC: Implement Net::destroyPlayer()
Changed paths:
engines/scumm/he/moonbase/net_main.cpp
engines/scumm/he/moonbase/net_main.h
diff --git a/engines/scumm/he/moonbase/net_main.cpp b/engines/scumm/he/moonbase/net_main.cpp
index c46746a..0412b0b 100644
--- a/engines/scumm/he/moonbase/net_main.cpp
+++ b/engines/scumm/he/moonbase/net_main.cpp
@@ -284,8 +284,29 @@ void Net::setFakeLatency(int time) {
bool Net::destroyPlayer(int32 playerDPID) {
// bool PNETWIN_destroyplayer(DPID idPlayer)
- warning("STUB: Net::destroyPlayer(%d)", playerDPID);
- return false;
+ debug(1, "Net::destroyPlayer(%d)", playerDPID);
+
+ Networking::PostRequest *rq = new Networking::PostRequest(_serverprefix + "/removeuser",
+ new Common::Callback<Net, Common::JSONValue *>(this, &Net::destroyPlayerCallback),
+ new Common::Callback<Net, Networking::ErrorResponse>(this, &Net::destroyPlayerErrorCallback));
+
+ char *buf = (char *)malloc(MAX_PACKET_SIZE);
+ snprintf(buf, MAX_PACKET_SIZE, "{\"sessionid\":%d, \"userid\":%d}", _sessionid, playerDPID);
+ rq->setPostData((byte *)buf, strlen(buf));
+ rq->setContentType("application/json");
+
+ rq->start();
+
+ ConnMan.addRequest(rq);
+
+ return true;
+}
+
+void Net::destroyPlayerCallback(Common::JSONValue *response) {
+}
+
+void Net::destroyPlayerErrorCallback(Networking::ErrorResponse error) {
+ warning("Error in destroyPlayer(): %ld %s", error.httpResponseCode, error.response.c_str());
}
int32 Net::startQuerySessions() {
diff --git a/engines/scumm/he/moonbase/net_main.h b/engines/scumm/he/moonbase/net_main.h
index 31dba67..093cd0f 100644
--- a/engines/scumm/he/moonbase/net_main.h
+++ b/engines/scumm/he/moonbase/net_main.h
@@ -84,6 +84,9 @@ private:
void endSessionCallback(Common::JSONValue *response);
void endSessionErrorCallback(Networking::ErrorResponse error);
+ void destroyPlayerCallback(Common::JSONValue *response);
+ void destroyPlayerErrorCallback(Networking::ErrorResponse error);
+
void remoteSendDataCallback(Common::JSONValue *response);
void remoteSendDataErrorCallback(Networking::ErrorResponse error);
More information about the Scummvm-git-logs
mailing list