ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/achievement/InitAchievements.java

46 lines
1.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 ("InitAchievements.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.achievement;
2015-03-07 12:51:28 +01:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
2015-04-19 01:50:02 +02:00
import net.minecraft.stats.Achievement;
import net.minecraftforge.common.AchievementPage;
2015-03-07 12:51:28 +01:00
2015-04-19 01:50:02 +02:00
import java.util.ArrayList;
2015-03-07 12:51:28 +01:00
2016-06-17 23:37:01 +02:00
public final class InitAchievements{
2015-03-07 12:51:28 +01:00
2016-06-17 23:37:01 +02:00
public static final ArrayList<Achievement> ACHIEVEMENT_LIST = new ArrayList<Achievement>();
2015-08-28 21:17:09 +02:00
public static int pageNumber;
2015-04-19 01:50:02 +02:00
public static AchievementPage theAchievementPage;
2015-03-07 12:51:28 +01:00
public static void init(){
2015-07-01 21:32:48 +02:00
ModUtil.LOGGER.info("Initializing Achievements...");
2015-03-07 12:51:28 +01:00
2015-04-19 01:50:02 +02:00
for(int i = 0; i < TheAchievements.values().length; i++){
2016-06-17 23:37:01 +02:00
ACHIEVEMENT_LIST.add(TheAchievements.values()[i].chieve);
2015-04-19 01:50:02 +02:00
}
2015-03-07 12:51:28 +01:00
2016-06-17 23:37:01 +02:00
theAchievementPage = new AchievementPage(StringUtil.localize("achievement.page."+ModUtil.MOD_ID), ACHIEVEMENT_LIST.toArray(new Achievement[ACHIEVEMENT_LIST.size()]));
2015-08-28 21:17:09 +02:00
pageNumber = AchievementPage.getAchievementPages().size();
2015-04-19 01:50:02 +02:00
AchievementPage.registerAchievementPage(theAchievementPage);
2015-03-07 12:51:28 +01:00
}
2015-12-19 10:30:39 +01:00
public enum Type{
CRAFTING,
SMELTING,
PICK_UP,
MISC
}
2015-03-07 12:51:28 +01:00
}