Subversion Repositories Kolibri OS

Rev

Rev 3991 | Rev 5499 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3991 Rev 5423
1
#define MEMSIZE 0x8000
1
#define MEMSIZE 0x8000
2
#include "..\lib\kolibri.h" 
2
#include "..\lib\kolibri.h" 
3
#include "..\lib\strings.h"
3
#include "..\lib\strings.h"
4
#include "..\lib\mem.h"
4
#include "..\lib\mem.h"
5
#include "..\lib\file_system.h"
5
#include "..\lib\file_system.h"
6
#include "..\lib\figures.h"
6
#include "..\lib\figures.h"
7
#include "..\lib\dll.h"
7
#include "..\lib\dll.h"
8
#include "..\lib\lib.obj\box_lib.h"
8
#include "..\lib\lib.obj\box_lib.h"
9
 
9
 
10
 
10
 
11
unsigned char speaker[23*40*3]= FROM "speaker.raw";
11
unsigned char speaker[23*40*3]= FROM "speaker.raw";
12
char title[]= "Dictionary v1.31";
12
char title[]= "Dictionary v1.32";
13
char direction[] = "Translate direction:";
13
char direction[] = "Translate direction:";
14
char translate_caption[] = "Translate";
14
char translate_caption[] = "Translate";
15
char dict_not_found[] = "Dictionary not found";
15
char dict_not_found[] = "Dictionary not found";
16
char dict_opened[] = "Dictionary loaded";
16
char dict_opened[] = "Dictionary loaded";
17
char empty_word[] = "Type a word to translate";
17
char empty_word[] = "Type a word to translate";
18
 
18
 
19
 
19
 
20
system_colors sc;
20
system_colors sc;
21
proc_info Form;
21
proc_info Form;
22
 
22
 
-
 
23
char edword[256], search_word[256], translate_result[4096], cur_dict[256];
23
char edword[256], search_word[256], translate_result[4096], dict_folder[4096], cur_dict[256];
24
dword dict_folder;
24
#define DICT_DIRECROTY "dictionaries"
25
#define DICT_DIRECROTY "dictionaries"
25
#define PRONOUNCED_FILE "/sys/pronounced.txt"
26
#define PRONOUNCED_FILE "/sys/pronounced.txt"
26
#define SPEECH_PATH "/kolibrios/media/speech/speech"
27
#define SPEECH_PATH "/kolibrios/media/speech/speech"
27
dword dir_buf, file_buf, fsize;
28
dword dir_buf, file_buf, fsize;
28
 
29
 
