ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/booklet/entry/BookletEntry.java

78 lines
2.1 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("BookletEntry.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.entry;
2015-08-28 21:17:09 +02:00
2016-01-05 14:57:50 +01:00
import de.ellpeck.actuallyadditions.api.ActuallyAdditionsAPI;
import de.ellpeck.actuallyadditions.api.booklet.IBookletChapter;
import de.ellpeck.actuallyadditions.api.booklet.IBookletEntry;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.text.TextFormatting;
2015-08-28 21:17:09 +02:00
import java.util.ArrayList;
2016-01-05 14:57:50 +01:00
import java.util.List;
2015-08-28 21:17:09 +02:00
2016-01-05 14:57:50 +01:00
public class BookletEntry implements IBookletEntry{
2015-08-28 21:17:09 +02:00
private final String identifier;
2016-01-05 14:57:50 +01:00
public List<IBookletChapter> chapters = new ArrayList<IBookletChapter>();
2016-03-18 23:47:22 +01:00
private TextFormatting color;
2015-08-28 21:17:09 +02:00
public BookletEntry(String identifier){
this.identifier = identifier;
2016-01-05 14:57:50 +01:00
ActuallyAdditionsAPI.addBookletEntry(this);
2016-03-18 23:47:22 +01:00
this.color = TextFormatting.RESET;
2015-08-28 21:17:09 +02:00
}
2016-01-05 14:57:50 +01:00
@Override
public List<IBookletChapter> getChapters(){
return this.chapters;
}
@Override
public void setChapters(List<IBookletChapter> chapters){
this.chapters.clear();
this.chapters.addAll(chapters);
2016-01-05 14:57:50 +01:00
}
@Override
public String getIdentifier(){
return this.identifier;
2016-01-05 14:57:50 +01:00
}
@Override
2015-10-28 14:46:04 +01:00
public String getLocalizedName(){
return StringUtil.localize("booklet."+ModUtil.MOD_ID+".indexEntry."+this.getIdentifier()+".name");
2015-10-28 14:46:04 +01:00
}
2016-02-01 17:49:55 +01:00
@Override
public String getLocalizedNameWithFormatting(){
return this.color+this.getLocalizedName();
}
@Override
public void addChapter(IBookletChapter chapter){
this.chapters.add(chapter);
}
public BookletEntry setImportant(){
2016-03-18 23:47:22 +01:00
this.color = TextFormatting.DARK_GREEN;
return this;
}
public BookletEntry setSpecial(){
2016-03-18 23:47:22 +01:00
this.color = TextFormatting.DARK_PURPLE;
return this;
}
2015-08-28 21:17:09 +02:00
}