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

107 lines
3 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("BookletChapter.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.booklet.chapter;
2015-08-28 21:17:09 +02:00
2016-01-05 14:57:50 +01:00
import de.ellpeck.actuallyadditions.api.booklet.IBookletChapter;
import de.ellpeck.actuallyadditions.api.booklet.IBookletEntry;
import de.ellpeck.actuallyadditions.api.booklet.IBookletPage;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
import net.minecraft.item.ItemStack;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.text.TextFormatting;
2017-02-18 00:54:58 +01:00
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
2015-08-28 21:17:09 +02:00
2016-01-05 14:57:50 +01:00
public class BookletChapter implements IBookletChapter{
2015-08-28 21:17:09 +02:00
public final IBookletPage[] pages;
2016-01-05 14:57:50 +01:00
public final IBookletEntry entry;
public final ItemStack displayStack;
private final String identifier;
2016-11-22 22:54:35 +01:00
private final int priority;
2016-03-18 23:47:22 +01:00
public TextFormatting color;
2015-08-28 21:17:09 +02:00
public BookletChapter(String identifier, IBookletEntry entry, ItemStack displayStack, IBookletPage... pages){
2016-11-22 22:54:35 +01:00
this(identifier, entry, displayStack, 0, pages);
}
public BookletChapter(String identifier, IBookletEntry entry, ItemStack displayStack, int priority, IBookletPage... pages){
this.pages = pages;
this.identifier = identifier;
2015-08-28 21:17:09 +02:00
this.entry = entry;
this.displayStack = displayStack;
2016-11-22 22:54:35 +01:00
this.priority = priority;
this.color = TextFormatting.RESET;
this.entry.addChapter(this);
for(IBookletPage page : this.pages){
2015-08-28 21:17:09 +02:00
page.setChapter(this);
}
}
2016-01-05 14:57:50 +01:00
@Override
public IBookletPage[] getAllPages(){
2016-01-05 14:57:50 +01:00
return this.pages;
}
@Override
2017-02-18 00:54:58 +01:00
@SideOnly(Side.CLIENT)
2016-01-05 14:57:50 +01:00
public String getLocalizedName(){
return StringUtil.localize("booklet."+ModUtil.MOD_ID+".chapter."+this.getIdentifier()+".name");
2016-01-05 14:57:50 +01:00
}
@Override
2017-02-18 00:54:58 +01:00
@SideOnly(Side.CLIENT)
2016-01-05 14:57:50 +01:00
public String getLocalizedNameWithFormatting(){
return this.color+this.getLocalizedName();
}
2016-01-05 14:57:50 +01:00
@Override
public IBookletEntry getEntry(){
return this.entry;
}
@Override
public ItemStack getDisplayItemStack(){
return this.displayStack;
2015-10-28 14:46:04 +01:00
}
@Override
public String getIdentifier(){
return this.identifier;
}
@Override
2016-11-11 18:55:32 +01:00
public int getPageIndex(IBookletPage page){
for(int i = 0; i < this.pages.length; i++){
if(this.pages[i] == page){
2016-11-11 18:55:32 +01:00
return i;
}
}
return -1;
}
2016-11-22 22:54:35 +01:00
@Override
public int getSortingPriority(){
return this.priority;
}
public BookletChapter setImportant(){
2016-03-18 23:47:22 +01:00
this.color = TextFormatting.DARK_GREEN;
return this;
}
public BookletChapter setSpecial(){
2016-03-18 23:47:22 +01:00
this.color = TextFormatting.DARK_PURPLE;
return this;
2015-08-28 21:17:09 +02:00
}
}