13
0
geforkt von Mirrors/Paper

[Bleeding] Implemented the command-topics-in-master-index option in help.yml. Addresses BUKKIT-1189

When false, help topics that start with a slash are omitted from the mater index.
Dieser Commit ist enthalten in:
rmichela 2012-03-15 22:32:31 -04:00 committet von EvilSeph
Ursprung f87e053c66
Commit 46429c6cb9
3 geänderte Dateien mit 32 neuen und 12 gelöschten Zeilen

Datei anzeigen

@ -74,4 +74,8 @@ public class HelpYamlReader {
public List<String> getIgnoredPlugins() { public List<String> getIgnoredPlugins() {
return helpYaml.getStringList("ignore-plugins"); return helpYaml.getStringList("ignore-plugins");
} }
public boolean commandTopicsInMasterIndex() {
return helpYaml.getBoolean("command-topics-in-master-index", true);
}
} }

Datei anzeigen

@ -1,15 +1,16 @@
package org.bukkit.craftbukkit.help; package org.bukkit.craftbukkit.help;
import com.google.common.base.Predicate;
import com.google.common.base.Predicates; import com.google.common.base.Predicates;
import com.google.common.collect.Collections2; import com.google.common.collect.Collections2;
import org.bukkit.ChatColor; import org.bukkit.ChatColor;
import org.bukkit.Server;
import org.bukkit.command.*; import org.bukkit.command.*;
import org.bukkit.command.defaults.BukkitCommand; import org.bukkit.command.defaults.BukkitCommand;
import org.bukkit.command.defaults.VanillaCommand; import org.bukkit.command.defaults.VanillaCommand;
import org.bukkit.craftbukkit.CraftServer; import org.bukkit.craftbukkit.CraftServer;
import org.bukkit.help.*; import org.bukkit.help.*;
import javax.annotation.Nullable;
import java.util.*; import java.util.*;
/** /**
@ -22,13 +23,21 @@ public class SimpleHelpMap implements HelpMap {
private Set<HelpTopic> pluginIndexes; private Set<HelpTopic> pluginIndexes;
private Map<Class, HelpTopicFactory<Command>> topicFactoryMap; private Map<Class, HelpTopicFactory<Command>> topicFactoryMap;
private CraftServer server; private CraftServer server;
private HelpYamlReader yaml;
public SimpleHelpMap(CraftServer server) { public SimpleHelpMap(CraftServer server) {
helpTopics = new TreeMap<String, HelpTopic>(new HelpTopicComparator.TopicNameComparator()); // Using a TreeMap for its explicit sorting on key this.helpTopics = new TreeMap<String, HelpTopic>(new HelpTopicComparator.TopicNameComparator()); // Using a TreeMap for its explicit sorting on key
pluginIndexes = new TreeSet<HelpTopic>(new HelpTopicComparator()); this.pluginIndexes = new TreeSet<HelpTopic>(new HelpTopicComparator());
defaultTopic = new IndexHelpTopic("Index", null, null, Collections2.filter(helpTopics.values(), Predicates.not(Predicates.instanceOf(CommandAliasHelpTopic.class)))); this.topicFactoryMap = new HashMap<Class, HelpTopicFactory<Command>>();
topicFactoryMap = new HashMap<Class, HelpTopicFactory<Command>>();
this.server = server; this.server = server;
this.yaml = new HelpYamlReader(server);
Predicate indexFilter = Predicates.not(Predicates.instanceOf(CommandAliasHelpTopic.class));
if (!yaml.commandTopicsInMasterIndex()) {
indexFilter = Predicates.and(indexFilter, Predicates.not(new IsCommandTopicPredicate()));
}
this.defaultTopic = new IndexHelpTopic("Index", null, null, Collections2.filter(helpTopics.values(), indexFilter));
registerHelpTopicFactory(MultipleCommandAlias.class, new MultipleCommandAliasHelpTopicFactory()); registerHelpTopicFactory(MultipleCommandAlias.class, new MultipleCommandAliasHelpTopicFactory());
} }
@ -61,17 +70,15 @@ public class SimpleHelpMap implements HelpMap {
} }
public List<String> getIgnoredPlugins() { public List<String> getIgnoredPlugins() {
return new HelpYamlReader(server).getIgnoredPlugins(); return yaml.getIgnoredPlugins();
} }
/** /**
* Reads the general topics from help.yml and adds them to the help index. * Reads the general topics from help.yml and adds them to the help index.
*/ */
public synchronized void initializeGeneralTopics() { public synchronized void initializeGeneralTopics() {
HelpYamlReader reader = new HelpYamlReader(server);
// Initialize general help topics from the help.yml file // Initialize general help topics from the help.yml file
for (HelpTopic topic : reader.getGeneralTopics()) { for (HelpTopic topic : yaml.getGeneralTopics()) {
addTopic(topic); addTopic(topic);
} }
} }
@ -81,8 +88,7 @@ public class SimpleHelpMap implements HelpMap {
*/ */
public synchronized void initializeCommands() { public synchronized void initializeCommands() {
// ** Load topics from highest to lowest priority order ** // ** Load topics from highest to lowest priority order **
HelpYamlReader helpYamlReader = new HelpYamlReader(server); List<String> ignoredPlugins = yaml.getIgnoredPlugins();
List<String> ignoredPlugins = helpYamlReader.getIgnoredPlugins();
// Initialize help topics from the server's command map // Initialize help topics from the server's command map
outer: for (Command command : server.getCommandMap().getCommands()) { outer: for (Command command : server.getCommandMap().getCommands()) {
@ -136,7 +142,7 @@ public class SimpleHelpMap implements HelpMap {
} }
// Amend help topics from the help.yml file // Amend help topics from the help.yml file
for (HelpTopicAmendment amendment : helpYamlReader.getTopicAmendments()) { for (HelpTopicAmendment amendment : yaml.getTopicAmendments()) {
if (helpTopics.containsKey(amendment.getTopicName())) { if (helpTopics.containsKey(amendment.getTopicName())) {
helpTopics.get(amendment.getTopicName()).amendTopic(amendment.getShortText(), amendment.getFullText()); helpTopics.get(amendment.getTopicName()).amendTopic(amendment.getShortText(), amendment.getFullText());
if (amendment.getPermission() != null) { if (amendment.getPermission() != null) {
@ -187,4 +193,11 @@ public class SimpleHelpMap implements HelpMap {
} }
topicFactoryMap.put(commandClass, factory); topicFactoryMap.put(commandClass, factory);
} }
private class IsCommandTopicPredicate implements Predicate<HelpTopic> {
public boolean apply(@Nullable HelpTopic topic) {
return topic.getName().charAt(0) == '/';
}
}
} }

Datei anzeigen

@ -11,6 +11,9 @@
# Examples are given below. Color codes are allowed. When amending command topic, the string <text> will be replaced # Examples are given below. Color codes are allowed. When amending command topic, the string <text> will be replaced
# with the existing value in the help topic. # with the existing value in the help topic.
# -- # --
# Set this to true to list the individual command help topics in the master help.
# command-topics-in-master-index: true
# --
# Each general topic will show up as a separate topic in the help index along with all the plugin command topics. # Each general topic will show up as a separate topic in the help index along with all the plugin command topics.
# general-topics: # general-topics:
# rules: # rules: