use of buildcraft.lib.client.guide.parts.contents.ContentsList.Title.SubHeader in project BuildCraft by BuildCraft.
the class GuidePageContents method updateScreen.
@Override
public void updateScreen() {
super.updateScreen();
searchText.updateCursorCounter();
if (lastSearchText.equals(searchText.getText())) {
if (numPages > 3 && getPage() > numPages) {
goToPage(numPages);
} else if (getPage() < 2) {
searchText.setFocused(false);
}
} else {
lastSearchText = searchText.getText().toLowerCase(Locale.ROOT);
numPages = -1;
if (lastSearchText.isEmpty()) {
for (Title title : contents.sortedTitles) {
for (SubHeader subHeader : title.sortedHeaders) {
for (PageLink page : subHeader.pages) {
page.setVisible(page.startVisible);
}
}
}
} else {
Set<PageLink> matches = new HashSet<>(quickSearcher.search(lastSearchText));
for (Title title : contents.sortedTitles) {
for (SubHeader subHeader : title.sortedHeaders) {
for (PageLink page : subHeader.pages) {
page.setVisible(matches.contains(page));
}
}
}
if (contents.isVisible()) {
searchText.setTextColor(0xFF_00_00_00);
} else {
searchText.setTextColor(0xFF_FF_00_00);
}
}
gui.refreshChapters();
}
}
use of buildcraft.lib.client.guide.parts.contents.ContentsList.Title.SubHeader in project BuildCraft by BuildCraft.
the class GuidePageContents method loadMainGui.
public void loadMainGui() {
TypeOrder order = GuiGuide.SORTING_TYPES[gui.sortingOrderIndex];
contents.clear();
quickSearcher = new SuffixArray<>();
lastSearchText = "";
Set<Item> itemsAdded = new HashSet<>();
final String underline = TextFormatting.UNDERLINE.toString();
for (PageEntry<?> entry : GuideManager.INSTANCE.getAllEntries()) {
GuidePageFactory entryFactory = GuideManager.INSTANCE.getFactoryFor(entry);
String[] ordered = entry.typeTags.getOrdered(order);
String header = underline + LocaleUtil.localize(ordered[0]);
String subHeader = underline + LocaleUtil.localize(ordered[1]);
String translatedTitle = LocaleUtil.localize(entry.title);
ISimpleDrawable icon = entry.createDrawable();
PageLine line = new PageLine(icon, icon, 2, translatedTitle, true);
GuideText text = new GuideText(gui, line);
SubHeader pageHolder = contents.getOrAddSubHeader(header, subHeader);
if (entryFactory == null) {
if (entry.value instanceof ItemStackValueFilter) {
ItemStack stack = ((ItemStackValueFilter) entry.value).stack.baseStack;
itemsAdded.add(stack.getItem());
PageLinkGenerated pageLink = pageHolder.addKnownPage(text, stack);
if (pageLink != null) {
quickSearcher.add(pageLink, pageLink.joinedTooltip.toLowerCase(Locale.ROOT));
}
}
} else {
if (entry.value instanceof ItemStackValueFilter) {
ItemStack stack = ((ItemStackValueFilter) entry.value).stack.baseStack;
itemsAdded.add(stack.getItem());
}
PageLinkNormal pageLink = pageHolder.addNormalPage(text, entryFactory);
quickSearcher.add(pageLink, pageLink.getName().toLowerCase(Locale.ROOT));
}
}
String localizedGroup = underline + "\u0379" + LocaleUtil.localize("buildcraft.guide.contents.all_group");
String localizedItems = underline + LocaleUtil.localize("buildcraft.guide.contents.item_stacks");
Title allTitle = contents.getOrAddTitle(localizedGroup);
SubHeader allHolder = allTitle.getOrAddSubHeader(localizedItems);
for (Item item : ForgeRegistries.ITEMS) {
if (itemsAdded.contains(item)) {
continue;
}
NonNullList<ItemStack> stacks = NonNullList.create();
item.getSubItems(CreativeTabs.SEARCH, stacks);
for (int i = 0; i < stacks.size(); i++) {
ItemStack stack = stacks.get(i);
PageLinkGenerated pageLink = allHolder.addUnknownStack(stack);
if (pageLink != null) {
quickSearcher.add(pageLink, pageLink.joinedTooltip.toLowerCase(Locale.ROOT));
}
if (i > 50) {
// most likely the same item
break;
}
}
}
String localizedTriggers = underline + LocaleUtil.localize("buildcraft.guide.contents.triggers");
String localizedActions = underline + LocaleUtil.localize("buildcraft.guide.contents.actions");
SubHeader triggers = allTitle.getOrAddSubHeader(localizedTriggers);
SubHeader actions = allTitle.getOrAddSubHeader(localizedActions);
Set<IStatement> added = new HashSet<>();
for (IStatement statement : new TreeMap<>(StatementManager.statements).values()) {
if (!added.add(statement)) {
continue;
}
if (GuideManager.INSTANCE.getEntryFor(statement) != null) {
continue;
}
ISimpleDrawable icon = (x, y) -> GuiElementStatementSource.drawGuiSlot(statement, x, y);
List<String> tooltip = statement.getTooltip();
String title = tooltip.isEmpty() ? statement.getUniqueTag() : tooltip.get(0);
GuideText text = new GuideText(gui, new PageLine(icon, icon, 2, title, true));
final PageLinkNormal pageLink;
if (statement instanceof ITrigger) {
pageLink = triggers.addUnknownPage(text, g -> new GuidePage(gui, ImmutableList.of(), title));
} else if (statement instanceof IAction) {
pageLink = actions.addUnknownPage(text, g -> new GuidePage(gui, ImmutableList.of(), title));
} else {
pageLink = null;
}
if (pageLink != null) {
String joinedTooltip = tooltip.stream().collect(Collectors.joining(" ", "", ""));
String searchSr = statement.getUniqueTag() + " " + joinedTooltip;
quickSearcher.add(pageLink, searchSr.toLowerCase(Locale.ROOT));
}
}
quickSearcher.generate();
contents.sortAll();
}
use of buildcraft.lib.client.guide.parts.contents.ContentsList.Title.SubHeader in project BuildCraft by BuildCraft.
the class GuidePageContents method renderPage.
@Override
protected void renderPage(int x, int y, int width, int height, int index) {
IFontRenderer f = getFontRenderer();
if (index == 0) {
String text = "BuildCraft";
float scale = 3;
int fWidth = (int) (f.getStringWidth(text) * scale);
GlStateManager.pushMatrix();
GlStateManager.scale(scale, scale, 1);
f.drawString(text, (int) ((x + (width - fWidth) / 2) / scale), (int) ((y + height / 2 - 62) / scale), 0);
GlStateManager.popMatrix();
text = "v" + BCLib.VERSION;
fWidth = f.getStringWidth(text);
f.drawString(text, x + (width - fWidth) / 2, y + height / 2 - 36, 0);
scale = 1.5f;
text = LocaleUtil.localize("options.title");
fWidth = (int) (f.getStringWidth(text) * scale);
GlStateManager.pushMatrix();
GlStateManager.scale(scale, scale, 1);
f.drawString(text, (int) ((x + (width - fWidth) / 2) / scale), (int) ((y + height / 2 - 4) / scale), 0);
GlStateManager.popMatrix();
text = XmlPageLoader.SHOW_LORE ? "Show Lore [x]" : "Show Lore [ ]";
fWidth = f.getStringWidth(text);
f.drawString(text, x + (width - fWidth) / 2, y + height / 2 + 12, 0);
text = XmlPageLoader.SHOW_HINTS ? "Show Hints [x]" : "Show Hints [ ]";
fWidth = f.getStringWidth(text);
f.drawString(text, x + (width - fWidth) / 2, y + height / 2 + 26, 0);
} else if (index == 1) {
int _height = GuideManager.loadedMods.size() + 1;
if (GuideManager.loadedOther.size() > 0) {
_height++;
_height += GuideManager.loadedOther.size();
}
int perLineHeight = f.getFontHeight("Ly") + 3;
_height *= perLineHeight;
int _y = y + (height - _height) / 2;
drawCenteredText(TextFormatting.BOLD + "Loaded Mods:", x, _y, width);
_y += perLineHeight;
for (String text : GuideManager.loadedMods) {
drawCenteredText(text, x, _y, width);
_y += perLineHeight;
}
if (GuideManager.loadedOther.size() > 0) {
drawCenteredText(TextFormatting.BOLD + "Loaded Resource Packs:", x, _y, width);
_y += perLineHeight;
for (String text : GuideManager.loadedOther) {
drawCenteredText(text, x, _y, width);
_y += perLineHeight;
}
}
} else if (index % 2 == 0) {
searchText.x = x + 23;
searchText.y = y - 23;
if (!searchText.isFocused() && searchText.getText().isEmpty()) {
GuiGuide.SEARCH_TAB_CLOSED.drawAt(x + 8, y - 20);
GuiGuide.SEARCH_ICON.drawAt(x + 8, y - 19);
} else {
GuiGuide.SEARCH_TAB_OPEN.drawAt(x - 2, y - 29);
GuiGuide.SEARCH_ICON.drawAt(x + 8, y - 25);
}
searchText.drawTextBox();
}
RenderUtil.setGLColorFromInt(-1);
PagePosition pos = new PagePosition(2, 0);
for (Title title : contents.visibleTitles) {
SubHeader firstHeader = title.visibleHeaders[0];
PageLink firstPage = firstHeader.visiblePages[0];
pos = pos.guaranteeSpace(32 + gui.getCurrentFont().getFontHeight(firstPage.text.text.text), height);
pos = title.chapter.renderIntoArea(x, y, width, height, pos, index);
for (SubHeader header : title.visibleHeaders) {
firstPage = header.visiblePages[0];
pos = pos.guaranteeSpace(gui.getCurrentFont().getFontHeight(firstPage.text.text.text), height);
pos = header.text.renderIntoArea(x, y, width, height, pos, index);
for (PageLink page : header.visiblePages) {
pos = page.renderIntoArea(x, y, width, height, pos, index);
}
}
}
if (numPages == -1) {
numPages = pos.page + 1;
}
super.renderPage(x, y, width, height, index);
if (index % 2 == 0) {
int oX = x + ORDER_OFFSET_X;
int oY = y + ORDER_OFFSET_Y;
int i = 0;
for (GuiIcon icon : GuiGuide.ORDERS) {
if (gui.sortingOrderIndex == i) {
icon = icon.offset(0, 14);
}
icon.drawAt(oX, oY);
oY += 14;
i++;
}
}
}
use of buildcraft.lib.client.guide.parts.contents.ContentsList.Title.SubHeader in project BuildCraft by BuildCraft.
the class GuidePageContents method handleMouseClick.
@Override
public void handleMouseClick(int x, int y, int width, int height, int mouseX, int mouseY, int mouseButton, int index, boolean isEditing) {
super.handleMouseClick(x, y, width, height, mouseX, mouseY, mouseButton, index, isEditing);
if (index % 2 == 0) {
int oX = x + ORDER_OFFSET_X;
int oY = y + ORDER_OFFSET_Y;
for (int i = 0; i < GuiGuide.ORDERS.length; i++) {
GuiRectangle rect = new GuiRectangle(oX, oY, 14, 14);
if (rect.contains(gui.mouse)) {
gui.sortingOrderIndex = i;
loadMainGui();
gui.refreshChapters();
contents.setFontRenderer(getFontRenderer());
return;
}
oY += 14;
}
if (!searchText.mouseClicked(mouseX, mouseY, mouseButton) && !searchText.isFocused() && new GuiRectangle(x - 2, y - 34, 40, 34).contains(mouseX, mouseY)) {
searchText.setFocused(true);
}
if (mouseButton == 1 && mouseX >= searchText.x && mouseX < searchText.x + searchText.width && mouseY >= searchText.y && mouseY < searchText.y + searchText.height) {
searchText.setText("");
}
}
if (mouseButton == 0) {
if (index == 0) {
IFontRenderer f = getFontRenderer();
String text = XmlPageLoader.SHOW_LORE ? "Show Lore [x]" : "Show Lore [ ]";
int fWidth = f.getStringWidth(text);
GuiRectangle rect;
rect = new GuiRectangle(x + (width - fWidth) / 2, y + height / 2 + 12, fWidth, f.getFontHeight(text));
if (rect.contains(mouseX, mouseY)) {
XmlPageLoader.SHOW_LORE = !XmlPageLoader.SHOW_LORE;
}
text = XmlPageLoader.SHOW_HINTS ? "Show Hints [x]" : "Show Hints [ ]";
fWidth = f.getStringWidth(text);
rect = new GuiRectangle(x + (width - fWidth) / 2, y + height / 2 + 26, fWidth, f.getFontHeight(text));
if (rect.contains(mouseX, mouseY)) {
XmlPageLoader.SHOW_HINTS = !XmlPageLoader.SHOW_HINTS;
}
}
}
if (new GuiRectangle(x, y, width, height).contains(mouseX, mouseY)) {
PagePosition pos = new PagePosition(2, 0);
search: for (Title title : contents.visibleTitles) {
SubHeader firstHeader = title.visibleHeaders[0];
PageLink firstPage = firstHeader.visiblePages[0];
pos = pos.guaranteeSpace(32 + gui.getCurrentFont().getFontHeight(firstPage.text.text.text), height);
pos = title.chapter.renderIntoArea(x, y, width, height, pos, -1);
for (SubHeader header : title.visibleHeaders) {
firstPage = header.visiblePages[0];
pos = pos.guaranteeSpace(gui.getCurrentFont().getFontHeight(firstPage.text.text.text), height);
pos = header.text.renderIntoArea(x, y, width, height, pos, -1);
for (PageLink page : header.visiblePages) {
pos = page.text.renderIntoArea(x, y, width, height, pos, -1);
if (pos.page == index && page.text.wasHovered()) {
page.onClicked();
break search;
}
}
}
}
}
}
Aggregations