OSDN Git Service

Merge pull request #57 from Thotep/master
[mikumikustudio/libgdx-mikumikustudio.git] / backends / gdx-backend-iosmonotouch / src / com / badlogic / gdx / backends / ios / IOSFileHandle.java
1 /*******************************************************************************\r
2  * Copyright 2011 See AUTHORS file.\r
3  * \r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  * \r
8  *   http://www.apache.org/licenses/LICENSE-2.0\r
9  * \r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  ******************************************************************************/
16 package com.badlogic.gdx.backends.ios;\r
17 \r
18 import java.io.File;\r
19 \r
20 import com.badlogic.gdx.Files.FileType;\r
21 import com.badlogic.gdx.files.FileHandle;\r
22 \r
23 public class IOSFileHandle extends FileHandle {\r
24         public IOSFileHandle (String fileName, FileType type) {\r
25                 super(fileName, type);\r
26         }\r
27 \r
28         public IOSFileHandle (File file, FileType type) {\r
29                 super(file, type);\r
30         }\r
31 \r
32         public FileHandle child (String name) {\r
33                 if (file.getPath().length() == 0) return new IOSFileHandle(new File(name), type);\r
34                 return new IOSFileHandle(new File(file, name), type);\r
35         }\r
36 \r
37         public FileHandle parent () {\r
38                 File parent = file.getParentFile();\r
39                 if (parent == null) {\r
40                         if (type == FileType.Absolute)\r
41                                 parent = new File("/");\r
42                         else\r
43                                 parent = new File("");\r
44                 }\r
45                 return new IOSFileHandle(parent, type);\r
46         }\r
47 \r
48         /**\r
49          * This overrides the original method in FileHandle to prevent crashes on iOS. The original method\r
50          * has a fallback to FileType.Classpath when FileType.Internal is used. FileType.Classpath is not\r
51          * supported on iOS.\r
52          * \r
53          * @return  True if the file exists.\r
54          */\r
55         @Override\r
56         public boolean exists () {\r
57                 return file().exists();\r
58         }\r
59 \r
60         public File file () {\r
61                 if (type == FileType.External) return new File(IOSFiles.externalPath, file.getPath());\r
62                 if (type == FileType.Local) return new File(IOSFiles.localPath, file.getPath());\r
63                 return file;\r
64         }\r
65 }