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

67 lines
2.1 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
*
2015-11-02 20:55:19 +01:00
* © 2015 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2015-12-30 22:02:15 +01:00
package de.ellpeck.actuallyadditions.booklet.chapter;
2015-08-28 21:17:09 +02:00
2015-12-30 22:02:15 +01:00
import de.ellpeck.actuallyadditions.booklet.InitBooklet;
import de.ellpeck.actuallyadditions.booklet.entry.BookletEntry;
import de.ellpeck.actuallyadditions.booklet.page.BookletPage;
import de.ellpeck.actuallyadditions.util.ModUtil;
import de.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;
public final BookletEntry 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, BookletEntry 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 getNameWithColor(){
return this.color+this.getLocalizedName();
}
2015-10-28 14:46:04 +01:00
public String getLocalizedName(){
return StringUtil.localize("booklet."+ModUtil.MOD_ID_LOWER+".chapter."+this.unlocalizedName+".name");
}
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
}
}