29
int mouse_dd, speaker_id;
30
int mouse_dd, speaker_id;
30
edit_box edit1= {200,20,16,0xffffff,0x94AECE,0x94AECE,0x94AECE,0,248,#edword,#mouse_dd,100000000000010b};
31
edit_box edit1= {200,20,16,0xffffff,0x94AECE,0x94AECE,0x94AECE,0,248,#edword,#mouse_dd,100000000000010b};
31
 
32
 
32
 
33
 
33
void main()
34
void main()
34
{   
35
{   
35
	int id, key;
36
	int id, key;
36
   	mem_Init();
37
   	mem_Init();
37
	if (load_dll2(boxlib, #box_lib_init,0)!=0) notify("Error while loading GUI library /sys/lib/boxlib.obj");
38
	if (load_dll2(boxlib, #box_lib_init,0)!=0) notify("Error while loading GUI library /sys/lib/boxlib.obj");
38
	
-
 
39
	program_path[strrchr(#program_path, '/')] = 0;
-
 
40
	strcpy(#dict_folder, #program_path);
39
 
41
	strcat(#dict_folder, DICT_DIRECROTY);
-
 
42
	SetCurDir(#dict_folder);
40
	dict_folder = abspath(DICT_DIRECROTY);
43
	OpenDictionary(0);
41
	OpenDictionary(0);
44
	
42
	
45
	if (param)
43
	if (param)
46
	{
44
	{
47
		strcpy(#edword, #param);
45
		strcpy(#edword, #param);
48
		edit1.size=edit1.pos=strlen(#edword);
46
		edit1.size=edit1.pos=strlen(#edword);
49
		Translate();
47
		Translate();
50
		DrawTranslation();
48
		DrawTranslation();
51
		edit_box_draw stdcall(#edit1);
49
		edit_box_draw stdcall(#edit1);
52
	}
50
	}
53
	
51
	
54
	SetEventMask(0x27);
52
	SetEventMask(0x27);
55
	loop()
53
	loop()
56
	{
54
	{
57
		switch(WaitEvent()) 
55
		switch(WaitEvent()) 
58
		{
56
		{
59
		case evMouse:
57
		case evMouse:
60
			edit_box_mouse stdcall (#edit1);
58
			edit_box_mouse stdcall (#edit1);
61
			break;
59
			break;
62
 
60
 
63
		case evButton:
61
		case evButton:
64
            id=GetButtonID();               
62
            id=GetButtonID();               
65
            if (id==1) {KillProcess(speaker_id); ExitProcess();}
63
            if (id==1) {KillProcess(speaker_id); ExitProcess();}
66
			if (id==10) { Translate(); DrawTranslation(); }
64
			if (id==10) { Translate(); DrawTranslation(); }
67
			if (id==11)	ShowDictList();
65
			if (id==11)	ShowDictList();
68
			if (id==12)	DrawWindowContent();
66
			if (id==12)	DrawWindowContent();
69
			if (id==15)
67
			if (id==15)
70
			{
68
			{
71
				if (GetProcessSlot(speaker_id)!=0))
69
				if (GetProcessSlot(speaker_id)!=0))
72
				{
70
				{
73
					KillProcess(speaker_id);
71
					KillProcess(speaker_id);
74
					pause(50);
72
					pause(50);
75
				}
73
				}
76
				else
74
				else
77
				{
75
				{
78
					if (WriteFile(strlen(#translate_result)+1, #translate_result, PRONOUNCED_FILE)!=0) break;
76
					if (WriteFile(strlen(#translate_result)+1, #translate_result, PRONOUNCED_FILE)!=0) break;
79
					pause(50);
77
					pause(50);
80
					speaker_id = RunProgram(SPEECH_PATH, PRONOUNCED_FILE);
78
					speaker_id = RunProgram(SPEECH_PATH, PRONOUNCED_FILE);
81
				}
79
				}
82
				SpeakerDraw(Form.cwidth-38, Form.cheight-32);
80
				SpeakerDraw(Form.cwidth-38, Form.cheight-32);
83
			}
81
			}
84
			if (id>=20)	OpenDictionary(id - 20);
82
			if (id>=20)	OpenDictionary(id - 20);
85
			break;
83
			break;
86
 
84
 
87
        case evKey:
85
        case evKey:
88
			key = GetKey();
86
			key = GetKey();
89
			IF (key==013) //Enter
87
			IF (key==013) //Enter
90
			{
88
			{
91
				Translate();
89
				Translate();
92
				DrawTranslation();
90
				DrawTranslation();
93
			}
91
			}
94
			
92
			
95
			EAX=key<<8;
93
			EAX=key<<8;
96
			edit_box_key stdcall(#edit1);
94
			edit_box_key stdcall(#edit1);
97
			
95
			
-
 
96
			// Translate();
98
			//LiveSearch();
97
			// DrawTranslation();
99
			break;
98
			break;
100
			
99
			
101
         case evReDraw:
100
         case evReDraw:
102
			DrawWindowContent();
101
			DrawWindowContent();
103
			break;
102
			break;
104
      }
103
      }
105
   }
104
   }
106
}
105
}
107
 
106
 
108
 
107
 
109
void DrawWindowContent()
108
void DrawWindowContent()
110
{
109
{
111
	sc.get();
110
	sc.get();
112
	DefineAndDrawWindow(215,120,400,250,0x73,sc.work,#title);
111
	DefineAndDrawWindow(215,120,400,250,0x73,sc.work,#title);
113
	GetProcessInfo(#Form, SelfInfo);
112
	GetProcessInfo(#Form, SelfInfo);
114
	if (Form.status_window>2) return;
113
	if (Form.status_window>2) return;
115
	if (Form.height<140) MoveSize(OLD,OLD,OLD,140);
114
	if (Form.height<140) MoveSize(OLD,OLD,OLD,140);
116
	if (Form.width<400) MoveSize(OLD,OLD,400,OLD);
115
	if (Form.width<400) MoveSize(OLD,OLD,400,OLD);
117
	edit1.focus_border_color=sc.work_graph;
116
	edit1.focus_border_color=sc.work_graph;
118
	edit1.width=Form.width-edit1.left-edit1.left-9;
117
	edit1.width=Form.width-edit1.left-edit1.left-9;
119
 
118
 
120
	DrawBar(0, 0, Form.width-9, 69, sc.work);
119
	DrawBar(0, 0, Form.width-9, 69, sc.work);
121
	edit_box_draw stdcall(#edit1);
120
	edit_box_draw stdcall(#edit1);
122
	DrawCaptButton(edit1.left+edit1.width-80,35, 80,20, 10, sc.work_button, sc.work_button_text,#translate_caption);
121
	DrawCaptButton(edit1.left+edit1.width-80,35, 80,20, 10, sc.work_button, sc.work_button_text,#translate_caption);
123
	DrawBar(0, 69, Form.width-9, 1, sc.work_graph);
122
	DrawBar(0, 69, Form.width-9, 1, sc.work_graph);
124
 
123
 
125
	WriteText(edit1.left,35+7,0x80,sc.work_text,#direction);
124
	WriteText(edit1.left,35+7,0x80,sc.work_text,#direction);
126
	DefineButton(edit1.left+130,35, 120,20, 11, sc.work_button);
125
	DefineButton(edit1.left+130,35, 120,20, 11, sc.work_button);
127
	DrawBar(edit1.left+130+1,36,  107,19, 0xFFFFFF);
126
	DrawBar(edit1.left+130+1,36,  107,19, 0xFFFFFF);
128
	WriteText(edit1.left+130+112,35+7,0x80,sc.work_button_text,"\x19");
127
	WriteText(edit1.left+130+112,35+7,0x80,sc.work_button_text,"\x19");
129
	WriteText(edit1.left+130+8,35+7,0x80,0x000000,#cur_dict);
128
	WriteText(edit1.left+130+8,35+7,0x80,0x000000,#cur_dict);
130
 
129
 
131
	DrawTranslation();
130
	DrawTranslation();
132
}
131
}
133
 
132
 
134
void SpeakerDraw(dword x, y)
133
void SpeakerDraw(dword x, y)
135
{
134
{
136
	if (!strstr(#cur_dict, "- rus")) return;
135
	if (!strstr(#cur_dict, "- rus")) return;
137
	DefineButton(x-5, y-5, 23+10, 20+9, 15+BT_HIDE+BT_NOFRAME, 0);
136
	DefineButton(x-5, y-5, 23+10, 20+9, 15+BT_HIDE+BT_NOFRAME, 0);
138
	if (GetProcessSlot(speaker_id)==0)) _PutImage(x, y, 23,20, #speaker); else _PutImage(x, y, 23,20, 23*20*3+#speaker);
137
	if (GetProcessSlot(speaker_id)==0)) _PutImage(x, y, 23,20, #speaker); else _PutImage(x, y, 23,20, 23*20*3+#speaker);
139
}
138
}
140
 
139
 
141
void Translate()
140
void Translate()
142
{
141
{
143
	dword tj;
142
	dword tj;
144
	char w_native[100], w_translation[100], bukva[1];
143
	char w_native[100], w_translation[100], bukva[1];
145
	
144
	
146
	byte InfType;
145
	byte InfType;
147
	#define NATIVE_WORD 0
146
	#define NATIVE_WORD 0
148
	#define TRANSLATION 1
147
	#define TRANSLATION 1
149
	#define IGNORE      2
148
	#define IGNORE      2
150
	
149
	
151
	if (!fsize) return;
150
	if (!fsize) return;
152
	KillProcess(speaker_id);
151
	KillProcess(speaker_id);
153
		
152
		
154
	translate_result = 0;
153
	translate_result = 0;
155
	strcpy(#search_word, #edword);
154
	strcpy(#search_word, #edword);
156
	strupr(#search_word);
155
	strupr(#search_word);
157
	
156
	
158
	if (!edword)
157
	if (!edword)
159
	{
158
	{
160
		strcpy(#translate_result, #empty_word);
159
		strcpy(#translate_result, #empty_word);
161
		return;
160
		return;
162
	}
161
	}
163
 
162
 
164
	for (tj=0; tj
163
	for (tj=0; tj
165
	{   
164
	{   
166
		bukva = ESBYTE[file_buf+tj];
165
		bukva = ESBYTE[file_buf+tj];
167
		switch (bukva)
166
		switch (bukva)
168
		{
167
		{
169
			case '"':
168
			case '"':
170
				if (w_translation)
169
				if (w_translation)
171
				{
170
				{
172
					if (!strcmp(#w_native, #search_word))
171
					if (!strcmp(#w_native, #search_word))
173
					{
172
					{
174
					
173
					
175
						if (translate_result) strcat(#translate_result, ", ");
174
						if (translate_result) strcat(#translate_result, ", ");
176
						strcat(#translate_result, #w_translation);
175
						strcat(#translate_result, #w_translation);
177
					}
176
					}
178
					else
177
					else
179
						if (translate_result) return;
178
						if (translate_result) return;
180
										
179
										
181
					w_translation = w_native = 0;
180
					w_translation = w_native = 0;
182
				}
181
				}
183
				InfType = TRANSLATION;
182
				InfType = TRANSLATION;
184
				break;				
183
				break;				
185
			case 0x0a:
184
			case 0x0a:
186
				InfType = NATIVE_WORD;
185
				InfType = NATIVE_WORD;
187
				break;
186
				break;
188
			default:
187
			default:
189
				if (InfType==NATIVE_WORD)
188
				if (InfType==NATIVE_WORD)
190
				{
189
				{
191
					chrcat(#w_native, bukva);
190
					chrcat(#w_native, bukva);
192
					//if (w_native<>search_word) InfType = IGNORE; //åñëè ïåðâàÿ áóêâà íå ñîâïàäàåò èãíîðèì âñ¸ ñëîâî
191
					//if (w_native<>search_word) InfType = IGNORE; //åñëè ïåðâàÿ áóêâà íå ñîâïàäàåò èãíîðèì âñ¸ ñëîâî
193
				}
192
				}
194
				if (InfType==TRANSLATION) chrcat(#w_translation, bukva);
193
				if (InfType==TRANSLATION) chrcat(#w_translation, bukva);
195
		}
194
		}
196
	}
195
	}
197
	if (!translate_result) strcpy(#translate_result, "Word is'nt found in the dictionary"); 
196
	if (!translate_result) strcpy(#translate_result, "Word is'nt found in the dictionary"); 
198
}
197
}
199
 
198
 
200
 
199
 
201
void OpenDictionary(dword fileid)
200
void OpenDictionary(dword fileid)
202
{
201
{
-
 
202
	char open_file_path[4096];
203
	KillProcess(speaker_id);
203
	KillProcess(speaker_id);
204
	if (!dir_buf) ShowDictList();
204
	if (!dir_buf) ShowDictList();
205
	if (!dir_buf) strcpy(#cur_dict, "none");
205
	if (!dir_buf) strcpy(#cur_dict, "none");
206
	else strcpy(#cur_dict, fileid*304+dir_buf+72);
206
	else strcpy(#cur_dict, fileid*304+dir_buf+72);
207
	fsize = ESDWORD[fileid*304 + dir_buf+64];
207
	fsize = ESDWORD[fileid*304 + dir_buf+64];
208
 
208
 
209
	free(file_buf);
209
	free(file_buf);
210
	file_buf = malloc(fsize);
210
	file_buf = malloc(fsize);
-
 
211
	strcpy(#open_file_path, dict_folder);
-
 
212
	strcat(#open_file_path, "/");
-
 
213
	strcat(#open_file_path, #cur_dict);
211
	ReadFile(0, fsize, file_buf, #cur_dict);
214
	ReadFile(0, fsize, file_buf, #open_file_path);
212
	IF (EAX<>0)
215
	IF (EAX<>0)
213
	{
216
	{
214
		fsize = 0;
217
		fsize = 0;
215
		strcpy(#search_word, "Error #");
218
		strcpy(#search_word, "Error #");
216
		strcat(#search_word, itoa(EAX));
219
		strcat(#search_word, itoa(EAX));
217
		strcpy(#translate_result, #dict_not_found);
220
		strcpy(#translate_result, #dict_not_found);
218
		DrawWindowContent();
-
 
219
		return;
-
 
220
	}	
221
	}
-
 
222
	else
-
 
223
	{
221
	strcpy(#search_word, #cur_dict);
224
		strcpy(#search_word, #cur_dict);
222
	strcpy(#translate_result, #dict_opened);
225
		strcpy(#translate_result, #dict_opened);
-
 
226
	}
223
	DrawWindowContent();
227
	DrawWindowContent();	
224
}
228
}
225
 
229
 
226
 
230
 
227
void ShowDictList()
231
void ShowDictList()
228
{
232
{
229
	int j, fcount, error;
233
	int j, fcount, error;
230
	
234
	
231
	free(dir_buf);
235
	free(dir_buf);
232
	error = GetDir(#dir_buf, #fcount, #dict_folder, DIRS_ONLYREAL);
236
	error = GetDir(#dir_buf, #fcount, dict_folder, DIRS_ONLYREAL);
233
	if (!error)
237
	if (!error)
234
	{
238
	{
235
		DefineButton(0,0, Form.width,Form.height, 12+BT_HIDE+BT_NOFRAME, sc.work_button);
239
		DefineButton(0,0, Form.width,Form.height, 12+BT_HIDE+BT_NOFRAME, sc.work_button);
236
		for (j=0; j
240
		for (j=0; j
237
		{
241
		{
238
			DefineButton(edit1.left+130,j+1*20+35, 107,20, 20+j, sc.work_button);
242
			DefineButton(edit1.left+130,j+1*20+35, 107,20, 20+j, sc.work_button);
239
			WriteText(edit1.left+130+8,j+1*20+35+7,0x80,sc.work_button_text, j*304+dir_buf+72);
243
			WriteText(edit1.left+130+8,j+1*20+35+7,0x80,sc.work_button_text, j*304+dir_buf+72);
240
		}
244
		}
241
	}
245
	}
242
}
246
}
243
 
247
 
244
 
248
 
245
void DrawTranslation()
249
void DrawTranslation()
246
{
250
{
247
	int text_break=0;
251
	int text_break=0;
248
	char tt[4096]='';
252
	char tt[4096]='';
249
	
253
	
250
	int y_pos=70;
254
	int y_pos=70;
251
	char draw_buf[4096];
255
	char draw_buf[4096];
252
	strcpy(#draw_buf, #translate_result);
256
	strcpy(#draw_buf, #translate_result);
253
	
257
	
254
	DrawBar(0, y_pos, Form.width-9, Form.cheight - y_pos, 0xFFFFFF);
258
	DrawBar(0, y_pos, Form.width-9, Form.cheight - y_pos, 0xFFFFFF);
255
	strttl(#draw_buf);
259
	strttl(#draw_buf);
256
	WriteTextB(10+1, y_pos+8, 0x90, 0x800080, #search_word);
260
	WriteTextB(10+1, y_pos+8, 0x90, 0x800080, #search_word);
257
	while (draw_buf)
261
	while (draw_buf)
258
	{
262
	{
259
		text_break= Form.width/6-6;
263
		text_break= Form.width/6-6;
260
		if (text_break>strlen(#draw_buf))
264
		if (text_break>strlen(#draw_buf))
261
		{
265
		{
262
			WriteText(10, y_pos+21, 0x80, 0, #draw_buf);
266
			WriteText(10, y_pos+21, 0x80, 0, #draw_buf);
263
			break;
267
			break;
264
		}
268
		}
265
		while (draw_buf[text_break]<>' ') && (text_break>0) text_break--;
269
		while (draw_buf[text_break]<>' ') && (text_break>0) text_break--;
266
		strcpy(#tt, #draw_buf+text_break+1);
270
		strcpy(#tt, #draw_buf+text_break+1);
267
		draw_buf[text_break]=0x0;
271
		draw_buf[text_break]=0x0;
268
		WriteText(10, y_pos+21, 0x80, 0, #draw_buf);
272
		WriteText(10, y_pos+21, 0x80, 0, #draw_buf);
269
		strcpy(#draw_buf, #tt);
273
		strcpy(#draw_buf, #tt);
270
		y_pos+=12;
274
		y_pos+=12;
271
		if (y_pos+24+8>Form.cheight) break; //÷òîá íå çàëåçàëî íà íèæíèé îáîäîê
275
		if (y_pos+24+8>Form.cheight) break; //÷òîá íå çàëåçàëî íà íèæíèé îáîäîê
272
	}
276
	}
273
	SpeakerDraw(Form.cwidth-38, Form.cheight-32);
277
	SpeakerDraw(Form.cwidth-38, Form.cheight-32);
274
}
278
}
275
 
279
 
276
 
280
 
277
stop:
281
stop:
278
>
282
>
279
>
283
>