当前位置: 首页>>代码示例>>Java>>正文


Java FileHandle.sibling方法代码示例

本文整理汇总了Java中com.badlogic.gdx.files.FileHandle.sibling方法的典型用法代码示例。如果您正苦于以下问题:Java FileHandle.sibling方法的具体用法?Java FileHandle.sibling怎么用?Java FileHandle.sibling使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.badlogic.gdx.files.FileHandle的用法示例。


在下文中一共展示了FileHandle.sibling方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: loadMapFile

import com.badlogic.gdx.files.FileHandle; //导入方法依赖的package包/类
private boolean loadMapFile(FileHandle file){
	try{
		Array<Map> arr = json.fromJson(ArrayContainer.class, file).maps;
		if(arr != null){ //can be an empty map file
			for(Map map : arr){
				map.pixmap = new Pixmap(file.sibling(map.name + ".png"));
				map.texture = new Texture(map.pixmap);
				maps.put(map.id, map);
				mapNames.put(map.name, map);
				lastID = Math.max(lastID, map.id);
			}
		}
		return true;
	}catch(Exception e){
		if(!Vars.android) e.printStackTrace();
		Gdx.app.error("Mindustry-Maps", "Failed loading map file: " + file);
		return false;
	}
}
 
开发者ID:Anuken,项目名称:Mindustry,代码行数:20,代码来源:Maps.java

示例2: loadAtlas

import com.badlogic.gdx.files.FileHandle; //导入方法依赖的package包/类
/** May return null. */
protected FileHandle loadAtlas(Element root, FileHandle tmxFile) throws IOException {
	Element e = root.getChildByName("properties");

	if (e != null) {
		for (Element property : e.getChildrenByName("property")) {
			String name = property.getAttribute("name", null);
			String value = property.getAttribute("value", null);
			if (name.equals("atlas")) {
				if (value == null) {
					value = property.getText();
				}

				if (value == null || value.length() == 0) {
					// keep trying until there are no more atlas properties
					continue;
				}
				return Gdx.files.internal(value);
			}
		}
	}
	FileHandle atlasFile = tmxFile.sibling(tmxFile.nameWithoutExtension() + ".atlas");
	return atlasFile.exists() ? atlasFile : null;
}
 
开发者ID:kyperbelt,项目名称:KyperBox,代码行数:25,代码来源:KyperMapLoader.java


注:本文中的com.badlogic.gdx.files.FileHandle.sibling方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。