author | Medo <smaxein@googlemail.com> |
Mon, 16 Jul 2012 20:16:03 +0200 | |
changeset 7330 | 867e4fda496e |
parent 7326 | 1fae07363938 |
child 7344 | 25b8906f901a |
permissions | -rw-r--r-- |
6350 | 1 |
package org.hedgewars.hedgeroid.Downloader; |
2 |
||
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 | 5 |
import java.io.IOException; |
6 |
||
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 | 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; |
03cd33624284
schemes/teams now get replaces on each version update
Xeli
parents:
6485
diff
changeset
|
11 |
import org.hedgewars.hedgeroid.Datastructures.Team; |
03cd33624284
schemes/teams now get replaces on each version update
Xeli
parents:
6485
diff
changeset
|
12 |
import org.hedgewars.hedgeroid.Datastructures.Weapon; |
6350 | 13 |
|
14 |
import android.content.res.AssetManager; |
|
15 |
import android.os.AsyncTask; |
|
16 |
import android.util.Log; |
|
17 |
||
7330
867e4fda496e
Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents:
7326
diff
changeset
|
18 |
public class DownloadAssets extends AsyncTask<Object, Long, Boolean> { |
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
|
19 |
private final MainActivity act; |
6350 | 20 |
|
7330
867e4fda496e
Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents:
7326
diff
changeset
|
21 |
public DownloadAssets(MainActivity act){ |
867e4fda496e
Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents:
7326
diff
changeset
|
22 |
this.act = act; |
6350 | 23 |
} |
24 |
||
7330
867e4fda496e
Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents:
7326
diff
changeset
|
25 |
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
|
26 |
try { |
7326
1fae07363938
Hedgeroid: Simplified some code
Medo <smaxein@googlemail.com>
parents:
7318
diff
changeset
|
27 |
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
|
28 |
} 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
|
29 |
/* |
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 |
* 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
|
31 |
* 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
|
32 |
* 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
|
33 |
*/ |
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 |
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
|
35 |
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
|
36 |
} |
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 |
for (String asset : assetManager.list(assetPath)) { |
7330
867e4fda496e
Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents:
7326
diff
changeset
|
38 |
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
|
39 |
} |
a446eafcddeb
Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents:
6724
diff
changeset
|
40 |
} |
6350 | 41 |
} |
42 |
||
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
|
43 |
@Override |
7330
867e4fda496e
Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents:
7326
diff
changeset
|
44 |
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
|
45 |
try { |
a446eafcddeb
Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents:
6724
diff
changeset
|
46 |
Utils.resRawToFilesDir(act, R.array.schemes, Scheme.DIRECTORY_SCHEME); |
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 |
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
|
48 |
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
|
49 |
copyFileOrDir(act.getAssets(), Utils.getDataPathFile(act), "Data"); |
867e4fda496e
Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents:
7326
diff
changeset
|
50 |
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
|
51 |
} catch(IOException e) { |
7330
867e4fda496e
Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents:
7326
diff
changeset
|
52 |
Log.e("DownloadAssets", e.getMessage(), e); |
867e4fda496e
Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents:
7326
diff
changeset
|
53 |
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
|
54 |
} |
a446eafcddeb
Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents:
6724
diff
changeset
|
55 |
} |
a446eafcddeb
Improved asset moving time by an order of magnitude (3s vs. 25s on my device)
Medo <smaxein@googlemail.com>
parents:
6724
diff
changeset
|
56 |
|
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 |
@Override |
7330
867e4fda496e
Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents:
7326
diff
changeset
|
58 |
protected void onPostExecute(Boolean result){ |
867e4fda496e
Hedgeroid: Layout experiments for the lobby page
Medo <smaxein@googlemail.com>
parents:
7326
diff
changeset
|
59 |
act.onAssetsDownloaded(result); |
6350 | 60 |
} |
61 |
} |