-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuspeech.pas
251 lines (224 loc) · 6.46 KB
/
uspeech.pas
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
unit uspeech;
{
Copyright <2018> <Saeed Khalafinejad>
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
}
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, MPlayer, OleCtnrs, UNumToVoice, Buttons, ExtCtrls;
type
TfrmSpeech = class(TForm)
edtNum: TEdit;
BtnSpeech: TBitBtn;
BitBtn1: TBitBtn;
BitBtn2: TBitBtn;
BitBtn3: TBitBtn;
BitBtn4: TBitBtn;
BitBtn5: TBitBtn;
BitBtn6: TBitBtn;
BitBtn7: TBitBtn;
BitBtn8: TBitBtn;
BitBtn9: TBitBtn;
BitBtn0: TBitBtn;
btnBackspace: TBitBtn;
btnClear: TBitBtn;
Bevel1: TBevel;
lstOlds: TListBox;
btnRepeat: TBitBtn;
Bevel2: TBevel;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
btnInc: TBitBtn;
btnDec: TBitBtn;
chkInc: TCheckBox;
procedure btnAlphabetClick(Sender: TObject);
procedure btnSpeechClick(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
procedure BitBtn1Click(Sender: TObject);
procedure btnIncClick(Sender: TObject);
procedure btnDecClick(Sender: TObject);
procedure btnClearClick(Sender: TObject);
procedure btnBackspaceClick(Sender: TObject);
procedure btnRepeatClick(Sender: TObject);
procedure edtNumKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
private
{ Private declarations }
n2v:TNumToVoice;
mutex:Cardinal;
function incNumber():boolean;
function decNumber():boolean;
procedure initializeMutex();
procedure finalizeMutex();
public
{ Public declarations }
end;
var
frmSpeech: TfrmSpeech;
implementation
uses UNumToText;
{$R *.dfm}
procedure TfrmSpeech.btnAlphabetClick(Sender: TObject);
var n2t:TNumToText;
begin
n2t:=TNumToText.Create;
try
MessageDlg(n2t.convert(EdtNum.Text), mtInformation, [mbok], 0);
finally
n2t.Free;
end;
end;
procedure TfrmSpeech.btnSpeechClick(Sender: TObject);
var voicesStr:string;
begin
try
strtoint(edtNum.Text)
except
begin
MessageDlg('شماره وارد شده صحيح نميباشد', mtError, [mbok], 0);
exit;
end;
end;
try
voicesStr:=n2v.convert(edtNum.Text);
n2v.playVoiceStr(voicesStr, mutex);
if lstOlds.Items.IndexOf(edtNum.Text)=-1 then
lstOlds.Items.Insert(0, edtNum.Text);
if lstOlds.Items.Count>15 then lstOlds.Items.Delete(15);
try lstOlds.Selected[0]:=true; except end;
if chkInc.Checked then
if not incNumber then edtNum.Text:='1';
except
on e:Exception do
begin
MessageDlg('خطايي در روند کار پيش آمد'+#13+#10+e.Message, mtError, [mbok], 0);
end;
end;
end;
procedure TfrmSpeech.FormCreate(Sender: TObject);
begin
n2v:=TNumToVoice.Create(Handle);
initializeMutex;
end;
procedure TfrmSpeech.FormClose(Sender: TObject; var Action: TCloseAction);
begin
n2v.Free;
finalizeMutex();
end;
procedure TfrmSpeech.BitBtn1Click(Sender: TObject);
begin
if (length(edtNum.Text)<3) then
begin
edtNum.Text:=edtNum.Text+inttostr((sender as TBitBtn).Tag);
end else
begin
edtNum.Text:=inttostr((sender as TBitBtn).Tag);
end;
end;
procedure TfrmSpeech.btnIncClick(Sender: TObject);
begin
if not incNumber then
begin
MessageDlg('فقط امکان اعلان اعداد 1 تا 999 وجود دارد', mtInformation, [mbOK], 0);
end;
end;
function TfrmSpeech.incNumber: boolean;
var n:integer;
begin
try n:=strtoint(edtNum.Text); except n:=0 end;
if n<999 then
begin
n:=n+1;
edtNum.Text:=inttostr(n);
result:=true;
end else
begin
result:=false;
end;
end;
function TfrmSpeech.decNumber: boolean;
var n:integer;
begin
try n:=strtoint(edtNum.Text); except n:=0 end;
if n>1 then
begin
n:=n-1;
edtNum.Text:=inttostr(n);
result:=true;
end else
begin
result:=false;
end;
end;
procedure TfrmSpeech.btnDecClick(Sender: TObject);
begin
if not decNumber then MessageDlg('امکان کم کردن وجود ندارد', mtInformation, [mbOK], 0);
end;
procedure TfrmSpeech.btnClearClick(Sender: TObject);
begin
edtNum.Text:='';
end;
procedure TfrmSpeech.btnBackspaceClick(Sender: TObject);
var s:string;
begin
s:=edtNum.Text;
if length(s)>0 then
begin
delete(s, length(s),1);
edtNum.Text:=s;
end;
end;
procedure TfrmSpeech.btnRepeatClick(Sender: TObject);
var voicesStr:string;
begin
try
if lstOlds.Items.Count=0 then
begin
MessageDlg('هيچ شماره اي در ليست اعلان هاي قبلي وجود ندارد', mtWarning, [mbok], 0);
exit;
end;
if lstOlds.ItemIndex=-1 then
begin
MessageDlg('از اعلان هاي قبلي يک شماره را انتخاب نماييد', mtWarning, [mbok], 0);
exit;
end;
voicesStr:=n2v.convert(lstOlds.Items.Strings[lstOlds.itemIndex]);
n2v.playVoiceStr(voicesStr, mutex);
except
on e:Exception do
begin
MessageDlg('خطايي در روند کار پيش آمد'+#13+#10+e.Message, mtError, [mbok], 0);
end;
end;
end;
procedure TfrmSpeech.finalizeMutex;
begin
CloseHandle(mutex);
end;
procedure TfrmSpeech.initializeMutex;
begin
Mutex := CreateMutex(nil, false, PAnsiChar('Announcement-RestKasabeh-01258967-5784-04-253'));
if Mutex = 0 then RaiseLastOSError;
end;
procedure TfrmSpeech.edtNumKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if key=VK_Down then btnDecClick(btnDec)
else if key=VK_Up then btnIncClick(btnInc);
end;
end.