OSDN Git Service

DTXMania089リリースに際してのtag付け。
[dtxmania/dtxmania.git] / 110401(DTXMania089) / SlimDXc_Jun2010(VC++2008) / source / directwrite / LocalizedStrings.cpp
1 /*\r
2 * Copyright (c) 2007-2010 SlimDX Group\r
3\r
4 * Permission is hereby granted, free of charge, to any person obtaining a copy\r
5 * of this software and associated documentation files (the "Software"), to deal\r
6 * in the Software without restriction, including without limitation the rights\r
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r
8 * copies of the Software, and to permit persons to whom the Software is\r
9 * furnished to do so, subject to the following conditions:\r
10\r
11 * The above copyright notice and this permission notice shall be included in\r
12 * all copies or substantial portions of the Software.\r
13\r
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r
20 * THE SOFTWARE.\r
21 */\r
22 #include "stdafx.h"\r
23 \r
24 #include "../stack_array.h"\r
25 \r
26 #include "DirectWriteException.h"\r
27 \r
28 #include "LocalizedStrings.h"\r
29 \r
30 const IID IID_IDWriteLocalizedStrings = __uuidof(IDWriteLocalizedStrings);\r
31 \r
32 using namespace System;\r
33 \r
34 namespace SlimDX\r
35 {\r
36 namespace DirectWrite\r
37 {\r
38         int LocalizedStrings::Count::get()\r
39         {\r
40                 return InternalPointer->GetCount();\r
41         }\r
42 \r
43         System::String^ LocalizedStrings::LocaleName::get(int index)\r
44         {\r
45                 if(index >= Count)\r
46                         throw gcnew ArgumentOutOfRangeException("index");\r
47 \r
48                 UINT32 length = 0;\r
49                 HRESULT hr = InternalPointer->GetLocaleNameLength(index, &length);\r
50                 if(RECORD_DW(hr).IsFailure)\r
51                         return nullptr;\r
52 \r
53                 stack_array<wchar_t> buffer = stackalloc(wchar_t, length);\r
54                 hr = InternalPointer->GetLocaleName(index, &buffer[0], length);\r
55                 if(RECORD_DW(hr).IsFailure)\r
56                         return nullptr;\r
57 \r
58                 return gcnew System::String(&buffer[0]);\r
59         }\r
60 \r
61         System::String^ LocalizedStrings::String::get(int index)\r
62         {\r
63                 if(index >= Count)\r
64                         throw gcnew ArgumentOutOfRangeException("index");\r
65 \r
66                 UINT32 length = 0;\r
67                 HRESULT hr = InternalPointer->GetStringLength(index, &length);\r
68                 if(RECORD_DW(hr).IsFailure)\r
69                         return nullptr;\r
70 \r
71                 stack_array<wchar_t> buffer = stackalloc(wchar_t, length);\r
72                 hr = InternalPointer->GetString(index, &buffer[0], length);\r
73                 if(RECORD_DW(hr).IsFailure)\r
74                         return nullptr;\r
75 \r
76                 return gcnew System::String(&buffer[0]);\r
77         }\r
78 \r
79         int LocalizedStrings::FindLocaleName( System::String^ localeName, [Out] bool% exists )\r
80         {\r
81                 BOOL existsNative = FALSE;\r
82                 UINT32 index = 0;\r
83                 pin_ptr<const wchar_t> nameChars = PtrToStringChars( localeName );\r
84                 HRESULT hr = InternalPointer->FindLocaleName( nameChars, &index, &existsNative );\r
85                 exists = existsNative == TRUE;\r
86                 RECORD_DW(hr);\r
87                 return index;\r
88         }\r
89 }\r
90 }