1 |
using System; |
2 |
using System.IO; |
3 |
|
4 |
namespace Oni.Dae |
5 |
{ |
6 |
internal class Reader |
7 |
{ |
8 |
public static Scene ReadFile(string filePath) |
9 |
{ |
10 |
string type = Path.GetExtension(filePath); |
11 |
|
12 |
if (string.Equals(type, ".dae", StringComparison.OrdinalIgnoreCase)) |
13 |
return IO.DaeReader.ReadFile(filePath); |
14 |
else if (string.Equals(type, ".obj", StringComparison.OrdinalIgnoreCase)) |
15 |
return IO.ObjReader.ReadFile(filePath); |
16 |
else |
17 |
throw new NotSupportedException($"Unsupported 3D file type {type}"); |
18 |
} |
19 |
} |
20 |
} |