summaryrefslogtreecommitdiff
path: root/src/network/network_server.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-01-21 23:07:11 +0000
committerrubidium <rubidium@openttd.org>2009-01-21 23:07:11 +0000
commitf2777cd02d06cbc88a6b168feec3354e45d1bdea (patch)
tree5d6f9b8b5093af32d97cae67f8ff82af91a50f66 /src/network/network_server.cpp
parent0fa6e050e4aa23c0cceac6f424ac2d9b7f554db3 (diff)
downloadopenttd-f2777cd02d06cbc88a6b168feec3354e45d1bdea.tar.xz
(svn r15200) -Feature: give server admins a tool to combat profanity in nick names (based on patch by dihedral)
Diffstat (limited to 'src/network/network_server.cpp')
-rw-r--r--src/network/network_server.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/network/network_server.cpp b/src/network/network_server.cpp
index a81ba049e..d291bb92a 100644
--- a/src/network/network_server.cpp
+++ b/src/network/network_server.cpp
@@ -1442,6 +1442,31 @@ bool NetworkFindName(char new_name[NETWORK_CLIENT_NAME_LENGTH])
return found_name;
}
+/**
+ * Change the client name of the given client
+ * @param client_id the client to change the name of
+ * @param new_name the new name for the client
+ * @return true iff the name was changed
+ */
+bool NetworkServerChangeClientName(ClientID client_id, const char *new_name)
+{
+ NetworkClientInfo *ci;
+ /* Check if the name's already in use */
+ FOR_ALL_CLIENT_INFOS(ci) {
+ if (strcmp(ci->client_name, new_name) == 0) return false;
+ }
+
+ ci = NetworkFindClientInfoFromClientID(client_id);
+ if (ci == NULL) return false;
+
+ NetworkTextMessage(NETWORK_ACTION_NAME_CHANGE, CC_DEFAULT, true, ci->client_name, new_name);
+
+ strecpy(ci->client_name, new_name, lastof(ci->client_name));
+
+ NetworkUpdateClientInfo(client_id);
+ return true;
+}
+
// Reads a packet from the stream
bool NetworkServer_ReadPackets(NetworkClientSocket *cs)
{