project_files/Android-build/SDL-android-project/src/org/hedgewars/hedgeroid/Downloader/DownloadAssets.java
author Medo <smaxein@googlemail.com>
Mon, 06 Aug 2012 22:39:36 +0200
changeset 7476 2fb781bbdd51
parent 7344 25b8906f901a
child 7485 0481bd74267c
permissions -rw-r--r--
Hedgeroid: Start using the frontlib for more operations
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6350
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
     1
package org.hedgewars.hedgeroid.Downloader;
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
     2
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
     3
import java.io.File;
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
     4
import java.io.FileNotFoundException;
6350
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
     5
import java.io.IOException;
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
     6
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
     7
import org.hedgewars.hedgeroid.MainActivity;
6724
03cd33624284 schemes/teams now get replaces on each version update
Xeli
parents: 6485
diff changeset
     8
import org.hedgewars.hedgeroid.R;
6350
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
     9
import org.hedgewars.hedgeroid.Utils;
6724
03cd33624284 schemes/teams now get replaces on each version update
Xeli
parents: 6485
diff changeset
    10
import org.hedgewars.hedgeroid.Datastructures.Scheme;
7476
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents: 7344
diff changeset
    11
import org.hedgewars.hedgeroid.Datastructures.Schemes;
6724
03cd33624284 schemes/teams now get replaces on each version update
Xeli
parents: 6485
diff changeset
    12
import org.hedgewars.hedgeroid.Datastructures.Team;
03cd33624284 schemes/teams now get replaces on each version update
Xeli
parents: 6485
diff changeset
    13
import org.hedgewars.hedgeroid.Datastructures.Weapon;
6350
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    14
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    15
import android.content.res.AssetManager;
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    16
import android.os.AsyncTask;
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    17
import android.util.Log;
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    18
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    19
public class DownloadAssets extends AsyncTask<Object, Long, Boolean> {
7344
25b8906f901a Hedgeroid: Modified detection of assets on SD card (should be more reliable)
Medo <smaxein@googlemail.com>
parents: 7330
diff changeset
    20
	private static final String VERSION_FILENAME = "assetsversion.txt";
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    21
	private final MainActivity act;
6350
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    22
	
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    23
	public DownloadAssets(MainActivity act){
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    24
		this.act = act;
6350
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    25
	}
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    26
	
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    27
	private void copyFileOrDir(AssetManager assetManager, File target, String assetPath) throws IOException {
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    28
		try {
7326
1fae07363938 Hedgeroid: Simplified some code
Medo <smaxein@googlemail.com>
parents: 7318
diff changeset
    29
			Utils.writeStreamToFile(assetManager.open(assetPath), target);
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    30
		} catch(FileNotFoundException e) {
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    31
			/*
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    32
			 * I can't find a better way to figure out whether an asset entry is
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    33
			 * a file or a directory. Checking if assetManager.list(assetPath)
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    34
			 * is empty is a bit cleaner, but SLOW.
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    35
			 */
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    36
			if (!target.isDirectory() && !target.mkdir()) {
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    37
				throw new IOException("Unable to create directory "+target);
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    38
			}
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    39
			for (String asset : assetManager.list(assetPath)) {
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    40
				copyFileOrDir(assetManager, new File(target, asset), assetPath + "/" + asset);
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    41
			}
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    42
		}
6350
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    43
	}
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    44
	
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    45
	@Override
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    46
	protected Boolean doInBackground(Object... params) {
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    47
		try {
7476
2fb781bbdd51 Hedgeroid: Start using the frontlib for more operations
Medo <smaxein@googlemail.com>
parents: 7344
diff changeset
    48
			Utils.writeStreamToFile(act.getResources().openRawResource(R.raw.schemes_builtin), Schemes.getBuiltinSchemesFile(act));
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    49
			Utils.resRawToFilesDir(act, R.array.weapons, Weapon.DIRECTORY_WEAPON);
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    50
			Utils.resRawToFilesDir(act, R.array.teams, Team.DIRECTORY_TEAMS);
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    51
			copyFileOrDir(act.getAssets(), Utils.getDataPathFile(act), "Data");
7344
25b8906f901a Hedgeroid: Modified detection of assets on SD card (should be more reliable)
Medo <smaxein@googlemail.com>
parents: 7330
diff changeset
    52
			copyFileOrDir(act.getAssets(), new File(Utils.getCachePath(act), VERSION_FILENAME), VERSION_FILENAME);
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    53
			return Boolean.TRUE;
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    54
		} catch(IOException e) {
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    55
			Log.e("DownloadAssets", e.getMessage(), e);
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    56
			return Boolean.FALSE;
7318
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    57
		}
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    58
	}
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    59
	
a446eafcddeb Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents: 6724
diff changeset
    60
	@Override
7330
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    61
	protected void onPostExecute(Boolean result){
867e4fda496e Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents: 7326
diff changeset
    62
		act.onAssetsDownloaded(result);
6350
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    63
	}
41b0a9955c47 new download manager \o/
Xeli
parents:
diff changeset
    64
}