Added evaluation of stored audio recordings
[sgc2.git] / Config.praat
blobd7b1ffaef191f0775ca97137f8eb780302809249
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 'te.saveAudio'
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                         config.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 config.savePerf$ <> ""
700                 .defaultName$= config.savePerf$
701         endif
702         .performance_Name$ = chooseReadFile$ (.openDialogue$)
703         if .performance_Name$ <> "" and fileReadable(.performance_Name$)
704                 config.savePerf$ = .performance_Name$
705                 call initialize_toneevaluation_tables
706         endif
707         
708         
709     call Draw_button '.table$' '.label$' 0
710         call Draw_config_page
711 endproc
713 procedure processConfigSavePerf .clickX .clickY .pressed$
714         .table$ = "Config"
715         .label$ = "SavePerf"
716     call Draw_button '.table$' '.label$' 1
717         
718         # Get help text
719         call findLabel '.table$' '.label$'
720         .row = findLabel.row
721         select Table '.table$'
722         .openDialogue$ = Get value... '.row' Helptext
723         call convert_praat_to_latin1 '.openDialogue$'
724         .openDialogue$ = convert_praat_to_latin1.text$
725         .defaultName$= "Performance.tsv"
726         if config.savePerf$ <> ""
727                 .defaultName$= config.savePerf$
728         endif
729         .performance_Name$ = chooseWriteFile$ (.openDialogue$, .defaultName$)
730         if .performance_Name$ <> ""
731                 select Table 'initialiseSGC2.toneevaluation_table$'
732                 Write to table file... '.performance_Name$'
733                 config.savePerf$ = .performance_Name$
734         endif
735         
736     call Draw_button '.table$' '.label$' 0
737         call Draw_config_page
738 endproc
740 procedure processConfigManual .clickX .clickY .pressed$
741         .table$ = "Config"
742         .label$ = "Manual"
743         call Draw_button '.table$' '.label$' 1
744         if fileReadable("ManPages/SpeakGoodChinese_2.man")
745                 Read from file... ManPages/SpeakGoodChinese_2.man
746         else
747                 Go to manual page... SpeakGoodChinese 2
748         endif
749         # Wait until the manual is put to the background
750         demoWaitForInput()
751     call Draw_button '.table$' '.label$' 0
752     demo Erase all
753     call Draw_config_page
754 endproc
756 procedure processConfigSaveAudio .clickX .clickY .pressed$
757         .table$ = "Config"
758         .label$ = "SaveAudio"
759     call Draw_button '.table$' '.label$' 1
760         
761         if te.saveAudio = 0
762                 # Get help text
763                 call findLabel '.table$' '.label$'
764                 .row = findLabel.row
765                 select Table '.table$'
766                 .openDialogue$ = Get value... '.row' Helptext
767                 call convert_praat_to_latin1 '.openDialogue$'
768                 .openDialogue$ = convert_praat_to_latin1.text$
769                 .defaultName$= ""
770                 .audioDir_Name$ = chooseDirectory$ (.openDialogue$)
771                 if .audioDir_Name$ <> ""
772                         config.saveAudio$ = .audioDir_Name$
773                         te.saveAudio = 1
774                 endif
775         else
776                 te.saveAudio = 0
777         endif
778         
779     call Draw_button '.table$' '.label$' 'te.saveAudio'
780         call Draw_config_page
781 endproc
783 ###############################################################
785 # Obligatory button Processing Routines
787 # These MUST be defined
789 ###############################################################
791 procedure processConfigReturn .clickX .clickY .pressed$
792         .table$ = "Config"
793         .label$ = "Return"
794         call Draw_button '.table$' '.label$' 1
795         call write_preferences ""
796 endproc
798 procedure processConfigRefresh .clickX .clickY .pressed$
799         .table$ = "Config"
800         .label$ = "Refresh"
801         call Draw_config_page
802 endproc
804 procedure processConfigCredits .clickX .clickY .pressed$
805         .table$ = "Config"
806         .label$ = "Credits"
807         call Draw_button '.table$' '.label$' 1
808         call write_text_table Credits_'config.language$'
809         demoWaitForInput()
810     call Draw_button '.table$' '.label$' 0
811     demo Erase all
812     call Draw_config_page
813 endproc
815 procedure processConfigHelp .clickX .clickY .pressed$
816         .table$ = "Config"
817         .label$ = "Help"
818         call help_loop  '.table$' Draw_config_page
819 endproc
821 ###############################################################
823 # Miscelaneous supporting code
825 ###############################################################
826 procedure install_wordlists_by_name .wordlist_Name$
827         if .wordlist_Name$ <> ""
828                 if index(.wordlist_Name$, "wordlist.")
829                         .wordlist_Name$ = replace_regex$(.wordlist_Name$, "[/\\]wordlist\.([^/\\]+)$", "", 0)
830                 elsif index_regex(.wordlist_Name$, "(?i\.(wav|flac|iaf[fc]|mp3))")
831                         .wordlist_Name$ = replace_regex$(.wordlist_Name$, "[/\\][^/\\]+$", "", 0)
832                 endif
833                 if index_regex(.wordlist_Name$, "[/\\]")
834                         .sourceDir$ = left$(.wordlist_Name$, rindex_regex(.wordlist_Name$, "[/\\]") -1)
835                         .file$ = right$(.wordlist_Name$, length(.wordlist_Name$) - rindex_regex(.wordlist_Name$, "[/\\]"))
836                         call readWordlist "'.sourceDir$'" '.file$'
837                 else
838                         .start = 1
839                         if index(.wordlist_Name$, ".")
840                                 .start = 4
841                         endif
842                         .extension1$ = ".sgc"
843                         .extension2$ = ".Table"
844                         .extension3$ = ".txt"
845                         .extension4$ = ".tsv"
846                         .extension5$ = ""
847                         for .e from .start to 5
848                                 .currentExtension$ = .extension'.e'$
849                         call readWordlist "'homeDirectory$'" '.wordlist_Name$''.currentExtension$'
850                         call readWordlist "'homeDirectory$'/Downloads" '.wordlist_Name$''.currentExtension$'
851                         call readWordlist "'homeDirectory$'/Documents" '.wordlist_Name$''.currentExtension$'
852                         call readWordlist "'homeDirectory$'/My Documents/Downloads" '.wordlist_Name$''.currentExtension$'
853                         call readWordlist "'homeDirectory$'/My Documents" '.wordlist_Name$''.currentExtension$'
854                         call readWordlist "'homeDirectory$'/Desktop" '.wordlist_Name$''.currentExtension$'
855                         call readWordlist "'preferencesAppDir$'" '.wordlist_Name$''.currentExtension$'
856                         endfor
857                 endif
858         endif
859 endproc
861 # Word lists: It is a VERY good idea to make sure that word-lists
862 # have unique names.
863 procedure load_word_list .localdir$ .relnumber
864         call clean_up_sound
865     
866     # Remove old word list
867     if wordlist$ <> ""
868                 select Table 'wordlist$'
869                 Remove
870                 call wipeArea 'wipeWordlistArea$'
871                 wordlist$ = ""
872     endif
873     
874         # Create Table that will recieve the wordlists and directories
875         Create Table with column names... AllWordLists 0 Name Directory
876         .te.currentWordlistRow = 0
877         
878         # First the global word lists
879         if fileReadable(globalwordlists$) or fileReadable("'globalwordlists$'/directory.txt")
880         Create Strings as directory list... WordList 'globalwordlists$'
881         .numLists = Get number of strings
882         for .i to .numLists
883             select Strings WordList
884             .currentName$ = Get string... '.i'
885                         if .currentName$ <> "directory.txt"
886                                 select Table AllWordLists
887                                 .listExist = Search column: "Name", .currentName$
888                                 if not .listExist
889                                         Append row
890                                         .te.currentWordlistRow = Get number of rows
891                                         Set string value... '.te.currentWordlistRow' Name '.currentName$'
892                                 .currentDirectory$ = globalwordlists$+"/"+.currentName$
893                                         Set string value... '.te.currentWordlistRow' Directory '.currentDirectory$'
894                                 endif
895                         endif
896         endfor
897         select Strings WordList
898         Remove
899         endif
900         
901         # Now the preferences word lists
902         if fileReadable(sgc2wordlists$) or fileReadable("'sgc2wordlists$'/directory.txt")
903         Create Strings as directory list... WordList 'sgc2wordlists$'
904         .numLists = Get number of strings
905         for .i to .numLists
906                         select Strings WordList
907             .currentName$ = Get string... '.i'
908                         if .currentName$ <> "directory.txt"
909                                 select Table AllWordLists
910                                 .listExist = Search column: "Name", .currentName$
911                                 if not .listExist
912                                         Append row
913                                         .te.currentWordlistRow = Get number of rows
914                                         Set string value... '.te.currentWordlistRow' Name '.currentName$'
915                                 .currentDirectory$ = sgc2wordlists$+"/"+.currentName$
916                                         Set string value... '.te.currentWordlistRow' Directory '.currentDirectory$'
917                                 endif
918                         endif
919         endfor
920         select Strings WordList
921         Remove
922         endif
924         # End with the word lists in the distribution
925         call CreateCreateWordlists
926         select Table CreateWordlists
927     .numLists = Get number of rows
928         for .i to .numLists
929                 select Table CreateWordlists
930                 .currentName$ = Get value... '.i' Name
931                 if .currentName$ <> "directory.txt"
932                         select Table AllWordLists
933                         .listExist = Search column: "Name", .currentName$
934                         if not .listExist
935                                 .procedureName$ = replace_regex$(.currentName$, "[^\w\-\.]", "_", 0)
936                                 select Table AllWordLists
937                                 Append row
938                                 .te.currentWordlistRow = Get number of rows
939                                 Set string value... '.te.currentWordlistRow' Name '.currentName$'
940                                 .currentDirectory$ = "*call Create'.procedureName$'"
941                                 Set string value... '.te.currentWordlistRow' Directory '.currentDirectory$'
942                         endif
943                 endif
944         endfor
945         select Table CreateWordlists
946         Remove
947         
948         # Finally, the local word lists
949         if fileReadable(.localdir$) or fileReadable("'.localdir$'/directory.txt")
950         Create Strings as directory list... WordList '.localdir$'
951         .numLists = Get number of strings
952         for .i to .numLists
953             select Strings WordList
954             .currentName$ = Get string... '.i'
955                         if .currentName$ <> "directory.txt"
956                                 select Table AllWordLists
957                                 .listExist = Search column: "Name", .currentName$
958                                 if not .listExist
959                                         Append row
960                                         .te.currentWordlistRow = Get number of rows
961                                         Set string value... '.te.currentWordlistRow' Name '.currentName$'
962                                 .currentDirectory$ = .localdir$+"/"+.currentName$
963                                         Set string value... '.te.currentWordlistRow' Directory '.currentDirectory$'
964                                 endif
965                         endif
966         endfor
967         select Strings WordList
968         Remove
969     endif
971         # Get the position of the current word list
972         select Table AllWordLists
973         .currentNumber = 1
974     .numLists = Get number of rows
976         if wordlistName$ <> ""
977                 select Table AllWordLists
978                 .currentNumber = Search column... Name 'wordlistName$'
979         endif
981     wordlistNum = .currentNumber + .relnumber
982     if wordlistNum > .numLists
983         wordlistNum = 1
984         elsif wordlistNum < 1 and .numLists > 0
985                 wordlistNum = .numLists
986     endif
987     select Table AllWordLists
988     wordlistName$ = Get value... 'wordlistNum' Name
989         .dirWordlistName$ = Get value... 'wordlistNum' Directory
990     .dirString$ = replace_regex$(.dirWordlistName$, "[ ]", "&", 0)
991         
992         # Read in full tables
993         if fileReadable("'.dirString$'/wordlist.Table")
994                 call readTable '.dirString$'/wordlist.Table
995         if readTable.tableID > 0
996                         Rename... 'wordlistName$'
997                         # Praat wil change the name if it feels like it
998                         wordlist$ = selected$("Table")
999                         # Add a Sound column if it is not present
1000                         .soundIndex = Get column index: "Sound"
1001                         if .soundIndex <= 0
1002                                 Append column: "Sound"
1003                         endif
1004                 else
1005                         .numLists = 0
1006                         goto EMERGENCYEXIT
1007                 endif
1008         # Handle (legacy) simple word lists
1009         elsif fileReadable("'.dirString$'/wordlist.txt")
1010                 Create Table with column names... "'wordlistName$'" 0 Pinyin Character Sound Translation
1011         wordlist$ = selected$("Table")
1012                 Read Strings from raw text file... '.dirString$'/wordlist.txt
1013                 Rename... RawWordList
1014                 .numWordStrings = Get number of strings
1015                 for .i to .numWordStrings
1016                         select Strings RawWordList
1017                         .currentFile$ = "-"
1018                         .currentChar$ = "-"
1019                         .currentTrans$ = "-"
1020                         .currentLine$ = Get string... '.i'
1021                         # Remove leading whitespace
1022                         .currentLine$ = replace_regex$(.currentLine$, "^[ \t]+", "", 0)
1023                         .separatorIndex = index_regex(.currentLine$, "[ \t;\-]")
1024                         if .separatorIndex <= 0
1025                                 .separatorIndex = length(.currentLine$) + 1
1026                         endif
1027                         .currentPinyin$ = left$(.currentLine$, .separatorIndex-1)
1028                         .currentLine$ = right$(.currentLine$, length(.currentLine$) - .separatorIndex)
1029                         # There is more on the line, but we do not know what
1030                         if length(.currentLine$) > 0
1031                                 while length(.currentLine$) > 0
1032                                         .separatorIndex = index_regex(.currentLine$, "[\t;]")
1033                                         if .separatorIndex <= 0
1034                                                 .separatorIndex = length(.currentLine$)+1
1035                                         endif
1036                                         .currentItem$ = left$(.currentLine$, .separatorIndex-1)
1037                                         .currentLine$ = right$(.currentLine$, length(.currentLine$) - .separatorIndex )
1038                                         if index_regex(.currentItem$, ".(spx|flac|wav|mp3)")
1039                                                 # Audio
1040                                                 .currentFile$ = .currentItem$
1041                                         elsif index_regex(.currentItem$, "[a-zA-Z0-9]") > 0
1042                                                 # Translation
1043                                                 .currentTrans$ = .currentItem$
1044                                         elsif index_regex(.currentItem$, "[^ \t\r\l]") > 0 && index_regex(.currentItem$, "[a-zA-Z0-9\-]") <= 0
1045                                                 # Characters
1046                                                 .currentChar$ = .currentItem$
1047                                         endif
1048                                 endwhile
1049                         endif
1050                         if .currentFile$ = "-"
1051                                 if fileReadable("'.dirString$'/'.currentPinyin$'.spx")
1052                                         .currentFile$ = .currentPinyin$+".spx"
1053                                 elsif fileReadable("'.dirString$'/'.currentPinyin$'.flac")
1054                                         .currentFile$ = .currentPinyin$+".flac"
1055                                 elsif fileReadable("'.dirString$'/'.currentPinyin$'.wav")
1056                                         .currentFile$ = .currentPinyin$+".wav"
1057                                 elsif fileReadable("'.dirString$'/'.currentPinyin$'.mp3")
1058                                         .currentFile$ = .currentPinyin$+".mp3"
1059                                 endif
1060                         endif
1061                         select Table 'wordlist$'
1062                         Append row
1063                         Set string value... '.i' Pinyin '.currentPinyin$'
1064                         Set string value... '.i' Sound '.currentFile$'
1065                         Set string value... '.i' Character '.currentChar$'
1066                         Set string value... '.i' Translation '.currentTrans$'
1067                 endfor
1068                 select Strings RawWordList
1069                 Remove
1070                 
1071                 select Table 'wordlist$'
1072         elsif fileReadable(.dirString$) or fileReadable("'.dirString$'/directory.txt")
1073                 Create Table with column names... "'wordlistName$'" 0 Pinyin Sound
1074         wordlist$ = selected$("Table")
1075                 Create Strings as file list... RawWordList '.dirString$'/*
1076                 .numWordStrings = Get number of strings
1077                 .i = 0
1078                 for .j to .numWordStrings
1079                         select Strings RawWordList
1080                         .currentLine$ = Get string... '.j'
1081                         .currentFile$ = extractWord$(.currentLine$, "")
1082                         if index_regex(.currentFile$, "\.(spx|flac|wav|mp3)")
1083                                 .currentPinyin$ = left$(.currentFile$, index(.currentFile$, ".")-1)
1084                                 select Table 'wordlist$'
1085                                 Append row
1086                                 .i += 1
1087                                 Set string value... '.i' Pinyin '.currentPinyin$'
1088                                 Set string value... '.i' Sound '.currentFile$'
1089                         endif
1090                 endfor
1091                 select Strings RawWordList
1092                 Remove
1093                 
1094                 select Table 'wordlist$'
1095         elsif startsWith(.dirString$, "*call ")
1096                 .callProcedure$ = right$(.dirString$, length(.dirString$)-1)
1097                 '.callProcedure$'
1098                 wordlist$ = selected$("Table")
1099         else
1100                 # Nothing, get out
1101                 .numLists = 0
1102                 goto EMERGENCYEXIT              
1103         endif
1105         # Can this wordlist be deleted?
1106         if fileReadable("'sgc2wordlists$'/'wordlistName$'") or fileReadable("'sgc2wordlists$'/'wordlistName$'/wordlist.txt") or fileReadable("'sgc2wordlists$'/'wordlistName$'/wordlist.Table")
1107                 config.deleteWordlist = 0
1108         else
1109                 config.deleteWordlist = -1              
1110         endif
1112         # Check first column name and add Character, Translation and Show columns if missing
1113         if wordlist$ <> ""
1114                 select Table 'wordlist$'
1115                 # HAck to correct odd behavior of tables with unicode characters
1116                 .firstColumn$ = Get column label: 1
1117                 if index_regex(.firstColumn$, "^[^!-~]") > 0
1118                         .firstColumn$ = replace_regex$(.firstColumn$, "^[^!-~]", "", 0)
1119                         Set column label (index): 1, .firstColumn$
1120                 endif
1121                 
1122         te.numberOfWords = Get number of rows
1123                 .characterColumn = Get column index... Character
1124                 if not .characterColumn
1125                         Append column... Character
1126                         for .i to te.numberOfWords
1127                                 Set string value... '.i' Character -
1128                         endfor
1129                 endif
1130                 .translationColumn = Get column index... Translation
1131                 if not .translationColumn
1132                         Append column... Translation
1133                         for .i to te.numberOfWords
1134                                 Set string value... '.i' Translation -
1135                         endfor
1136                 endif
1137                 .showColumn = Get column index... Show
1138                 if not .showColumn
1139                         Append column... Show
1140                         for .i to te.numberOfWords
1141                                 Set string value... '.i' Show +
1142                         endfor
1143                 endif
1144         endif
1145         
1146         # Remove all rows without Pinyin
1147         .numRows = Get number of rows
1148         for i to .numRows
1149                 .rowNum = .numRows - i + 1
1150                 .pinyinValue$ = Get value... '.rowNum' Pinyin
1151                 if not index_regex(.pinyinValue$, "[a-zA-Z0-9]")
1152                         Remove row... '.rowNum'
1153                 endif
1154         endfor
1155         te.numberOfWords = Get number of rows
1156         
1157         # Shuffle words if requested
1158     if config.shuffleLists
1159         Randomize rows
1160     endif
1162         # Clean up
1163         label EMERGENCYEXIT
1164     select Table AllWordLists
1165     Remove
1166         
1167     # There were no Word Lists
1168     label NOWORDLISTS
1169     if .numLists <= 0
1170         wordlistName$ = wordlistName$+" No Word Lists available"
1171         wordlistNum = 1
1172                 Create Table with column names... "'wordlistName$'" 0 Pinyin Character Translation Sound
1173         wordlist$ = selected$("Table")
1174         .i = 0
1175                 Append row
1176                 .i += 1
1177                 Set string value... '.i' Pinyin ni3hao3
1178                 Set string value... '.i' Character 你好
1179                 Set string value... '.i' Translation hello
1180                 Set string value... '.i' Sound -
1181                 Append row
1182                 .i += 1
1183                 Set string value... '.i' Pinyin xie4xie0
1184                 Set string value... '.i' Character 谢谢
1185                 Set string value... '.i' Translation thanks
1186                 Set string value... '.i' Sound -
1187                 Append row
1188                 .i += 1
1189                 Set string value... '.i' Pinyin zai4jian4
1190                 Set string value... '.i' Character 再见
1191                 Set string value... '.i' Translation goodbye
1192                 Set string value... '.i' Sound -
1193         te.numberOfWords = Get number of rows
1194     endif
1196         call set_window_title 'buttons$' 'wordlistName$'
1197 endproc
1199 procedure next_word
1200         if wordlist$ <> ""
1201                 select Table 'wordlist$'
1202                 .showCurrent$ = "-"
1203                 if te.currentWord < 0 or te.currentWord > te.numberOfWords
1204                 if config.shuffleLists
1205                             Randomize rows
1206                 endif
1207                         te.currentWord = 0
1208                 endif
1209                 while .showCurrent$ = "-" and te.currentWord <= te.numberOfWords
1210                         te.currentWord += 1
1211                         if te.currentWord <= te.numberOfWords
1212                                 .showCurrent$ = Get value... 'te.currentWord' Show
1213                         endif
1214                 endwhile
1215         endif
1216 endproc
1218 procedure previous_word
1219         if wordlist$ <> ""
1220                 select Table 'wordlist$'
1221                 .showCurrent$ = "-"
1222                 if te.currentWord <= 0
1223                 if config.shuffleLists
1224                             Randomize rows
1225                 endif
1226                         te.currentWord = te.numberOfWords + 1
1227                 endif
1228                 while .showCurrent$ = "-" and te.currentWord > 0
1229                         te.currentWord -= 1
1230                         if te.currentWord > 0
1231                                 .showCurrent$ = Get value... 'te.currentWord' Show
1232                         endif
1233                 endwhile
1234         endif
1235 endproc
1237 procedure display_word_list_name
1238     .xtext = 50
1239     .ytext = 12
1240    call reset_viewport
1241     .displayWordList$ = replace_regex$(wordlistName$, "[_]", " ", 0)
1242     call wipeArea 'wipeWordlistArea$'
1243         call adjustFontSizeOnHeight 'defaultFont$' 'defaultFontSize' 5
1244         .currentFontSize = adjustFontSizeOnHeight.newFontSize
1246     demo Blue
1247         demo Text special... '.xtext' Centre '.ytext' Bottom 'defaultFont$' '.currentFontSize' 0 '.displayWordList$'
1248     demo Black
1249         demoShow()
1250         call set_font_size 'defaultFontSize'
1251 endproc
1253 procedure write_word_list
1254         # Write current Pinyin text
1255         call display_text Black
1256         
1257         # Write the current word list name
1258         call display_word_list_name
1259 endproc
1261 procedure start_logging
1262         if fileReadable("'preferencesLogDir$'/logPerformance.txt")
1263                 .logDirectory$ < 'preferencesLogDir$'/logPerformance.txt
1264                 .logDirectory$ = extractWord$(.logDirectory$, "")
1265                 if .logDirectory$ = "" or not (fileReadable(.logDirectory$) or  fileReadable("'.logDirectory$'/directory.txt")
1266                         .logDirectory$ = "'preferencesLogDir$'"
1267                 endif
1268                 currentLogDirectory$ = "'.logDirectory$'/log'logtimeStamp$'"
1269                 createDirectory(currentLogDirectory$)
1270                 if not fileReadable("'currentLogDirectory$'/wordlist.Table")
1271                         .headerLine$ = "Pinyin'tab$'Character'tab$'Sound'newline$'"
1272                         .headerLine$ > 'currentLogDirectory$'/wordlist.Table
1273                 endif
1274                         # Flip switch
1275                         config.logPerformance = 1
1276         endif
1277 endproc
1279 procedure log_command .logtext$
1280         if logging
1281                 fileappend "'currentLogDirectory$'/logFile.txt" '.logtext$''newline$'
1282         endif
1283 endproc
1285 procedure log_performance .recordedSound$ .register .proficiency .pinyin$ .choice$
1286         # Log files
1287         .currentDate$ = date$()
1288         .timeStamp$ = replace_regex$(.currentDate$, "[^a-zA-Z0-9\-_]", "-", 0)
1289         .choiceText$ = replace_regex$(.choice$, "[^a-zA-Z0-9\-_]", "-", 0)
1291         if config.logPerformance and fileReadable("'preferencesLogDir$'/logPerformance.txt")
1292            .outfilename$ = .pinyin$+"_"+.choice$+"_'.register'_"+.timeStamp$+".wav"
1293            .logtext$ = "# #+.pinyin$+tab$+.choice$+tab$+"'.register'Hz"+tab$+.currentDate$+tab$+.outfilename$+newline$
1294        # Plain log text
1295            fileappend 'currentLogDirectory$'/logFile.txt '.logtext$'
1296            
1297        # A wordlist.Table
1298        fileappend 'currentLogDirectory$'/wordlist.Table '.pinyin$''tab$''.choice$''tab$''.outfilename$''newline$'
1299        # The recorded sound
1300            select Sound 'recordedSound$'
1301            Write to WAV file... 'currentLogDirectory$'/'.outfilename$'
1302         endif
1303 endproc
1305 procedure paint_saveAudio_light
1306     select Table 'config$'
1307     .row = Search column... Label SaveAudio
1308         if .row < 1
1309                 exit Button Table Config does not have a row with label SaveAudio
1310         endif
1311         # Get button values
1312     .leftX = Get value... '.row' LeftX
1313     .rightX = Get value... '.row' RightX
1314     .lowY = Get value... '.row' LowY
1315     .highY = Get value... '.row' HighY
1316     .buttonColor$ = Get value... '.row' Color
1317     # The button text and symbol
1318         .horWC = demo Horizontal mm to wc... 10.0
1319         .verWC = demo Vertical mm to wc... 10.0
1320         if .verWC > 0
1321                 .verCoeff = .horWC / .verWC
1322         else
1323                 .verCoeff = 1
1324         endif
1326     .centerX = (.leftX + .rightX)/2
1327     .centerY = .lowY + 0.6*(.highY-.lowY)
1328     .radius = min(.verCoeff * (.highY - .lowY ), (.rightX - .leftX))/3
1329     .wipeRadius = 1.1*.radius
1330     call DrawSaveAudio White '.centerX' '.centerY' '.wipeRadius'
1332     if te.saveAudio and config.saveAudio$ <> ""
1333                 call DrawSaveAudio "DarkBlue" '.centerX' '.centerY' '.radius'
1334     endif
1335     demoShow()
1336 endproc
1338 # Uninstall word lists
1339 procedure removeWordlist .deletedWordlistName$
1340     .targetDir$ = ""
1341     if fileReadable("'sgc2wordlists$'/'.deletedWordlistName$'") or fileReadable("'sgc2wordlists$'/'.deletedWordlistName$'/wordlist.txt") or fileReadable("'sgc2wordlists$'/'.deletedWordlistName$'/wordlist.Table")
1342         .targetDir$ = "'sgc2wordlists$'/'.deletedWordlistName$'"
1343     endif
1344         if .targetDir$ <> ""
1345         Create Strings as file list... DeleteList '.targetDir$'
1346         .numdeleteFiles = Get number of strings
1347         for .i to .numdeleteFiles
1348                 .file$ = Get string... '.i'
1349                 deleteFile("'.targetDir$'/'.file$'")
1350         endfor
1351         filedelete '.targetDir$'
1352         # Check whether the directory was actually deleted. Make sure this is a valid directory name!
1353         # That is, it does not contain funny characters, nor funny names
1354         if index_regex(.deletedWordlistName$, "[^a-zA-Z0-9_ .\-]") <= 0 and index(.deletedWordlistName$, "..") <= 0 and index_regex(.deletedWordlistName$, "[a-zA-Z]") > 0
1355                         if windows
1356                                 nocheck system rmdir "'.targetDir$'" /s /q
1357                         elsif fileReadable(.targetDir$)
1358                                 system bash -rc -- 'rm -r -- "'.targetDir$'"'
1359                         endif
1360                 endif
1361                 # Remove deleted word list
1362                 select Strings DeleteList
1363                 plus Table 'wordlist$'
1364                 Remove
1365                 wordlist$ = ""
1366         endif
1367 endproc
1369 # Install word lists
1370 procedure sgc2wordlist .sourceDir$
1371         if startsWith(.sourceDir$, "preferencesDirectory$")
1372                 .sourceDir$ = replace$(.sourceDir$, "preferencesDirectory$", preferencesDirectory$)
1373         endif
1375         .targetDirectory$ = "'sgc2wordlists$'"
1376         if  fileReadable(.sourceDir$) or fileReadable("'.sourceDir$'/directory.txt")
1377                 Create Strings as file list... PackageList '.sourceDir$'/*.sgc
1378                 .numFiles = Get number of strings
1379                 for .i to .numFiles
1380                         select Strings PackageList
1381                         .file$ = Get string... '.i'
1382                         call readWordlist '.sourceDir$' '.file$'
1383                 endfor
1385                 select Strings PackageList
1386                 Remove
1387         endif
1388 endproc
1390 # Debuggin remarks!!!
1391 # fileReadable(<directory>) does not work in Windows
1392 # The file paths / -> \\ must be performed on the filenames in Windows before the system_nocheck is given
1393 # And yet only the 7z decompression has been implemented
1394 windowsUnzipCommand$ = ""
1395 if fileReadable("C:\Program Files\7-Zip\7z.exe")
1396         windowsUnzipCommand$ = """C:\Program Files\7-Zip\7z.exe"" e"
1397         windowsUnzipDestDir$ = " -o"
1398 elsif fileReadable("C:\Program Files\WinZip\winzip32.exe")
1399         # !!! Find a way to include the output folder !!!
1400         windowsUnzipCommand$ = "C:\Program Files\WinZip\winzip32.exe"" -min -e "
1401         windowsUnzipDestDir$ = ""
1402 endif
1403 procedure readWordlist .sourceDir$ .file$
1404         # No use doing anything if the source does not exist
1405         if fileReadable("'.sourceDir$'/'.file$'") or fileReadable("'.sourceDir$'/'.file$'/wordlist.txt") or fileReadable("'.sourceDir$'/'.file$'/wordlist.Table")
1406                 # What will be the target wordlist directory?
1407                 .targetDirectory$ = "'sgc2wordlists$'"
1408                 .dirname$ = left$(.file$, rindex(.file$, ".")-1)
1409                 if .dirname$ = ""
1410                         .dirname$ = .file$
1411                 endif
1412                 .wordlistDirectory$ = .targetDirectory$+"/"+.dirname$
1413                 # Wordlist directory does not exist, neither locally nor in the preferences
1414                 .wordListExists = 0
1415                 .tmpDirs = nocheck Create Strings as directory list... TMPWORDLISTS '.targetDirectory$'/
1416                 if .tmpDirs != undefined and .tmpDirs > 0
1417                         .numDirs = Get number of strings
1418                         for .d to .numDirs
1419                                 select .tmpDirs
1420                                 .currentString$ = Get string... '.d'
1421                                 if .currentString$ = .dirname$
1422                                         .wordListExists = 1
1423                                 endif
1424                         endfor
1425                         Remove
1426                 endif
1427                 if not (.wordListExists or fileReadable(.dirname$) or fileReadable("'.dirname$'/directory.txt") or fileReadable(.wordlistDirectory$) or fileReadable("'.wordlistDirectory$'/directory.txt"))
1428                         .wasWordList = 0
1429                         # Move source to destination
1430                         if index(.file$, ".sgc") or index(.file$, ".zip")
1431                                 if index_regex(.wordlistDirectory$, "[^a-zA-Z0-9_\.\- /~\:]") <= 0 and index_regex(.dirname$, "[^a-zA-Z0-9_\.\- ]") <= 0 and not (windows and windowsUnzipCommand$ = "")
1432                                         # Create wordlist directory
1433                                         createDirectory(.wordlistDirectory$)
1434                                         .wasWordList = 1
1435                                         if macintosh or unix
1436                                                 system cd ''.wordlistDirectory$'';bash -rc -- 'unzip "'.file$'"' -d ''.wordlistDirectory$''
1437                                         elsif windows and windowsUnzipCommand$ <> ""
1438                                                 .winWordListDirectory$ = replace_regex$(.wordlistDirectory$, "/", "\\", 0)
1439                                                 .winSourceDirectory$ = replace_regex$("'.sourceDir$'\'.file$'", "/", "\\", 0)
1440                                                 system mkdir "'.winWordListDirectory$'" & 'windowsUnzipCommand$' "'.winSourceDirectory$'" 'windowsUnzipDestDir$'"'.winWordListDirectory$'"
1441                                         endif
1442                                 endif
1443                                 # Remove if not valid!
1444                                 if fileReadable("'.wordlistDirectory$'/wordlist.Table") or fileReadable("'.wordlistDirectory$'/wordlist.txt") or fileReadable("'.wordlistDirectory$'/LICENSE.txt")
1445                                         if fileReadable("'.wordlistDirectory$'/wordlist.Table")
1446                                                 call readTable '.sourceDir$'/'.file$'
1447                                                 if readTable.tableID > 0
1448                                                         select readTable.tableID
1449                                                         # Hack around odd behavior of column index
1450                                                         .pinyinCol = 0
1451                                                         .firstColumn$ = Get column label: 1
1452                                                         .firstColumn$ = replace_regex$(.firstColumn$, "^[^!-~]", "", 0)
1453                                                         if .firstColumn$ = "Pinyin"
1454                                                                 .pinyinCol = 1
1455                                                         else
1456                                                                 .pinyinCol = Get column index... Pinyin
1457                                                         endif
1458                                                         Remove
1459                                                         # No Pinyin in table
1460                                                         if .pinyinCol <= 0
1461                                                                 .wasWordList = 0
1462                                                         endif
1463                                                 else
1464                                                         .wasWordList = 0
1465                                                 endif
1466                                         endif
1467                                 else
1468                                         # None of wordlist.Table, wordlist.txt, nor LICENSE.txt
1469                                         .wasWordList = 0
1470                                 endif
1471                                 ### REALLY DANGEROUS STUFF, SHOULD BE HANDLED BETTER
1472                                 if .wasWordList = 0
1473                                         # Remove newly created directory
1474                                         if index_regex(.wordlistDirectory$, "[^a-zA-Z0-9_\.\- /~\:]") <= 0 and index_regex(.dirname$, "[^a-zA-Z0-9_\.\- ]") <= 0 and index(.dirname$, "..") <= 0
1475                                                 if macintosh or unix
1476                                                         system bash -rc -- 'rm -r "'.wordlistDirectory$'/"'
1477                                                 elsif windows
1478                                                         system rmdir /Q /S "'.winWordListDirectory$'/"
1479                                                 endif
1480                                         endif
1481                                 endif
1482                         elsif index_regex(.file$, "\.(Table|txt|tsv)")
1483                                 # Check whether this is a valid table
1484                                 call readTable '.sourceDir$'/'.file$'
1485                                 if readTable.tableID > 0
1486                                         select readTable.tableID
1487                                         # Hack around odd behavior of column index
1488                                         .pinyinCol = 0
1489                                         .firstColumn$ = Get column label: 1
1490                                         .firstColumn$ = replace_regex$(.firstColumn$, "^[^!-~]", "", 0)
1491                                         if .firstColumn$ = "Pinyin"
1492                                                 .pinyinCol = 1
1493                                         else
1494                                                 .pinyinCol = Get column index... Pinyin
1495                                         endif
1496                                         Remove
1497                                         
1498                                         if .pinyinCol > 0
1499                                                 # Create wordlist directory
1500                                                 createDirectory(.wordlistDirectory$)
1501                                                 .wasWordList = 1
1502                                                 .extension$ = replace_regex$(.file$, "^.+\.(Table|txt|tsv)$", "\1", 0)
1503                                                 if .extension$ = "tsv"
1504                                                         .extension$ = "Table"
1505                                                 endif
1506                                                 if macintosh or unix
1507                                                         system bash -rc -- 'cp "'.sourceDir$'/'.file$'" "'.wordlistDirectory$'/wordlist.'.extension$'"'
1508                                                 elsif windows
1509                                                         .winWordListDirectory$ = replace_regex$(.wordlistDirectory$, "/", "\\", 0)
1510                                                         .winSourceDirectory$ = replace_regex$("'.sourceDir$'\'.file$'", "/", "\\", 0)
1511                                                         system copy "'.winSourceDirectory$'" "'.winWordListDirectory$'\wordlist.'.extension$'" /q
1512                                                 endif
1513                                         endif
1514                                 endif
1515                         elsif fileReadable("'.sourceDir$'/'.file$'/wordlist.Table") or fileReadable("'.sourceDir$'/'.file$'/wordlist.txt") or fileReadable("'.sourceDir$'/'.file$'/LICENSE.txt")
1516                                 # Copy wordlist directory
1517                                 if index_regex(.file$, "[^a-zA-Z0-9_\.\- ]") <= 0
1518                                         .wasWordList = 1
1519                                         if macintosh or unix
1520                                                 system bash -rc -- 'cp -r "'.sourceDir$'/'.file$'" "'.wordlistDirectory$'"'
1521                                         elsif windows
1522                                                 createDirectory(.wordlistDirectory$)
1523                                                 .winWordListDirectory$ = replace_regex$(.wordlistDirectory$, "/", "\\", 0)
1524                                                 .winSourceDirectory$ = replace_regex$("'.sourceDir$'\'.file$'", "/", "\\", 0)
1525                                                 system xcopy "'.winSourceDirectory$'" "'.winWordListDirectory$'" /s /e /q
1526                                         endif
1527                                 endif
1528                         endif
1529                         
1530                         # Set current word list to read list
1531                         if .wasWordList
1532                                 wordlistName$ = .dirname$
1533                         else
1534                                 .table$ = "Config"
1535                                 .label$ = "!NotAWordlist"
1537                                 # Get help text
1538                                 call findLabel '.table$' '.label$'
1539                                 .row = findLabel.row
1540                                 select Table '.table$'
1541                                 .helpText$ = Get value... '.row' Helptext
1542                                 .filetext$ = replace_regex$("'.sourceDir$'/'.file$'", "_", "\\_ ", 0)
1543                         call write_text_popup 'defaultFont$' 14 '.helpText$' "'.filetext$'"
1544                                 # Wait for confirmation
1545                                 demoWaitForInput()
1546                         endif
1547                 endif
1548         endif
1549 endproc