-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathXgGenerative.cpp
194 lines (176 loc) · 7.21 KB
/
XgGenerative.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
// 音声コンボボックスを初期化。
BOOL XgGenerative_InitSound(HWND hwnd, INT nComboID, INT nCheckID, LPCWSTR pszPathName)
{
HWND hCmb = GetDlgItem(hwnd, nComboID);
if (pszPathName[0])
::CheckDlgButton(hwnd, nCheckID, BST_CHECKED);
else
::EnableWindow(hCmb, FALSE);
// 「(なし)」を追加して選択。
ComboBox_AddString(hCmb, XgLoadStringDx1(IDS_NONE));
ComboBox_SetCurSel(hCmb, 0);
// SOUNDファイルがなければ音声は無効。
WCHAR szPath[MAX_PATH];
if (!XgFindLocalFile(szPath, _countof(szPath), L"SOUND"))
return FALSE;
// WAVファイルの列挙を開始する。
WIN32_FIND_DATAW find;
PathAppendW(szPath, L"*.wav");
HANDLE hFind = FindFirstFileW(szPath, &find);
if (hFind == INVALID_HANDLE_VALUE)
return FALSE;
do
{
// コンボボックスに追加。
INT iItem = ComboBox_AddString(hCmb, find.cFileName);
// 一致すれば選択。
if (lstrcmpiW(find.cFileName, PathFindFileNameW(pszPathName)) == 0)
ComboBox_SetCurSel(hCmb, iItem);
} while (FindNextFileW(hFind, &find));
FindClose(hFind);
return TRUE;
}
// 音を鳴らす。
void XgGenerative_PlaySound(HWND hwnd, INT nID)
{
// SOUNDフォルダがなければ鳴らさない。
WCHAR szPath[MAX_PATH];
if (!XgFindLocalFile(szPath, _countof(szPath), L"SOUND"))
return;
// コンボボックスからテキストを取得。
WCHAR szText[MAX_PATH];
ComboBox_GetText(GetDlgItem(hwnd, nID), szText, _countof(szText));
// 「(なし)」は鳴らさない。
if (lstrcmpiW(szText, XgLoadStringDx1(IDS_NONE)) == 0)
return;
// パス名を構築して、音声を鳴らす。
PathAppendW(szPath, szText);
::PlaySoundW(szPath, NULL, SND_ASYNC | SND_FILENAME);
}
// [生成]設定。
INT_PTR CALLBACK
XgGenerativeDlgProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch (uMsg)
{
case WM_INITDIALOG:
xg_ahSyncedDialogs[I_SYNCED_GENERATIVE] = hwnd;
// チェックボックスとコンボボックスを初期化。
if (xg_bNoGeneratedMsg)
::CheckDlgButton(hwnd, chx1, BST_CHECKED);
if (xg_bNoCanceledMsg)
::CheckDlgButton(hwnd, chx2, BST_CHECKED);
if (xg_bAutoRetry)
::CheckDlgButton(hwnd, chx3, BST_CHECKED);
if (!XgGenerative_InitSound(hwnd, cmb1, chx4, xg_aszSoundFiles[0]))
EnableWindow(GetDlgItem(hwnd, chx4), FALSE);
if (!XgGenerative_InitSound(hwnd, cmb2, chx5, xg_aszSoundFiles[1]))
EnableWindow(GetDlgItem(hwnd, chx5), FALSE);
if (!XgGenerative_InitSound(hwnd, cmb3, chx6, xg_aszSoundFiles[2]))
EnableWindow(GetDlgItem(hwnd, chx6), FALSE);
return TRUE;
case WM_COMMAND:
// 変更があれば「更新」ボタンを有効にする。
switch (LOWORD(wParam))
{
case chx1:
case chx2:
case chx3:
case chx4:
case chx5:
case chx6:
if (HIWORD(wParam) == BN_CLICKED)
PropSheet_Changed(GetParent(hwnd), hwnd);
break;
case cmb1:
case cmb2:
case cmb3:
if (HIWORD(wParam) == CBN_SELCHANGE ||
HIWORD(wParam) == CBN_SELENDOK)
{
PropSheet_Changed(GetParent(hwnd), hwnd);
}
break;
}
// チェックボックスの状態によりコンボボックスの有効化・無効化を切り替える。
// 「再生」ボタンで音を出す。
switch (LOWORD(wParam))
{
case chx4:
if (HIWORD(wParam) == BN_CLICKED)
EnableWindow(GetDlgItem(hwnd, cmb1), IsDlgButtonChecked(hwnd, chx4) == BST_CHECKED);
break;
case chx5:
if (HIWORD(wParam) == BN_CLICKED)
EnableWindow(GetDlgItem(hwnd, cmb2), IsDlgButtonChecked(hwnd, chx5) == BST_CHECKED);
break;
case chx6:
if (HIWORD(wParam) == BN_CLICKED)
EnableWindow(GetDlgItem(hwnd, cmb3), IsDlgButtonChecked(hwnd, chx6) == BST_CHECKED);
break;
case psh1:
if (HIWORD(wParam) == BN_CLICKED) {
XgGenerative_PlaySound(hwnd, cmb1);
}
break;
case psh2:
if (HIWORD(wParam) == BN_CLICKED) {
XgGenerative_PlaySound(hwnd, cmb2);
}
break;
case psh3:
if (HIWORD(wParam) == BN_CLICKED) {
XgGenerative_PlaySound(hwnd, cmb3);
}
break;
}
break;
case WM_NOTIFY:
{
NMHDR *pnmhdr = (NMHDR *)lParam;
switch (pnmhdr->code) {
case PSN_APPLY: // 適用
{
// 設定を取得する。
xg_bNoGeneratedMsg = (::IsDlgButtonChecked(hwnd, chx1) == BST_CHECKED);
xg_bNoCanceledMsg = (::IsDlgButtonChecked(hwnd, chx2) == BST_CHECKED);
xg_bAutoRetry = (::IsDlgButtonChecked(hwnd, chx3) == BST_CHECKED);
// いったん音声ファイルの情報をクリアする。
xg_aszSoundFiles[0][0] = 0;
xg_aszSoundFiles[1][0] = 0;
xg_aszSoundFiles[2][0] = 0;
// SOUNDフォルダがなければ無効のまま。
WCHAR szPath[MAX_PATH];
if (!XgFindLocalFile(szPath, _countof(szPath), L"SOUND"))
break;
WCHAR szText[MAX_PATH];
// コンボボックスとチェックボックスの状態に応じて音声ファイルを設定する。
ComboBox_GetText(GetDlgItem(hwnd, cmb1), szText, _countof(szText));
if (::IsDlgButtonChecked(hwnd, chx4) == BST_CHECKED && szText[0]) {
if (lstrcmpiW(szText, XgLoadStringDx1(IDS_NONE)) != 0) {
StringCchCopyW(xg_aszSoundFiles[0], _countof(xg_aszSoundFiles[0]), szPath);
PathAppendW(xg_aszSoundFiles[0], szText);
}
}
ComboBox_GetText(GetDlgItem(hwnd, cmb2), szText, _countof(szText));
if (::IsDlgButtonChecked(hwnd, chx5) == BST_CHECKED && szText[0]) {
if (lstrcmpiW(szText, XgLoadStringDx1(IDS_NONE)) != 0) {
StringCchCopyW(xg_aszSoundFiles[1], _countof(xg_aszSoundFiles[0]), szPath);
PathAppendW(xg_aszSoundFiles[1], szText);
}
}
ComboBox_GetText(GetDlgItem(hwnd, cmb3), szText, _countof(szText));
if (::IsDlgButtonChecked(hwnd, chx6) == BST_CHECKED && szText[0]) {
if (lstrcmpiW(szText, XgLoadStringDx1(IDS_NONE)) != 0) {
StringCchCopyW(xg_aszSoundFiles[2], _countof(xg_aszSoundFiles[0]), szPath);
PathAppendW(xg_aszSoundFiles[2], szText);
}
}
}
break;
}
}
break;
}
return 0;
}