From 46d5fa9b5083163118e8bb4ed33943f5d51ee065 Mon Sep 17 00:00:00 2001 From: Erik Schilling Date: Sun, 4 Dec 2011 05:40:18 +0800 Subject: Added @skills command which lists all skills Reviewed-by: o11c. --- example/serverdata/permissions.xml | 1 + src/game-server/commandhandler.cpp | 41 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/example/serverdata/permissions.xml b/example/serverdata/permissions.xml index aa224421..3f323945 100644 --- a/example/serverdata/permissions.xml +++ b/example/serverdata/permissions.xml @@ -20,6 +20,7 @@ @money @spawn @attribute + @skills @charwarp @killmonsters @getpos diff --git a/src/game-server/commandhandler.cpp b/src/game-server/commandhandler.cpp index a81af954..687457b4 100644 --- a/src/game-server/commandhandler.cpp +++ b/src/game-server/commandhandler.cpp @@ -78,6 +78,7 @@ static void handleLogsay(Character*, std::string&); static void handleKillMonsters(Character*, std::string&); static void handleCraft(Character*, std::string&); static void handleGetPos(Character*, std::string&); +static void handleSkills(Character*, std::string&); static CmdRef const cmdRef[] = { @@ -139,6 +140,8 @@ static CmdRef const cmdRef[] = "Crafts something.", &handleCraft}, {"getpos", "", "Gets the position of a character.", &handleGetPos}, + {"skills", "", + "Lists all skills and their values of a character", &handleSkills}, {NULL, NULL, NULL, NULL} }; @@ -1438,6 +1441,44 @@ static void handleGetPos(Character *player, std::string &args) say(str.str(), player); } +static void handleSkills(Character *player, std::string &args) +{ + std::string character = getArgument(args); + if (character.empty()) + { + say("Invalid amount of arguments given.", player); + say("Usage: @skills ", player); + return; + } + Character *other; + if (character == "#") + other = player; + else + other = getPlayer(character); + if (!other) + { + say("Invalid character, or they are offline.", player); + return; + } + + say("List of skills of player '" + other->getName() + "':", player); + std::map::const_iterator it = other->getSkillBegin(); + std::map::const_iterator it_end = other->getSkillEnd(); + + if (it == it_end) + { + say("No skills available.", player); + return; + } + + while (it != it_end) + { + std::stringstream str; + str << "Id: " << it->first << " value: " << it->second; + say(str.str(), player); + ++it; + } +} void CommandHandler::handleCommand(Character *player, const std::string &command) { -- cgit v1.2.3-70-g09d2