forked from CleanroomMC/HadEnoughItems
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfigValues.java
More file actions
64 lines (55 loc) · 2.41 KB
/
ConfigValues.java
File metadata and controls
64 lines (55 loc) · 2.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package mezz.jei.config;
import mezz.jei.util.GiveMode;
import net.minecraft.init.Items;
import net.minecraft.item.ItemStack;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
public class ConfigValues {
// advanced
public boolean debugModeEnabled = false;
public boolean centerSearchBarEnabled = false;
public boolean ultraLowMemoryUsage = false;
public boolean asyncSearchTreeBuilding = true;
public boolean addBookmarksToFront = false;
public GiveMode giveMode = GiveMode.MOUSE_PICKUP;
public String modNameFormat = Config.parseFriendlyModNameFormat(Config.defaultModNameFormatFriendly);
public int maxColumns = 100;
public int maxRecipeGuiHeight = 350;
public int recipeBookmarkGroupColor = 0x9F00FF00;
// search
public Config.SearchMode modNameSearchMode = Config.SearchMode.REQUIRE_PREFIX;
public Config.SearchMode tooltipSearchMode = Config.SearchMode.ENABLED;
public Config.SearchMode oreDictSearchMode = Config.SearchMode.DISABLED;
public Config.SearchMode creativeTabSearchMode = Config.SearchMode.DISABLED;
public Config.SearchMode colorSearchMode = Config.SearchMode.DISABLED;
public Config.SearchMode resourceIdSearchMode = Config.SearchMode.DISABLED;
public boolean searchAdvancedTooltips = false;
public boolean searchStrippedDiacritics = false;
// per-world
public boolean overlayEnabled = true;
public boolean cheatItemsEnabled = false;
public boolean editModeEnabled = false;
public boolean bookmarkOverlayEnabled = true;
public boolean recipeBookmarksEnabled = true;
public boolean autocraftingEnabled = true;
public String filterText = "";
public ItemStack defaultFluidContainerItem = new ItemStack(Items.BUCKET);
// rendering
public boolean bufferIngredientRenders = false;
// misc
public boolean mouseClickToSeeRecipes = true;
public boolean tooltipShowRecipeBy = true;
public boolean showHiddenIngredientsInCreative = false;
public boolean skipShowingProgressBar = false;
public boolean hideBottomRightCornerConfigButton = false;
public boolean hideBottomLeftCornerBookmarkButton = false;
// category
public List<String> categoryUidOrder = new ArrayList<>();
// collapsible groups
public boolean collapsibleGroupsEnabled = true;
public boolean collapseOnClose = false;
public mezz.jei.util.CollapsedClickAction collapsedClickAction = mezz.jei.util.CollapsedClickAction.OPEN_GROUP;
public Set<String> disabledGroups = new HashSet<>();
}