本文整理汇总了Java中net.minecraft.client.gui.GuiListWorldSelectionEntry类的典型用法代码示例。如果您正苦于以下问题:Java GuiListWorldSelectionEntry类的具体用法?Java GuiListWorldSelectionEntry怎么用?Java GuiListWorldSelectionEntry使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
GuiListWorldSelectionEntry类属于net.minecraft.client.gui包,在下文中一共展示了GuiListWorldSelectionEntry类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getWorldFolderFromSelection
import net.minecraft.client.gui.GuiListWorldSelectionEntry; //导入依赖的package包/类
public static File getWorldFolderFromSelection(GuiListWorldSelectionEntry entry){
if(worldfolder.containsKey(entry)){
return worldfolder.get(entry);
}
try{
File image = null;
for(Field field : GuiListWorldSelectionEntry.class.getDeclaredFields()){
if(field.getType() == File.class){
field.setAccessible(true);
image = (File) field.get(entry);
break;
}
}
if(image == null) return null;
File folder = image.getParentFile();
worldfolder.put(entry, folder);
return folder;
}catch(Exception e){
e.printStackTrace();
}
return null;
}
示例2: selectWorld
import net.minecraft.client.gui.GuiListWorldSelectionEntry; //导入依赖的package包/类
@Override
public void selectWorld(GuiListWorldSelectionEntry entry){
super.selectWorld(entry);
currently_selected_world = entry;
// boolean flag = entry != null;
File folder = ReflectionUtil.getWorldFolderFromSelection(entry); //Pretty hacky way of getting the world file. I get the image for the world and then get the parent.
if(folder == null){
readDescription.enabled = false;
return;
}
if(folder.getParentFile().getName().equals("saves")){ //Make sure I am in the saves folder
for(File f : folder.listFiles()){
if(f.getName().equals("desc.txt")){
try{
FileReader fr = new FileReader(f);
BufferedReader reader = new BufferedReader(fr);
List<String> lines = Lists.newArrayList();
String line;
while((line = reader.readLine()) != null){
lines.add(line);
}
desc_lines = lines;
readDescription.enabled = true;
fr.close();
reader.close();
}catch(Exception e){
e.printStackTrace();
}
return;
}
}
}
readDescription.enabled = false;
}