0
在基於LibGDX的項目中,編譯HTML項目時(使用GWT),您的資產文件夾中隱藏的'.DT_Store'文件將不會部署但仍然會被引用。這會導致:當使用GWT爲HTML編譯時,LibGDX「.DT_Store」文件未找到錯誤消息
「.DT_Store文件」 找不到
當你打開頁面。
在基於LibGDX的項目中,編譯HTML項目時(使用GWT),您的資產文件夾中隱藏的'.DT_Store'文件將不會部署但仍然會被引用。這會導致:當使用GWT爲HTML編譯時,LibGDX「.DT_Store」文件未找到錯誤消息
「.DT_Store文件」 找不到
當你打開頁面。
您需要過濾掉您不希望包含在您的部署中的文件。
此解決方案可以應用於任何其他您要排除的文件。
在.gwt.xml文件,添加以下標籤:
<set-configuration-property name="gdx.assetfilterclass" value="com.my.Package.DefaultAssetFilter" />
<set-configuration-property name="gdx.assetpath" value="../android/assets" />
在你的HTML項目
,添加一個類:
package com.my.Package;
import com.badlogic.gdx.backends.gwt.preloader.AssetFilter;
/*******************************************************************************
* Copyright 2011 See AUTHORS file.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
public class DefaultAssetFilter implements AssetFilter {
private String extension (String file) {
String name = file;
int dotIndex = name.lastIndexOf('.');
if (dotIndex == -1) return "";
return name.substring(dotIndex + 1);
}
@Override
public boolean accept (String file, boolean isDirectory) {
if (isDirectory && file.endsWith(".svn")) return false;
if (isDirectory && file.endsWith(".bundle")) return false;
if (file.endsWith(".DS_Store")) return false;
return true;
}
@Override
public AssetType getType (String file) {
String extension = extension(file).toLowerCase();
if (isImage(extension)) return AssetType.Image;
if (isAudio(extension)) return AssetType.Audio;
if (isText(extension)) return AssetType.Text;
return AssetType.Binary;
}
private boolean isImage (String extension) {
return extension.toLowerCase().equals("jpg") || extension.toLowerCase().equals("jpeg") || extension.toLowerCase().equals("png") || extension.toLowerCase().equals("bmp") || extension.toLowerCase().equals("gif");
}
private boolean isText (String extension) {
return extension.toLowerCase().equals("json") || extension.toLowerCase().equals("xml") || extension.equals("txt") || extension.equals("glsl")
|| extension.equals("fnt") || extension.equals("pack") || extension.equals("obj") || extension.equals("atlas")
|| extension.equals("g3dj");
}
private boolean isAudio (String extension) {
return extension.toLowerCase().equals("mp3") || extension.toLowerCase().equals("ogg") || extension.toLowerCase().equals("wav");
}
@Override
public String getBundleName (String file) {
return "assets";
}
}