Removed interference between SaveAudio and Read performance
[sgc2.git] / Config.praat
blobaebecd02533b136173dc2c3b011542f5e54a1059
2 # SpeakGoodChinese 2.0
3
4 # Praat script handling configuration page
6 #     SpeakGoodChinese: Config.praat loads the code needed for the 
7 #     settings and the Settings page of SpeakGoodChinese.
8 #     
9 #     Copyright (C) 2007-2010  R.J.J.H. van Son and 2010 the Netherlands Cancer Institute
10 #     The SpeakGoodChinese team are:
11 #     Guangqin Chen, Zhonyan Chen, Stefan de Koning, Eveline van Hagen, 
12 #     Rob van Son, Dennis Vierkant, David Weenink
13
14 #     This program is free software; you can redistribute it and/or modify
15 #     it under the terms of the GNU General Public License as published by
16 #     the Free Software Foundation; either version 2 of the License, or
17 #     (at your option) any later version.
18
19 #     This program is distributed in the hope that it will be useful,
20 #     but WITHOUT ANY WARRANTY; without even the implied warranty of
21 #     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22 #     GNU General Public License for more details.
23
24 #     You should have received a copy of the GNU General Public License
25 #     along with this program; if not, write to the Free Software
26 #     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
27
29 ###############################################################
31 # Button Drawing Routines
33 ###############################################################
35 procedure DrawCredits .color$ .x .y .size
36         .size *= 0.71
37         .lineheight = 2*.size
38         call adjustFontSizeOnHeight 'defaultFont$' 24 '.lineheight'
39         .currentFontSize = adjustFontSizeOnHeight.newFontSize
40     demo Paint circle... {0.2,0.2,0.8} '.x' '.y' '.size'
41         demo Colour... White
42         demo Text special... '.x' centre '.y' half Times '.currentFontSize' 0 i
43         demoShow()
44         demo Colour... Black
45         call set_font_size 'defaultFontSize'    
46 endproc
48 procedure DrawDeleteList .color$ .x .y .size
49     .y += 2*.size
50     .leftX = .x - 10
51     .rightX = .x + 10
52     .botY = .y+1
53     .topY = .botY + 5
54         call set_font_size 12
55     demo Red
56     .displayWordList$ = replace_regex$(wordlistName$, "[_]", " ", 0)
58         # Adapt wide of text
59         .maxWidth = (.rightX - .leftX)
60     .currentFontSize = defaultFontSize
61         call adjustFontSizeOnWidth 'defaultFont$' '.currentFontSize' '.maxWidth' '.displayWordList$'
62         .currentFontSize = adjustFontSizeOnWidth.newFontSize
63         if adjustFontSizeOnWidth.diff > 0
64                 .rightX += adjustFontSizeOnWidth.diff/2
65                 .leftX -= adjustFontSizeOnWidth.diff/2
66         endif
67         call set_font_size '.currentFontSize'
68     demo Paint rectangle... White '.leftX' '.rightX' '.botY' '.topY'
70         demo Text... '.x' Centre '.botY' Bottom '.displayWordList$'
71     demo Black
72         demoShow()
73         call set_font_size 'defaultFontSize'
74 endproc
76 procedure DrawManual .color$ .x .y .size
77         .size *= 0.71
78         .lineheight = 2*.size
79         call adjustFontSizeOnHeight 'defaultFont$' 24 '.lineheight'
80         .currentFontSize = adjustFontSizeOnHeight.newFontSize
81     demo Paint circle... {0.2,0.2,0.8} '.x' '.y' '.size'
82         demo Colour... White
83         demo Text special... '.x' centre '.y' half Times '.currentFontSize' 0 M
84         demoShow()
85         demo Colour... Black
86         call set_font_size 'defaultFontSize'    
87 endproc
89 procedure DrawSaveAudio .color$ .x .y .size
90     .size /= 2
91         .y += .size
92     if .color$ = "White"
93         .color$ = "White"
94     elsif .color$ = "Blue"
95         .color$ = "{0.5,0.5,1}"
96     else
97         .color$ = "Blue"
98     endif
99     demo Paint circle... '.color$' '.x' '.y' '.size'
100 endproc
102 ###############################################################
104 # Obligatory button Drawing Routines
106 # These MUST be defined
108 ###############################################################
110 procedure DrawReturn .color$ .x .y .size
111     call DrawConfig '.color$' '.x' '.y' '.size'
112 endproc
114 # Set the correct button states after redrawing the window
115 procedure setConfigMainPage
116     call Draw_button 'config$' +SaveAudio 'sgc.saveAudioOn'
117 endproc
119 ###############################################################
121 # Button Processing Routines
123 ###############################################################
125 procedure processConfigShuffleLists .clickX .clickY .pressed$
126         .table$ = "Config"
127         .label$ = "ShuffleLists"
128         config.shuffleLists = not config.shuffleLists
129         .displayButton = 2*config.shuffleLists
130     call Draw_button '.table$' '.label$' '.displayButton'
131 endproc
133 procedure processConfigUseSoundExample .clickX .clickY .pressed$
134         .table$ = "Config"
135         .label$ = "UseSoundExample"
136         config.useSoundExample = not config.useSoundExample
137         .displayButton = 2*config.useSoundExample
138     call Draw_button '.table$' '.label$' '.displayButton'
139 endproc
140         
141 procedure processConfigSynthesis .tts$ .clickX .clickY .pressed$
142         .table$ = "Config"
143         .label$ = "Synthesis_'.tts$'"
144         if sgc2.synthesizer > 0 or (speakCommandFile$ <> "" and fileReadable(speakCommandFile$))
145                 if config.synthesis$ = ""
146                         config.synthesis$ = .tts$
147                         .displayButton = 2
148                 else
149                         config.synthesis$ = ""
150                         .displayButton = 0
151                 endif
152         else
153                 config.synthesis$ = "_DISABLED_"
154                 .displayButton = -1
155         endif
156     call Draw_button '.table$' '.label$' '.displayButton'
157 endproc
158         
159 procedure processConfigStrict .clickX .clickY .pressed$
160         .table$ = "Config"
161         .label$ = "Strict"
162         config.strict = not config.strict
163         if config.strict > 0
164                 .displayButton = 2
165         else
166                 .displayButton = 0
167         endif
168         # Change TTS for Strict!
169         call set_up_TTS
170     call Draw_button '.table$' '.label$' '.displayButton'
171 endproc
173 procedure processConfigDisplayPinyin .clickX .clickY .pressed$
174         .table$ = "Config"
175         .label$ = "DisplayPinyin"
176         config.displayPinyin = not config.displayPinyin
177         .displayButton = 2*config.displayPinyin
178     call Draw_button '.table$' '.label$' '.displayButton'
179 endproc
180                 
181 procedure processConfigDisplayChar .clickX .clickY .pressed$
182         .table$ = "Config"
183         .label$ = "DisplayChar"
184         config.displayChar = not config.displayChar
185         .displayButton = 2*config.displayChar
186     call Draw_button 'table$' '.label$' '.displayButton'
187 endproc
189 procedure processConfigDisplayTrans .clickX .clickY .pressed$
190         .table$ = "Config"
191         .label$ = "DisplayTrans"
192         config.displayTrans = not config.displayTrans
193         .displayButton = 2*config.displayTrans
194     call Draw_button 'table$' '.label$' '.displayButton'
195 endproc
197 procedure processConfigDisplayNumbers .clickX .clickY .pressed$
198         .table$ = "Config"
199         .label$ = "DisplayNumbers"
200         config.displayNumbers = not config.displayNumbers
201         .displayButton = 2*config.displayNumbers
202     call Draw_button 'table$' '.label$' '.displayButton'
203 endproc
205 procedure processConfigLanguage .language$ .clickX .clickY .pressed$
206         .table$ = "Config"
207         .label$ = "Language_'.language$'"
208         call processLanguageCodes '.table$' '.label$'
209 endproc
210         
211 procedure processConfigShowBackground .clickX .clickY .pressed$
212         .table$ = "Config"
213         .label$ = "ShowBackground"
214         config.showBackground = not config.showBackground
215         .displayButton = 2*config.showBackground
216     call Draw_button 'table$' '.label$' '.displayButton'
217 endproc
219 procedure processConfigInput .input$ .clickX .clickY .pressed$
220         .table$ = "Config"
221         .label$ = "Input_'.input$'"
222     call Draw_button '.table$' Input_'config.input$' 0
223         config.input$ = .input$
224     call Draw_button '.table$' Input_'config.input$' 2
225 endproc
227 procedure processConfigRegister .register .clickX .clickY .pressed$
228         .table$ = "Config"
229         .label$ = "Register_'.register'"
230         call setRegisterFromLabel '.table$' '.label$'
231 endproc
232         
233 procedure setRegisterFromLabel .table$ .label$
234     call Draw_button '.table$' Register_'config.register' 0
235     call Draw_button '.table$' '.label$' 2
236     # Someone might have to use more than 3 chars for the config.register code
237     .numChars = length(.label$) - length("Register_")
238         .registerText$ = right$(.label$, .numChars)
239         config.register = '.registerText$'
240 endproc
242 procedure processConfigDeleteWordlist .clickX .clickY .pressed$
243         .table$ = "Config"
244         .label$ = "DeleteWordlist"
246     # Do not process undeletable word lists, only those stored in the 
247     # preferencesDirectory$ can be deleted
248     if fileReadable("'sgc2wordlists$'/'wordlistName$'") or fileReadable("'sgc2wordlists$'/'wordlistName$'/wordlist.txt") or     fileReadable("'sgc2wordlists$'/'wordlistName$'/wordlist.Table")
249                 call findLabel '.table$' !'.label$'
250                 if findLabel.row > 0
251                 select Table '.table$'
252                 .alertText$ = Get value... 'findLabel.row' Text
253                 .confirmKey$ = Get value... 'findLabel.row' Key
254                 .popupText$ = Get value... 'findLabel.row' Helptext
255         else
256             exit Cannot find delete directive: '.table$' !'.label$'
257         endif
258         call write_text_popup 'defaultFont$' 14 '.popupText$'
259         call Draw_button '.table$' '.label$' 2
260         alertText$ = .alertText$
261         call Draw_button '.table$' '.label$' 3
262         alertText$ = ""
263         
264                 # Wait for confirmation
265                 demoWaitForInput()
266         if demoInput(.confirmKey$)
267                 .deleteWordListDir$ = wordlistName$
268                 call load_word_list "'localWordlistDir$'" 1
269                 call removeWordlist '.deleteWordListDir$'
270                         call load_word_list "'localWordlistDir$'" 0
271         endif
272                 call Draw_button '.table$' '.label$' 0
273                 call Draw_config_page
274     endif
275 endproc
277 wordlistTag$ = "Wordlist name"        
278 procedure processConfigInstallWordlist .clickX .clickY .pressed$
279         .table$ = "Config"
280         .label$ = "InstallWordlist"
281     call Draw_button '.table$' '.label$' 1
282         if windows
283                 # Do not use the automatic sgc list option, ask for a wordlist NAME
284                 # Get help text
285                 call findLabel '.table$' '.label$'
286                 .row = findLabel.row
287                 select Table '.table$'
288                 .openDialogue$ = Get value... '.row' Helptext
289                 call convert_praat_to_latin1 '.openDialogue$'
290                 .openDialogue$ = convert_praat_to_latin1.text$
291                 .wordlistButton$ = replace$(wordlistTag$, " ", "_", 0)
292                 .wordlistButton$ = replace_regex$(.wordlistButton$, "^.", "\l&", 0)
293                 beginPause(.openDialogue$)
294                         sentence (wordlistTag$, "")
295                 clicked = endPause ("Cancel", "Open", 2, 1)
296                 .wordlist_Name$ = ""
297                 if clicked = 2
298                         .wordlist_Name$ = '.wordlistButton$'$
299                 endif
300                 call install_wordlists_by_name '.wordlist_Name$'
301         else
302         call sgc2wordlist 'homeDirectory$'
303         call sgc2wordlist 'homeDirectory$'/Downloads
304         call sgc2wordlist 'homeDirectory$'/Documents
305         call sgc2wordlist 'homeDirectory$'/My Documents
306         call sgc2wordlist 'homeDirectory$'/My Documents/Downloads
307         call sgc2wordlist 'homeDirectory$'/Desktop
308         call sgc2wordlist 'preferencesAppDir$'
309         endif
310         call load_word_list "'localWordlistDir$'" 0
311     call Draw_button '.table$' '.label$' 0
312         call Draw_config_page
313 endproc
315 procedure processConfigOpenWordlist .clickX .clickY .pressed$
316         .table$ = "Config"
317         .label$ = "OpenWordlist"
318     call Draw_button '.table$' '.label$' 1
320         # Get help text
321         call findLabel '.table$' '.label$'
322         .row = findLabel.row
323         select Table '.table$'
324         .openDialogue$ = Get value... '.row' Helptext
325         call convert_praat_to_latin1 '.openDialogue$'
326         .openDialogue$ = convert_praat_to_latin1.text$
328         .wordlist_Name$ = chooseReadFile$ (.openDialogue$)
329         call install_wordlists_by_name '.wordlist_Name$'
330         call load_word_list "'localWordlistDir$'" 0
331     call Draw_button '.table$' '.label$' 0
332         call Draw_config_page
333 endproc
335 # Select the words to practise. This is quite a complex piece of code
336 procedure processConfigSelectWords .clickX .clickY .pressed$
337         .table$ = "Config"
338         .label$ = "SelectWords"
339     call Draw_button '.table$' '.label$' 1
341         # Get help text
342         call findLabel '.table$' '.label$'
343         .row = findLabel.row
344         select Table '.table$'
345         .helpText$ = Get value... '.row' Helptext
346         call convert_praat_to_latin1 '.helpText$'
347         .helpText$ = convert_praat_to_latin1.text$
348    
349     # Implement Cancel
350     select Table 'wordlist$'
351     .tmpOriginalWordlist = Copy: "Original_'wordlist$'"
353     
354     # Set current word
355         select Table 'wordlist$'
356         te.numberOfWords = Get number of rows
357     .currentWord = te.currentWord
358     if .currentWord <= 0 or .currentWord > te.numberOfWords or config.shuffleLists
359                 .currentWord = 1
360         endif
361     
362         # The texts
363         call get_feedback_text 'config.language$' Part
364         call convert_praat_to_latin1 'get_feedback_text.text$'
365         .partText$ = convert_praat_to_latin1.text$
366         call get_feedback_text 'config.language$' Tones
367         call convert_praat_to_latin1 'get_feedback_text.text$'
368         .toneText$ = convert_praat_to_latin1.text$
369         call get_feedback_text 'config.language$' Cancel
370         call convert_praat_to_latin1 'get_feedback_text.text$'
371         .cancelText$ = convert_praat_to_latin1.text$
372         call get_feedback_text 'config.language$' Clear
373         call convert_praat_to_latin1 'get_feedback_text.text$'
374         .clearText$ = convert_praat_to_latin1.text$
375         call get_feedback_text 'config.language$' All
376         call convert_praat_to_latin1 'get_feedback_text.text$'
377         .allText$ = convert_praat_to_latin1.text$
378         call get_feedback_text 'config.language$' Previous
379         call convert_praat_to_latin1 'get_feedback_text.text$'
380         .prevWord$ = convert_praat_to_latin1.text$
381         call get_feedback_text 'config.language$' Next
382         call convert_praat_to_latin1 'get_feedback_text.text$'
383         .nextWord$ = convert_praat_to_latin1.text$
384         call get_feedback_text 'config.language$' Continue
385         call convert_praat_to_latin1 'get_feedback_text.text$'
386         .continueText$ = convert_praat_to_latin1.text$
387         call get_feedback_text 'config.language$' Show
388         call convert_praat_to_latin1 'get_feedback_text.text$'
389         .showText$ = convert_praat_to_latin1.text$
391         .pinyinText$ = "Pinyin"
392         .characterText$ = "Character"
393         
394         # Get lesson names
395         select Table 'wordlist$'
396         .lessonCol = Get column index: "Lesson"
397         .lessonList$ = tab$
398         .numLessons = 0
399         # All shown keeps track whether all words are shown
400         # If so, selecting a lesson is preceded by a Clear All
401         .allShown = 0
402         # Sort words for consistent selection interface
403         if config.shuffleLists
404                 # Allow subdivision in lessons
405                 if .lessonCol > 0
406                         Sort rows... Lesson Pinyin
407                 else
408                         Sort rows... Pinyin
409                 endif
410         endif           
411         if .lessonCol > 0
412                 for .i to te.numberOfWords
413                         .currentLesson$ = Get value: .i, "Lesson"
414                         if .currentLesson$ <> "" and .currentLesson$ <> "-" and index_regex(.lessonList$, "\t'.currentLesson$'\t") <= 0
415                                 .lessonList$ = .lessonList$ + .currentLesson$ + tab$
416                                 .numLessons += 1
417                                 .lessonName$['.numLessons'] = .currentLesson$
418                         endif
419                         .shown$ = Get value: .i, "Show"
420                         if .shown$ = "-"
421                                 .allShown = 0
422                         endif
423                 endfor
424         endif
425         
426         clicked = -1
427         .numWordsPerScreen = 15
428         while clicked <> 6 and clicked <> 1
429                 .lessonSelected = -1
430                 .toneSelected = -1
431                 .firstShown = -1
432                 
433                 select Table 'wordlist$'
434                 .lessonCol = Get column index: "Lesson"
435                 # Sort words for consistent selection interface
436         if config.shuffleLists
437                         # Allow subdivision in lessons
438                         if .lessonCol > 0
439                                 Sort rows... Lesson Pinyin
440                         else
441                                 Sort rows... Pinyin
442                         endif
443         endif           
444                 .max = .numWordsPerScreen - 1
445                 if .currentWord + .max > te.numberOfWords
446                         .max = te.numberOfWords - .currentWord
447                 endif
448                 for .i from 0 to .numWordsPerScreen - 1
449                         if .i <= .max
450                                 .pinyin$[.i] = Get value: .currentWord+.i, "Pinyin"
451                                 .character$[.i] = Get value: .currentWord+.i, "Character"
452                                 .lessonNum$[.i] = ""
453                                 if .lessonCol > 0
454                                         .lessonNum$[.i] = Get value: .currentWord+.i, "Lesson"
455                                         .lessonNum$[.i] = " : " + .lessonNum$[.i]
456                                 endif
457                                 .showText$[.i] = .pinyin$['.i']
458                                 if .character$['.i'] <> "-"
459                                         .showText$[.i] = .pinyin$['.i']+" ("+.character$['.i']+.lessonNum$['.i']+")"
460                                 elsif .lessonNum$['.i'] <> ""
461                                         .showText$[.i] = .pinyin$['.i']+" ( -"+.lessonNum$['.i']+")"
462                                 endif
463                                 .showValueText$[.i] = Get value: .currentWord+.i, "Show"
464                                 if .showValueText$[.i] = "-"
465                                         .showValue[.i] = 0
466                                 else
467                                         .showValue[.i] = 1
468                                 endif
469                                 .showVariable$[.i] = replace_regex$(.pinyin$[.i], ".+", "\l&", 0)
470                                 .showVariable$[.i] = replace_regex$(.showVariable$[.i], " ", "_", 0)
471                                 .tmp$ = .showVariable$['.i']
472                                 '.tmp$' = .showValue[.i]
473                         else
474                                 .showText$[.i] = "-"
475                                 .showValue[.i] = 0
476                         endif
477                 endfor
479                 # The user text input window (beginPause .... endPause)
480                 beginPause(.helpText$)
481                         boolean (.showText$[0], .showValue[0])
482                         boolean (.showText$[1], .showValue[1])
483                         boolean (.showText$[2], .showValue[2])
484                         boolean (.showText$[3], .showValue[3])
485                         boolean (.showText$[4], .showValue[4])
486                         boolean (.showText$[5], .showValue[5])
487                         boolean (.showText$[6], .showValue[6])
488                         boolean (.showText$[7], .showValue[7])
489                         boolean (.showText$[8], .showValue[8])
490                         boolean (.showText$[9], .showValue[9])
491                         boolean (.showText$[10], .showValue[10])
492                         boolean (.showText$[11], .showValue[11])
493                         boolean (.showText$[12], .showValue[12])
494                         boolean (.showText$[13], .showValue[13])
495                         boolean (.showText$[14], .showValue[14])
496                         if .numLessons > 0
497                                 optionMenu: .partText$, 1
498                                         option: "---"
499                                         .j = 0
500                                         for .j to .numLessons
501                                                 option: .lessonName$['.j']
502                                         endfor
503                         endif
504                         optionMenu: .toneText$, 1
505                                 option: "---"
506                                 option: "0"
507                                 option: "1"
508                                 option: "2"
509                                 option: "3"
510                                 option: "4"
511                 clicked = endPause ("'.cancelText$'", "'.clearText$'", "'.allText$'", "'.prevWord$'", "'.nextWord$'", "'.continueText$'", 6, 1)
512                 
513                 if clicked = 2
514                         for .i to te.numberOfWords
515                                 Set string value: .i, "Show", "-"
516                         endfor
517                         .allShown = 0
518                 elsif clicked = 3
519                         for .i to te.numberOfWords
520                                 Set string value: .i, "Show", "+"
521                         endfor
522                         .allShown = 1
523                 elsif clicked != 1
524                         # Get selected Part BEFORE we do anything else
525                         if .numLessons > 0
526                                 .tmp$ = replace_regex$(.partText$, "^(.)", "\l\1", 0)
527                                 .lessonSelected = '.tmp$' - 1
528                         endif
529                         if .lessonSelected > 0
530                                 .allShown = 1
531                                 .firstShown = -1
532                                 select Table 'wordlist$'
533                                 for .i to te.numberOfWords
534                                         # Keep track of whether all are shown
535                                         .shown$ = Get value: .i, "Show"
536                                         if .shown$ = "-"
537                                                 .allShown = 0
538                                         endif
539                                 endfor
540                                 for .i to te.numberOfWords
541                                         # Lessons
542                                         .currentLesson$ = Get value: .i, "Lesson"
543                                         if .currentLesson$ = .lessonName$['.lessonSelected']
544                                                 Set string value: .i, "Show", "+"
545                                         elsif .allShown = 1
546                                                 Set string value: .i, "Show", "-"
547                                         endif
548                                 endfor
549                                 for .i to te.numberOfWords
550                                         # Keep track of whether all are shown
551                                         .shown$ = Get value: .i, "Show"
552                                         if .firstShown <=0 and .shown$ <> "-"
553                                                 .firstShown = .i
554                                         endif
555                                 endfor
556                         else
557                                 for .i from 0 to .max
558                                         .tmp$ = .showVariable$['.i']
559                                         .showValue['.i'] = '.tmp$'
560                                         .showWord$['.i'] = "-"
561                                         if .showValue['.i'] <> 0
562                                                 .showWord$['.i'] = "+"
563                                         endif
564                                         Set string value: .currentWord+.i, "Show", .showWord$['.i']
565                                 endfor
566                         endif
567                         .tmp$ = replace_regex$(.toneText$, "^(.)", "\l\1", 0)
568                         .toneSelected = '.tmp$' - 2
569                         if .toneSelected >= 0
570                                 select Table 'wordlist$'
571                                 for .i to te.numberOfWords
572                                         .currentPinyin$ = Get value: .i, "Pinyin"
573                                         .tmp$ = Get value: .i, "Show"
574                                         if .tmp$ <> "-" and index(.currentPinyin$, "'.toneSelected'") > 0
575                                                 Set string value: .i, "Show", "+"
576                                         else
577                                                 Set string value: .i, "Show", "-"
578                                                 .allShown = 0
579                                         endif
580                                 endfor
581                         endif
582                         
583                         if clicked = 4
584                                 if .firstShown > 0
585                                         .currentWord = (.firstShown div .numWordsPerScreen) * .numWordsPerScreen + 1
586                                 elsif .toneSelected < 0
587                                         .currentWord -= .numWordsPerScreen
588                                 endif
589                                 if .currentWord <= 0
590                                         .currentWord = (te.numberOfWords div .numWordsPerScreen) * .numWordsPerScreen + 1
591                                 endif
592                         elsif clicked = 5
593                                 if .firstShown > 0
594                                         .currentWord = (.firstShown div .numWordsPerScreen) * .numWordsPerScreen + 1
595                                 elsif .toneSelected < 0
596                                         .currentWord += .numWordsPerScreen
597                                 endif
598                                 if .currentWord > te.numberOfWords
599                                         .currentWord = 1
600                                 endif
601                         endif
602                 endif
603                 # Reset and go to the first selected word (can shuffle list)
604                 if clicked = 6
605                         te.currentWord = -1
606                         call next_word
607                 endif
608         endwhile
609         
610     # Implement Cancel
611     if clicked = 1
612                 select Table 'wordlist$'
613                 Remove
614                 select .tmpOriginalWordlist
615                 Copy: wordlist$
616         endif
617         select .tmpOriginalWordlist
618         Remove
619     call Draw_button '.table$' '.label$' 0
620 endproc
622 procedure processConfigPerfSummary .clickX .clickY .pressed$
623         .table$ = "Config"
624         .label$ = "PerfSummary"
625         
626         call testLoadTable SummaryToneEvaluation
627         if testLoadTable.table > 0
628                 call Draw_button '.table$' '.label$' 1
629                 call loadTable SummaryToneEvaluation
630                 call write_tabbed_table SummaryToneEvaluation Evaluation_'config.language$'
631                 demoWaitForInput()
632                 select Table SummaryToneEvaluation
633                 Remove
635                 call Draw_button '.table$' '.label$' 0
636                 call Draw_config_page
637         endif
638 endproc
640 # Wipe current performance table and initialize a new one
641 procedure processConfigClearSummary .clickX .clickY .pressed$
642         .table$ = "Config"
643         .label$ = "ClearSummary"
644         
645     call Draw_button '.table$' '.label$' 1
646         
647         select Table '.table$'
648         call findLabel '.table$' !'.label$'
649         if findLabel.row > 0
650                 .alertText$ = Get value... 'findLabel.row' Text
651                 .confirmKey$ = Get value... 'findLabel.row' Key
652                 .popupText$ = Get value... 'findLabel.row' Helptext
653                 
654         call write_text_popup 'defaultFont$' 14 '.popupText$'
655         call Draw_button '.table$' '.label$' 2
656         alertText$ = .alertText$
657         call Draw_button '.table$' '.label$' 3
658         alertText$ = ""
659         
660                 # Wait for confirmation
661                 demoWaitForInput()
662         if demoInput(.confirmKey$)
663                         sgc.savePerf$ = ""
664                         call initialize_toneevaluation_tables
665                 endif
666         endif
667         
668     call Draw_button '.table$' '.label$' 0
669         call Draw_config_page
670         
671 endproc
673 procedure processConfigListPerf .clickX .clickY .pressed$
674         .table$ = "Config"
675         .label$ = "ListPerf"
676     call Draw_button '.table$' '.label$' 1
677         
678         select Table 'initialiseSGC2.toneevaluation_table$'
679         View & Edit
680         demoWaitForInput()
681         
682     call Draw_button '.table$' '.label$' 0
683         call Draw_config_page
684 endproc
686 procedure processConfigOpenPerf .clickX .clickY .pressed$
687         .table$ = "Config"
688         .label$ = "OpenPerf"
689     call Draw_button '.table$' '.label$' 1
690         
691         # Get help text
692         call findLabel '.table$' !'.label$'
693         .row = findLabel.row
694         select Table '.table$'
695         .openDialogue$ = Get value... '.row' Helptext
696         call convert_praat_to_latin1 '.openDialogue$'
697         .openDialogue$ = convert_praat_to_latin1.text$
698         .defaultName$= "Performance.tsv"
699         if sgc.savePerf$ <> ""
700                 .defaultName$= sgc.savePerf$
701         endif
702         .performance_Name$ = chooseReadFile$ (.openDialogue$)
703         if .performance_Name$ <> "" and fileReadable(.performance_Name$)
704                 sgc.savePerf$ = .performance_Name$
705                 call initialize_toneevaluation_tables
706                 
707                 # Set SaveAudio directory if it is not currently "in use"
708                 if not sgc.saveAudioOn
709                         sgc.saveAudio$ = replace_regex$(sgc.savePerf$, "/[^/]+$", "", 0)
710                 endif
711         endif
712         
713     call Draw_button '.table$' '.label$' 0
714         call Draw_config_page
715 endproc
717 procedure processConfigSavePerf .clickX .clickY .pressed$
718         .table$ = "Config"
719         .label$ = "SavePerf"
720     call Draw_button '.table$' '.label$' 1
721         
722         # Get help text
723         call findLabel '.table$' '.label$'
724         .row = findLabel.row
725         select Table '.table$'
726         .openDialogue$ = Get value... '.row' Helptext
727         call convert_praat_to_latin1 '.openDialogue$'
728         .openDialogue$ = convert_praat_to_latin1.text$
729         .defaultName$= "Performance.tsv"
730         if sgc.savePerf$ <> ""
731                 .defaultName$= sgc.savePerf$
732         endif
733         .performance_Name$ = chooseWriteFile$ (.openDialogue$, .defaultName$)
734         if .performance_Name$ <> ""
735                 select Table 'initialiseSGC2.toneevaluation_table$'
736                 Write to table file... '.performance_Name$'
737                 sgc.savePerf$ = .performance_Name$
738         endif
739         
740     call Draw_button '.table$' '.label$' 0
741         call Draw_config_page
742 endproc
744 procedure processConfigManual .clickX .clickY .pressed$
745         .table$ = "Config"
746         .label$ = "Manual"
747         call Draw_button '.table$' '.label$' 1
748         if fileReadable("ManPages/SpeakGoodChinese_2.man")
749                 Read from file... ManPages/SpeakGoodChinese_2.man
750         else
751                 Go to manual page... SpeakGoodChinese 2
752         endif
753         # Wait until the manual is put to the background
754         demoWaitForInput()
755     call Draw_button '.table$' '.label$' 0
756     demo Erase all
757     call Draw_config_page
758 endproc
760 procedure processConfigSaveAudio .clickX .clickY .pressed$
761         .table$ = "Config"
762         .label$ = "SaveAudio"
763     call Draw_button '.table$' '.label$' 1
764         
765         if sgc.saveAudioOn = 0
766                 # Get help text
767                 call findLabel '.table$' '.label$'
768                 .row = findLabel.row
769                 select Table '.table$'
770                 .openDialogue$ = Get value... '.row' Helptext
771                 call convert_praat_to_latin1 '.openDialogue$'
772                 .openDialogue$ = convert_praat_to_latin1.text$
773                 .defaultName$= ""
774                 sgc.saveAudio$ = chooseDirectory$ (.openDialogue$)
775                 if sgc.saveAudio$ <> ""
776                         sgc.saveAudioOn = 1
777                 endif
778         else
779                 sgc.saveAudioOn = 0
780         endif
781         
782     call Draw_button '.table$' '.label$' 'sgc.saveAudioOn'
783         call Draw_config_page
784 endproc
786 ###############################################################
788 # Obligatory button Processing Routines
790 # These MUST be defined
792 ###############################################################
794 procedure processConfigReturn .clickX .clickY .pressed$
795         .table$ = "Config"
796         .label$ = "Return"
797         call Draw_button '.table$' '.label$' 1
798         call write_preferences ""
799 endproc
801 procedure processConfigRefresh .clickX .clickY .pressed$
802         .table$ = "Config"
803         .label$ = "Refresh"
804         call Draw_config_page
805 endproc
807 procedure processConfigCredits .clickX .clickY .pressed$
808         .table$ = "Config"
809         .label$ = "Credits"
810         call Draw_button '.table$' '.label$' 1
811         call write_text_table Credits_'config.language$'
812         demoWaitForInput()
813     call Draw_button '.table$' '.label$' 0
814     demo Erase all
815     call Draw_config_page
816 endproc
818 procedure processConfigHelp .clickX .clickY .pressed$
819         .table$ = "Config"
820         .label$ = "Help"
821         call help_loop  '.table$' Draw_config_page
822 endproc
824 ###############################################################
826 # Miscelaneous supporting code
828 ###############################################################
829 procedure install_wordlists_by_name .wordlist_Name$
830         if .wordlist_Name$ <> ""
831                 if index(.wordlist_Name$, "wordlist.")
832                         .wordlist_Name$ = replace_regex$(.wordlist_Name$, "[/\\]wordlist\.([^/\\]+)$", "", 0)
833                 elsif index_regex(.wordlist_Name$, "(?i\.(wav|flac|iaf[fc]|mp3))")
834                         .wordlist_Name$ = replace_regex$(.wordlist_Name$, "[/\\][^/\\]+$", "", 0)
835                 endif
836                 if index_regex(.wordlist_Name$, "[/\\]")
837                         .sourceDir$ = left$(.wordlist_Name$, rindex_regex(.wordlist_Name$, "[/\\]") -1)
838                         .file$ = right$(.wordlist_Name$, length(.wordlist_Name$) - rindex_regex(.wordlist_Name$, "[/\\]"))
839                         call readWordlist "'.sourceDir$'" '.file$'
840                 else
841                         .start = 1
842                         if index(.wordlist_Name$, ".")
843                                 .start = 4
844                         endif
845                         .extension1$ = ".sgc"
846                         .extension2$ = ".Table"
847                         .extension3$ = ".txt"
848                         .extension4$ = ".tsv"
849                         .extension5$ = ""
850                         for .e from .start to 5
851                                 .currentExtension$ = .extension'.e'$
852                         call readWordlist "'homeDirectory$'" '.wordlist_Name$''.currentExtension$'
853                         call readWordlist "'homeDirectory$'/Downloads" '.wordlist_Name$''.currentExtension$'
854                         call readWordlist "'homeDirectory$'/Documents" '.wordlist_Name$''.currentExtension$'
855                         call readWordlist "'homeDirectory$'/My Documents/Downloads" '.wordlist_Name$''.currentExtension$'
856                         call readWordlist "'homeDirectory$'/My Documents" '.wordlist_Name$''.currentExtension$'
857                         call readWordlist "'homeDirectory$'/Desktop" '.wordlist_Name$''.currentExtension$'
858                         call readWordlist "'preferencesAppDir$'" '.wordlist_Name$''.currentExtension$'
859                         endfor
860                 endif
861         endif
862 endproc
864 # Word lists: It is a VERY good idea to make sure that word-lists
865 # have unique names.
866 procedure load_word_list .localdir$ .relnumber
867         call clean_up_sound
868     
869     # Remove old word list
870     if wordlist$ <> ""
871                 select Table 'wordlist$'
872                 Remove
873                 call wipeArea 'wipeWordlistArea$'
874                 wordlist$ = ""
875     endif
876     
877         # Create Table that will recieve the wordlists and directories
878         Create Table with column names... AllWordLists 0 Name Directory
879         .te.currentWordlistRow = 0
880         
881         # First the global word lists
882         if fileReadable(globalwordlists$) or fileReadable("'globalwordlists$'/directory.txt")
883         Create Strings as directory list... WordList 'globalwordlists$'
884         .numLists = Get number of strings
885         for .i to .numLists
886             select Strings WordList
887             .currentName$ = Get string... '.i'
888                         if .currentName$ <> "directory.txt"
889                                 select Table AllWordLists
890                                 .listExist = Search column: "Name", .currentName$
891                                 if not .listExist
892                                         Append row
893                                         .te.currentWordlistRow = Get number of rows
894                                         Set string value... '.te.currentWordlistRow' Name '.currentName$'
895                                 .currentDirectory$ = globalwordlists$+"/"+.currentName$
896                                         Set string value... '.te.currentWordlistRow' Directory '.currentDirectory$'
897                                 endif
898                         endif
899         endfor
900         select Strings WordList
901         Remove
902         endif
903         
904         # Now the preferences word lists
905         if fileReadable(sgc2wordlists$) or fileReadable("'sgc2wordlists$'/directory.txt")
906         Create Strings as directory list... WordList 'sgc2wordlists$'
907         .numLists = Get number of strings
908         for .i to .numLists
909                         select Strings WordList
910             .currentName$ = Get string... '.i'
911                         if .currentName$ <> "directory.txt"
912                                 select Table AllWordLists
913                                 .listExist = Search column: "Name", .currentName$
914                                 if not .listExist
915                                         Append row
916                                         .te.currentWordlistRow = Get number of rows
917                                         Set string value... '.te.currentWordlistRow' Name '.currentName$'
918                                 .currentDirectory$ = sgc2wordlists$+"/"+.currentName$
919                                         Set string value... '.te.currentWordlistRow' Directory '.currentDirectory$'
920                                 endif
921                         endif
922         endfor
923         select Strings WordList
924         Remove
925         endif
927         # End with the word lists in the distribution
928         call CreateCreateWordlists
929         select Table CreateWordlists
930     .numLists = Get number of rows
931         for .i to .numLists
932                 select Table CreateWordlists
933                 .currentName$ = Get value... '.i' Name
934                 if .currentName$ <> "directory.txt"
935                         select Table AllWordLists
936                         .listExist = Search column: "Name", .currentName$
937                         if not .listExist
938                                 .procedureName$ = replace_regex$(.currentName$, "[^\w\-\.]", "_", 0)
939                                 select Table AllWordLists
940                                 Append row
941                                 .te.currentWordlistRow = Get number of rows
942                                 Set string value... '.te.currentWordlistRow' Name '.currentName$'
943                                 .currentDirectory$ = "*call Create'.procedureName$'"
944                                 Set string value... '.te.currentWordlistRow' Directory '.currentDirectory$'
945                         endif
946                 endif
947         endfor
948         select Table CreateWordlists
949         Remove
950         
951         # Finally, the local word lists
952         if fileReadable(.localdir$) or fileReadable("'.localdir$'/directory.txt")
953         Create Strings as directory list... WordList '.localdir$'
954         .numLists = Get number of strings
955         for .i to .numLists
956             select Strings WordList
957             .currentName$ = Get string... '.i'
958                         if .currentName$ <> "directory.txt"
959                                 select Table AllWordLists
960                                 .listExist = Search column: "Name", .currentName$
961                                 if not .listExist
962                                         Append row
963                                         .te.currentWordlistRow = Get number of rows
964                                         Set string value... '.te.currentWordlistRow' Name '.currentName$'
965                                 .currentDirectory$ = .localdir$+"/"+.currentName$
966                                         Set string value... '.te.currentWordlistRow' Directory '.currentDirectory$'
967                                 endif
968                         endif
969         endfor
970         select Strings WordList
971         Remove
972     endif
974         # Get the position of the current word list
975         select Table AllWordLists
976         .currentNumber = 1
977     .numLists = Get number of rows
979         if wordlistName$ <> ""
980                 select Table AllWordLists
981                 .currentNumber = Search column... Name 'wordlistName$'
982         endif
984     wordlistNum = .currentNumber + .relnumber
985     if wordlistNum > .numLists
986         wordlistNum = 1
987         elsif wordlistNum < 1 and .numLists > 0
988                 wordlistNum = .numLists
989     endif
990     select Table AllWordLists
991     wordlistName$ = Get value... 'wordlistNum' Name
992         .dirWordlistName$ = Get value... 'wordlistNum' Directory
993     .dirString$ = replace_regex$(.dirWordlistName$, "[ ]", "&", 0)
994         
995         # Read in full tables
996         if fileReadable("'.dirString$'/wordlist.Table")
997                 call readTable '.dirString$'/wordlist.Table
998         if readTable.tableID > 0
999                         Rename... 'wordlistName$'
1000                         # Praat wil change the name if it feels like it
1001                         wordlist$ = selected$("Table")
1002                         # Add a Sound column if it is not present
1003                         .soundIndex = Get column index: "Sound"
1004                         if .soundIndex <= 0
1005                                 Append column: "Sound"
1006                         endif
1007                 else
1008                         .numLists = 0
1009                         goto EMERGENCYEXIT
1010                 endif
1011         # Handle (legacy) simple word lists
1012         elsif fileReadable("'.dirString$'/wordlist.txt")
1013                 Create Table with column names... "'wordlistName$'" 0 Pinyin Character Sound Translation
1014         wordlist$ = selected$("Table")
1015                 Read Strings from raw text file... '.dirString$'/wordlist.txt
1016                 Rename... RawWordList
1017                 .numWordStrings = Get number of strings
1018                 for .i to .numWordStrings
1019                         select Strings RawWordList
1020                         .currentFile$ = "-"
1021                         .currentChar$ = "-"
1022                         .currentTrans$ = "-"
1023                         .currentLine$ = Get string... '.i'
1024                         # Remove leading whitespace
1025                         .currentLine$ = replace_regex$(.currentLine$, "^[ \t]+", "", 0)
1026                         .separatorIndex = index_regex(.currentLine$, "[ \t;\-]")
1027                         if .separatorIndex <= 0
1028                                 .separatorIndex = length(.currentLine$) + 1
1029                         endif
1030                         .currentPinyin$ = left$(.currentLine$, .separatorIndex-1)
1031                         .currentLine$ = right$(.currentLine$, length(.currentLine$) - .separatorIndex)
1032                         # There is more on the line, but we do not know what
1033                         if length(.currentLine$) > 0
1034                                 while length(.currentLine$) > 0
1035                                         .separatorIndex = index_regex(.currentLine$, "[\t;]")
1036                                         if .separatorIndex <= 0
1037                                                 .separatorIndex = length(.currentLine$)+1
1038                                         endif
1039                                         .currentItem$ = left$(.currentLine$, .separatorIndex-1)
1040                                         .currentLine$ = right$(.currentLine$, length(.currentLine$) - .separatorIndex )
1041                                         if index_regex(.currentItem$, ".(spx|flac|wav|mp3)")
1042                                                 # Audio
1043                                                 .currentFile$ = .currentItem$
1044                                         elsif index_regex(.currentItem$, "[a-zA-Z0-9]") > 0
1045                                                 # Translation
1046                                                 .currentTrans$ = .currentItem$
1047                                         elsif index_regex(.currentItem$, "[^ \t\r\l]") > 0 && index_regex(.currentItem$, "[a-zA-Z0-9\-]") <= 0
1048                                                 # Characters
1049                                                 .currentChar$ = .currentItem$
1050                                         endif
1051                                 endwhile
1052                         endif
1053                         if .currentFile$ = "-"
1054                                 if fileReadable("'.dirString$'/'.currentPinyin$'.spx")
1055                                         .currentFile$ = .currentPinyin$+".spx"
1056                                 elsif fileReadable("'.dirString$'/'.currentPinyin$'.flac")
1057                                         .currentFile$ = .currentPinyin$+".flac"
1058                                 elsif fileReadable("'.dirString$'/'.currentPinyin$'.wav")
1059                                         .currentFile$ = .currentPinyin$+".wav"
1060                                 elsif fileReadable("'.dirString$'/'.currentPinyin$'.mp3")
1061                                         .currentFile$ = .currentPinyin$+".mp3"
1062                                 endif
1063                         endif
1064                         select Table 'wordlist$'
1065                         Append row
1066                         Set string value... '.i' Pinyin '.currentPinyin$'
1067                         Set string value... '.i' Sound '.currentFile$'
1068                         Set string value... '.i' Character '.currentChar$'
1069                         Set string value... '.i' Translation '.currentTrans$'
1070                 endfor
1071                 select Strings RawWordList
1072                 Remove
1073                 
1074                 select Table 'wordlist$'
1075         elsif fileReadable(.dirString$) or fileReadable("'.dirString$'/directory.txt")
1076                 Create Table with column names... "'wordlistName$'" 0 Pinyin Sound
1077         wordlist$ = selected$("Table")
1078                 Create Strings as file list... RawWordList '.dirString$'/*
1079                 .numWordStrings = Get number of strings
1080                 .i = 0
1081                 for .j to .numWordStrings
1082                         select Strings RawWordList
1083                         .currentLine$ = Get string... '.j'
1084                         .currentFile$ = extractWord$(.currentLine$, "")
1085                         if index_regex(.currentFile$, "\.(spx|flac|wav|mp3)")
1086                                 .currentPinyin$ = left$(.currentFile$, index(.currentFile$, ".")-1)
1087                                 select Table 'wordlist$'
1088                                 Append row
1089                                 .i += 1
1090                                 Set string value... '.i' Pinyin '.currentPinyin$'
1091                                 Set string value... '.i' Sound '.currentFile$'
1092                         endif
1093                 endfor
1094                 select Strings RawWordList
1095                 Remove
1096                 
1097                 select Table 'wordlist$'
1098         elsif startsWith(.dirString$, "*call ")
1099                 .callProcedure$ = right$(.dirString$, length(.dirString$)-1)
1100                 '.callProcedure$'
1101                 wordlist$ = selected$("Table")
1102         else
1103                 # Nothing, get out
1104                 .numLists = 0
1105                 goto EMERGENCYEXIT              
1106         endif
1108         # Can this wordlist be deleted?
1109         if fileReadable("'sgc2wordlists$'/'wordlistName$'") or fileReadable("'sgc2wordlists$'/'wordlistName$'/wordlist.txt") or fileReadable("'sgc2wordlists$'/'wordlistName$'/wordlist.Table")
1110                 config.deleteWordlist = 0
1111         else
1112                 config.deleteWordlist = -1              
1113         endif
1115         # Check first column name and add Character, Translation and Show columns if missing
1116         if wordlist$ <> ""
1117                 select Table 'wordlist$'
1118                 # HAck to correct odd behavior of tables with unicode characters
1119                 .firstColumn$ = Get column label: 1
1120                 if index_regex(.firstColumn$, "^[^!-~]") > 0
1121                         .firstColumn$ = replace_regex$(.firstColumn$, "^[^!-~]", "", 0)
1122                         Set column label (index): 1, .firstColumn$
1123                 endif
1124                 
1125         te.numberOfWords = Get number of rows
1126                 .characterColumn = Get column index... Character
1127                 if not .characterColumn
1128                         Append column... Character
1129                         for .i to te.numberOfWords
1130                                 Set string value... '.i' Character -
1131                         endfor
1132                 endif
1133                 .translationColumn = Get column index... Translation
1134                 if not .translationColumn
1135                         Append column... Translation
1136                         for .i to te.numberOfWords
1137                                 Set string value... '.i' Translation -
1138                         endfor
1139                 endif
1140                 .showColumn = Get column index... Show
1141                 if not .showColumn
1142                         Append column... Show
1143                         for .i to te.numberOfWords
1144                                 Set string value... '.i' Show +
1145                         endfor
1146                 endif
1147         endif
1148         
1149         # Remove all rows without Pinyin
1150         .numRows = Get number of rows
1151         for i to .numRows
1152                 .rowNum = .numRows - i + 1
1153                 .pinyinValue$ = Get value... '.rowNum' Pinyin
1154                 if not index_regex(.pinyinValue$, "[a-zA-Z0-9]")
1155                         Remove row... '.rowNum'
1156                 endif
1157         endfor
1158         te.numberOfWords = Get number of rows
1159         
1160         # Shuffle words if requested
1161     if config.shuffleLists
1162         Randomize rows
1163     endif
1165         # Clean up
1166         label EMERGENCYEXIT
1167     select Table AllWordLists
1168     Remove
1169         
1170     # There were no Word Lists
1171     label NOWORDLISTS
1172     if .numLists <= 0
1173         wordlistName$ = wordlistName$+" No Word Lists available"
1174         wordlistNum = 1
1175                 Create Table with column names... "'wordlistName$'" 0 Pinyin Character Translation Sound
1176         wordlist$ = selected$("Table")
1177         .i = 0
1178                 Append row
1179                 .i += 1
1180                 Set string value... '.i' Pinyin ni3hao3
1181                 Set string value... '.i' Character 你好
1182                 Set string value... '.i' Translation hello
1183                 Set string value... '.i' Sound -
1184                 Append row
1185                 .i += 1
1186                 Set string value... '.i' Pinyin xie4xie0
1187                 Set string value... '.i' Character 谢谢
1188                 Set string value... '.i' Translation thanks
1189                 Set string value... '.i' Sound -
1190                 Append row
1191                 .i += 1
1192                 Set string value... '.i' Pinyin zai4jian4
1193                 Set string value... '.i' Character 再见
1194                 Set string value... '.i' Translation goodbye
1195                 Set string value... '.i' Sound -
1196         te.numberOfWords = Get number of rows
1197     endif
1199         call set_window_title 'buttons$' 'wordlistName$'
1200 endproc
1202 procedure next_word
1203         if wordlist$ <> ""
1204                 select Table 'wordlist$'
1205                 .showCurrent$ = "-"
1206                 if te.currentWord < 0 or te.currentWord > te.numberOfWords
1207                 if config.shuffleLists
1208                             Randomize rows
1209                 endif
1210                         te.currentWord = 0
1211                 endif
1212                 while .showCurrent$ = "-" and te.currentWord <= te.numberOfWords
1213                         te.currentWord += 1
1214                         if te.currentWord <= te.numberOfWords
1215                                 .showCurrent$ = Get value... 'te.currentWord' Show
1216                         endif
1217                 endwhile
1218         endif
1219 endproc
1221 procedure previous_word
1222         if wordlist$ <> ""
1223                 select Table 'wordlist$'
1224                 .showCurrent$ = "-"
1225                 if te.currentWord <= 0
1226                 if config.shuffleLists
1227                             Randomize rows
1228                 endif
1229                         te.currentWord = te.numberOfWords + 1
1230                 endif
1231                 while .showCurrent$ = "-" and te.currentWord > 0
1232                         te.currentWord -= 1
1233                         if te.currentWord > 0
1234                                 .showCurrent$ = Get value... 'te.currentWord' Show
1235                         endif
1236                 endwhile
1237         endif
1238 endproc
1240 procedure display_word_list_name
1241     .xtext = 50
1242     .ytext = 12
1243    call reset_viewport
1244     .displayWordList$ = replace_regex$(wordlistName$, "[_]", " ", 0)
1245     call wipeArea 'wipeWordlistArea$'
1246         call adjustFontSizeOnHeight 'defaultFont$' 'defaultFontSize' 5
1247         .currentFontSize = adjustFontSizeOnHeight.newFontSize
1249     demo Blue
1250         demo Text special... '.xtext' Centre '.ytext' Bottom 'defaultFont$' '.currentFontSize' 0 '.displayWordList$'
1251     demo Black
1252         demoShow()
1253         call set_font_size 'defaultFontSize'
1254 endproc
1256 procedure write_word_list
1257         # Write current Pinyin text
1258         call display_text Black
1259         
1260         # Write the current word list name
1261         call display_word_list_name
1262 endproc
1264 procedure paint_saveAudio_light
1265     select Table 'config$'
1266     .row = Search column... Label SaveAudio
1267         if .row < 1
1268                 exit Button Table Config does not have a row with label SaveAudio
1269         endif
1270         # Get button values
1271     .leftX = Get value... '.row' LeftX
1272     .rightX = Get value... '.row' RightX
1273     .lowY = Get value... '.row' LowY
1274     .highY = Get value... '.row' HighY
1275     .buttonColor$ = Get value... '.row' Color
1276     # The button text and symbol
1277         .horWC = demo Horizontal mm to wc... 10.0
1278         .verWC = demo Vertical mm to wc... 10.0
1279         if .verWC > 0
1280                 .verCoeff = .horWC / .verWC
1281         else
1282                 .verCoeff = 1
1283         endif
1285     .centerX = (.leftX + .rightX)/2
1286     .centerY = .lowY + 0.6*(.highY-.lowY)
1287     .radius = min(.verCoeff * (.highY - .lowY ), (.rightX - .leftX))/3
1288     .wipeRadius = 1.1*.radius
1289     call DrawSaveAudio White '.centerX' '.centerY' '.wipeRadius'
1291     if sgc.saveAudioOn and sgc.saveAudio$ <> ""
1292                 call DrawSaveAudio "DarkBlue" '.centerX' '.centerY' '.radius'
1293     endif
1294     demoShow()
1295 endproc
1297 # Uninstall word lists
1298 procedure removeWordlist .deletedWordlistName$
1299     .targetDir$ = ""
1300     if fileReadable("'sgc2wordlists$'/'.deletedWordlistName$'") or fileReadable("'sgc2wordlists$'/'.deletedWordlistName$'/wordlist.txt") or fileReadable("'sgc2wordlists$'/'.deletedWordlistName$'/wordlist.Table")
1301         .targetDir$ = "'sgc2wordlists$'/'.deletedWordlistName$'"
1302     endif
1303         if .targetDir$ <> ""
1304         Create Strings as file list... DeleteList '.targetDir$'
1305         .numdeleteFiles = Get number of strings
1306         for .i to .numdeleteFiles
1307                 .file$ = Get string... '.i'
1308                 deleteFile("'.targetDir$'/'.file$'")
1309         endfor
1310         filedelete '.targetDir$'
1311         # Check whether the directory was actually deleted. Make sure this is a valid directory name!
1312         # That is, it does not contain funny characters, nor funny names
1313         if index_regex(.deletedWordlistName$, "[^a-zA-Z0-9_ .\-]") <= 0 and index(.deletedWordlistName$, "..") <= 0 and index_regex(.deletedWordlistName$, "[a-zA-Z]") > 0
1314                         if windows
1315                                 nocheck system rmdir "'.targetDir$'" /s /q
1316                         elsif fileReadable(.targetDir$)
1317                                 system bash -rc -- 'rm -r -- "'.targetDir$'"'
1318                         endif
1319                 endif
1320                 # Remove deleted word list
1321                 select Strings DeleteList
1322                 plus Table 'wordlist$'
1323                 Remove
1324                 wordlist$ = ""
1325         endif
1326 endproc
1328 # Install word lists
1329 procedure sgc2wordlist .sourceDir$
1330         if startsWith(.sourceDir$, "preferencesDirectory$")
1331                 .sourceDir$ = replace$(.sourceDir$, "preferencesDirectory$", preferencesDirectory$)
1332         endif
1334         .targetDirectory$ = "'sgc2wordlists$'"
1335         if  fileReadable(.sourceDir$) or fileReadable("'.sourceDir$'/directory.txt")
1336                 Create Strings as file list... PackageList '.sourceDir$'/*.sgc
1337                 .numFiles = Get number of strings
1338                 for .i to .numFiles
1339                         select Strings PackageList
1340                         .file$ = Get string... '.i'
1341                         call readWordlist '.sourceDir$' '.file$'
1342                 endfor
1344                 select Strings PackageList
1345                 Remove
1346         endif
1347 endproc
1349 # Debuggin remarks!!!
1350 # fileReadable(<directory>) does not work in Windows
1351 # The file paths / -> \\ must be performed on the filenames in Windows before the system_nocheck is given
1352 # And yet only the 7z decompression has been implemented
1353 windowsUnzipCommand$ = ""
1354 if fileReadable("C:\Program Files\7-Zip\7z.exe")
1355         windowsUnzipCommand$ = """C:\Program Files\7-Zip\7z.exe"" e"
1356         windowsUnzipDestDir$ = " -o"
1357 elsif fileReadable("C:\Program Files\WinZip\winzip32.exe")
1358         # !!! Find a way to include the output folder !!!
1359         windowsUnzipCommand$ = "C:\Program Files\WinZip\winzip32.exe"" -min -e "
1360         windowsUnzipDestDir$ = ""
1361 endif
1362 procedure readWordlist .sourceDir$ .file$
1363         # No use doing anything if the source does not exist
1364         if fileReadable("'.sourceDir$'/'.file$'") or fileReadable("'.sourceDir$'/'.file$'/wordlist.txt") or fileReadable("'.sourceDir$'/'.file$'/wordlist.Table")
1365                 # What will be the target wordlist directory?
1366                 .targetDirectory$ = "'sgc2wordlists$'"
1367                 .dirname$ = left$(.file$, rindex(.file$, ".")-1)
1368                 if .dirname$ = ""
1369                         .dirname$ = .file$
1370                 endif
1371                 .wordlistDirectory$ = .targetDirectory$+"/"+.dirname$
1372                 # Wordlist directory does not exist, neither locally nor in the preferences
1373                 .wordListExists = 0
1374                 .tmpDirs = nocheck Create Strings as directory list... TMPWORDLISTS '.targetDirectory$'/
1375                 if .tmpDirs != undefined and .tmpDirs > 0
1376                         .numDirs = Get number of strings
1377                         for .d to .numDirs
1378                                 select .tmpDirs
1379                                 .currentString$ = Get string... '.d'
1380                                 if .currentString$ = .dirname$
1381                                         .wordListExists = 1
1382                                 endif
1383                         endfor
1384                         Remove
1385                 endif
1386                 if not (.wordListExists or fileReadable(.dirname$) or fileReadable("'.dirname$'/directory.txt") or fileReadable(.wordlistDirectory$) or fileReadable("'.wordlistDirectory$'/directory.txt"))
1387                         .wasWordList = 0
1388                         # Move source to destination
1389                         if index(.file$, ".sgc") or index(.file$, ".zip")
1390                                 if index_regex(.wordlistDirectory$, "[^a-zA-Z0-9_\.\- /~\:]") <= 0 and index_regex(.dirname$, "[^a-zA-Z0-9_\.\- ]") <= 0 and not (windows and windowsUnzipCommand$ = "")
1391                                         # Create wordlist directory
1392                                         createDirectory(.wordlistDirectory$)
1393                                         .wasWordList = 1
1394                                         if macintosh or unix
1395                                                 system cd ''.wordlistDirectory$'';bash -rc -- 'unzip "'.file$'"' -d ''.wordlistDirectory$''
1396                                         elsif windows and windowsUnzipCommand$ <> ""
1397                                                 .winWordListDirectory$ = replace_regex$(.wordlistDirectory$, "/", "\\", 0)
1398                                                 .winSourceDirectory$ = replace_regex$("'.sourceDir$'\'.file$'", "/", "\\", 0)
1399                                                 system mkdir "'.winWordListDirectory$'" & 'windowsUnzipCommand$' "'.winSourceDirectory$'" 'windowsUnzipDestDir$'"'.winWordListDirectory$'"
1400                                         endif
1401                                 endif
1402                                 # Remove if not valid!
1403                                 if fileReadable("'.wordlistDirectory$'/wordlist.Table") or fileReadable("'.wordlistDirectory$'/wordlist.txt") or fileReadable("'.wordlistDirectory$'/LICENSE.txt")
1404                                         if fileReadable("'.wordlistDirectory$'/wordlist.Table")
1405                                                 call readTable '.sourceDir$'/'.file$'
1406                                                 if readTable.tableID > 0
1407                                                         select readTable.tableID
1408                                                         # Hack around odd behavior of column index
1409                                                         .pinyinCol = 0
1410                                                         .firstColumn$ = Get column label: 1
1411                                                         .firstColumn$ = replace_regex$(.firstColumn$, "^[^!-~]", "", 0)
1412                                                         if .firstColumn$ = "Pinyin"
1413                                                                 .pinyinCol = 1
1414                                                         else
1415                                                                 .pinyinCol = Get column index... Pinyin
1416                                                         endif
1417                                                         Remove
1418                                                         # No Pinyin in table
1419                                                         if .pinyinCol <= 0
1420                                                                 .wasWordList = 0
1421                                                         endif
1422                                                 else
1423                                                         .wasWordList = 0
1424                                                 endif
1425                                         endif
1426                                 else
1427                                         # None of wordlist.Table, wordlist.txt, nor LICENSE.txt
1428                                         .wasWordList = 0
1429                                 endif
1430                                 ### REALLY DANGEROUS STUFF, SHOULD BE HANDLED BETTER
1431                                 if .wasWordList = 0
1432                                         # Remove newly created directory
1433                                         if index_regex(.wordlistDirectory$, "[^a-zA-Z0-9_\.\- /~\:]") <= 0 and index_regex(.dirname$, "[^a-zA-Z0-9_\.\- ]") <= 0 and index(.dirname$, "..") <= 0
1434                                                 if macintosh or unix
1435                                                         system bash -rc -- 'rm -r "'.wordlistDirectory$'/"'
1436                                                 elsif windows
1437                                                         system rmdir /Q /S "'.winWordListDirectory$'/"
1438                                                 endif
1439                                         endif
1440                                 endif
1441                         elsif index_regex(.file$, "\.(Table|txt|tsv)")
1442                                 # Check whether this is a valid table
1443                                 call readTable '.sourceDir$'/'.file$'
1444                                 if readTable.tableID > 0
1445                                         select readTable.tableID
1446                                         # Hack around odd behavior of column index
1447                                         .pinyinCol = 0
1448                                         .firstColumn$ = Get column label: 1
1449                                         .firstColumn$ = replace_regex$(.firstColumn$, "^[^!-~]", "", 0)
1450                                         if .firstColumn$ = "Pinyin"
1451                                                 .pinyinCol = 1
1452                                         else
1453                                                 .pinyinCol = Get column index... Pinyin
1454                                         endif
1455                                         Remove
1456                                         
1457                                         if .pinyinCol > 0
1458                                                 # Create wordlist directory
1459                                                 createDirectory(.wordlistDirectory$)
1460                                                 .wasWordList = 1
1461                                                 .extension$ = replace_regex$(.file$, "^.+\.(Table|txt|tsv)$", "\1", 0)
1462                                                 if .extension$ = "tsv"
1463                                                         .extension$ = "Table"
1464                                                 endif
1465                                                 if macintosh or unix
1466                                                         system bash -rc -- 'cp "'.sourceDir$'/'.file$'" "'.wordlistDirectory$'/wordlist.'.extension$'"'
1467                                                 elsif windows
1468                                                         .winWordListDirectory$ = replace_regex$(.wordlistDirectory$, "/", "\\", 0)
1469                                                         .winSourceDirectory$ = replace_regex$("'.sourceDir$'\'.file$'", "/", "\\", 0)
1470                                                         system copy "'.winSourceDirectory$'" "'.winWordListDirectory$'\wordlist.'.extension$'" /q
1471                                                 endif
1472                                         endif
1473                                 endif
1474                         elsif fileReadable("'.sourceDir$'/'.file$'/wordlist.Table") or fileReadable("'.sourceDir$'/'.file$'/wordlist.txt") or fileReadable("'.sourceDir$'/'.file$'/LICENSE.txt")
1475                                 # Copy wordlist directory
1476                                 if index_regex(.file$, "[^a-zA-Z0-9_\.\- ]") <= 0
1477                                         .wasWordList = 1
1478                                         if macintosh or unix
1479                                                 system bash -rc -- 'cp -r "'.sourceDir$'/'.file$'" "'.wordlistDirectory$'"'
1480                                         elsif windows
1481                                                 createDirectory(.wordlistDirectory$)
1482                                                 .winWordListDirectory$ = replace_regex$(.wordlistDirectory$, "/", "\\", 0)
1483                                                 .winSourceDirectory$ = replace_regex$("'.sourceDir$'\'.file$'", "/", "\\", 0)
1484                                                 system xcopy "'.winSourceDirectory$'" "'.winWordListDirectory$'" /s /e /q
1485                                         endif
1486                                 endif
1487                         endif
1488                         
1489                         # Set current word list to read list
1490                         if .wasWordList
1491                                 wordlistName$ = .dirname$
1492                         else
1493                                 .table$ = "Config"
1494                                 .label$ = "!NotAWordlist"
1496                                 # Get help text
1497                                 call findLabel '.table$' '.label$'
1498                                 .row = findLabel.row
1499                                 select Table '.table$'
1500                                 .helpText$ = Get value... '.row' Helptext
1501                                 .filetext$ = replace_regex$("'.sourceDir$'/'.file$'", "_", "\\_ ", 0)
1502                         call write_text_popup 'defaultFont$' 14 '.helpText$' "'.filetext$'"
1503                                 # Wait for confirmation
1504                                 demoWaitForInput()
1505                         endif
1506                 endif
1507         endif
1508 endproc