Initial comment to start using Blood Utils' book
4
src/api/java/bloodutils/api/BUApi.java
Normal file
|
@ -0,0 +1,4 @@
|
|||
package bloodutils.api;
|
||||
|
||||
public class BUApi {
|
||||
}
|
83
src/api/java/bloodutils/api/classes/guide/GuiCategories.java
Normal file
|
@ -0,0 +1,83 @@
|
|||
package bloodutils.api.classes.guide;
|
||||
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.client.gui.GuiScreen;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
||||
import bloodutils.api.classes.guide.elements.ElementCategory;
|
||||
import bloodutils.api.compact.Category;
|
||||
import bloodutils.api.registries.EntryRegistry;
|
||||
|
||||
public class GuiCategories extends GuiScreen{
|
||||
public GuiCategories(EntityPlayer player){
|
||||
this.player = player;
|
||||
}
|
||||
private static final ResourceLocation gui = new ResourceLocation("bloodutils:textures/gui/front.png");
|
||||
|
||||
int gwidth = 192;
|
||||
int gheight = 192;
|
||||
int x, y;
|
||||
ElementCategory[] categories = new ElementCategory[EntryRegistry.categories.size()];
|
||||
EntityPlayer player;
|
||||
|
||||
@Override
|
||||
public void initGui(){
|
||||
super.initGui();
|
||||
x = (this.width/2) - (gwidth/2);
|
||||
y = (this.height/2) - (gheight/2);
|
||||
this.buttonList.clear();
|
||||
|
||||
int pX = x - 1;
|
||||
int pY = y + 12;
|
||||
|
||||
int iWidth = 20;
|
||||
int iHeight = 20;
|
||||
for(int i = 0; i < EntryRegistry.categories.size(); i++){
|
||||
Category category = EntryRegistry.categories.get(i);
|
||||
this.categories[i] = new ElementCategory(category, pX, pY + (i*iHeight) - 2, iWidth, iHeight, this.player);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void drawScreen(int mX, int mY, float f1){
|
||||
super.drawScreen(mX, mY, f1);
|
||||
int fHeight = Minecraft.getMinecraft().fontRenderer.FONT_HEIGHT;
|
||||
|
||||
GL11.glColor4f(1F, 1F, 1F, 1F);
|
||||
this.mc.renderEngine.bindTexture(gui);
|
||||
drawTexturedModalRect(x, y, 0, 0, gwidth, gheight);
|
||||
|
||||
/** Title */
|
||||
String str = "Categories";
|
||||
this.drawCenteredString(fontRendererObj, str, this.x + gwidth / 2, y - 15, 0x336666);
|
||||
|
||||
for(int i = 0; i < EntryRegistry.categories.size(); i++){
|
||||
ElementCategory category = this.categories[i];
|
||||
category.drawElement();
|
||||
|
||||
if(category.isMouseInElement(mX, mY)){
|
||||
category.onMouseEnter(mX, mY);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void mouseClicked(int mX, int mY, int type){
|
||||
super.mouseClicked(mX, mY, type);
|
||||
|
||||
for(int i = 0; i < EntryRegistry.categories.size(); i++){
|
||||
ElementCategory category = this.categories[i];
|
||||
if(category.isMouseInElement(mX, mY)){
|
||||
category.onMouseClick(mX, mY, type);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean doesGuiPauseGame(){
|
||||
return false;
|
||||
}
|
||||
}
|
150
src/api/java/bloodutils/api/classes/guide/GuiEntry.java
Normal file
|
@ -0,0 +1,150 @@
|
|||
package bloodutils.api.classes.guide;
|
||||
|
||||
import net.minecraft.client.gui.GuiButton;
|
||||
import net.minecraft.client.gui.GuiScreen;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
|
||||
import org.lwjgl.input.Keyboard;
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
||||
import bloodutils.api.classes.guide.buttons.ButtonNext;
|
||||
import bloodutils.api.compact.Category;
|
||||
import bloodutils.api.compact.Entry;
|
||||
import bloodutils.api.entries.IEntry;
|
||||
import bloodutils.api.registries.EntryRegistry;
|
||||
|
||||
public class GuiEntry extends GuiScreen{
|
||||
public GuiEntry(String key, EntityPlayer player, Category category){
|
||||
this.key = key;
|
||||
this.player = player;
|
||||
this.category = category;
|
||||
}
|
||||
|
||||
public GuiEntry(String key, EntityPlayer player, Category category, int currPage){
|
||||
this.key = key;
|
||||
this.player = player;
|
||||
this.category = category;
|
||||
this.currPage = currPage;
|
||||
}
|
||||
|
||||
private static final ResourceLocation gui = new ResourceLocation("bloodutils:textures/gui/guide.png");
|
||||
int gwidth = 192;
|
||||
int gheight = 192;
|
||||
int prevPage;
|
||||
int left, top;
|
||||
|
||||
String key;
|
||||
|
||||
int currPage = 1;
|
||||
GuiButton next, prev, back;
|
||||
EntityPlayer player;
|
||||
Category category;
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public void initGui(){
|
||||
super.initGui();
|
||||
left = (this.width/2) - (gwidth/2);
|
||||
top = (this.height/2) - (gheight/2);
|
||||
this.buttonList.clear();
|
||||
int k = (this.width - this.gwidth) / 2;
|
||||
|
||||
this.buttonList.add(next = new ButtonNext(500, k + 120, top + 160, true));
|
||||
this.buttonList.add(prev = new ButtonNext(501, k + 38, top + 160, false));
|
||||
|
||||
Entry e = EntryRegistry.entries.get(this.category).get(this.key);
|
||||
if(e != null){
|
||||
IEntry entry = e.entry[this.currPage - 1];
|
||||
if(entry != null)
|
||||
entry.initGui(gwidth, gheight, left, top, player, this.buttonList);
|
||||
}else{
|
||||
mc.displayGuiScreen(new GuiCategories(this.player));
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void drawScreen(int mX, int mY, float f1){
|
||||
GL11.glColor4f(1F, 1F, 1F, 1F);
|
||||
this.mc.renderEngine.bindTexture(gui);
|
||||
drawTexturedModalRect(left, top, 0, 0, gwidth, gheight);
|
||||
Entry e = EntryRegistry.entries.get(this.category).get(this.key);
|
||||
|
||||
/** Title */
|
||||
String str = e.name;
|
||||
this.drawCenteredString(fontRendererObj, str, this.left + gwidth / 2, top - 15, 0x336666);
|
||||
|
||||
/** Current Page */
|
||||
this.drawCenteredString(fontRendererObj, (currPage) + "/" + (e.entry.length), this.left + gwidth / 2, top + 160, 0x336666);
|
||||
|
||||
IEntry entry = e.entry[currPage - 1];
|
||||
if(entry != null){
|
||||
entry.draw(this, gwidth, gheight, left, top, player, e.name, currPage, mX, mY);
|
||||
}
|
||||
super.drawScreen(mX, mY, f1);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void mouseClicked(int mX, int mY, int type){
|
||||
super.mouseClicked(mX, mY, type);
|
||||
|
||||
if(type == 1)
|
||||
mc.displayGuiScreen(new GuiIndex(this.category, this.player));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void keyTyped(char c, int i){
|
||||
super.keyTyped(c, i);
|
||||
|
||||
if(Keyboard.getEventKeyState()){
|
||||
if(i == 14){
|
||||
mc.displayGuiScreen(new GuiIndex(this.category, this.player));
|
||||
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean doesGuiPauseGame(){
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void actionPerformed(GuiButton button){
|
||||
int id = button.id;
|
||||
int maxPages = EntryRegistry.entries.get(this.category).get(this.key).entry.length;
|
||||
|
||||
if(id == 500){
|
||||
if(currPage < maxPages){
|
||||
currPage++;
|
||||
initGui();
|
||||
}
|
||||
}else if(id == 501){
|
||||
if(currPage > 1){
|
||||
currPage--;
|
||||
initGui();
|
||||
}
|
||||
}else{
|
||||
Entry e = EntryRegistry.entries.get(this.category).get(this.key);
|
||||
if(e != null){
|
||||
IEntry entry = e.entry[this.currPage];
|
||||
if(entry != null)
|
||||
entry.actionPerformed(button);
|
||||
}else{
|
||||
mc.displayGuiScreen(new GuiCategories(this.player));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onGuiClosed(){
|
||||
ItemStack held = player.getHeldItem();
|
||||
if(held.hasTagCompound()){
|
||||
held.getTagCompound().setString("CATEGORY", this.category.name);
|
||||
held.getTagCompound().setString("KEY", this.key);
|
||||
held.getTagCompound().setInteger("PAGE", this.currPage);
|
||||
}
|
||||
}
|
||||
}
|
213
src/api/java/bloodutils/api/classes/guide/GuiIndex.java
Normal file
|
@ -0,0 +1,213 @@
|
|||
package bloodutils.api.classes.guide;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
import net.minecraft.client.gui.GuiButton;
|
||||
import net.minecraft.client.gui.GuiScreen;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
|
||||
import org.lwjgl.input.Keyboard;
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
||||
import bloodutils.api.classes.guide.buttons.ButtonNext;
|
||||
import bloodutils.api.classes.guide.buttons.ButtonPage;
|
||||
import bloodutils.api.classes.guide.elements.ElementCategory;
|
||||
import bloodutils.api.compact.Category;
|
||||
import bloodutils.api.compact.Entry;
|
||||
import bloodutils.api.registries.EntryRegistry;
|
||||
|
||||
public class GuiIndex extends GuiScreen{
|
||||
public GuiIndex(Category category, EntityPlayer player){
|
||||
this.category = category;
|
||||
this.player = player;
|
||||
}
|
||||
|
||||
public GuiIndex(Category category, EntityPlayer player, int currPage){
|
||||
this.category = category;
|
||||
this.player = player;
|
||||
this.currPage = currPage;
|
||||
}
|
||||
private static final ResourceLocation gui = new ResourceLocation("bloodutils:textures/gui/guide.png");
|
||||
GuiButton prev, next, back;
|
||||
|
||||
Category category;
|
||||
EntityPlayer player;
|
||||
|
||||
ElementCategory[] categories = new ElementCategory[EntryRegistry.categories.size()];
|
||||
|
||||
int gwidth = 192;
|
||||
int gheight = 192;
|
||||
int left, top;
|
||||
int currPage = 0;
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
@Override
|
||||
public void initGui(){
|
||||
super.initGui();
|
||||
left = (this.width/2) - (gwidth/2);
|
||||
top = (this.height/2) - (gheight/2);
|
||||
this.buttonList.clear();
|
||||
|
||||
populate();
|
||||
drawCategories();
|
||||
|
||||
int k = (this.width - this.gwidth) / 2;
|
||||
this.buttonList.add(next = new ButtonNext(500, k + 120, top + 160, true));
|
||||
this.buttonList.add(prev = new ButtonNext(501, k + 38, top + 160, false));
|
||||
}
|
||||
|
||||
public void drawCategories(){
|
||||
int pX = left - 1;
|
||||
int pY = top + 12;
|
||||
|
||||
int iWidth = 20;
|
||||
int iHeight = 20;
|
||||
for(int i = 0; i < EntryRegistry.categories.size(); i++){
|
||||
Category category = EntryRegistry.categories.get(i);
|
||||
this.categories[i] = new ElementCategory(category, pX, pY + (i*iHeight) - 2, iWidth, iHeight, this.player);
|
||||
}
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public void populate(){
|
||||
this.buttonList.clear();
|
||||
|
||||
HashMap<String, Entry> entries = EntryRegistry.entries.get(this.category);
|
||||
int x, y;
|
||||
|
||||
if(entries != null && !entries.isEmpty()){
|
||||
int j = 0;
|
||||
for(int i = 0; i < entries.size(); i++){
|
||||
Entry entry = (Entry)entries.values().toArray()[i];
|
||||
if(entry != null && entry.indexPage == this.currPage){
|
||||
x = this.left + gwidth / 2 - 75;
|
||||
y = (top + 15) + (10*j);
|
||||
buttonList.add(new ButtonPage(j, x, y, 110, 10, ""));
|
||||
j++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int k = (this.width - this.gwidth) / 2;
|
||||
|
||||
this.buttonList.add(next = new ButtonNext(500, k + 120, top + 160, true));
|
||||
this.buttonList.add(prev = new ButtonNext(501, k + 38, top + 160, false));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void drawScreen(int mX, int mY, float f1){
|
||||
GL11.glColor4f(1F, 1F, 1F, 1F);
|
||||
this.mc.renderEngine.bindTexture(gui);
|
||||
drawTexturedModalRect(left, top, 0, 0, gwidth, gheight);
|
||||
|
||||
/** Title */
|
||||
String str = category.name;
|
||||
this.drawCenteredString(fontRendererObj, str, this.left + gwidth / 2, top - 15, 0x336666);
|
||||
|
||||
/** Current Page */
|
||||
if(this.category != null && EntryRegistry.maxEntries.containsKey(this.category)){
|
||||
int size = EntryRegistry.maxEntries.get(this.category);
|
||||
this.drawCenteredString(fontRendererObj, (currPage + 1) + "/" + (size + 1), this.left + gwidth / 2, top + 160, 0x336666);
|
||||
registerButtons();
|
||||
}
|
||||
|
||||
for(int i = 0; i < EntryRegistry.categories.size(); i++){
|
||||
ElementCategory category = this.categories[i];
|
||||
category.drawElement();
|
||||
|
||||
if(category.isMouseInElement(mX, mY)){
|
||||
category.onMouseEnter(mX, mY);
|
||||
}
|
||||
}
|
||||
super.drawScreen(mX, mY, f1);
|
||||
}
|
||||
|
||||
public void registerButtons(){
|
||||
HashMap<String, Entry> entries = EntryRegistry.entries.get(this.category);
|
||||
if(entries != null && !entries.isEmpty()){
|
||||
int j = 0;
|
||||
for(int i = 0; i < entries.size(); i++){
|
||||
Entry entry = (Entry)entries.values().toArray()[i];
|
||||
|
||||
if(entry != null && entry.indexPage == this.currPage){
|
||||
String title = entry.name;
|
||||
if(title != null && buttonList.get(j) != null && buttonList.get(j) instanceof ButtonPage){
|
||||
ButtonPage button = (ButtonPage) buttonList.get(j);
|
||||
button.displayString = title;
|
||||
j++;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void mouseClicked(int mX, int mY, int type){
|
||||
super.mouseClicked(mX, mY, type);
|
||||
|
||||
if(type == 1)
|
||||
mc.displayGuiScreen(new GuiCategories(this.player));
|
||||
|
||||
for(int i = 0; i < EntryRegistry.categories.size(); i++){
|
||||
ElementCategory category = this.categories[i];
|
||||
if(category.isMouseInElement(mX, mY)){
|
||||
category.onMouseClick(mX, mY, type);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean doesGuiPauseGame(){
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void actionPerformed(GuiButton button){
|
||||
int id = button.id;
|
||||
int size;
|
||||
if(EntryRegistry.maxEntries.containsKey(this.category))
|
||||
size = EntryRegistry.maxEntries.get(this.category);
|
||||
else
|
||||
size = 1;
|
||||
if(id == 500){
|
||||
if(currPage + 1 < size + 1){
|
||||
currPage++;
|
||||
populate();
|
||||
registerButtons();
|
||||
}
|
||||
}else if(id == 501){
|
||||
if(currPage > 0){
|
||||
currPage--;
|
||||
populate();
|
||||
registerButtons();
|
||||
}
|
||||
}else{
|
||||
mc.displayGuiScreen(new GuiEntry(button.displayString, player, category));
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void keyTyped(char c, int i){
|
||||
super.keyTyped(c, i);
|
||||
|
||||
if(Keyboard.getEventKeyState()){
|
||||
if(i == 14){
|
||||
mc.displayGuiScreen(new GuiCategories(this.player));
|
||||
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onGuiClosed(){
|
||||
ItemStack held = player.getHeldItem();
|
||||
if(held.hasTagCompound()){
|
||||
held.getTagCompound().setString("CATEGORY", this.category.name);
|
||||
held.getTagCompound().setString("KEY", "0");
|
||||
held.getTagCompound().setInteger("PAGE", this.currPage);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,38 @@
|
|||
package bloodutils.api.classes.guide.buttons;
|
||||
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.client.gui.GuiButton;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
|
||||
import org.lwjgl.opengl.GL11;
|
||||
|
||||
public class ButtonNext extends GuiButton {
|
||||
private final boolean field_146151_o;
|
||||
|
||||
public ButtonNext(int id, int x, int y, boolean p_i1079_4_){
|
||||
super(id, x, y, 23, 13, "");
|
||||
this.field_146151_o = p_i1079_4_;
|
||||
}
|
||||
|
||||
public void drawButton(Minecraft mc, int p_146112_2_, int p_146112_3_){
|
||||
if (this.visible){
|
||||
boolean flag = p_146112_2_ >= this.xPosition && p_146112_3_ >= this.yPosition && p_146112_2_ < this.xPosition + this.width && p_146112_3_ < this.yPosition + this.height;
|
||||
GL11.glEnable(GL11.GL_BLEND);
|
||||
GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
|
||||
mc.getTextureManager().bindTexture(new ResourceLocation("bloodutils:textures/gui/guide.png"));
|
||||
int k = 0;
|
||||
int l = 192;
|
||||
|
||||
if (flag){
|
||||
k += 23;
|
||||
}
|
||||
|
||||
if (!this.field_146151_o){
|
||||
l += 13;
|
||||
}
|
||||
|
||||
this.drawTexturedModalRect(this.xPosition, this.yPosition, k, l, 23, 13);
|
||||
GL11.glDisable(GL11.GL_BLEND);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,33 @@
|
|||
package bloodutils.api.classes.guide.buttons;
|
||||
|
||||
import java.awt.Color;
|
||||
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.client.gui.GuiButton;
|
||||
|
||||
public class ButtonPage extends GuiButton {
|
||||
|
||||
public ButtonPage(int id, int xPos, int yPos, int width, int height, String string) {
|
||||
super(id, xPos, yPos, width, height, string);
|
||||
}
|
||||
int gwidth = 170;
|
||||
int gheight = 180;
|
||||
|
||||
@Override
|
||||
public void drawButton(Minecraft mc, int x, int y) {
|
||||
field_146123_n = x >= xPosition && y >= yPosition && x < xPosition + width && y < yPosition + height;
|
||||
int state = getHoverState(field_146123_n);
|
||||
x = this.xPosition + width / 2 - 30;
|
||||
y = this.yPosition + (height - 6) / 2;
|
||||
mc.fontRenderer.setUnicodeFlag(true);
|
||||
mc.fontRenderer.drawString(displayString, x + (state == 2 ? 5 : 0), y, calcColor(state));
|
||||
mc.fontRenderer.setUnicodeFlag(false);
|
||||
}
|
||||
|
||||
public int calcColor(int state){
|
||||
if(state == 2)
|
||||
return new Color(155, 155, 155).getRGB();
|
||||
else
|
||||
return new Color(55, 55, 55).getRGB();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,55 @@
|
|||
package bloodutils.api.classes.guide.elements;
|
||||
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.client.gui.GuiScreen;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.util.IIcon;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
import bloodutils.api.classes.guide.GuiIndex;
|
||||
import bloodutils.api.compact.Category;
|
||||
import bloodutils.api.helpers.GuiHelper;
|
||||
import bloodutils.api.interfaces.IEntryElement;
|
||||
|
||||
public class ElementCategory extends GuiScreen implements IEntryElement{
|
||||
public ElementCategory(Category category, int x, int y, int width, int height, EntityPlayer player) {
|
||||
this.category = category;
|
||||
this.player = player;
|
||||
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
this.width = width;
|
||||
this.height = height;
|
||||
}
|
||||
public Category category;
|
||||
public EntityPlayer player;
|
||||
|
||||
public int x;
|
||||
public int y;
|
||||
public int width;
|
||||
public int height;
|
||||
|
||||
|
||||
@Override
|
||||
public void drawElement() {
|
||||
IIcon icon = category.iconStack.getIconIndex();
|
||||
Minecraft.getMinecraft().getTextureManager().bindTexture(new ResourceLocation("bloodutils:textures/misc/tab.png"));
|
||||
GuiHelper.drawIconWithoutColor(x - 1, y - 1, width + 2 , height + 2, 0);
|
||||
|
||||
GuiHelper.renderIcon(x + 3, y + 2, 16, 16, icon, this.category.type);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isMouseInElement(int mX, int mY) {
|
||||
return GuiHelper.isMouseBetween(mX, mY, x, y, width, height);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onMouseEnter(int mX, int mY) {
|
||||
Minecraft.getMinecraft().fontRenderer.drawString(this.category.name, mX + 6, mY, 0);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onMouseClick(int mX, int mY, int type){
|
||||
Minecraft.getMinecraft().displayGuiScreen(new GuiIndex(this.category, this.player));
|
||||
}
|
||||
}
|
18
src/api/java/bloodutils/api/compact/Category.java
Normal file
|
@ -0,0 +1,18 @@
|
|||
package bloodutils.api.compact;
|
||||
|
||||
import net.minecraft.item.ItemStack;
|
||||
import bloodutils.api.enums.EnumType;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
public class Category {
|
||||
public Category(String name, ItemStack iconStack, EnumType type){
|
||||
this.name = name;
|
||||
this.iconStack = iconStack;
|
||||
this.type = type;
|
||||
}
|
||||
public String name;
|
||||
public ItemStack iconStack;
|
||||
|
||||
public EnumType type;
|
||||
}
|
21
src/api/java/bloodutils/api/compact/CompactItem.java
Normal file
|
@ -0,0 +1,21 @@
|
|||
package bloodutils.api.compact;
|
||||
|
||||
import net.minecraft.item.Item;
|
||||
|
||||
public class CompactItem {
|
||||
public CompactItem(Item item1, Item item2){
|
||||
this.item1 = item1;
|
||||
this.item2 = item2;
|
||||
}
|
||||
public Item item1;
|
||||
public Item item2;
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj){
|
||||
if(obj instanceof CompactItem){
|
||||
CompactItem ci = (CompactItem)obj;
|
||||
return ci.item1 == this.item1 && ci.item2 == this.item2;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
14
src/api/java/bloodutils/api/compact/Entry.java
Normal file
|
@ -0,0 +1,14 @@
|
|||
package bloodutils.api.compact;
|
||||
|
||||
import bloodutils.api.entries.IEntry;
|
||||
|
||||
public class Entry {
|
||||
public Entry(IEntry[] entry, String name, int indexPage){
|
||||
this.entry = entry;
|
||||
this.name = name;
|
||||
this.indexPage = indexPage - 1;
|
||||
}
|
||||
public IEntry[] entry;
|
||||
public String name;
|
||||
public int indexPage;
|
||||
}
|
127
src/api/java/bloodutils/api/entries/EntryAltarRecipe.java
Normal file
|
@ -0,0 +1,127 @@
|
|||
package bloodutils.api.entries;
|
||||
|
||||
import java.awt.Color;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.client.gui.GuiButton;
|
||||
import net.minecraft.client.renderer.RenderHelper;
|
||||
import net.minecraft.client.renderer.entity.RenderItem;
|
||||
import net.minecraft.client.renderer.texture.TextureManager;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.item.crafting.IRecipe;
|
||||
import net.minecraft.item.crafting.ShapedRecipes;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
import net.minecraftforge.oredict.ShapedOreRecipe;
|
||||
|
||||
import org.lwjgl.opengl.GL11;
|
||||
import org.lwjgl.opengl.GL12;
|
||||
|
||||
import WayofTime.alchemicalWizardry.api.altarRecipeRegistry.AltarRecipe;
|
||||
import bloodutils.api.classes.guide.GuiEntry;
|
||||
|
||||
public class EntryAltarRecipe implements IEntry{
|
||||
public EntryAltarRecipe(AltarRecipe recipes){
|
||||
this.recipes = recipes;
|
||||
populate(recipes);
|
||||
}
|
||||
public AltarRecipe recipes;
|
||||
|
||||
public ItemStack input;
|
||||
public ItemStack output;
|
||||
public int essence;
|
||||
|
||||
public ArrayList<ItemIcon> icons = new ArrayList<ItemIcon>();
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public void populate(AltarRecipe recipe){
|
||||
this.input = recipe.requiredItem;
|
||||
this.output = recipe.result;
|
||||
this.essence = recipe.liquidRequired;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void draw(GuiEntry entry, int width, int height, int left, int top, EntityPlayer player, String key, int page, int mX, int mY){
|
||||
int x, y;
|
||||
|
||||
GL11.glPushMatrix();
|
||||
GL11.glEnable(GL11.GL_BLEND);
|
||||
GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
|
||||
GL11.glColor4f(1F, 1F, 1F, 1F);
|
||||
RenderHelper.enableGUIStandardItemLighting();
|
||||
GL11.glEnable(GL12.GL_RESCALE_NORMAL);
|
||||
GL11.glEnable(GL11.GL_DEPTH_TEST);
|
||||
renderOverlay(entry, width, height, left, top);
|
||||
|
||||
x = left + width / 2 - (65-45);
|
||||
y = (height/2 - 36) + (18*(4-3));
|
||||
drawIcon(this.input, x, y);
|
||||
|
||||
/** Result */
|
||||
x = left + width / 2 - (65-(48+48)-5);
|
||||
y = (height/2 - 36) + (18*(4-3));
|
||||
drawIcon(this.output, x, y);
|
||||
|
||||
RenderHelper.disableStandardItemLighting();
|
||||
|
||||
GL11.glDisable(GL11.GL_LIGHTING);
|
||||
|
||||
GL11.glPopMatrix();
|
||||
|
||||
for(ItemIcon icon : icons){
|
||||
if(icon.stack != null)
|
||||
icon.onMouseBetween(mX, mY);
|
||||
}
|
||||
}
|
||||
|
||||
public void drawIcon(ItemStack stack, int x, int y){
|
||||
RenderItem ri = new RenderItem();
|
||||
ri.renderItemAndEffectIntoGUI(Minecraft.getMinecraft().fontRenderer, Minecraft.getMinecraft().getTextureManager(), stack, x, y);
|
||||
ri.renderItemOverlayIntoGUI(Minecraft.getMinecraft().fontRenderer, Minecraft.getMinecraft().getTextureManager(), stack, x, y);
|
||||
|
||||
icons.add(new ItemIcon(stack, x, y));
|
||||
}
|
||||
|
||||
public void renderOverlay(GuiEntry entry, int width, int height, int left, int top){
|
||||
TextureManager tm = Minecraft.getMinecraft().getTextureManager();
|
||||
tm.bindTexture(new ResourceLocation("bloodutils:textures/gui/altar.png"));
|
||||
entry.drawTexturedModalRect(left, (height/2 - 36) + (18*0) - 17, 0, 0, width, height);
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
@Override
|
||||
public void initGui(int width, int height, int left, int top,
|
||||
EntityPlayer player, List buttonList){
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void actionPerformed(GuiButton button){
|
||||
|
||||
}
|
||||
|
||||
static class ItemIcon {
|
||||
public ItemIcon(ItemStack stack, int x, int y){
|
||||
this.stack = stack;
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
}
|
||||
public ItemStack stack;
|
||||
public int x, y;
|
||||
|
||||
public void onMouseBetween(int mX, int mY){
|
||||
int xSize = x + 16;
|
||||
int ySize = y + 16;
|
||||
|
||||
|
||||
if(mX > x && mX < xSize && mY > y && mY < ySize){
|
||||
GL11.glDisable(GL11.GL_DEPTH_TEST);
|
||||
if(stack != null && stack.getDisplayName() != null)
|
||||
Minecraft.getMinecraft().fontRenderer.drawString(stack.getDisplayName(), mX + 6, mY, new Color(139, 137, 137).getRGB());
|
||||
GL11.glEnable(GL11.GL_DEPTH_TEST);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
204
src/api/java/bloodutils/api/entries/EntryCraftingRecipe.java
Normal file
|
@ -0,0 +1,204 @@
|
|||
package bloodutils.api.entries;
|
||||
|
||||
import java.awt.Color;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.client.gui.GuiButton;
|
||||
import net.minecraft.client.renderer.RenderHelper;
|
||||
import net.minecraft.client.renderer.entity.RenderItem;
|
||||
import net.minecraft.client.renderer.texture.TextureManager;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.item.crafting.IRecipe;
|
||||
import net.minecraft.item.crafting.ShapedRecipes;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
import net.minecraftforge.oredict.ShapedOreRecipe;
|
||||
|
||||
import org.lwjgl.opengl.GL11;
|
||||
import org.lwjgl.opengl.GL12;
|
||||
|
||||
import WayofTime.alchemicalWizardry.ModItems;
|
||||
import WayofTime.alchemicalWizardry.api.items.ShapedBloodOrbRecipe;
|
||||
import bloodutils.api.classes.guide.GuiEntry;
|
||||
|
||||
public class EntryCraftingRecipe implements IEntry{
|
||||
public EntryCraftingRecipe(IRecipe recipes){
|
||||
this.recipes = recipes;
|
||||
populate(recipes);
|
||||
}
|
||||
public IRecipe recipes;
|
||||
|
||||
public ItemStack[] recipe;
|
||||
public ItemStack output;
|
||||
|
||||
public ArrayList<ItemIcon> icons = new ArrayList<ItemIcon>();
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
public void populate(IRecipe recipe){
|
||||
if(recipe instanceof ShapedRecipes){
|
||||
ShapedRecipes rec = (ShapedRecipes)recipe;
|
||||
if(rec != null && rec.recipeItems != null && rec.recipeItems.length > 0){
|
||||
this.recipe = rec.recipeItems;
|
||||
this.output = rec.getRecipeOutput();
|
||||
}
|
||||
}else if(recipe instanceof ShapedOreRecipe){
|
||||
ShapedOreRecipe rec = (ShapedOreRecipe)recipe;
|
||||
this.recipe = new ItemStack[rec.getInput().length];;
|
||||
for(int i = 0; i < rec.getInput().length; i++){
|
||||
ItemStack s = null;
|
||||
if(rec.getInput()[i] instanceof ItemStack){
|
||||
s = (ItemStack)rec.getInput()[i];
|
||||
}else{
|
||||
s = ((ArrayList<ItemStack>)rec.getInput()[i]).get(0);
|
||||
}
|
||||
this.recipe[i] = s;
|
||||
this.output = rec.getRecipeOutput();
|
||||
}
|
||||
}else if(recipe instanceof ShapedBloodOrbRecipe){
|
||||
ShapedBloodOrbRecipe rec = (ShapedBloodOrbRecipe)recipe;
|
||||
this.recipe = new ItemStack[rec.getInput().length];;
|
||||
for(int i = 0; i < rec.getInput().length; i++){
|
||||
ItemStack s = null;
|
||||
if(rec.getInput()[i] instanceof ItemStack){
|
||||
s = (ItemStack)rec.getInput()[i];
|
||||
}else if(rec.getInput()[i] instanceof Object){
|
||||
s = new ItemStack(ModItems.masterBloodOrb);
|
||||
}else{
|
||||
s = ((ArrayList<ItemStack>)rec.getInput()[i]).get(0);
|
||||
}
|
||||
this.recipe[i] = s;
|
||||
this.output = rec.getRecipeOutput();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void draw(GuiEntry entry, int width, int height, int left, int top, EntityPlayer player, String key, int page, int mX, int mY){
|
||||
int x, y;
|
||||
|
||||
GL11.glPushMatrix();
|
||||
GL11.glEnable(GL11.GL_BLEND);
|
||||
GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
|
||||
GL11.glColor4f(1F, 1F, 1F, 1F);
|
||||
RenderHelper.enableGUIStandardItemLighting();
|
||||
GL11.glEnable(GL12.GL_RESCALE_NORMAL);
|
||||
GL11.glEnable(GL11.GL_DEPTH_TEST);
|
||||
renderOverlay(entry, width, height, left, top);
|
||||
|
||||
/** Row 1 */
|
||||
x = (left + width / 2) - (65-31);
|
||||
y = (height/2 - 18) + (18*0);
|
||||
drawIcon(0, x, y);
|
||||
|
||||
x = left + width / 2 - (65-48) + 1;
|
||||
y = (height/2 - 18) + (18*(3-3));
|
||||
drawIcon(1, x, y);
|
||||
|
||||
x = left + width / 2 - (65-(48+16)-3);
|
||||
y = (height/2 - 18) + (18*(6-6));
|
||||
drawIcon(2, x, y);
|
||||
|
||||
/** Row 2 */
|
||||
x = (left + width / 2) - (65-31);
|
||||
y = (height/2 - 18) + (18*1);
|
||||
drawIcon(3, x, y);
|
||||
|
||||
x = left + width / 2 - (65-48) + 1;
|
||||
y = (height/2 - 18) + (18*(4-3));
|
||||
drawIcon(4, x, y);
|
||||
|
||||
x = left + width / 2 - (65-(48+16)-3);
|
||||
y = (height/2 - 18) + (18*(7-6));
|
||||
drawIcon(5, x, y);
|
||||
|
||||
/** Row 3 */
|
||||
x = (left + width / 2) - (65-31);
|
||||
y = (height/2 - 18) + (18*2);
|
||||
drawIcon(6, x, y);
|
||||
|
||||
x = left + width / 2 - (65-48) + 1;
|
||||
y = (height/2 - 18) + (18*(5-3));
|
||||
drawIcon(7, x, y);
|
||||
|
||||
x = left + width / 2 - (65-(48+16)-3);
|
||||
y = (height/2 - 18) + (18*(8-6));
|
||||
drawIcon(8, x, y);
|
||||
|
||||
/** Result */
|
||||
x = left + width / 2 - (65-(48+48)-5);
|
||||
y = (height/2 - 18) + (18*(4-3));
|
||||
drawIcon(this.output, x, y);
|
||||
|
||||
RenderHelper.disableStandardItemLighting();
|
||||
|
||||
GL11.glDisable(GL11.GL_LIGHTING);
|
||||
|
||||
GL11.glPopMatrix();
|
||||
|
||||
for(ItemIcon icon : icons){
|
||||
if(icon.stack != null)
|
||||
icon.onMouseBetween(mX, mY);
|
||||
}
|
||||
}
|
||||
|
||||
public void drawIcon(int entry, int x, int y){
|
||||
RenderItem ri = new RenderItem();
|
||||
if(recipe != null && recipe.length > 0 && recipe[entry] != null){
|
||||
ri.renderItemAndEffectIntoGUI(Minecraft.getMinecraft().fontRenderer, Minecraft.getMinecraft().getTextureManager(), recipe[entry], x, y);
|
||||
ri.renderItemOverlayIntoGUI(Minecraft.getMinecraft().fontRenderer, Minecraft.getMinecraft().getTextureManager(), recipe[entry], x, y);
|
||||
|
||||
icons.add(new ItemIcon(recipe[entry], x, y));
|
||||
}
|
||||
}
|
||||
|
||||
public void drawIcon(ItemStack stack, int x, int y){
|
||||
RenderItem ri = new RenderItem();
|
||||
ri.renderItemAndEffectIntoGUI(Minecraft.getMinecraft().fontRenderer, Minecraft.getMinecraft().getTextureManager(), stack, x, y);
|
||||
ri.renderItemOverlayIntoGUI(Minecraft.getMinecraft().fontRenderer, Minecraft.getMinecraft().getTextureManager(), stack, x, y);
|
||||
|
||||
icons.add(new ItemIcon(stack, x, y));
|
||||
}
|
||||
|
||||
public void renderOverlay(GuiEntry entry, int width, int height, int left, int top){
|
||||
TextureManager tm = Minecraft.getMinecraft().getTextureManager();
|
||||
tm.bindTexture(new ResourceLocation("bloodutils:textures/gui/crafting.png"));
|
||||
entry.drawTexturedModalRect(left, (height/2 - 18) + (18*0) - 17, 0, 0, width, height);
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
@Override
|
||||
public void initGui(int width, int height, int left, int top,
|
||||
EntityPlayer player, List buttonList){
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void actionPerformed(GuiButton button){
|
||||
|
||||
}
|
||||
|
||||
static class ItemIcon {
|
||||
public ItemIcon(ItemStack stack, int x, int y){
|
||||
this.stack = stack;
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
}
|
||||
public ItemStack stack;
|
||||
public int x, y;
|
||||
|
||||
public void onMouseBetween(int mX, int mY){
|
||||
int xSize = x + 16;
|
||||
int ySize = y + 16;
|
||||
|
||||
|
||||
if(mX > x && mX < xSize && mY > y && mY < ySize){
|
||||
GL11.glDisable(GL11.GL_DEPTH_TEST);
|
||||
if(stack != null && stack.getDisplayName() != null)
|
||||
Minecraft.getMinecraft().fontRenderer.drawString(stack.getDisplayName(), mX + 6, mY, new Color(139, 137, 137).getRGB());
|
||||
GL11.glEnable(GL11.GL_DEPTH_TEST);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
73
src/api/java/bloodutils/api/entries/EntryImage.java
Normal file
|
@ -0,0 +1,73 @@
|
|||
package bloodutils.api.entries;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.client.gui.GuiButton;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
import net.minecraft.util.StatCollector;
|
||||
import bloodutils.api.classes.guide.GuiEntry;
|
||||
import bloodutils.api.helpers.GuiHelper;
|
||||
|
||||
public class EntryImage implements IEntry{
|
||||
public EntryImage(String resource, int iconWidth, int iconHeight){
|
||||
this.resource = new ResourceLocation(resource);
|
||||
this.iconWidth = iconWidth;
|
||||
this.iconHeight = iconHeight;
|
||||
}
|
||||
public ResourceLocation resource;
|
||||
public int iconWidth;
|
||||
public int iconHeight;
|
||||
|
||||
public EntryImage(String resource, int iconWidth, int iconHeight, String entryName){
|
||||
this.resource = new ResourceLocation(resource);
|
||||
this.iconWidth = iconWidth;
|
||||
this.iconHeight = iconHeight;
|
||||
this.entryName = entryName;
|
||||
}
|
||||
public String entryName;
|
||||
|
||||
|
||||
@Override
|
||||
public void draw(GuiEntry entry, int width, int height, int left, int top, EntityPlayer player, String key, int page, int mX, int mY){
|
||||
drawImage(entry, width, height, left, top, player, key, page, mX, mY);
|
||||
drawText(entry, width, height, left, top, player, key, page, mX, mY);
|
||||
}
|
||||
|
||||
public void drawImage(GuiEntry entry, int width, int height, int left, int top, EntityPlayer player, String key, int page, int mX, int mY){
|
||||
int x = left + 32;
|
||||
int y = top + 10;
|
||||
Minecraft.getMinecraft().getTextureManager().bindTexture(this.resource);
|
||||
|
||||
GuiHelper.drawScaledIconWithoutColor(x, y, this.iconWidth, this.iconHeight, 0);
|
||||
}
|
||||
|
||||
public void drawText(GuiEntry entry, int width, int height, int left, int top, EntityPlayer player, String key, int page, int mX, int mY){
|
||||
int x, y;
|
||||
|
||||
if(this.entryName == null)
|
||||
this.entryName = key;
|
||||
|
||||
String s = StatCollector.translateToLocal("bu.entry." + this.entryName + "." + page);
|
||||
x = left + width / 2 - 58;
|
||||
y = (top + 15) + 65;
|
||||
|
||||
Minecraft.getMinecraft().fontRenderer.setUnicodeFlag(true);
|
||||
Minecraft.getMinecraft().fontRenderer.drawSplitString(s, x, y, 110, 0);
|
||||
Minecraft.getMinecraft().fontRenderer.setUnicodeFlag(false);
|
||||
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
@Override
|
||||
public void initGui(int width, int height, int left, int top,
|
||||
EntityPlayer player, List buttonList) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void actionPerformed(GuiButton button){
|
||||
|
||||
}
|
||||
}
|
90
src/api/java/bloodutils/api/entries/EntryItemText.java
Normal file
|
@ -0,0 +1,90 @@
|
|||
package bloodutils.api.entries;
|
||||
|
||||
import java.awt.Color;
|
||||
import java.util.List;
|
||||
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.client.gui.GuiButton;
|
||||
import net.minecraft.client.renderer.RenderBlocks;
|
||||
import net.minecraft.client.renderer.RenderHelper;
|
||||
import net.minecraft.client.renderer.entity.RenderItem;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.init.Blocks;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.util.StatCollector;
|
||||
|
||||
import org.lwjgl.opengl.GL11;
|
||||
import org.lwjgl.opengl.GL12;
|
||||
|
||||
import bloodutils.api.classes.guide.GuiEntry;
|
||||
|
||||
public class EntryItemText implements IEntry{
|
||||
public EntryItemText(ItemStack stack){
|
||||
this.stack = stack;
|
||||
}
|
||||
public ItemStack stack;
|
||||
|
||||
public EntryItemText(ItemStack stack, String entryName){
|
||||
this.stack = stack;
|
||||
this.entryName = entryName;
|
||||
}
|
||||
public String entryName;
|
||||
|
||||
@Override
|
||||
public void draw(GuiEntry entry, int width, int height, int left, int top, EntityPlayer player, String key, int page, int mX, int mY){
|
||||
drawText(entry, width, height, left, top, player, key, page, mX, mY);
|
||||
drawBlock(entry, width, height, left, top, player, key, page, mX, mY);
|
||||
}
|
||||
|
||||
public void drawText(GuiEntry entry, int width, int height, int left, int top, EntityPlayer player, String key, int page, int mX, int mY){
|
||||
int x, y;
|
||||
|
||||
if(this.entryName == null)
|
||||
this.entryName = key;
|
||||
|
||||
String s = StatCollector.translateToLocal("bu.entry." + this.entryName + "." + page);
|
||||
x = left + width / 2 - 58;
|
||||
y = (top + 15);
|
||||
|
||||
Minecraft.getMinecraft().fontRenderer.setUnicodeFlag(true);
|
||||
Minecraft.getMinecraft().fontRenderer.drawSplitString(s, x, y, 110, 0);
|
||||
Minecraft.getMinecraft().fontRenderer.setUnicodeFlag(false);
|
||||
|
||||
}
|
||||
|
||||
public void drawBlock(GuiEntry entry, int width, int height, int left, int top, EntityPlayer player, String key, int page, int mX, int mY){
|
||||
|
||||
RenderItem ri = new RenderItem();
|
||||
GL11.glPushMatrix();
|
||||
|
||||
GL11.glScaled(3, 3, 1);
|
||||
|
||||
GL11.glEnable(GL11.GL_BLEND);
|
||||
GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
|
||||
GL11.glColor4f(1F, 1F, 1F, 1F);
|
||||
RenderHelper.enableGUIStandardItemLighting();
|
||||
GL11.glEnable(GL12.GL_RESCALE_NORMAL);
|
||||
GL11.glEnable(GL11.GL_DEPTH_TEST);
|
||||
|
||||
ri.renderItemAndEffectIntoGUI(Minecraft.getMinecraft().fontRenderer, Minecraft.getMinecraft().getTextureManager(), stack, left - (left/2) + 2, top + 20);
|
||||
ri.renderItemOverlayIntoGUI(Minecraft.getMinecraft().fontRenderer, Minecraft.getMinecraft().getTextureManager(), stack, left - (left/2) + 2, top + 20);
|
||||
|
||||
RenderHelper.disableStandardItemLighting();
|
||||
|
||||
GL11.glPopMatrix();
|
||||
GL11.glDisable(GL11.GL_LIGHTING);
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
@Override
|
||||
public void initGui(int width, int height, int left, int top,
|
||||
EntityPlayer player, List buttonList) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void actionPerformed(GuiButton button){
|
||||
|
||||
}
|
||||
}
|
38
src/api/java/bloodutils/api/entries/EntryRitualInfo.java
Normal file
|
@ -0,0 +1,38 @@
|
|||
package bloodutils.api.entries;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.client.gui.GuiButton;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import bloodutils.api.classes.guide.GuiEntry;
|
||||
|
||||
public class EntryRitualInfo implements IEntry{
|
||||
public EntryRitualInfo(int cost){
|
||||
|
||||
this.cost = cost;
|
||||
}
|
||||
public int cost;
|
||||
|
||||
@Override
|
||||
public void draw(GuiEntry entry, int width, int height, int left, int top, EntityPlayer player, String key, int page, int mX, int mY){
|
||||
int x, y;
|
||||
x = left + width / 2 - 58;
|
||||
y = (top + 15);
|
||||
Minecraft.getMinecraft().fontRenderer.setUnicodeFlag(true);
|
||||
Minecraft.getMinecraft().fontRenderer.drawString("Cost: " + this.cost + " LP", x, y, 0);
|
||||
Minecraft.getMinecraft().fontRenderer.setUnicodeFlag(false);
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
@Override
|
||||
public void initGui(int width, int height, int left, int top,
|
||||
EntityPlayer player, List buttonList){
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void actionPerformed(GuiButton button){
|
||||
|
||||
}
|
||||
}
|
48
src/api/java/bloodutils/api/entries/EntryText.java
Normal file
|
@ -0,0 +1,48 @@
|
|||
package bloodutils.api.entries;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.client.gui.GuiButton;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.util.StatCollector;
|
||||
import bloodutils.api.classes.guide.GuiEntry;
|
||||
|
||||
public class EntryText implements IEntry{
|
||||
public EntryText(){
|
||||
|
||||
}
|
||||
|
||||
public EntryText(String entryName){
|
||||
this.entryName = entryName;
|
||||
}
|
||||
public String entryName;
|
||||
|
||||
@Override
|
||||
public void draw(GuiEntry entry, int width, int height, int left, int top, EntityPlayer player, String key, int page, int mX, int mY){
|
||||
int x, y;
|
||||
|
||||
if(this.entryName == null)
|
||||
this.entryName = key;
|
||||
|
||||
String s = StatCollector.translateToLocal("bu.entry." + this.entryName + "." + page);
|
||||
x = left + width / 2 - 58;
|
||||
y = (top + 15);
|
||||
|
||||
Minecraft.getMinecraft().fontRenderer.setUnicodeFlag(true);
|
||||
Minecraft.getMinecraft().fontRenderer.drawSplitString(s, x, y, 110, 0);
|
||||
Minecraft.getMinecraft().fontRenderer.setUnicodeFlag(false);
|
||||
}
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
@Override
|
||||
public void initGui(int width, int height, int left, int top,
|
||||
EntityPlayer player, List buttonList){
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void actionPerformed(GuiButton button){
|
||||
|
||||
}
|
||||
}
|
25
src/api/java/bloodutils/api/entries/IEntry.java
Normal file
|
@ -0,0 +1,25 @@
|
|||
package bloodutils.api.entries;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import net.minecraft.client.gui.GuiButton;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import bloodutils.api.classes.guide.GuiEntry;
|
||||
|
||||
public interface IEntry {
|
||||
/**
|
||||
* This get's called in GuiEntry, you can do whatever you want here (images, recipes, icons, text, combination of them)
|
||||
* @param width
|
||||
* @param height
|
||||
* @param left
|
||||
* @param top
|
||||
* @param player
|
||||
* The player who has the book open
|
||||
*/
|
||||
public void draw(GuiEntry entry, int width, int height, int left, int top, EntityPlayer player, String key, int page, int mX, int mY);
|
||||
|
||||
@SuppressWarnings("rawtypes")
|
||||
public void initGui(int width, int height, int left, int top, EntityPlayer player, List buttonList);
|
||||
|
||||
public void actionPerformed(GuiButton button);
|
||||
}
|
5
src/api/java/bloodutils/api/enums/EnumType.java
Normal file
|
@ -0,0 +1,5 @@
|
|||
package bloodutils.api.enums;
|
||||
|
||||
public enum EnumType {
|
||||
BLOCK, ITEM;
|
||||
}
|
102
src/api/java/bloodutils/api/helpers/GuiHelper.java
Normal file
|
@ -0,0 +1,102 @@
|
|||
package bloodutils.api.helpers;
|
||||
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.client.renderer.RenderHelper;
|
||||
import net.minecraft.client.renderer.Tessellator;
|
||||
import net.minecraft.client.renderer.texture.TextureMap;
|
||||
import net.minecraft.util.IIcon;
|
||||
|
||||
import org.lwjgl.opengl.GL11;
|
||||
import org.lwjgl.opengl.GL12;
|
||||
|
||||
import bloodutils.api.enums.EnumType;
|
||||
|
||||
public class GuiHelper {
|
||||
public static boolean isMouseBetween(int mouseX, int mouseY, int x, int y, int width, int height) {
|
||||
int xSize = x + width;
|
||||
int ySize = y + height;
|
||||
|
||||
return (mouseX > x && mouseX < xSize && mouseY > y && mouseY < ySize);
|
||||
}
|
||||
|
||||
public static void renderIcon(int x, int y, int width, int height, IIcon icon, EnumType type){
|
||||
if(type == EnumType.BLOCK)
|
||||
Minecraft.getMinecraft().getTextureManager().bindTexture(TextureMap.locationBlocksTexture);
|
||||
else if(type == EnumType.ITEM)
|
||||
Minecraft.getMinecraft().getTextureManager().bindTexture(TextureMap.locationItemsTexture);
|
||||
|
||||
int zLevel = 0;
|
||||
|
||||
GL11.glPushMatrix();
|
||||
GL11.glEnable(GL11.GL_BLEND);
|
||||
GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
|
||||
GL11.glColor4f(1F, 1F, 1F, 1F);
|
||||
RenderHelper.enableGUIStandardItemLighting();
|
||||
GL11.glEnable(GL12.GL_RESCALE_NORMAL);
|
||||
GL11.glEnable(GL11.GL_DEPTH_TEST);
|
||||
|
||||
Tessellator t = Tessellator.instance;
|
||||
t.startDrawingQuads();
|
||||
t.addVertexWithUV((double)(x + 0), (double)(y + height), (double)zLevel, (double)icon.getMinU(), (double)icon.getMaxV());
|
||||
t.addVertexWithUV((double)(x + width), (double)(y + height), (double)zLevel, (double)icon.getMaxU(), (double)icon.getMaxV());
|
||||
t.addVertexWithUV((double)(x + width), (double)(y + 0), (double)zLevel, (double)icon.getMaxU(), (double)icon.getMinV());
|
||||
t.addVertexWithUV((double)(x + 0), (double)(y + 0), (double)zLevel, (double)icon.getMinU(), (double)icon.getMinV());
|
||||
t.draw();
|
||||
|
||||
RenderHelper.disableStandardItemLighting();
|
||||
|
||||
GL11.glDisable(GL11.GL_LIGHTING);
|
||||
|
||||
GL11.glPopMatrix();
|
||||
}
|
||||
|
||||
public static void drawScaledIconWithoutColor(int x, int y, int width, int height, float zLevel){
|
||||
GL11.glPushMatrix();
|
||||
GL11.glEnable(GL11.GL_BLEND);
|
||||
GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
|
||||
GL11.glColor4f(1F, 1F, 1F, 1F);
|
||||
GL11.glScaled(0.13D, 0.13D, 0.13D);
|
||||
GL11.glTranslated(x + 900, y + 250, 0);
|
||||
RenderHelper.enableGUIStandardItemLighting();
|
||||
GL11.glEnable(GL12.GL_RESCALE_NORMAL);
|
||||
GL11.glEnable(GL11.GL_DEPTH_TEST);
|
||||
|
||||
Tessellator t = Tessellator.instance;
|
||||
t.startDrawingQuads();
|
||||
t.addVertexWithUV(x + 0, y + height, zLevel, 0D, 1D);
|
||||
t.addVertexWithUV(x + width, y + height, zLevel, 1D, 1D);
|
||||
t.addVertexWithUV(x + width, y + 0, zLevel, 1D, 0D);
|
||||
t.addVertexWithUV(x + 0, y + 0, zLevel, 0D, 0D);
|
||||
t.draw();
|
||||
|
||||
RenderHelper.disableStandardItemLighting();
|
||||
|
||||
GL11.glDisable(GL11.GL_LIGHTING);
|
||||
|
||||
GL11.glPopMatrix();
|
||||
}
|
||||
|
||||
public static void drawIconWithoutColor(int x, int y, int width, int height, float zLevel){
|
||||
GL11.glPushMatrix();
|
||||
GL11.glEnable(GL11.GL_BLEND);
|
||||
GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
|
||||
GL11.glColor4f(1F, 1F, 1F, 1F);
|
||||
RenderHelper.enableGUIStandardItemLighting();
|
||||
GL11.glEnable(GL12.GL_RESCALE_NORMAL);
|
||||
GL11.glEnable(GL11.GL_DEPTH_TEST);
|
||||
|
||||
Tessellator t = Tessellator.instance;
|
||||
t.startDrawingQuads();
|
||||
t.addVertexWithUV(x + 0, y + height, zLevel, 0D, 1D);
|
||||
t.addVertexWithUV(x + width, y + height, zLevel, 1D, 1D);
|
||||
t.addVertexWithUV(x + width, y + 0, zLevel, 1D, 0D);
|
||||
t.addVertexWithUV(x + 0, y + 0, zLevel, 0D, 0D);
|
||||
t.draw();
|
||||
|
||||
RenderHelper.disableStandardItemLighting();
|
||||
|
||||
GL11.glDisable(GL11.GL_LIGHTING);
|
||||
|
||||
GL11.glPopMatrix();
|
||||
}
|
||||
}
|
16
src/api/java/bloodutils/api/helpers/OreDictionaryHelper.java
Normal file
|
@ -0,0 +1,16 @@
|
|||
package bloodutils.api.helpers;
|
||||
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraftforge.oredict.OreDictionary;
|
||||
|
||||
public class OreDictionaryHelper {
|
||||
public static boolean entryExists(String material){
|
||||
return OreDictionary.getOres(material).size() > 0;
|
||||
}
|
||||
|
||||
public static ItemStack getItemStack(String material, int entry){
|
||||
if(entryExists(material))
|
||||
return OreDictionary.getOres(material).get(entry);
|
||||
return null;
|
||||
}
|
||||
}
|
41
src/api/java/bloodutils/api/interfaces/IEntryElement.java
Normal file
|
@ -0,0 +1,41 @@
|
|||
package bloodutils.api.interfaces;
|
||||
|
||||
/**
|
||||
* Copied from WaslieCore, to make it no longer require it in the API. (https://github.com/wasliebob/WaslieCore/blob/master/src/main/java/wasliecore/interfaces/IElement.java)
|
||||
*/
|
||||
public interface IEntryElement{
|
||||
/**
|
||||
* In here you need to draw the element
|
||||
*/
|
||||
public void drawElement();
|
||||
|
||||
/**
|
||||
* @param mX
|
||||
* Mouse X Position
|
||||
* @param mY
|
||||
* Mouse Y Position
|
||||
* @return is the mouse in a element
|
||||
*/
|
||||
public boolean isMouseInElement(int mX, int mY);
|
||||
|
||||
/**
|
||||
* This get's called when you enter the element
|
||||
* @param mX
|
||||
* Mouse X Position
|
||||
* @param mY
|
||||
* Mouse Y Position
|
||||
*/
|
||||
|
||||
public void onMouseEnter(int mX, int mY);
|
||||
|
||||
/**
|
||||
* This get's called when you click within the element
|
||||
* @param mX
|
||||
* Mouse X Position
|
||||
* @param mY
|
||||
* Mouse Y Position
|
||||
* @param type
|
||||
* Type of click (right, left, scroll)
|
||||
*/
|
||||
public void onMouseClick(int mX, int mY, int type);
|
||||
}
|
7
src/api/java/bloodutils/api/interfaces/IReviving.java
Normal file
|
@ -0,0 +1,7 @@
|
|||
package bloodutils.api.interfaces;
|
||||
|
||||
import net.minecraft.world.World;
|
||||
|
||||
public interface IReviving {
|
||||
public void spawnEntity(World world, int x, int y, int z);
|
||||
}
|
3
src/api/java/bloodutils/api/package-info.java
Normal file
|
@ -0,0 +1,3 @@
|
|||
@API(owner = "BloodUtils", apiVersion = "1.0c", provides = "BloodUtils|API")
|
||||
package bloodutils.api;
|
||||
import cpw.mods.fml.common.API;
|
40
src/api/java/bloodutils/api/registries/EntryRegistry.java
Normal file
|
@ -0,0 +1,40 @@
|
|||
package bloodutils.api.registries;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
|
||||
import bloodutils.api.compact.Category;
|
||||
import bloodutils.api.compact.Entry;
|
||||
import bloodutils.api.entries.IEntry;
|
||||
|
||||
public class EntryRegistry {
|
||||
public static void registerCategories(Category category){
|
||||
categories.add(category);
|
||||
categoryMap.put(category.name, category);
|
||||
categoryCount++;
|
||||
}
|
||||
public static ArrayList<Category> categories = new ArrayList<Category>();
|
||||
public static HashMap<String, Category> categoryMap = new HashMap<String, Category>();
|
||||
|
||||
public static int categoryCount = 0;
|
||||
|
||||
public static void registerEntry(Category category, HashMap<String, Entry> entryMap, Entry entry){
|
||||
entryMap.put(entry.name, entry);
|
||||
entries.put(category, entryMap);
|
||||
|
||||
if(maxEntries.containsKey(category) && entry.indexPage > maxEntries.get(category))
|
||||
maxEntries.put(category, entry.indexPage);
|
||||
else if(!maxEntries.containsKey(category))
|
||||
maxEntries.put(category, 0);
|
||||
|
||||
}
|
||||
public static HashMap<Category, HashMap<String, Entry>> entries = new HashMap<Category, HashMap<String, Entry>>();
|
||||
|
||||
public static HashMap<Category, Integer> maxEntries = new HashMap<Category, Integer>();
|
||||
|
||||
|
||||
public static HashMap<String, Entry> basics = new HashMap<String, Entry>();
|
||||
public static HashMap<String, Entry> rituals = new HashMap<String, Entry>();
|
||||
public static HashMap<String, Entry> bloodUtils = new HashMap<String, Entry>();
|
||||
|
||||
}
|
47
src/api/java/bloodutils/api/registries/RecipeRegistry.java
Normal file
|
@ -0,0 +1,47 @@
|
|||
package bloodutils.api.registries;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.item.crafting.CraftingManager;
|
||||
import net.minecraft.item.crafting.IRecipe;
|
||||
import net.minecraftforge.oredict.ShapedOreRecipe;
|
||||
import WayofTime.alchemicalWizardry.api.altarRecipeRegistry.AltarRecipe;
|
||||
import WayofTime.alchemicalWizardry.api.altarRecipeRegistry.AltarRecipeRegistry;
|
||||
import WayofTime.alchemicalWizardry.api.items.ShapedBloodOrbRecipe;
|
||||
import cpw.mods.fml.common.registry.GameRegistry;
|
||||
|
||||
public class RecipeRegistry {
|
||||
public static ArrayList<IRecipe> craftingRecipes = new ArrayList<IRecipe>();
|
||||
public static ArrayList<AltarRecipe> altarRecipes = new ArrayList<AltarRecipe>();
|
||||
|
||||
/** Used to register crafting recipes to the guide */
|
||||
public static IRecipe getLatestCraftingRecipe(){
|
||||
IRecipe rec = (IRecipe)CraftingManager.getInstance().getRecipeList().get(CraftingManager.getInstance().getRecipeList().size() -1);
|
||||
craftingRecipes.add(rec);
|
||||
return craftingRecipes.get(craftingRecipes.size() - 1);
|
||||
}
|
||||
|
||||
/** Used to register items to the guide */
|
||||
public static AltarRecipe getLatestAltarRecipe(){
|
||||
AltarRecipe rec = (AltarRecipe)AltarRecipeRegistry.altarRecipes.get(AltarRecipeRegistry.altarRecipes.size() - 1);
|
||||
altarRecipes.add(rec);
|
||||
return altarRecipes.get(altarRecipes.size() - 1);
|
||||
}
|
||||
|
||||
public static void addAltarRecipe(ItemStack result, ItemStack requiredItem, int minTier, int liquidRequired, int consumptionRate, int drainRate, boolean canBeFilled){
|
||||
AltarRecipeRegistry.registerAltarRecipe(result, requiredItem, minTier, liquidRequired, consumptionRate, drainRate, canBeFilled);
|
||||
}
|
||||
|
||||
public static void addShapedRecipe(ItemStack output, Object[] obj){
|
||||
GameRegistry.addShapedRecipe(output, obj);
|
||||
}
|
||||
|
||||
public static void addShapedOrbRecipe(ItemStack output, Object[] obj){
|
||||
GameRegistry.addRecipe(new ShapedBloodOrbRecipe(output, obj));
|
||||
}
|
||||
|
||||
public static void addShapedOreRecipe(ItemStack output, Object[] obj){
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(output, obj));
|
||||
}
|
||||
}
|
13
src/api/java/bloodutils/api/registries/RevivingRegistry.java
Normal file
|
@ -0,0 +1,13 @@
|
|||
package bloodutils.api.registries;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
import bloodutils.api.compact.CompactItem;
|
||||
import bloodutils.api.interfaces.IReviving;
|
||||
|
||||
public class RevivingRegistry {
|
||||
public static void registerReviving(CompactItem ingredients, IReviving reviving){
|
||||
recipes.put(ingredients, reviving);
|
||||
}
|
||||
public static HashMap<CompactItem, IReviving> recipes = new HashMap<CompactItem, IReviving>();
|
||||
}
|
|
@ -54,21 +54,108 @@ import WayofTime.alchemicalWizardry.common.NewPacketHandler;
|
|||
import WayofTime.alchemicalWizardry.common.alchemy.CombinedPotionRegistry;
|
||||
import WayofTime.alchemicalWizardry.common.block.ArmourForge;
|
||||
import WayofTime.alchemicalWizardry.common.bloodAltarUpgrade.UpgradedAltars;
|
||||
import WayofTime.alchemicalWizardry.common.book.BUEntries;
|
||||
import WayofTime.alchemicalWizardry.common.demonVillage.demonHoard.DemonPacketAngel;
|
||||
import WayofTime.alchemicalWizardry.common.demonVillage.demonHoard.DemonPacketRegistry;
|
||||
import WayofTime.alchemicalWizardry.common.demonVillage.tileEntity.TEDemonPortal;
|
||||
import WayofTime.alchemicalWizardry.common.entity.mob.*;
|
||||
import WayofTime.alchemicalWizardry.common.harvest.*;
|
||||
import WayofTime.alchemicalWizardry.common.entity.mob.EntityBileDemon;
|
||||
import WayofTime.alchemicalWizardry.common.entity.mob.EntityBoulderFist;
|
||||
import WayofTime.alchemicalWizardry.common.entity.mob.EntityEarthElemental;
|
||||
import WayofTime.alchemicalWizardry.common.entity.mob.EntityFallenAngel;
|
||||
import WayofTime.alchemicalWizardry.common.entity.mob.EntityFireElemental;
|
||||
import WayofTime.alchemicalWizardry.common.entity.mob.EntityHolyElemental;
|
||||
import WayofTime.alchemicalWizardry.common.entity.mob.EntityIceDemon;
|
||||
import WayofTime.alchemicalWizardry.common.entity.mob.EntityLowerGuardian;
|
||||
import WayofTime.alchemicalWizardry.common.entity.mob.EntityShade;
|
||||
import WayofTime.alchemicalWizardry.common.entity.mob.EntityShadeElemental;
|
||||
import WayofTime.alchemicalWizardry.common.entity.mob.EntitySmallEarthGolem;
|
||||
import WayofTime.alchemicalWizardry.common.entity.mob.EntityWaterElemental;
|
||||
import WayofTime.alchemicalWizardry.common.entity.mob.EntityWingedFireDemon;
|
||||
import WayofTime.alchemicalWizardry.common.harvest.BloodMagicHarvestHandler;
|
||||
import WayofTime.alchemicalWizardry.common.harvest.CactusReedHarvestHandler;
|
||||
import WayofTime.alchemicalWizardry.common.harvest.GourdHarvestHandler;
|
||||
import WayofTime.alchemicalWizardry.common.harvest.PamHarvestCompatRegistry;
|
||||
import WayofTime.alchemicalWizardry.common.items.ItemRitualDiviner;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfHolding;
|
||||
import WayofTime.alchemicalWizardry.common.items.thaumcraft.ItemSanguineArmour;
|
||||
import WayofTime.alchemicalWizardry.common.potion.*;
|
||||
import WayofTime.alchemicalWizardry.common.potion.PotionBoost;
|
||||
import WayofTime.alchemicalWizardry.common.potion.PotionDeaf;
|
||||
import WayofTime.alchemicalWizardry.common.potion.PotionDrowning;
|
||||
import WayofTime.alchemicalWizardry.common.potion.PotionFeatherFall;
|
||||
import WayofTime.alchemicalWizardry.common.potion.PotionFireFuse;
|
||||
import WayofTime.alchemicalWizardry.common.potion.PotionFlameCloak;
|
||||
import WayofTime.alchemicalWizardry.common.potion.PotionFlight;
|
||||
import WayofTime.alchemicalWizardry.common.potion.PotionHeavyHeart;
|
||||
import WayofTime.alchemicalWizardry.common.potion.PotionIceCloak;
|
||||
import WayofTime.alchemicalWizardry.common.potion.PotionInhibit;
|
||||
import WayofTime.alchemicalWizardry.common.potion.PotionPlanarBinding;
|
||||
import WayofTime.alchemicalWizardry.common.potion.PotionProjectileProtect;
|
||||
import WayofTime.alchemicalWizardry.common.potion.PotionReciprocation;
|
||||
import WayofTime.alchemicalWizardry.common.potion.PotionSoulFray;
|
||||
import WayofTime.alchemicalWizardry.common.potion.PotionSoulHarden;
|
||||
import WayofTime.alchemicalWizardry.common.renderer.AlchemyCircleRenderer;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.*;
|
||||
import WayofTime.alchemicalWizardry.common.spell.simple.*;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectAnimalGrowth;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectAutoAlchemy;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectBiomeChanger;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectContainment;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectCrushing;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectEllipsoid;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectEvaporation;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectExpulsion;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectFeatheredEarth;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectFeatheredKnife;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectFlight;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectFullStomach;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectGrowth;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectHarvest;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectHealing;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectInterdiction;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectItemSuction;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectJumping;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectLava;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectLeap;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectLifeConduit;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectMagnetic;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectSoulBound;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectSpawnWard;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectSummonMeteor;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectSupression;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectUnbinding;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectVeilOfEvil;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectWater;
|
||||
import WayofTime.alchemicalWizardry.common.rituals.RitualEffectWellOfSuffering;
|
||||
import WayofTime.alchemicalWizardry.common.spell.simple.HomSpellRegistry;
|
||||
import WayofTime.alchemicalWizardry.common.spell.simple.SpellEarthBender;
|
||||
import WayofTime.alchemicalWizardry.common.spell.simple.SpellExplosions;
|
||||
import WayofTime.alchemicalWizardry.common.spell.simple.SpellFireBurst;
|
||||
import WayofTime.alchemicalWizardry.common.spell.simple.SpellFrozenWater;
|
||||
import WayofTime.alchemicalWizardry.common.spell.simple.SpellHolyBlast;
|
||||
import WayofTime.alchemicalWizardry.common.spell.simple.SpellLightningBolt;
|
||||
import WayofTime.alchemicalWizardry.common.spell.simple.SpellTeleport;
|
||||
import WayofTime.alchemicalWizardry.common.spell.simple.SpellWateryGrave;
|
||||
import WayofTime.alchemicalWizardry.common.spell.simple.SpellWindGust;
|
||||
import WayofTime.alchemicalWizardry.common.summoning.SummoningHelperAW;
|
||||
import WayofTime.alchemicalWizardry.common.summoning.meteor.MeteorRegistry;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.*;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TEAlchemicCalcinator;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TEAltar;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TEBellJar;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TEConduit;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TEHomHeart;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TEMasterStone;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TEOrientable;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TEPedestal;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TEPlinth;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TEReagentConduit;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TESchematicSaver;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TESocket;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TESpectralBlock;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TESpectralContainer;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TESpellEffectBlock;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TESpellEnhancementBlock;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TESpellModifierBlock;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TESpellParadigmBlock;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TETeleposer;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TEWritingTable;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.gui.GuiHandler;
|
||||
import WayofTime.alchemicalWizardry.common.tweaker.MineTweakerIntegration;
|
||||
import cpw.mods.fml.common.FMLCommonHandler;
|
||||
|
@ -777,6 +864,8 @@ public class AlchemicalWizardry
|
|||
@EventHandler
|
||||
public void postInit(FMLPostInitializationEvent event)
|
||||
{
|
||||
BUEntries entries = new BUEntries();
|
||||
entries.postInit();
|
||||
//TODO Thaumcraft Integration
|
||||
if (Loader.isModLoaded("Thaumcraft"))
|
||||
{
|
||||
|
|
|
@ -1,16 +1,84 @@
|
|||
package WayofTime.alchemicalWizardry;
|
||||
|
||||
import WayofTime.alchemicalWizardry.common.items.*;
|
||||
import WayofTime.alchemicalWizardry.common.items.energy.ItemAttunedCrystal;
|
||||
import WayofTime.alchemicalWizardry.common.items.energy.ItemDestinationClearer;
|
||||
import WayofTime.alchemicalWizardry.common.items.energy.ItemTankSegmenter;
|
||||
import WayofTime.alchemicalWizardry.common.items.potion.*;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.*;
|
||||
import WayofTime.alchemicalWizardry.common.items.spell.ItemSpellMultiTool;
|
||||
import cpw.mods.fml.common.registry.GameRegistry;
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.init.Items;
|
||||
import net.minecraft.item.Item;
|
||||
import WayofTime.alchemicalWizardry.common.book.ItemBMBook;
|
||||
import WayofTime.alchemicalWizardry.common.items.AWBaseItems;
|
||||
import WayofTime.alchemicalWizardry.common.items.ActivationCrystal;
|
||||
import WayofTime.alchemicalWizardry.common.items.AirScribeTool;
|
||||
import WayofTime.alchemicalWizardry.common.items.ApprenticeBloodOrb;
|
||||
import WayofTime.alchemicalWizardry.common.items.ArchmageBloodOrb;
|
||||
import WayofTime.alchemicalWizardry.common.items.ArmourInhibitor;
|
||||
import WayofTime.alchemicalWizardry.common.items.BlankSpell;
|
||||
import WayofTime.alchemicalWizardry.common.items.BloodShard;
|
||||
import WayofTime.alchemicalWizardry.common.items.BoundArmour;
|
||||
import WayofTime.alchemicalWizardry.common.items.BoundAxe;
|
||||
import WayofTime.alchemicalWizardry.common.items.BoundPickaxe;
|
||||
import WayofTime.alchemicalWizardry.common.items.BoundShovel;
|
||||
import WayofTime.alchemicalWizardry.common.items.CheatyItem;
|
||||
import WayofTime.alchemicalWizardry.common.items.CreativeDagger;
|
||||
import WayofTime.alchemicalWizardry.common.items.DaggerOfSacrifice;
|
||||
import WayofTime.alchemicalWizardry.common.items.DemonPlacer;
|
||||
import WayofTime.alchemicalWizardry.common.items.DemonicTelepositionFocus;
|
||||
import WayofTime.alchemicalWizardry.common.items.DuskScribeTool;
|
||||
import WayofTime.alchemicalWizardry.common.items.EarthScribeTool;
|
||||
import WayofTime.alchemicalWizardry.common.items.EnergyBattery;
|
||||
import WayofTime.alchemicalWizardry.common.items.EnergyBazooka;
|
||||
import WayofTime.alchemicalWizardry.common.items.EnergyBlast;
|
||||
import WayofTime.alchemicalWizardry.common.items.EnergySword;
|
||||
import WayofTime.alchemicalWizardry.common.items.EnhancedTelepositionFocus;
|
||||
import WayofTime.alchemicalWizardry.common.items.FireScribeTool;
|
||||
import WayofTime.alchemicalWizardry.common.items.ItemAlchemyBase;
|
||||
import WayofTime.alchemicalWizardry.common.items.ItemComplexSpellCrystal;
|
||||
import WayofTime.alchemicalWizardry.common.items.ItemComponents;
|
||||
import WayofTime.alchemicalWizardry.common.items.ItemDiabloKey;
|
||||
import WayofTime.alchemicalWizardry.common.items.ItemRitualDiviner;
|
||||
import WayofTime.alchemicalWizardry.common.items.LavaCrystal;
|
||||
import WayofTime.alchemicalWizardry.common.items.LifeBucket;
|
||||
import WayofTime.alchemicalWizardry.common.items.MagicianBloodOrb;
|
||||
import WayofTime.alchemicalWizardry.common.items.MasterBloodOrb;
|
||||
import WayofTime.alchemicalWizardry.common.items.ReinforcedTelepositionFocus;
|
||||
import WayofTime.alchemicalWizardry.common.items.SacrificialDagger;
|
||||
import WayofTime.alchemicalWizardry.common.items.TelepositionFocus;
|
||||
import WayofTime.alchemicalWizardry.common.items.WaterScribeTool;
|
||||
import WayofTime.alchemicalWizardry.common.items.energy.ItemAttunedCrystal;
|
||||
import WayofTime.alchemicalWizardry.common.items.energy.ItemDestinationClearer;
|
||||
import WayofTime.alchemicalWizardry.common.items.energy.ItemTankSegmenter;
|
||||
import WayofTime.alchemicalWizardry.common.items.potion.AlchemyFlask;
|
||||
import WayofTime.alchemicalWizardry.common.items.potion.AlchemyReagent;
|
||||
import WayofTime.alchemicalWizardry.common.items.potion.AverageLengtheningCatalyst;
|
||||
import WayofTime.alchemicalWizardry.common.items.potion.AveragePowerCatalyst;
|
||||
import WayofTime.alchemicalWizardry.common.items.potion.CombinationalCatalyst;
|
||||
import WayofTime.alchemicalWizardry.common.items.potion.EnhancedFillingAgent;
|
||||
import WayofTime.alchemicalWizardry.common.items.potion.GreaterLengtheningCatalyst;
|
||||
import WayofTime.alchemicalWizardry.common.items.potion.GreaterPowerCatalyst;
|
||||
import WayofTime.alchemicalWizardry.common.items.potion.MundaneLengtheningCatalyst;
|
||||
import WayofTime.alchemicalWizardry.common.items.potion.MundanePowerCatalyst;
|
||||
import WayofTime.alchemicalWizardry.common.items.potion.StandardBindingAgent;
|
||||
import WayofTime.alchemicalWizardry.common.items.potion.StandardFillingAgent;
|
||||
import WayofTime.alchemicalWizardry.common.items.potion.WeakBindingAgent;
|
||||
import WayofTime.alchemicalWizardry.common.items.potion.WeakFillingAgent;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.AirSigil;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.DivinationSigil;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.ItemBloodLightSigil;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.ItemFluidSigil;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.ItemSeerSigil;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.ItemSigilOfEnderSeverance;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.ItemSigilOfSupression;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.LavaSigil;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfElementalAffinity;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfGrowth;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfHaste;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfHolding;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfMagnetism;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfTheBridge;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfTheFastMiner;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.SigilOfWind;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.VoidSigil;
|
||||
import WayofTime.alchemicalWizardry.common.items.sigil.WaterSigil;
|
||||
import WayofTime.alchemicalWizardry.common.items.spell.ItemSpellMultiTool;
|
||||
import cpw.mods.fml.common.registry.GameRegistry;
|
||||
|
||||
/**
|
||||
* Created with IntelliJ IDEA.
|
||||
|
@ -121,6 +189,8 @@ public class ModItems
|
|||
public static Item itemAttunedCrystal;
|
||||
public static Item itemTankSegmenter;
|
||||
public static Item itemDestinationClearer;
|
||||
|
||||
public static Item itemBloodMagicBook;
|
||||
|
||||
public static Item bucketLife;
|
||||
|
||||
|
@ -216,6 +286,7 @@ public class ModItems
|
|||
itemAttunedCrystal = new ItemAttunedCrystal().setUnlocalizedName("itemAttunedCrystal");
|
||||
itemTankSegmenter = new ItemTankSegmenter().setUnlocalizedName("itemTankSegmenter");
|
||||
itemDestinationClearer = new ItemDestinationClearer().setUnlocalizedName("destinationClearer");
|
||||
itemBloodMagicBook = new ItemBMBook().setUnlocalizedName("bmBook");
|
||||
}
|
||||
|
||||
public static void registerItems()
|
||||
|
@ -314,6 +385,8 @@ public class ModItems
|
|||
GameRegistry.registerItem(ModItems.itemTankSegmenter, "itemTankSegmenter");
|
||||
GameRegistry.registerItem(ModItems.itemDestinationClearer, "itemDestinationClearer");
|
||||
|
||||
GameRegistry.registerItem(ModItems.itemBloodMagicBook, "itemBloodMagicBook");
|
||||
|
||||
GameRegistry.registerItem(ModItems.baseItems, "bloodMagicBaseItems");
|
||||
GameRegistry.registerItem(ModItems.baseAlchemyItems, "bloodMagicBaseAlchemyItems");
|
||||
//GameRegistry.registerItem(ModItems.itemBloodFrame, "itemBloodFrame");
|
||||
|
|
|
@ -129,10 +129,6 @@ public class NEIBloodOrbShapedHandler extends ShapedRecipeHandler {
|
|||
transferRects.add(new RecipeTransferRect(new Rectangle(84, 23, 24, 18), "crafting"));
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getOverlayIdentifier() {
|
||||
return "crafting";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getRecipeName() {
|
||||
|
|
|
@ -0,0 +1,122 @@
|
|||
package WayofTime.alchemicalWizardry.common.book;
|
||||
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.util.EnumChatFormatting;
|
||||
import WayofTime.alchemicalWizardry.ModBlocks;
|
||||
import WayofTime.alchemicalWizardry.ModItems;
|
||||
import bloodutils.api.compact.Category;
|
||||
import bloodutils.api.compact.Entry;
|
||||
import bloodutils.api.entries.EntryAltarRecipe;
|
||||
import bloodutils.api.entries.EntryCraftingRecipe;
|
||||
import bloodutils.api.entries.EntryImage;
|
||||
import bloodutils.api.entries.EntryItemText;
|
||||
import bloodutils.api.entries.EntryRitualInfo;
|
||||
import bloodutils.api.entries.EntryText;
|
||||
import bloodutils.api.entries.IEntry;
|
||||
import bloodutils.api.enums.EnumType;
|
||||
import bloodutils.api.registries.EntryRegistry;
|
||||
|
||||
public class BUEntries
|
||||
{
|
||||
public void postInit()
|
||||
{
|
||||
initCategories();
|
||||
initEntries();
|
||||
}
|
||||
|
||||
public void initCategories(){
|
||||
categoryBasics = new Category("Basics", new ItemStack(ModItems.weakBloodOrb), EnumType.ITEM);
|
||||
categoryRituals = new Category("Rituals", new ItemStack(ModItems.itemRitualDiviner), EnumType.ITEM);
|
||||
|
||||
registerCategories();
|
||||
}
|
||||
public static Category categoryBasics;
|
||||
public static Category categoryRituals;
|
||||
|
||||
public void registerCategories(){
|
||||
EntryRegistry.registerCategories(BUEntries.categoryBasics);
|
||||
EntryRegistry.registerCategories(BUEntries.categoryRituals);
|
||||
|
||||
}
|
||||
|
||||
public void initEntries(){
|
||||
theAltar = new Entry(new IEntry[]{new EntryItemText(new ItemStack(ModBlocks.blockAltar), "Blood Altar")}, EnumChatFormatting.BLUE + "Blood Altar", 1);
|
||||
runes = new Entry(new IEntry[]{new EntryItemText(new ItemStack(ModBlocks.runeOfSelfSacrifice)), new EntryItemText(new ItemStack(ModBlocks.runeOfSacrifice)), new EntryItemText(new ItemStack(ModBlocks.speedRune))}, "Runes", 1);
|
||||
|
||||
/** Page 1 */
|
||||
ritualWater = new Entry(new IEntry[]{new EntryText()}, "Full Spring", 1);
|
||||
ritualLava = new Entry(new IEntry[]{new EntryText(), new EntryText()}, "Nether", 1);
|
||||
ritualGreenGrove = new Entry(new IEntry[]{new EntryText(), new EntryText()}, "Green Grove", 1);
|
||||
ritualInterdiction = new Entry(new IEntry[]{new EntryText(), new EntryText()}, "Interdiction", 1);
|
||||
ritualContainment = new Entry(new IEntry[]{new EntryText()}, "Containment", 1);
|
||||
ritualHighJump = new Entry(new IEntry[]{new EntryText()}, "High Jump", 1);
|
||||
ritualSpeed = new Entry(new IEntry[]{new EntryText()}, "Speed", 1);
|
||||
ritualMagnet = new Entry(new IEntry[]{new EntryText()}, "Magnetism", 1);
|
||||
ritualCrusher = new Entry(new IEntry[]{new EntryText()}, "Crusher", 1);
|
||||
ritualShepherd = new Entry(new IEntry[]{new EntryText()}, "Shepherd", 1);
|
||||
ritualRegeneration = new Entry(new IEntry[]{new EntryText(), new EntryText(), new EntryText()}, "Regeneration", 1);
|
||||
ritualFeatheredKnife = new Entry(new IEntry[]{new EntryText(), new EntryText(), new EntryText(), new EntryText()}, "Feathered Knife", 1);
|
||||
ritualMoon = new Entry(new IEntry[]{new EntryText()}, "Harvest Moon", 1);
|
||||
ritualSoul = new Entry(new IEntry[]{new EntryText(), new EntryText()}, "Eternal Soul", 1);
|
||||
|
||||
ritualCure = new Entry(new IEntry[]{new EntryText(), new EntryRitualInfo(500)}, "Curing", 1);
|
||||
// blockDivination = new Entry(new IEntry[]{new EntryItemText(new ItemStack(BUBlocks.altarProgress)), new EntryCraftingRecipe(BURecipes.altarProgress)}, "Divination Block", 1);
|
||||
// sigilAdvancedDivination = new Entry(new IEntry[]{new EntryItemText(new ItemStack(BUItems.sigil_advancedDivination)), new EntryAltarRecipe(BURecipes.advancedSigil)}, "Advanced Divination", 1);
|
||||
//
|
||||
// elementRituals = new Entry(new IEntry[]{new EntryItemText(new ItemStack(BUBlocks.darknessArea)), new EntryText(), new EntryCraftingRecipe(BURecipes.gemEmpty), new EntryAltarRecipe(BURecipes.diamondBlood)}, "Elemental Rituals", 1);
|
||||
// reviving = new Entry(new IEntry[]{new EntryText(), new EntryCraftingRecipe(BURecipes.reviver)}, "Reviving", 1);
|
||||
|
||||
/** Debug */
|
||||
debug = new Entry(new IEntry[]{new EntryText("Debug"), new EntryImage("bloodutils:textures/misc/screenshots/t1.png", 854, 480, "Debug")}, EnumChatFormatting.AQUA + "De" + EnumChatFormatting.RED + "bug", 1);
|
||||
registerEntries();
|
||||
}
|
||||
public static Entry theAltar;
|
||||
public static Entry runes;
|
||||
|
||||
public static Entry ritualCure;
|
||||
public static Entry sigilAdvancedDivination;
|
||||
public static Entry blockDivination;
|
||||
|
||||
public static Entry ritualWater;
|
||||
public static Entry ritualLava;
|
||||
public static Entry ritualGreenGrove;
|
||||
public static Entry ritualInterdiction;
|
||||
public static Entry ritualContainment;
|
||||
public static Entry ritualHighJump;
|
||||
public static Entry ritualSpeed;
|
||||
public static Entry ritualMagnet;
|
||||
public static Entry ritualCrusher;
|
||||
public static Entry ritualShepherd;
|
||||
public static Entry ritualRegeneration;
|
||||
public static Entry ritualFeatheredKnife;
|
||||
public static Entry ritualMoon;
|
||||
public static Entry ritualSoul;
|
||||
|
||||
public static Entry elementRituals;
|
||||
public static Entry reviving;
|
||||
|
||||
public static Entry debug;
|
||||
|
||||
public void registerEntries(){
|
||||
EntryRegistry.registerEntry(BUEntries.categoryBasics, EntryRegistry.basics, BUEntries.theAltar);
|
||||
EntryRegistry.registerEntry(BUEntries.categoryBasics, EntryRegistry.basics, BUEntries.runes);
|
||||
|
||||
EntryRegistry.registerEntry(BUEntries.categoryRituals, EntryRegistry.rituals, BUEntries.ritualWater);
|
||||
EntryRegistry.registerEntry(BUEntries.categoryRituals, EntryRegistry.rituals, BUEntries.ritualLava);
|
||||
EntryRegistry.registerEntry(BUEntries.categoryRituals, EntryRegistry.rituals, BUEntries.ritualGreenGrove);
|
||||
EntryRegistry.registerEntry(BUEntries.categoryRituals, EntryRegistry.rituals, BUEntries.ritualInterdiction);
|
||||
EntryRegistry.registerEntry(BUEntries.categoryRituals, EntryRegistry.rituals, BUEntries.ritualContainment);
|
||||
EntryRegistry.registerEntry(BUEntries.categoryRituals, EntryRegistry.rituals, BUEntries.ritualHighJump);
|
||||
EntryRegistry.registerEntry(BUEntries.categoryRituals, EntryRegistry.rituals, BUEntries.ritualSpeed);
|
||||
EntryRegistry.registerEntry(BUEntries.categoryRituals, EntryRegistry.rituals, BUEntries.ritualMagnet);
|
||||
EntryRegistry.registerEntry(BUEntries.categoryRituals, EntryRegistry.rituals, BUEntries.ritualCrusher);
|
||||
EntryRegistry.registerEntry(BUEntries.categoryRituals, EntryRegistry.rituals, BUEntries.ritualShepherd);
|
||||
EntryRegistry.registerEntry(BUEntries.categoryRituals, EntryRegistry.rituals, BUEntries.ritualRegeneration);
|
||||
EntryRegistry.registerEntry(BUEntries.categoryRituals, EntryRegistry.rituals, BUEntries.ritualFeatheredKnife);
|
||||
EntryRegistry.registerEntry(BUEntries.categoryRituals, EntryRegistry.rituals, BUEntries.ritualMoon);
|
||||
EntryRegistry.registerEntry(BUEntries.categoryRituals, EntryRegistry.rituals, BUEntries.ritualSoul);
|
||||
|
||||
/** Debug */
|
||||
EntryRegistry.registerEntry(BUEntries.categoryBasics, EntryRegistry.basics, BUEntries.debug);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,50 @@
|
|||
package WayofTime.alchemicalWizardry.common.book;
|
||||
|
||||
import net.minecraft.client.renderer.texture.IIconRegister;
|
||||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.item.Item;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.nbt.NBTTagCompound;
|
||||
import net.minecraft.world.World;
|
||||
import WayofTime.alchemicalWizardry.AlchemicalWizardry;
|
||||
|
||||
public class ItemBMBook extends Item
|
||||
{
|
||||
public ItemBMBook()
|
||||
{
|
||||
super();
|
||||
setMaxStackSize(1);
|
||||
this.setCreativeTab(AlchemicalWizardry.tabBloodMagic);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void registerIcons(IIconRegister ir)
|
||||
{
|
||||
itemIcon = ir.registerIcon("AlchemicalWizardry" + ":" + "guide");
|
||||
}
|
||||
|
||||
@Override
|
||||
public ItemStack onItemRightClick(ItemStack stack, World world, EntityPlayer player)
|
||||
{
|
||||
player.openGui(AlchemicalWizardry.instance, 2, world, (int)player.posX, (int)player.posY, (int)player.posZ);
|
||||
return stack;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onUpdate(ItemStack stack, World world, Entity entity, int par4, boolean par5)
|
||||
{
|
||||
super.onUpdate(stack, world, entity, par4, par5);
|
||||
if(!stack.hasTagCompound())
|
||||
stack.setTagCompound(new NBTTagCompound());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCreated(ItemStack stack, World world, EntityPlayer player)
|
||||
{
|
||||
super.onCreated(stack, world, player);
|
||||
if(!stack.hasTagCompound())
|
||||
stack.setTagCompound(new NBTTagCompound());
|
||||
}
|
||||
|
||||
}
|
|
@ -1,13 +1,19 @@
|
|||
package WayofTime.alchemicalWizardry.common.tileEntity.gui;
|
||||
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.tileentity.TileEntity;
|
||||
import net.minecraft.world.World;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TETeleposer;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.TEWritingTable;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.container.ContainerTeleposer;
|
||||
import WayofTime.alchemicalWizardry.common.tileEntity.container.ContainerWritingTable;
|
||||
import bloodutils.api.classes.guide.GuiCategories;
|
||||
import bloodutils.api.classes.guide.GuiEntry;
|
||||
import bloodutils.api.classes.guide.GuiIndex;
|
||||
import bloodutils.api.compact.Category;
|
||||
import bloodutils.api.registries.EntryRegistry;
|
||||
import cpw.mods.fml.common.network.IGuiHandler;
|
||||
import net.minecraft.entity.player.EntityPlayer;
|
||||
import net.minecraft.tileentity.TileEntity;
|
||||
import net.minecraft.world.World;
|
||||
|
||||
public class GuiHandler implements IGuiHandler
|
||||
{
|
||||
|
@ -44,6 +50,8 @@ public class GuiHandler implements IGuiHandler
|
|||
public Object getClientGuiElement(int id, EntityPlayer player, World world, int x, int y, int z)
|
||||
{
|
||||
TileEntity tileEntity;
|
||||
|
||||
ItemStack held = player.getHeldItem();
|
||||
|
||||
switch (id)
|
||||
{
|
||||
|
@ -66,6 +74,31 @@ public class GuiHandler implements IGuiHandler
|
|||
}
|
||||
|
||||
break;
|
||||
|
||||
case 2:
|
||||
|
||||
if(held.hasTagCompound() && held.getTagCompound().getString("CATEGORY") != null){
|
||||
if(held.hasTagCompound() && held.getTagCompound().getString("KEY") != null && held.getTagCompound().getString("KEY") != "0"){
|
||||
String cate = held.getTagCompound().getString("CATEGORY");
|
||||
String key = held.getTagCompound().getString("KEY");
|
||||
int page = held.getTagCompound().getInteger("PAGE");
|
||||
if(EntryRegistry.categoryMap.containsKey(cate)){
|
||||
Category category = EntryRegistry.categoryMap.get(cate);
|
||||
return new GuiEntry(key, player, category, page);
|
||||
}else{
|
||||
return new GuiCategories(player);
|
||||
}
|
||||
}else if(held.hasTagCompound() && held.getTagCompound().getString("CATEGORY") != null){
|
||||
String cate = held.getTagCompound().getString("CATEGORY");
|
||||
int page = held.getTagCompound().getInteger("PAGE");
|
||||
if(EntryRegistry.categoryMap.containsKey(cate)){
|
||||
Category category = EntryRegistry.categoryMap.get(cate);
|
||||
return new GuiIndex(category, player, page);
|
||||
}
|
||||
}
|
||||
}
|
||||
return new GuiCategories(player);
|
||||
|
||||
}
|
||||
|
||||
return null;
|
||||
|
|
73
src/main/resources/assets/bloodutils/lang/en_US.lang
Normal file
|
@ -0,0 +1,73 @@
|
|||
--Items--
|
||||
item.ritual sigil.name=Ritual Sigil
|
||||
item.advanced divination sigil.name=Advanced Divination Sigil
|
||||
item.creative tool.name=Creative Tool
|
||||
item.blood tome.name=Blood Tome
|
||||
item.earth gem.name=Earth Gem
|
||||
item.water gem.name=Water Gem
|
||||
item.fire gem.name=Fire Gem
|
||||
item.air gem.name=Air Gem
|
||||
item.light gem.name=Light Gem
|
||||
item.darkness gem.name=Darkness Gem
|
||||
item.rainbow gem.name=Rainbow Gem
|
||||
item.empty gem.name=Elemental Gem Casing
|
||||
item.blood diamond.name=Blood Diamond
|
||||
item.blood iron ingot.name=Blood Diamond Ingot
|
||||
item.royal blood shard.name=Royal Blood Shard
|
||||
--Blocks--
|
||||
tile.altar progression checker.name=Divination Block
|
||||
tile.altar builder.name=Altar Builder
|
||||
tile.blood diamond block.name=Blood Diamond Block
|
||||
tile.blood iron block.name=Blood Iron Block
|
||||
tile.area earth.name=Magic Ritual: Earth
|
||||
tile.area fire.name=Magic Ritual: Fire
|
||||
tile.area water.name=Magic Ritual: Water
|
||||
tile.area air.name=Magic Ritual: Air
|
||||
tile.area darkness.name=Magic Ritual: Darkness
|
||||
tile.area light.name=Magic Ritual: Light
|
||||
tile.area rainbow.name=Magic Ritual: Rainbow
|
||||
tile.earth block.name=Earth Block
|
||||
tile.discoball.name=Discoball
|
||||
tile.discoball stairs.name=Disco Stairs
|
||||
tile.reviver.name=Reviving Altar
|
||||
--Entities--
|
||||
entity.BloodUtils.royal.name=Royal
|
||||
--Entries--
|
||||
bu.entry.Blood Altar.1=The altar is the first thing you most likely want to make in blood magic, it's the base of everything. You need a sacrificial knife/orb to fill it up.
|
||||
bu.entry.Runes.1=The Rune of Self-Sacrifice is a rune which increases the amount of essence you get for sacrificing yourself by 10 percent.
|
||||
bu.entry.Runes.2=The Rune of Sacrifice is a rune which increases the amount of essence you get from mobs by 10 percent.
|
||||
bu.entry.Runes.3=The Speed Rune is a rune which increases the speed of your altar by 20 percent.
|
||||
bu.entry.Advanced Divination.1=The Advanced Divination Sigil is an advanced version of the Divination Sigil, displaying some extra info like progress and essence obtained by (self)sacrificing.
|
||||
bu.entry.Divination Block.1=The Divination Block is basicly a block version of the Advanced Divination Sigil.
|
||||
bu.entry.Full Spring.1=By jumpstarting the ritual with 500LP, you can create a simple infinite spring that will always replenish itself - at the cost of 25 LP per source block. If you have a pump, and are afraid of things like server lag causing a water source to not materialize, try this easy infinite water! Buckets also work on this thing!
|
||||
bu.entry.Nether.1=A bit more hellish of a ritual, this process will allow an infinite source of lava to be added to the world at an activation cost of 10000LP, but 500LP per source.
|
||||
bu.entry.Nether.2=It is intended for people who would otherwise pump the Nether dry, and offers up instead a lag-less alternative. You still need a pump, though, so don't forget that. Or a bucket - that works, too!
|
||||
bu.entry.Green Grove.1=When activated, this ritual will take a measly 250LP away, but will cause any plant two spaces above the Master Ritual Stone to grow faster. At the cost of 20LP per second, it will every second apply a "growth tick" on the plant!
|
||||
bu.entry.Green Grove.2= if the plant gets enough of these, it will grow naturally. This may be tuned in the future, but things such as sugar cane or mushrooms will now grow at a much faster rate!This should also work for any mod-added plant!
|
||||
bu.entry.Interdiction.1=This ritual is a tribute to EE2's Interdiction Torch. At a cost of 1000LP to activate and 10LP per second to have it run, it might be wise to have a lever of some sort on it to keep it off when not in use. If you are wondering what it does, simply put an animal of some sort close to the center stone and activate it.
|
||||
bu.entry.Interdiction.2= At a cost of 1000LP to activate and 10LP per second to have it run, it might be wise to have a lever of some sort on it to keep it off when not in use. If you are wondering what it does, simply put an animal of some sort close to the center stone and activate it. Quite useful for aggressive mobs, too!
|
||||
bu.entry.Containment.1=This ritual does the opposite of what the interdiction ritual does. It pushes the mobs out instead of keeping them in the area.
|
||||
bu.entry.Speed.1=When in the Area of Influence, the entity will get launched forwards and upwards in the direction of the Dusk rune. You will go quite fast, so make sure to have a good way to slow down!
|
||||
bu.entry.Harvest Moon.1=This ritual searches a 9x9 area for harvestable plants. What is more, it will replant one of the seeds that is dropped into the soil and drop the remainder items into the world. It has a radius of 4, so it will work on plants above/below it. Modders may hook into the ritual to add their own harvest handlers.
|
||||
bu.entry.Shepherd.1=For those who enjoy sacrificing animals, or even just making them grow faster for whatever reason, this ritual is for you. While active, it will take a child animal and accelerate its growth rate by 6, meaning it will take only 3 minutes to grow to an adult instead of the usual 20 minutes!
|
||||
bu.entry.Shepherd.2=This will take approximately 400LP per animal from infant to adult, so if you do plan to sacrifice your animals (you monster!) make sure your altar is properly equipped.
|
||||
bu.entry.Regeneration.1=his ritual acts to cast regeneration on any entity that is within its range of 10 blocks. Unlike beacons, it works on all entities at a cost, however it also works on players (who knew), and it will only cast regen on the entity if they are below max health.
|
||||
bu.entry.Regeneration.2= Since the life force of players is a lot more precious than that of common sheep and pigs, it will cost more to heal them.
|
||||
bu.entry.Regeneration.3=This ritual is designed to have either the Well of Suffering ritual or the Ritual of the Feathered Knife to slot into the ritual, to save space, although it is not necessary to do so. If you do keep the ritual on, just make sure no creepers or such were to have regen on when they sneak up on you...
|
||||
bu.entry.Feathered Knife.1=While you or any player is within its area of influence, which is about a radius of 15 horizontally and 20 vertically, this ritual will start to siphon from your pool of health directly.
|
||||
bu.entry.Feathered Knife.2=For every heart of life that is taken from a player is placed into a nearby altar (costs 20LP per half-heart and fills the altar by 100LP). Ritual looks for target altar in radius of 5 horizontally and 10 vertically.
|
||||
bu.entry.Feathered Knife.3=Like the Well of Suffering, this ritual does respect any Self-Sacrifice runes that are on the altar. What's more, this ritual also stops siphoning from your health if your health drops to three hearts or less.
|
||||
bu.entry.Feathered Knife.4=So unless a zombie jumps you while you are in your base, you shouldn't be worried about any possible death! Like the Well of Suffering it costs 50,000 LP to activate this ritual.
|
||||
bu.entry.High Jump.1=When activated, any entities on top of it get launched into the air. If they land on top of the center stone, no fall damage occurs.
|
||||
bu.entry.Crusher.1=One of the more useful rituals, this ritual will search the 3x3x3 volume below itself and try to break the blocks there. If there is a chest (or any Inventory) directly on top of the center ritual stone, it will dump the contents inside of the chest. If you pair this with a Ritual of Magnetism.
|
||||
bu.entry.Magnetism.1=This ritual searches in a 7x7 area beneath itself and looks for any ores - when it finds one, it sucks it to the surface and places it inside of the 3x3x3 volume in the ritual. This will be handy for anyone that wishes to quarry a decent area without having to worry about leaving huge holes.
|
||||
bu.entry.Eternal Soul.1=Meant to be the pinnacle of self-sacrifice, this ritual will use your body as a conduit to fill the nearby altar from your Soul Network. For every LP that it puts into the altar, it will take 2LP from your Network, and will only function while the activator is around the ritual.
|
||||
bu.entry.Eternal Soul.2=What is more, it will put the LP into the input buffer of the altar. It's best to use good runes for your altar to maximize the benefits. Also, while in the ritual's effect and when work is being done, the user's health will be set to 1 heart. Make sure to only use this ritual in a safe place or near your comrades.
|
||||
bu.entry.Curing.1=This ritual can become really helpful, this ritual cures a player from all potion effects, it basicly works like milk.
|
||||
bu.entry.Elemental Rituals.1=These blocks are capable of storing a whole (small) ritual inside them. It's a long lost art, which still is not fully revealed at this point.
|
||||
bu.entry.Elemental Rituals.2=These so called Elemental Rituals exist out of a three components, two of these area already discovered. One of the three components is the Empty Gem Casing. The second Component is a blood diamond, forged from blood and a diamond. The third component still remains to be found.
|
||||
bu.entry.Reviving.1=After all your hard research you discovered a way to revive the dead. To use this forbidden art you need to make a structure that requires the Reviving Altar, 2 altars (placed 2 blocks away from the altar) and two items. These items are bound to the entity your willing to spawn. An example of the items are a Blood Diamond and a Darkness Gem. To finish this all off you just need to interact with the Altar.
|
||||
bu.entry.Debug.1=Blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah blah.
|
||||
bu.entry.Debug.2=Yes Altar Tier explaination will come later :).
|
||||
--Misc--
|
||||
itemGroup.tabBloodUtilsMain=Blood Utils: Main
|
43
src/main/resources/assets/bloodutils/lang/zh_CN.lang
Normal file
|
@ -0,0 +1,43 @@
|
|||
==Items==
|
||||
item.ritual sigil.name=仪式印记
|
||||
item.advanced divination sigil.name=进阶占卜印记
|
||||
item.creative tool.name=无限LP工具
|
||||
item.blood tome.name=血之卷轴
|
||||
==Blocks==
|
||||
tile.altar progression checker.name=占卜符文
|
||||
tile.altar builder.name=祭坛搭建器
|
||||
==Entries==
|
||||
bu.entry.Blood Altar.1=要成为血魔法使就必须先拥有血祭坛, 它是最基础的工具. 你需要用牺牲匕首或牺牲宝珠来向祭坛灌输你的血.
|
||||
bu.entry.Runes.1=为你的血祭坛装上牺牲符文, 通过牺牲匕首灌输的生命源质将增加10%.
|
||||
bu.entry.Runes.2=为你的血祭坛装上献祭符文, 通过献祭匕首灌输的生命源质将增加10%.
|
||||
bu.entry.Runes.3=为你的血祭坛装上速度符文, 可以使其增加20%的工作速度.
|
||||
bu.entry.Advanced Divination.1=进阶占卜印记是占卜印记的升级版, 它会检测并显示更多信息, 例如血祭坛的工作进度或是牺牲/献祭符文增加的LP.
|
||||
bu.entry.Divination Block.1=占卜符文的功能与进阶占卜印记相同, 将它放置在血祭坛上方即可检测祭坛数据.
|
||||
bu.entry.Full Spring.1=消耗500LP即可快速启动全春仪式, 它能为你提供永不枯竭的水源 - 当仪式上的水被取走时会消耗25LP重新生成水源. 如果你想用泵抽水, 但担心服务器会因为流动水而出现延迟现象, 就来试试看全春仪式吧! 你也可以使用水桶从中提取无限水.
|
||||
bu.entry.Nether.1=下界夜曲仪式能提供无限岩浆, 你需要10000LP去激活此仪式, 每当岩浆被提取后仪式会消耗500LP重新生成岩浆, 也许有点破坏游戏平衡性?
|
||||
bu.entry.Nether.2=如果你想把地狱的岩浆抽干, 却不想因流动的岩浆而产生延迟, 那么下界夜曲仪式是你的最佳选择 - 使用泵或桶都可以从中提取无限岩浆!
|
||||
bu.entry.Green Grove.1=激活绿丛仪式需要消耗250LP, 它能加快仪式石上方2格植物的生长速度, 包括其它模组中的植物. 仪式每秒会消耗20LP来向植物发送"growth tick"
|
||||
bu.entry.Green Grove.2= 当植物获取到足够的"growth tick"后就会停止加速生长. 绿丛仪式不能加快甘蔗或蘑菇等植物的生长速度, 或许这会在以后得以改善.
|
||||
bu.entry.Interdiction.1=禁止仪式的功能类似于等价交换2中的禁止火把, 激活后会弹开主仪式石附近的所有生物. 激活此仪式需要1000LP, 仪式的持续需要每秒消耗10LP, 你可以使用红石信号来控制其激活状态, 最好只在有需要时才开启仪式.
|
||||
bu.entry.Interdiction.2= 禁止仪式同样能让生物无法接近, 这点对防御怪物十分有效!
|
||||
bu.entry.Containment.1=牵制仪式与禁止仪式截然相反. 它会在激活后将附近的所有生物吸引过来. 激活需要1000LP, 持续仪式需要每秒消耗10LP.
|
||||
bu.entry.Speed.1=速移仪式被激活后, 附近的实体会顺着幽暗仪式石的方向弹射出去. 你会急速前冲并承受掉落伤害, 所以请确保你做好了充足的准备!
|
||||
bu.entry.Harvest Moon.1=满月收割仪式会探测并收获9x9范围内成熟的作物, 不仅如此, 收获后掉落在地上的种子会被仪式拾取, 并自动补种. 仪式还会收获半径4以内上方或下方种植的作物. 通过修改仪式代码可以添加特殊的收获方式.
|
||||
bu.entry.Shepherd.1=如果你对于献祭乐在其中却没有足够的动物; 或只是想要让动物们更快的成长, 那么你将需要牧养仪式. 当仪式被激活, 上方的动物将加速成长, 一只幼年动物只需3分钟就会长大, 而普通情况下则需要20分钟!
|
||||
bu.entry.Shepherd.2=牧养仪式每使一只动物生长成年需要消耗约400LP. 如果你想用此仪式配合动物献祭 (你真是可怕!) 就得确保血祭坛已放置在仪式旁边.
|
||||
bu.entry.Regeneration.1=重生仪式将会向半径10格内的生物提供生命恢复效果. 此仪式与信标的区别在于它会恢复一切生物的生命, 包括怪物, 并只会治愈血量不满的生物.
|
||||
bu.entry.Regeneration.2= 由于玩家的生命值高于普通的猪, 羊, 所以每次治愈将会恢复更多的血量.
|
||||
bu.entry.Regeneration.3=重生仪式可以配合苦难之井或羽刀仪式使用, 它们都能互相完美的契合在一起. 如果仪式持续运作, 请小心不要让怪物进入, 以免一只爬行者在恢复完血量后偷偷走向你....
|
||||
bu.entry.Feathered Knife.1=羽刀仪式的效果会影响任何玩家, 包括你. 主仪式石水平半径15格, 垂直半径20格内都是其影响范围, 一旦玩家进入影响范围, 仪式将立即抽取他们的生命值.
|
||||
bu.entry.Feathered Knife.2=玩家被抽取的生命值将会传输至仪式附近的血祭坛中 (每抽取半颗心将消耗灵魂网络中的20LP, 并向血祭坛增加100LP). 被输入LP的血祭坛需放置在仪式水平半径5格, 垂直半径10格的范围内.
|
||||
bu.entry.Feathered Knife.3=与苦难之井仪式的相同之处在于, 羽刀仪式可以配合祭坛装配的牺牲符文来使传输的LP增值. 此外, 若玩家的生命值被消耗到3颗心或以下, 仪式将不再运作.
|
||||
bu.entry.Feathered Knife.4=所以你完全不必担心自己被仪式所杀, 除非在献祭时突然出现一只僵尸冲过来. 与苦难之井仪式一样, 激活羽刀仪式需要消耗灵魂网络中的50,000LP.
|
||||
bu.entry.High Jump.1=当高跳仪式被激活, 任何站在仪式上方的生物都将被弹射至空中. 如果它们刚好掉落在主仪式石上方, 那么将不会受到掉落伤害.
|
||||
bu.entry.Crusher.1=十分有用的仪式. 挖掘仪式会在激活后搜索下方3x3x3范围内的方块并采掘它们. 如果主仪式石上方有箱子 (或任何容器) , 仪式挖掘的方块将被自动输送进去. 此仪式适合配合磁矿仪式使用.
|
||||
bu.entry.Magnetism.1=磁矿仪式会搜索下方7x7范围内的一切矿石 - 搜索到的矿石会被吸到主仪式石上方3x3x3的区域. 磁矿仪式可配合采石场使用, 这样能在更方便采集矿石的同时防止你给世界留下一个深坑.
|
||||
bu.entry.Eternal Soul.1=永魂之泣仪式必须配合4级血祭坛使用. 当激活者接近这个仪式, 其灵魂网络中的LP就会被传输进血祭坛中, 每次会消耗网络中的2LP来使祭坛增加1LP.
|
||||
bu.entry.Eternal Soul.2=除此之外, 被传输的LP会首先积攒在血祭坛的缓存区, 这就代表着你可以使用一些符文来使传输的LP增值, 例如牺牲符文. 另外, 如果你的生命值被永魂之泣仪式消耗到仅剩1颗心, 那么仪式将不再运作. 请确保你呆在安全的地方进行献祭!
|
||||
bu.entry.Curing.1=治愈仪式能消除玩家携有的一切负面效果, 就像牛奶那样.
|
||||
bu.entry.Debug.1=滴滴哒哒...滴滴哒哒...滴滴哒哒...滴滴哒哒...滴滴哒哒...滴滴哒哒...滴滴哒哒....
|
||||
==Misc==
|
||||
itemGroup.tabBloodUtilsMain=Blood Utils
|
After Width: | Height: | Size: 1.4 KiB |
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 2,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
3,
|
||||
2,
|
||||
1,
|
||||
0
|
||||
]
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 2,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
3,
|
||||
2,
|
||||
1,
|
||||
0
|
||||
]
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 2,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
3,
|
||||
2,
|
||||
1,
|
||||
0
|
||||
]
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 2,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
3,
|
||||
2,
|
||||
1,
|
||||
0
|
||||
]
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 1.5 KiB |
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 2,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
3,
|
||||
2,
|
||||
1,
|
||||
0
|
||||
]
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 1.6 KiB |
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 2,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
3,
|
||||
2,
|
||||
1,
|
||||
0
|
||||
]
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 1.3 KiB |
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 2,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
3,
|
||||
2,
|
||||
1,
|
||||
0
|
||||
]
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 281 B |
After Width: | Height: | Size: 194 B |
BIN
src/main/resources/assets/bloodutils/textures/blocks/builder.png
Normal file
After Width: | Height: | Size: 821 B |
After Width: | Height: | Size: 244 B |
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 4,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
7,
|
||||
6,
|
||||
5,
|
||||
4,
|
||||
3,
|
||||
2,
|
||||
1,
|
||||
0
|
||||
]
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 167 B |
After Width: | Height: | Size: 168 B |
After Width: | Height: | Size: 188 B |
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 8,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
3,
|
||||
2,
|
||||
1,
|
||||
0
|
||||
]
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 799 B |
BIN
src/main/resources/assets/bloodutils/textures/gui/altar.png
Normal file
After Width: | Height: | Size: 3.3 KiB |
BIN
src/main/resources/assets/bloodutils/textures/gui/crafting.png
Normal file
After Width: | Height: | Size: 551 B |
BIN
src/main/resources/assets/bloodutils/textures/gui/front.png
Normal file
After Width: | Height: | Size: 2.6 KiB |
BIN
src/main/resources/assets/bloodutils/textures/gui/guide.png
Normal file
After Width: | Height: | Size: 8.4 KiB |
After Width: | Height: | Size: 400 B |
After Width: | Height: | Size: 316 B |
BIN
src/main/resources/assets/bloodutils/textures/items/gem_air.png
Normal file
After Width: | Height: | Size: 525 B |
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 2,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
3,
|
||||
2,
|
||||
1,
|
||||
0
|
||||
]
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 499 B |
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 2,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
3,
|
||||
2,
|
||||
1,
|
||||
0
|
||||
]
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 508 B |
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 2,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
3,
|
||||
2,
|
||||
1,
|
||||
0
|
||||
]
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 315 B |
BIN
src/main/resources/assets/bloodutils/textures/items/gem_fire.png
Normal file
After Width: | Height: | Size: 464 B |
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 2,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
3,
|
||||
2,
|
||||
1,
|
||||
0
|
||||
]
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 502 B |
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 2,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
3,
|
||||
2,
|
||||
1,
|
||||
0
|
||||
]
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 422 B |
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 2,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
3,
|
||||
2,
|
||||
1,
|
||||
0
|
||||
]
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 484 B |
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"animation": {
|
||||
"frametime": 2,
|
||||
"frames": [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
3,
|
||||
2,
|
||||
1,
|
||||
0
|
||||
]
|
||||
}
|
||||
}
|
BIN
src/main/resources/assets/bloodutils/textures/items/guide.png
Normal file
After Width: | Height: | Size: 421 B |
After Width: | Height: | Size: 286 B |
After Width: | Height: | Size: 616 B |
After Width: | Height: | Size: 587 B |
After Width: | Height: | Size: 214 B |
After Width: | Height: | Size: 52 KiB |
BIN
src/main/resources/assets/bloodutils/textures/misc/tab.png
Normal file
After Width: | Height: | Size: 277 B |
After Width: | Height: | Size: 322 B |
After Width: | Height: | Size: 1 KiB |
After Width: | Height: | Size: 1,023 B |
2
src/main/resources/todo.txt
Normal file
|
@ -0,0 +1,2 @@
|
|||
-Create effect for the light ritual block.
|
||||
-Create effect for the fire ritual block.
|