當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。