OSDN Git Service

#36897 [DTXC] MIDIインポート機能の呼び出し口を、ファイルメニュー内にも配置。
[dtxmania/dtxmania.git] / SlimDXc_Jun2010(VC++2008) / source / direct3d9 / XFileEnumerationObject.cpp
1 #include "stdafx.h"\r
2 /*\r
3 * Copyright (c) 2007-2010 SlimDX Group\r
4\r
5 * Permission is hereby granted, free of charge, to any person obtaining a copy\r
6 * of this software and associated documentation files (the "Software"), to deal\r
7 * in the Software without restriction, including without limitation the rights\r
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r
9 * copies of the Software, and to permit persons to whom the Software is\r
10 * furnished to do so, subject to the following conditions:\r
11\r
12 * The above copyright notice and this permission notice shall be included in\r
13 * all copies or substantial portions of the Software.\r
14\r
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r
21 * THE SOFTWARE.\r
22 */\r
23 #include <d3d9.h>\r
24 #include <d3dx9.h>\r
25 \r
26 #include "../ComObject.h"\r
27 #include "../DataStream.h"\r
28 #include "XFile.h"\r
29 \r
30 #include "Direct3D9Exception.h"\r
31 \r
32 using namespace System;\r
33 using namespace System::IO;\r
34 using namespace System::Runtime::InteropServices;\r
35 \r
36 namespace SlimDX\r
37 {\r
38 namespace Direct3D9\r
39 {\r
40         XFileData^ XFileEnumerationObject::GetChild( int id )\r
41         {\r
42                 ID3DXFileData *result;\r
43 \r
44                 HRESULT hr = InternalPointer->GetChild( id, &result );\r
45 \r
46                 if( RECORD_D3D9( hr ).IsFailure )\r
47                         return nullptr;\r
48 \r
49                 return XFileData::FromPointer( result );\r
50         }\r
51 \r
52         XFileData^ XFileEnumerationObject::GetDataObject( Guid id )\r
53         {\r
54                 ID3DXFileData *result;\r
55 \r
56                 HRESULT hr = InternalPointer->GetDataObjectById( Utilities::ConvertManagedGuid( id ), &result );\r
57                 \r
58                 if( RECORD_D3D9( hr ).IsFailure )\r
59                         return nullptr;\r
60 \r
61                 return XFileData::FromPointer( result );\r
62         }\r
63 \r
64         XFileData^ XFileEnumerationObject::GetDataObject( String^ name )\r
65         {\r
66                 ID3DXFileData *result;\r
67                 array<unsigned char>^ nameBytes = System::Text::ASCIIEncoding::ASCII->GetBytes( name );\r
68                 pin_ptr<unsigned char> pinnedName = &nameBytes[0];\r
69 \r
70                 HRESULT hr = InternalPointer->GetDataObjectByName( reinterpret_cast<LPCSTR>( pinnedName ), &result );\r
71                 \r
72                 if( RECORD_D3D9( hr ).IsFailure )\r
73                         return nullptr;\r
74 \r
75                 return XFileData::FromPointer( result );\r
76         }\r
77 \r
78         XFile^ XFileEnumerationObject::File::get()\r
79         {\r
80                 ID3DXFile *result;\r
81 \r
82                 HRESULT hr = InternalPointer->GetFile( &result );\r
83                 \r
84                 if( RECORD_D3D9( hr ).IsFailure )\r
85                         return nullptr;\r
86 \r
87                 return XFile::FromPointer( result );\r
88         }\r
89 \r
90         System::Int64 XFileEnumerationObject::ChildCount::get()\r
91         {\r
92                 SIZE_T result;\r
93 \r
94                 HRESULT hr = InternalPointer->GetChildren( &result );\r
95                 \r
96                 if( RECORD_D3D9( hr ).IsFailure )\r
97                         return 0;\r
98 \r
99                 return result;\r
100         }\r
101 }\r
102 }