summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorzuu <zuu@openttd.org>2013-11-14 22:48:03 +0000
committerzuu <zuu@openttd.org>2013-11-14 22:48:03 +0000
commit90889727386a31ab6c8b0af1cc59c0b684934f78 (patch)
treec6c67760753e9b004e5db928c96cca44d6adf48e /src
parenta0cad0c1eaf1b9c4cc7ab87d7195114da141e5bd (diff)
downloadopenttd-90889727386a31ab6c8b0af1cc59c0b684934f78.tar.xz
(svn r25999) -Add: When calling the 'content select' console command without args, display all selected content
Diffstat (limited to 'src')
-rw-r--r--src/console_cmds.cpp39
1 files changed, 25 insertions, 14 deletions
diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp
index 4f4210923..8bee1b954 100644
--- a/src/console_cmds.cpp
+++ b/src/console_cmds.cpp
@@ -1716,6 +1716,22 @@ struct ConsoleContentCallback : public ContentCallback {
}
};
+/**
+ * Outputs content state information to console
+ * @param ci the content info
+ */
+static void OutputContentState(const ContentInfo *const ci)
+{
+ static const char * const types[] = { "Base graphics", "NewGRF", "AI", "AI library", "Scenario", "Heightmap", "Base sound", "Base music", "Game script", "GS library" };
+ assert_compile(lengthof(types) == CONTENT_TYPE_END - CONTENT_TYPE_BEGIN);
+ static const char * const states[] = { "Not selected", "Selected", "Dep Selected", "Installed", "Unknown" };
+ static const TextColour state_to_colour[] = { CC_COMMAND, CC_INFO, CC_INFO, CC_WHITE, CC_ERROR };
+
+ char buf[sizeof(ci->md5sum) * 2 + 1];
+ md5sumToString(buf, lastof(buf), ci->md5sum);
+ IConsolePrintF(state_to_colour[ci->state], "%d, %s, %s, %s, %08X, %s", ci->id, types[ci->type - 1], states[ci->state], ci->name, ci->unique_id, buf);
+}
+
DEF_CONSOLE_CMD(ConContent)
{
static ContentCallback *cb = NULL;
@@ -1728,7 +1744,7 @@ DEF_CONSOLE_CMD(ConContent)
IConsoleHelp("Query, select and download content. Usage: 'content update|upgrade|select [all|id]|unselect [all|id]|state|download'");
IConsoleHelp(" update: get a new list of downloadable content; must be run first");
IConsoleHelp(" upgrade: select all items that are upgrades");
- IConsoleHelp(" select: select a specific item given by its id or 'all' to select all");
+ IConsoleHelp(" select: select a specific item given by its id or 'all' to select all. If no parameter is given, all selected content will be listed");
IConsoleHelp(" unselect: unselect a specific item given by its id or 'all' to unselect all");
IConsoleHelp(" state: show the download/select state of all downloadable content");
IConsoleHelp(" download: download all content you've selected");
@@ -1747,10 +1763,13 @@ DEF_CONSOLE_CMD(ConContent)
if (strcasecmp(argv[1], "select") == 0) {
if (argc <= 2) {
- IConsoleError("You must enter the id.");
- return false;
- }
- if (strcasecmp(argv[2], "all") == 0) {
+ /* List selected content */
+ IConsolePrintF(CC_WHITE, "id, type, state, name");
+ for (ConstContentIterator iter = _network_content_client.Begin(); iter != _network_content_client.End(); iter++) {
+ if ((*iter)->state != ContentInfo::SELECTED && (*iter)->state != ContentInfo::AUTOSELECTED) continue;
+ OutputContentState(*iter);
+ }
+ } else if (strcasecmp(argv[2], "all") == 0) {
_network_content_client.SelectAll();
} else {
_network_content_client.Select((ContentID)atoi(argv[2]));
@@ -1774,15 +1793,7 @@ DEF_CONSOLE_CMD(ConContent)
if (strcasecmp(argv[1], "state") == 0) {
IConsolePrintF(CC_WHITE, "id, type, state, name");
for (ConstContentIterator iter = _network_content_client.Begin(); iter != _network_content_client.End(); iter++) {
- static const char * const types[] = { "Base graphics", "NewGRF", "AI", "AI library", "Scenario", "Heightmap", "Base sound", "Base music", "Game script", "GS library" };
- assert_compile(lengthof(types) == CONTENT_TYPE_END - CONTENT_TYPE_BEGIN);
- static const char * const states[] = { "Not selected", "Selected", "Dep Selected", "Installed", "Unknown" };
- static const TextColour state_to_colour[] = { CC_COMMAND, CC_INFO, CC_INFO, CC_WHITE, CC_ERROR };
-
- const ContentInfo *ci = *iter;
- char buf[sizeof(ci->md5sum) * 2 + 1];
- md5sumToString(buf, lastof(buf), ci->md5sum);
- IConsolePrintF(state_to_colour[ci->state], "%d, %s, %s, %s, %08X, %s", ci->id, types[ci->type - 1], states[ci->state], ci->name, ci->unique_id, buf);
+ OutputContentState(*iter);
}
return true;
}