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

92 lines
2.5 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
*
2016-05-16 22:54:42 +02:00
* © 2015-2016 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;
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-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){
this.pages = pages;
this.identifier = identifier;
2015-08-28 21:17:09 +02:00
this.entry = entry;
this.displayStack = displayStack;
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
public String getLocalizedName(){
return StringUtil.localize("booklet."+ModUtil.MOD_ID+".chapter."+this.getIdentifier()+".name");
2016-01-05 14:57:50 +01:00
}
@Override
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;
}
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
}
}