ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/booklet/BookletChapter.java

65 lines
1.9 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
* This file ("BookletChapter.java") is part of the Actually Additions Mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
* <EFBFBD> 2015 Ellpeck
*/
2015-08-29 23:01:13 +02:00
package ellpeck.actuallyadditions.booklet;
2015-08-28 21:17:09 +02:00
import ellpeck.actuallyadditions.booklet.page.BookletPage;
2015-08-28 21:17:09 +02:00
import ellpeck.actuallyadditions.util.ModUtil;
import ellpeck.actuallyadditions.util.StringUtil;
import net.minecraft.item.ItemStack;
import net.minecraft.util.EnumChatFormatting;
2015-08-28 21:17:09 +02:00
public class BookletChapter{
public final BookletPage[] pages;
2015-08-28 21:17:09 +02:00
public final BookletIndexEntry entry;
public final ItemStack displayStack;
2015-10-03 10:16:18 +02:00
private final String unlocalizedName;
public EnumChatFormatting color;
2015-08-28 21:17:09 +02:00
public BookletChapter(String unlocalizedName, BookletIndexEntry entry, ItemStack displayStack, BookletPage... pages){
2015-08-28 21:17:09 +02:00
this.pages = pages.clone();
2015-08-28 21:17:09 +02:00
this.unlocalizedName = unlocalizedName;
entry.addChapter(this);
2015-08-29 14:31:02 +02:00
InitBooklet.allAndSearch.addChapter(this);
2015-08-28 21:17:09 +02:00
this.entry = entry;
this.displayStack = displayStack;
2015-08-28 21:17:09 +02:00
for(BookletPage page : this.pages){
2015-08-28 21:17:09 +02:00
page.setChapter(this);
}
this.color = EnumChatFormatting.RESET;
2015-08-28 21:17:09 +02:00
}
public String getUnlocalizedName(){
return this.unlocalizedName;
}
public String getLocalizedName(){
2015-10-23 19:06:40 +02:00
return StringUtil.localize("booklet."+ModUtil.MOD_ID_LOWER+".chapter."+this.unlocalizedName+".name");
}
public String getNameWithColor(){
return this.color+this.getLocalizedName();
}
public BookletChapter setImportant(){
this.color = EnumChatFormatting.DARK_GREEN;
return this;
}
public BookletChapter setSpecial(){
this.color = EnumChatFormatting.DARK_PURPLE;
return this;
2015-08-28 21:17:09 +02:00
}
}