4 # Praat script handling configuration page
6 # SpeakGoodChinese: Config.praat loads the code needed for the
7 # settings and the Settings page of SpeakGoodChinese.
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
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.
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.
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
29 ###############################################################
31 # Button Drawing Routines
33 ###############################################################
35 procedure DrawCredits .color$ .x .y .size
38 call adjustFontSizeOnHeight 'defaultFont$' 24 '.lineheight'
39 .currentFontSize = adjustFontSizeOnHeight.newFontSize
40 demo Paint circle... {0.2,0.2,0.8} '.x' '.y' '.size'
42 demo Text special... '.x' centre '.y' half Times '.currentFontSize' 0 i
45 call set_font_size 'defaultFontSize'
48 procedure DrawDeleteList .color$ .x .y .size
56 .displayWordList$ = replace_regex$(wordlistName$, "[_]", " ", 0)
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
67 call set_font_size '.currentFontSize'
68 demo Paint rectangle... White '.leftX' '.rightX' '.botY' '.topY'
70 demo Text... '.x' Centre '.botY' Bottom '.displayWordList$'
73 call set_font_size 'defaultFontSize'
76 procedure DrawManual .color$ .x .y .size
79 call adjustFontSizeOnHeight 'defaultFont$' 24 '.lineheight'
80 .currentFontSize = adjustFontSizeOnHeight.newFontSize
81 demo Paint circle... {0.2,0.2,0.8} '.x' '.y' '.size'
83 demo Text special... '.x' centre '.y' half Times '.currentFontSize' 0 M
86 call set_font_size 'defaultFontSize'
89 procedure DrawSaveAudio .color$ .x .y .size
94 elsif .color$ = "Blue"
95 .color$ = "{0.5,0.5,1}"
99 demo Paint circle... '.color$' '.x' '.y' '.size'
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'
114 # Set the correct button states after redrawing the window
115 procedure setConfigMainPage
116 call Draw_button 'config$' +SaveAudio 'sgc.saveAudioOn'
117 if sgc2.synthesizer < 0 or config.synthesis$ = "" or config.synthesis$ = "_DISABLED_"
118 call Draw_button 'config$' Voice -1
120 call Draw_button 'config$' Voice 2
124 ###############################################################
126 # Button Processing Routines
128 ###############################################################
130 procedure processConfigShuffleLists .clickX .clickY .pressed$
132 .label$ = "ShuffleLists"
133 config.shuffleLists = not config.shuffleLists
134 .displayButton = 2*config.shuffleLists
135 call Draw_button '.table$' '.label$' '.displayButton'
138 procedure processConfigAdaptiveLists .clickX .clickY .pressed$
140 .label$ = "AdaptiveLists"
141 config.adaptiveLists = not config.adaptiveLists
142 .displayButton = 2*config.adaptiveLists
143 call Draw_button '.table$' '.label$' '.displayButton'
146 procedure processConfigUseSoundExample .clickX .clickY .pressed$
148 .label$ = "UseSoundExample"
149 config.useSoundExample = not config.useSoundExample
150 .displayButton = 2*config.useSoundExample
151 call Draw_button '.table$' '.label$' '.displayButton'
154 procedure processConfigSynthesis .tts$ .clickX .clickY .pressed$
156 .label$ = "Synthesis_'.tts$'"
157 if sgc2.synthesizer > 0 or (speakCommandFile$ <> "" and fileReadable(speakCommandFile$))
158 if config.synthesis$ = ""
159 config.synthesis$ = .tts$
162 config.synthesis$ = ""
166 config.synthesis$ = "_DISABLED_"
169 call Draw_button '.table$' '.label$' '.displayButton'
171 # Disable or enable voices button!
172 .voiceButton = .displayButton
176 call Draw_button Config Voice '.voiceButton'
179 procedure processConfigStrict .clickX .clickY .pressed$
182 .tmp = 'config.strict$'
184 if .tmp > sgc.highestLevel
187 config.strict$ = "'.tmp'"
193 # Change TTS for Strict!
195 call Draw_button '.table$' '.label$' '.displayButton'
198 procedure processConfigVoice .clickX .clickY .pressed$
203 if .tmp > sgc.lastVoice
207 if sgc2.synthesizer <= 0 or config.synthesis$ = "" or config.synthesis$ = "_DISABLED_"
212 call set_TTS_parameters
215 call Draw_button '.table$' '.label$' '.displayButton'
218 procedure processConfigDisplayPinyin .clickX .clickY .pressed$
220 .label$ = "DisplayPinyin"
221 config.displayPinyin = not config.displayPinyin
222 .displayButton = 2*config.displayPinyin
223 call Draw_button '.table$' '.label$' '.displayButton'
226 procedure processConfigDisplayChar .clickX .clickY .pressed$
228 .label$ = "DisplayChar"
229 config.displayChar = not config.displayChar
230 .displayButton = 2*config.displayChar
231 call Draw_button '.table$' '.label$' '.displayButton'
234 procedure processConfigDisplayTrans .clickX .clickY .pressed$
236 .label$ = "DisplayTrans"
237 config.displayTrans = not config.displayTrans
238 .displayButton = 2*config.displayTrans
239 call Draw_button '.table$' '.label$' '.displayButton'
242 procedure processConfigDisplayNumbers .clickX .clickY .pressed$
244 .label$ = "DisplayNumbers"
245 config.displayNumbers = not config.displayNumbers
246 .displayButton = 2*config.displayNumbers
247 call Draw_button '.table$' '.label$' '.displayButton'
250 procedure processConfigLanguage .language$ .clickX .clickY .pressed$
252 .label$ = "Language_'.language$'"
253 call processLanguageCodes '.table$' '.label$'
256 procedure processConfigShowBackground .clickX .clickY .pressed$
258 .label$ = "ShowBackground"
259 config.showBackground = not config.showBackground
260 .displayButton = 2*config.showBackground
261 call Draw_button '.table$' '.label$' '.displayButton'
264 procedure processConfigInput .input$ .clickX .clickY .pressed$
266 .label$ = "Input_'.input$'"
267 call Draw_button '.table$' Input_'config.input$' 0
268 config.input$ = .input$
269 call Draw_button '.table$' Input_'config.input$' 2
272 procedure processConfigRegister .register .clickX .clickY .pressed$
274 .label$ = "Register_'.register'"
275 call setRegisterFromLabel '.table$' '.label$'
278 procedure setRegisterFromLabel .table$ .label$
279 call Draw_button '.table$' Register_'config.register' 0
280 call Draw_button '.table$' '.label$' 2
281 # Someone might have to use more than 3 chars for the config.register code
282 .numChars = length(.label$) - length("Register_")
283 .registerText$ = right$(.label$, .numChars)
284 config.register = '.registerText$'
287 procedure processConfigDeleteWordlist .clickX .clickY .pressed$
289 .label$ = "DeleteWordlist"
291 # Do not process undeletable word lists, only those stored in the
292 # preferencesDirectory$ can be deleted
293 if fileReadable("'sgc2wordlists$'/'wordlistName$'") or fileReadable("'sgc2wordlists$'/'wordlistName$'/wordlist.txt") or fileReadable("'sgc2wordlists$'/'wordlistName$'/wordlist.Table")
294 call findLabel '.table$' !'.label$'
296 select Table '.table$'
297 .alertText$ = Get value... 'findLabel.row' Text
298 .confirmKey$ = Get value... 'findLabel.row' Key
299 .popupText$ = Get value... 'findLabel.row' Helptext
301 exit Cannot find delete directive: '.table$' !'.label$'
303 call write_text_popup 'defaultFont$' 14 '.popupText$'
304 call Draw_button '.table$' '.label$' 2
305 alertText$ = .alertText$
306 call Draw_button '.table$' '.label$' 3
309 # Wait for confirmation
311 if demoInput(.confirmKey$)
312 .deleteWordListDir$ = wordlistName$
313 call load_word_list "'localWordlistDir$'" 1
314 call removeWordlist '.deleteWordListDir$'
315 call load_word_list "'localWordlistDir$'" 0
317 call Draw_button '.table$' '.label$' 0
318 call Draw_config_page
322 wordlistTag$ = "Wordlist name"
323 procedure processConfigInstallWordlist .clickX .clickY .pressed$
325 .label$ = "InstallWordlist"
326 call Draw_button '.table$' '.label$' 1
328 # Do not use the automatic sgc list option, ask for a wordlist NAME
330 call findLabel '.table$' '.label$'
332 select Table '.table$'
333 .openDialogue$ = Get value... '.row' Helptext
334 call convert_praat_to_latin1 '.openDialogue$'
335 .openDialogue$ = convert_praat_to_latin1.text$
336 .wordlistButton$ = replace$(wordlistTag$, " ", "_", 0)
337 .wordlistButton$ = replace_regex$(.wordlistButton$, "^.", "\l&", 0)
338 beginPause(.openDialogue$)
339 sentence (wordlistTag$, "")
340 clicked = endPause ("Cancel", "Open", 2, 1)
343 .wordlist_Name$ = '.wordlistButton$'$
345 call install_wordlists_by_name '.wordlist_Name$'
347 call sgc2wordlist 'homeDirectory$'
348 call sgc2wordlist 'homeDirectory$'/Downloads
349 call sgc2wordlist 'homeDirectory$'/Documents
350 call sgc2wordlist 'homeDirectory$'/My Documents
351 call sgc2wordlist 'homeDirectory$'/My Documents/Downloads
352 call sgc2wordlist 'homeDirectory$'/Desktop
353 call sgc2wordlist 'preferencesAppDir$'
355 call load_word_list "'localWordlistDir$'" 0
356 call Draw_button '.table$' '.label$' 0
357 call Draw_config_page
360 procedure processConfigOpenWordlist .clickX .clickY .pressed$
362 .label$ = "OpenWordlist"
363 call Draw_button '.table$' '.label$' 1
366 call findLabel '.table$' '.label$'
368 select Table '.table$'
369 .openDialogue$ = Get value... '.row' Helptext
370 call convert_praat_to_latin1 '.openDialogue$'
371 .openDialogue$ = convert_praat_to_latin1.text$
373 .wordlist_Name$ = chooseReadFile$ (.openDialogue$)
374 call install_wordlists_by_name '.wordlist_Name$'
375 call load_word_list "'localWordlistDir$'" 0
376 call Draw_button '.table$' '.label$' 0
377 call Draw_config_page
380 procedure processConfigExportWordlist .clickX .clickY .pressed$
382 .label$ = "ExportWordlist"
384 call Draw_button '.table$' '.label$' 1
387 call findLabel '.table$' '.label$'
389 select Table '.table$'
390 .openDialogue$ = Get value... '.row' Helptext
391 call convert_praat_to_latin1 '.openDialogue$'
392 .openDialogue$ = convert_praat_to_latin1.text$
394 .newWordlistName$ = "'wordlist$'_SGC2"
396 # Ensure the right extension: ".tsv"
397 while .newWordlistName$ <> "" and not endsWith(.newWordlistName$, ".tsv")
398 .newWordlistName$ = .newWordlistName$ + ".tsv"
399 .newWordlistName$ = chooseWriteFile$ (.openDialogue$, .newWordlistName$)
401 .tableName$ = replace_regex$(.newWordlistName$, "^.*[/\\:]([^/\\:]+)\.(tsv|Table)$", "\1", 0)
402 call testLoadTable '.tableName$'
403 if testLoadTable.table > 0
404 call loadTable '.tableName$'
405 .tmpTable = selected()
406 Save as tab-separated file: .newWordlistName$
408 .newWordlistName$ = ""
412 if .newWordlistName$ <> ""
413 select sgc.currentWordlist
414 .tmpSaveWordlist = Copy: "SaveWordlist"
415 # Get the table sorted
416 .lessonCol = Get column index: "Lesson"
418 Sort rows... Lesson Pinyin
423 # Remove all words that are deselected
424 .showCol = Get column index: "Show"
426 .numRows = Get number of rows
429 .show$ = Get value: .row, "Show"
430 .sound$ = Get value: .row, "Sound"
432 .numRows = Get number of rows
433 # Do NOT remove all the rows
437 elsif .sound$ <> "" and .sound$ <> "-" and .sound$ <> "?"
438 # Put path before sound examples
439 # If there is no path, add the current wordlist path
440 if index_regex(.sound$, "^(/|~/|[A-Z]:\\)") <= 0
441 .sound$ = localWordlistDir$+"/"+wordlistName$+"/"+.sound$
442 Set string value: .row, "Sound", .sound$
447 Remove column: "Show"
449 Write to table file... '.newWordlistName$'
453 call Draw_button '.table$' '.label$' 0
454 call Draw_config_page
457 procedure processConfigPerfSummary .clickX .clickY .pressed$
459 .label$ = "PerfSummary"
461 call testLoadTable SummaryToneEvaluation
462 if testLoadTable.table > 0
463 call Draw_button '.table$' '.label$' 1
464 call loadTable SummaryToneEvaluation
465 call write_tabbed_table SummaryToneEvaluation Evaluation_'config.language$'
467 select Table SummaryToneEvaluation
470 call Draw_button '.table$' '.label$' 0
471 call Draw_config_page
475 # Wipe current performance table and initialize a new one
476 procedure processConfigClearSummary .clickX .clickY .pressed$
478 .label$ = "ClearSummary"
480 call Draw_button '.table$' '.label$' 1
482 if not sgc.saveAudioOn
483 select Table '.table$'
484 call findLabel '.table$' !'.label$'
486 .alertText$ = Get value... 'findLabel.row' Text
487 .confirmKey$ = Get value... 'findLabel.row' Key
488 .popupText$ = Get value... 'findLabel.row' Helptext
490 call write_text_popup 'defaultFont$' 14 '.popupText$'
491 call Draw_button '.table$' '.label$' 2
492 alertText$ = .alertText$
493 call Draw_button '.table$' '.label$' 3
496 # Wait for confirmation
498 if demoInput(.confirmKey$)
500 call initialize_toneevaluation_tables
505 call Draw_button '.table$' '.label$' 'sgc.saveAudioOn'
506 call Draw_config_page
510 procedure processConfigListPerf .clickX .clickY .pressed$
513 call Draw_button '.table$' '.label$' 1
515 select sgc2.performanceTable
519 call Draw_button '.table$' '.label$' 0
520 call Draw_config_page
523 procedure processConfigOpenPerf .clickX .clickY .pressed$
526 call Draw_button '.table$' '.label$' 1
528 if not sgc.saveAudioOn
530 call findLabel '.table$' !'.label$'
532 select Table '.table$'
533 .openDialogue$ = Get value... '.row' Helptext
534 call convert_praat_to_latin1 '.openDialogue$'
535 .openDialogue$ = convert_praat_to_latin1.text$
536 if variableExists("eval.performance$")
537 .defaultName$= "'eval.performance$'.tsv"
539 .defaultName$= "Performance.tsv"
541 if sgc.savePerf$ <> ""
542 .defaultName$= sgc.savePerf$
544 .performance_Name$ = chooseReadFile$ (.openDialogue$)
545 while .performance_Name$ <> "" and index_regex(.performance_Name$, "\.(tsv|TSV)$") <= 0
546 .performance_Name$ = chooseReadFile$ (.openDialogue$)
548 if .performance_Name$ <> "" and fileReadable(.performance_Name$)
549 sgc.savePerf$ = .performance_Name$
550 call initialize_toneevaluation_tables
552 # Set SaveAudio directory if it is not currently "in use"
553 if not sgc.saveAudioOn
554 sgc.saveAudio$ = replace_regex$(sgc.savePerf$, "[/\\][^/\\]+$", "", 0)
555 # We are not sure yet that this is actually an audio directory
556 config.audioName$ = ""
561 call Draw_button '.table$' '.label$' 'sgc.saveAudioOn'
562 call Draw_config_page
565 procedure processConfigSavePerf .clickX .clickY .pressed$
568 call Draw_button '.table$' '.label$' 1
570 if not sgc.saveAudioOn
572 call findLabel '.table$' '.label$'
574 select Table '.table$'
575 .openDialogue$ = Get value... '.row' Helptext
576 call convert_praat_to_latin1 '.openDialogue$'
577 .openDialogue$ = convert_praat_to_latin1.text$
578 if variableExists("eval.performance$")
579 .defaultName$= "'eval.performance$'.tsv"
581 .defaultName$= "Performance.tsv"
583 if sgc.savePerf$ <> ""
584 .defaultName$= sgc.savePerf$
586 .performance_Name$ = chooseWriteFile$ (.openDialogue$, .defaultName$)
587 # Ensure the right extension: ".tsv"
588 while .performance_Name$ <> "" and not endsWith(.performance_Name$, ".tsv")
589 .performance_Name$ = .performance_Name$ + ".tsv"
590 .performance_Name$ = chooseWriteFile$ (.openDialogue$, .performance_Name$)
592 if .performance_Name$ <> ""
593 select sgc2.performanceTable
594 Write to table file... '.performance_Name$'
595 sgc.savePerf$ = .performance_Name$
599 call Draw_button '.table$' '.label$' 'sgc.saveAudioOn'
600 call Draw_config_page
603 procedure processConfigManual .clickX .clickY .pressed$
606 call Draw_button '.table$' '.label$' 1
607 if fileReadable("ManPages/SpeakGoodChinese_2.man")
608 Read from file... ManPages/SpeakGoodChinese_2.man
610 Go to manual page... SpeakGoodChinese 2
612 # Wait until the manual is put to the background
614 call Draw_button '.table$' '.label$' 0
616 call Draw_config_page
619 procedure processConfigSaveAudio .clickX .clickY .pressed$
621 .label$ = "SaveAudio"
622 call Draw_button '.table$' '.label$' 1
624 if sgc.saveAudioOn = 0
626 call findLabel '.table$' '.label$'
628 select Table '.table$'
629 .openDialogue$ = Get value... '.row' Helptext
630 call convert_praat_to_latin1 '.openDialogue$'
631 .openDialogue$ = convert_praat_to_latin1.text$
633 sgc.saveAudio$ = chooseDirectory$ (.openDialogue$)
634 if sgc.saveAudio$ <> ""
636 .currentPathName$ = replace_regex$(sgc.saveAudio$, "[^/\\]*[/\\]?$", "", 0)
637 .currentDirName$ = replace$(sgc.saveAudio$, .currentPathName$, "", 0)
640 config.clearSummary = -1
641 config.audioName$ = .currentDirName$
643 # Clear performance table and open/create sgc.savePerf$
644 sgc.savePerf$ = "'sgc.saveAudio$'/'.currentDirName$'.tsv"
645 call initialize_toneevaluation_tables
647 call update_toneevaluation_file
648 if sgc.savePerf$ <> "" and initialiseSGC2.toneevaluation_table$ <> ""
649 select sgc2.performanceTable
650 Write to table file: sgc.savePerf$
653 config.audioName$ = ""
659 config.clearSummary = 0
660 # Store current performance table
661 call update_toneevaluation_file
664 call Draw_button '.table$' '.label$' 'sgc.saveAudioOn'
665 call Draw_config_page
668 ###############################################################
670 # Obligatory button Processing Routines
672 # These MUST be defined
674 ###############################################################
676 procedure processConfigReturn .clickX .clickY .pressed$
679 call Draw_button '.table$' '.label$' 1
680 call write_preferences ""
683 procedure processConfigRefresh .clickX .clickY .pressed$
686 call Draw_config_page
689 procedure processConfigCredits .clickX .clickY .pressed$
692 call Draw_button '.table$' '.label$' 1
693 call write_text_table Credits_'config.language$'
695 call Draw_button '.table$' '.label$' 0
697 call Draw_config_page
700 procedure processConfigHelp .clickX .clickY .pressed$
703 call help_loop '.table$' Draw_config_page
706 ###############################################################
708 # Miscelaneous supporting code
710 ###############################################################
711 procedure install_wordlists_by_name .wordlist_Name$
712 if .wordlist_Name$ <> ""
713 if index_regex(.wordlist_Name$, "(?iwordlist|LICENSE)\.")
714 .wordlist_Name$ = replace_regex$(.wordlist_Name$, "[/\\](?iwordlist|LICENSE)\.([^/\\]+)$", "", 0)
715 elsif index_regex(.wordlist_Name$, "(?i\.(wav|flac|iaf[fc]|mp3))")
716 .wordlist_Name$ = replace_regex$(.wordlist_Name$, "[/\\][^/\\]+$", "", 0)
718 if index_regex(.wordlist_Name$, "[/\\]")
719 .sourceDir$ = left$(.wordlist_Name$, rindex_regex(.wordlist_Name$, "[/\\]") -1)
720 .file$ = right$(.wordlist_Name$, length(.wordlist_Name$) - rindex_regex(.wordlist_Name$, "[/\\]"))
721 call readWordlist "'.sourceDir$'" '.file$'
724 if index(.wordlist_Name$, ".")
727 .extension1$ = ".sgc"
728 .extension2$ = ".Table"
729 .extension3$ = ".txt"
730 .extension4$ = ".tsv"
732 for .e from .start to 5
733 .currentExtension$ = .extension'.e'$
734 call readWordlist "'homeDirectory$'" '.wordlist_Name$''.currentExtension$'
735 call readWordlist "'homeDirectory$'/Downloads" '.wordlist_Name$''.currentExtension$'
736 call readWordlist "'homeDirectory$'/Documents" '.wordlist_Name$''.currentExtension$'
737 call readWordlist "'homeDirectory$'/My Documents/Downloads" '.wordlist_Name$''.currentExtension$'
738 call readWordlist "'homeDirectory$'/My Documents" '.wordlist_Name$''.currentExtension$'
739 call readWordlist "'homeDirectory$'/Desktop" '.wordlist_Name$''.currentExtension$'
740 call readWordlist "'preferencesAppDir$'" '.wordlist_Name$''.currentExtension$'
746 # Word lists: It is a VERY good idea to make sure that word-lists
748 procedure load_word_list .localdir$ .relnumber
750 if sgc.allWordLists > 0
751 select sgc.allWordLists
753 sgc.allWordLists = -1
756 # Remove old word list
758 select sgc.currentWordlist
760 call wipeArea 'wipeWordlistArea$'
762 sgc.currentWordlist = -1
766 # Create Table that will recieve the wordlists and directories
767 sgc.allWordLists = Create Table with column names... AllWordLists 0 Name Directory
768 .sgc.currentWordlistRow = 0
770 # First the global word lists
771 if fileReadable(globalwordlists$) or fileReadable("'globalwordlists$'/directory.txt")
772 Create Strings as directory list... WordList 'globalwordlists$'
773 .numLists = Get number of strings
775 select Strings WordList
776 .currentName$ = Get string... '.i'
777 if .currentName$ <> "directory.txt"
778 select sgc.allWordLists
779 .listExist = Search column: "Name", .currentName$
782 .sgc.currentWordlistRow = Get number of rows
783 Set string value... '.sgc.currentWordlistRow' Name '.currentName$'
784 .currentDirectory$ = globalwordlists$+"/"+.currentName$
785 Set string value... '.sgc.currentWordlistRow' Directory '.currentDirectory$'
789 select Strings WordList
793 # Now the preferences word lists
794 if fileReadable(sgc2wordlists$) or fileReadable("'sgc2wordlists$'/directory.txt")
795 Create Strings as directory list... WordList 'sgc2wordlists$'
796 .numLists = Get number of strings
798 select Strings WordList
799 .currentName$ = Get string... '.i'
800 if .currentName$ <> "directory.txt"
801 select sgc.allWordLists
802 .listExist = Search column: "Name", .currentName$
805 .sgc.currentWordlistRow = Get number of rows
806 Set string value... '.sgc.currentWordlistRow' Name '.currentName$'
807 .currentDirectory$ = sgc2wordlists$+"/"+.currentName$
808 Set string value... '.sgc.currentWordlistRow' Directory '.currentDirectory$'
812 select Strings WordList
816 # End with the word lists in the distribution
817 call CreateCreateWordlists
818 select Table CreateWordlists
819 .numLists = Get number of rows
821 select Table CreateWordlists
822 .currentName$ = Get value... '.i' Name
823 if .currentName$ <> "directory.txt"
824 select sgc.allWordLists
825 .listExist = Search column: "Name", .currentName$
827 .procedureName$ = replace_regex$(.currentName$, "[^\w\-\.]", "_", 0)
828 select sgc.allWordLists
830 .sgc.currentWordlistRow = Get number of rows
831 Set string value... '.sgc.currentWordlistRow' Name '.currentName$'
832 .currentDirectory$ = "*call Create'.procedureName$'"
833 Set string value... '.sgc.currentWordlistRow' Directory '.currentDirectory$'
837 select Table CreateWordlists
840 # Finally, the local word lists
841 if fileReadable(.localdir$) or fileReadable("'.localdir$'/directory.txt")
842 Create Strings as directory list... WordList '.localdir$'
843 .numLists = Get number of strings
845 select Strings WordList
846 .currentName$ = Get string... '.i'
847 if .currentName$ <> "directory.txt"
848 select sgc.allWordLists
849 .listExist = Search column: "Name", .currentName$
852 .sgc.currentWordlistRow = Get number of rows
853 Set string value... '.sgc.currentWordlistRow' Name '.currentName$'
854 .currentDirectory$ = .localdir$+"/"+.currentName$
855 Set string value... '.sgc.currentWordlistRow' Directory '.currentDirectory$'
859 select Strings WordList
863 # Get the position of the current word list
864 select sgc.allWordLists
866 .numLists = Get number of rows
868 if wordlistName$ <> ""
869 select sgc.allWordLists
870 .currentNumber = Search column... Name 'wordlistName$'
871 if .currentNumber <= 0
876 wordlistNum = .currentNumber + .relnumber
877 if wordlistNum > .numLists
879 elsif wordlistNum < 1 and .numLists > 0
880 wordlistNum = .numLists
882 select sgc.allWordLists
883 wordlistName$ = Get value... 'wordlistNum' Name
884 .dirWordlistName$ = Get value... 'wordlistNum' Directory
885 .dirString$ = replace_regex$(.dirWordlistName$, "[ ]", "&", 0)
887 # Read in full tables
888 if fileReadable("'.dirString$'/wordlist.Table")
889 call readTable '.dirString$'/wordlist.Table
890 if readTable.tableID > 0
891 Rename... 'wordlistName$'
892 # Praat wil change the name if it feels like it
893 wordlist$ = selected$("Table")
894 # Add a Sound column if it is not present
895 .soundIndex = Get column index: "Sound"
897 Append column: "Sound"
903 # Handle (legacy) simple word lists
904 elsif fileReadable("'.dirString$'/wordlist.txt")
905 Create Table with column names... "'wordlistName$'" 0 Pinyin Character Sound Translation
906 wordlist$ = selected$("Table")
907 Read Strings from raw text file... '.dirString$'/wordlist.txt
908 Rename... RawWordList
909 .numWordStrings = Get number of strings
910 for .i to .numWordStrings
911 select Strings RawWordList
915 .currentLine$ = Get string... '.i'
916 # Remove leading whitespace
917 .currentLine$ = replace_regex$(.currentLine$, "^[ \t]+", "", 0)
918 .separatorIndex = index_regex(.currentLine$, "[ \t;\-]")
919 if .separatorIndex <= 0
920 .separatorIndex = length(.currentLine$) + 1
922 .currentPinyin$ = left$(.currentLine$, .separatorIndex-1)
923 .currentLine$ = right$(.currentLine$, length(.currentLine$) - .separatorIndex)
924 # There is more on the line, but we do not know what
925 if length(.currentLine$) > 0
926 while length(.currentLine$) > 0
927 .separatorIndex = index_regex(.currentLine$, "[\t;]")
928 if .separatorIndex <= 0
929 .separatorIndex = length(.currentLine$)+1
931 .currentItem$ = left$(.currentLine$, .separatorIndex-1)
932 .currentLine$ = right$(.currentLine$, length(.currentLine$) - .separatorIndex )
933 if index_regex(.currentItem$, ".(spx|flac|wav|mp3)")
935 .currentFile$ = .currentItem$
936 elsif index_regex(.currentItem$, "[a-zA-Z0-9]") > 0
938 .currentTrans$ = .currentItem$
939 elsif index_regex(.currentItem$, "[^ \t\r\l]") > 0 && index_regex(.currentItem$, "[a-zA-Z0-9\-]") <= 0
941 .currentChar$ = .currentItem$
945 if .currentFile$ = "-"
946 if fileReadable("'.dirString$'/'.currentPinyin$'.spx")
947 .currentFile$ = .currentPinyin$+".spx"
948 elsif fileReadable("'.dirString$'/'.currentPinyin$'.flac")
949 .currentFile$ = .currentPinyin$+".flac"
950 elsif fileReadable("'.dirString$'/'.currentPinyin$'.wav")
951 .currentFile$ = .currentPinyin$+".wav"
952 elsif fileReadable("'.dirString$'/'.currentPinyin$'.mp3")
953 .currentFile$ = .currentPinyin$+".mp3"
956 select Table 'wordlist$'
958 Set string value... '.i' Pinyin '.currentPinyin$'
959 Set string value... '.i' Sound '.currentFile$'
960 Set string value... '.i' Character '.currentChar$'
961 Set string value... '.i' Translation '.currentTrans$'
963 select Strings RawWordList
966 select Table 'wordlist$'
967 elsif fileReadable(.dirString$) or fileReadable("'.dirString$'/directory.txt")
968 Create Table with column names... "'wordlistName$'" 0 Pinyin Sound
969 wordlist$ = selected$("Table")
970 Create Strings as file list... RawWordList '.dirString$'/*
971 .numWordStrings = Get number of strings
973 for .j to .numWordStrings
974 select Strings RawWordList
975 .currentLine$ = Get string... '.j'
976 .currentFile$ = extractWord$(.currentLine$, "")
977 if index_regex(.currentFile$, "\.(spx|flac|wav|mp3)")
978 .currentPinyin$ = left$(.currentFile$, index(.currentFile$, ".")-1)
979 select Table 'wordlist$'
982 Set string value... '.i' Pinyin '.currentPinyin$'
983 Set string value... '.i' Sound '.currentFile$'
986 select Strings RawWordList
989 select Table 'wordlist$'
990 elsif startsWith(.dirString$, "*call ")
991 .callProcedure$ = right$(.dirString$, length(.dirString$)-1)
993 wordlist$ = selected$("Table")
1000 # Can this wordlist be deleted?
1001 if fileReadable("'sgc2wordlists$'/'wordlistName$'") or fileReadable("'sgc2wordlists$'/'wordlistName$'/wordlist.txt") or fileReadable("'sgc2wordlists$'/'wordlistName$'/wordlist.Table")
1002 config.deleteWordlist = 0
1004 config.deleteWordlist = -1
1007 # Check first column name and add Character, Translation, Sound and Show columns if missing
1009 select Table 'wordlist$'
1010 # Hack to correct odd behavior of tables with unicode characters
1011 .firstColumn$ = Get column label: 1
1012 if index_regex(.firstColumn$, "^[^!-~]") > 0
1013 .firstColumn$ = replace_regex$(.firstColumn$, "^[^!-~]", "", 0)
1014 Set column label (index): 1, .firstColumn$
1017 sgc.numberOfWords = Get number of rows
1018 .characterColumn = Get column index... Character
1019 if not .characterColumn
1020 Append column... Character
1021 for .i to sgc.numberOfWords
1022 Set string value... '.i' Character -
1025 .translationColumn = Get column index... Translation
1026 if not .translationColumn
1027 Append column... Translation
1028 for .i to sgc.numberOfWords
1029 Set string value... '.i' Translation -
1032 .translationColumn = Get column index... Sound
1033 if not .translationColumn
1034 Append column... Sound
1035 for .i to sgc.numberOfWords
1036 Set string value... '.i' Sound -
1039 .showColumn = Get column index... Show
1041 Append column... Show
1042 for .i to sgc.numberOfWords
1043 Set string value... '.i' Show +
1048 # Remove all rows without Pinyin
1049 .numRows = Get number of rows
1051 .rowNum = .numRows - i + 1
1052 .pinyinValue$ = Get value... '.rowNum' Pinyin
1053 .currLength = Get number of rows
1054 if not index_regex(.pinyinValue$, "^[a-zA-Z]")
1058 Set string value: .rowNum, "Pinyin", "bu4"
1062 .numRows = Get number of rows
1063 sgc.numberOfWords = Get number of rows
1065 # Shuffle words if requested
1066 if config.shuffleLists
1070 # Determine number of words actually shown
1072 sgc.currentWordNum = 1
1073 sgc.numberOfDisplayedWords = 0
1075 .show$ = Get value: .i, "Show"
1077 if sgc.currentWord < 1
1078 sgc.currentWord = .i
1080 sgc.numberOfDisplayedWords += 1
1086 #select sgc.allWordLists
1089 # There were no Word Lists
1092 wordlistName$ = wordlistName$+" No Word Lists available"
1094 Create Table with column names... "'wordlistName$'" 1 Pinyin Character Translation Sound
1095 wordlist$ = selected$("Table")
1099 Set string value... '.i' Pinyin ni3hao3
1100 Set string value... '.i' Character 你好
1101 Set string value... '.i' Translation hello
1102 Set string value... '.i' Sound -
1105 Set string value... '.i' Pinyin xie4xie0
1106 Set string value... '.i' Character 谢谢
1107 Set string value... '.i' Translation thanks
1108 Set string value... '.i' Sound -
1111 Set string value... '.i' Pinyin zai4jian4
1112 Set string value... '.i' Character 再见
1113 Set string value... '.i' Translation goodbye
1114 Set string value... '.i' Sound -
1115 # Get rid of empty first row
1118 # Set default values
1119 sgc.numberOfWords = Get number of rows
1121 sgc.numberOfDisplayedWords = Get number of rows
1124 select Table 'wordlist$'
1125 sgc.currentWordlist = selected()
1126 call set_window_title 'buttons$' 'wordlistName$'
1129 procedure read_wordlist .wordlistName$ .dirString$
1130 # Read in full tables
1131 if fileReadable("'.dirString$'/wordlist.Table")
1132 call readTable '.dirString$'/wordlist.Table
1133 .wordlistID = selected ()
1135 Rename... '.wordlistName$'
1136 # Praat wil change the name if it feels like it
1137 .wordlist$ = selected$("Table")
1138 # Add a Sound column if it is not present
1139 .soundIndex = Get column index: "Sound"
1141 Append column: "Sound"
1144 goto EMERGENCYEXITWL
1146 # Handle (legacy) simple word lists
1147 elsif fileReadable("'.dirString$'/wordlist.txt")
1148 .wordlistID = Create Table with column names... "'.wordlistName$'" 0 Pinyin Character Sound Translation
1149 .wordlist$ = selected$("Table")
1150 Read Strings from raw text file... '.dirString$'/wordlist.txt
1151 Rename... RawWordList
1152 .numWordStrings = Get number of strings
1153 for .i to .numWordStrings
1154 select Strings RawWordList
1157 .currentTrans$ = "-"
1158 .currentLine$ = Get string... '.i'
1159 # Remove leading whitespace
1160 .currentLine$ = replace_regex$(.currentLine$, "^[ \t]+", "", 0)
1161 .separatorIndex = index_regex(.currentLine$, "[ \t;\-]")
1162 if .separatorIndex <= 0
1163 .separatorIndex = length(.currentLine$) + 1
1165 .currentPinyin$ = left$(.currentLine$, .separatorIndex-1)
1166 .currentLine$ = right$(.currentLine$, length(.currentLine$) - .separatorIndex)
1167 # There is more on the line, but we do not know what
1168 if length(.currentLine$) > 0
1169 while length(.currentLine$) > 0
1170 .separatorIndex = index_regex(.currentLine$, "[\t;]")
1171 if .separatorIndex <= 0
1172 .separatorIndex = length(.currentLine$)+1
1174 .currentItem$ = left$(.currentLine$, .separatorIndex-1)
1175 .currentLine$ = right$(.currentLine$, length(.currentLine$) - .separatorIndex )
1176 if index_regex(.currentItem$, ".(spx|flac|wav|mp3)")
1178 .currentFile$ = .currentItem$
1179 elsif index_regex(.currentItem$, "[a-zA-Z0-9]") > 0
1181 .currentTrans$ = .currentItem$
1182 elsif index_regex(.currentItem$, "[^ \t\r\l]") > 0 && index_regex(.currentItem$, "[a-zA-Z0-9\-]") <= 0
1184 .currentChar$ = .currentItem$
1188 if .currentFile$ = "-"
1189 if fileReadable("'.dirString$'/'.currentPinyin$'.spx")
1190 .currentFile$ = .currentPinyin$+".spx"
1191 elsif fileReadable("'.dirString$'/'.currentPinyin$'.flac")
1192 .currentFile$ = .currentPinyin$+".flac"
1193 elsif fileReadable("'.dirString$'/'.currentPinyin$'.wav")
1194 .currentFile$ = .currentPinyin$+".wav"
1195 elsif fileReadable("'.dirString$'/'.currentPinyin$'.mp3")
1196 .currentFile$ = .currentPinyin$+".mp3"
1201 Set string value... '.i' Pinyin '.currentPinyin$'
1202 Set string value... '.i' Sound '.currentFile$'
1203 Set string value... '.i' Character '.currentChar$'
1204 Set string value... '.i' Translation '.currentTrans$'
1206 select Strings RawWordList
1210 elsif fileReadable(.dirString$) or fileReadable("'.dirString$'/directory.txt")
1211 .wordlistID = Create Table with column names... "'.wordlistName$'" 0 Pinyin Sound
1212 .wordlist$ = selected$("Table")
1213 .tmp = Create Strings as file list... RawWordList '.dirString$'/*
1214 .numWordStrings = Get number of strings
1216 for .j to .numWordStrings
1218 .currentLine$ = Get string... '.j'
1219 .currentFile$ = extractWord$(.currentLine$, "")
1220 if index_regex(.currentFile$, "\.(spx|flac|wav|mp3)")
1221 .currentPinyin$ = left$(.currentFile$, index(.currentFile$, ".")-1)
1222 select sgc.currentWordlist
1225 Set string value... '.i' Pinyin '.currentPinyin$'
1226 Set string value... '.i' Sound '.currentFile$'
1232 select sgc.currentWordlist
1233 elsif startsWith(.dirString$, "*call ")
1234 .callProcedure$ = right$(.dirString$, length(.dirString$)-1)
1236 .wordlistID = selected()
1237 .wordlist$ = selected$("Table")
1240 goto EMERGENCYEXITWL
1243 # Add the path to the file Sound file names
1245 .numRows = Get number of rows
1247 .soundfile$ = Get value: .w, "Sound"
1248 if index_regex(.soundfile$, "[/\\]") <= 0
1249 if index_regex(.dirString$, "[/\\]$")
1250 .soundfile$ = .dirString$+.soundfile$
1251 elsif index_regex(.dirString$, "[\\]")
1252 .soundfile$ = .dirString$+"\\"+.soundfile$
1254 .soundfile$ = .dirString$+"/"+.soundfile$
1256 Set string value: .w, "Sound", .soundfile$
1260 label EMERGENCYEXITWL
1264 procedure merge_into_wordlist .newTableID .lessonPostfix$
1265 select sgc.currentWordlist
1266 .oldLessonColumn = Get column index: "Lesson"
1269 .numRows = Get number of rows
1270 .lessonColumn = Get column index: "Lesson"
1271 .characterColumn = Get column index: "Character"
1272 .soundColumn = Get column index: "Sound"
1273 .translationColumn = Get column index: "Translation"
1277 .currentTrans$ = "-"
1278 .currentLesson$ = "-"
1281 .currentPinyin$ = Get value: .w, "Pinyin"
1283 .currentFile$ = Get value: .w, "Sound"
1285 if .characterColumn > 0
1286 .currentChar$ = Get value: .w, "Character"
1288 if .translationColumn > 0
1289 .currentTrans$ = Get value: .w, "Translation"
1291 if .lessonColumn > 0
1292 .currentLesson$ = Get value: .w, "Lesson"
1294 select sgc.currentWordlist
1296 .n = Get number of rows
1297 Set string value: .n, "Pinyin", .currentPinyin$
1298 Set string value: .n, "Sound", .currentFile$
1299 Set string value: .n, "Character", .currentChar$
1300 Set string value: .n, "Translation", .currentTrans$
1301 if .oldLessonColumn > 0
1302 if .currentLesson$ = "-" or .currentLesson$ = "" or .currentLesson$ = "?"
1303 Set string value: .n, "Lesson", .lessonPostfix$
1305 Set string value: .n, "Lesson", .currentLesson$+" "+.lessonPostfix$
1313 select sgc.currentWordlist
1315 if sgc.currentWord < 0 or sgc.currentWord > sgc.numberOfWords
1316 if config.shuffleLists
1320 sgc.currentWordNum = 0
1322 while .showCurrent$ = "-" and sgc.currentWord <= sgc.numberOfWords
1323 sgc.currentWord += 1
1324 if sgc.currentWord <= sgc.numberOfWords
1325 .showCurrent$ = Get value... 'sgc.currentWord' Show
1328 if sgc.currentWord > 0
1329 sgc.currentWordNum += 1
1331 sgc.currentWordNum = 0
1336 procedure previous_word
1338 select sgc.currentWordlist
1340 if sgc.currentWord <= 0
1341 if config.shuffleLists
1344 sgc.currentWord = sgc.numberOfWords + 1
1345 sgc.currentWordNum = sgc.numberOfDisplayedWords + 1
1347 while .showCurrent$ = "-" and sgc.currentWord > 0
1348 sgc.currentWord -= 1
1349 if sgc.currentWord > 0
1350 .showCurrent$ = Get value... 'sgc.currentWord' Show
1353 if sgc.currentWord > 0
1354 sgc.currentWordNum -= 1
1356 sgc.currentWordNum = 0
1361 procedure display_word_list_name
1365 .displayWordList$ = replace_regex$(wordlistName$, "[_]", " ", 0)
1366 call wipeArea 'wipeWordlistArea$'
1367 call adjustFontSizeOnHeight 'defaultFont$' 'defaultFontSize' 5
1368 .currentFontSize = adjustFontSizeOnHeight.newFontSize
1371 demo Text special... '.xtext' Centre '.ytext' Bottom 'defaultFont$' '.currentFontSize' 0 '.displayWordList$'
1374 call set_font_size 'defaultFontSize'
1377 procedure write_word_list
1378 # Write current Pinyin text
1379 call display_text Black
1381 # Write the current word list name
1382 call display_word_list_name
1385 procedure paint_saveAudio_light
1386 select Table 'config$'
1387 .row = Search column... Label SaveAudio
1389 exit Button Table Config does not have a row with label SaveAudio
1392 .leftX = Get value... '.row' LeftX
1393 .rightX = Get value... '.row' RightX
1394 .lowY = Get value... '.row' LowY
1395 .highY = Get value... '.row' HighY
1396 .buttonColor$ = Get value... '.row' Color
1397 # The button text and symbol
1398 .horWC = demo Horizontal mm to wc... 10.0
1399 .verWC = demo Vertical mm to wc... 10.0
1401 .verCoeff = .horWC / .verWC
1406 .centerX = (.leftX + .rightX)/2
1407 .centerY = .lowY + 0.6*(.highY-.lowY)
1408 .radius = min(.verCoeff * (.highY - .lowY ), (.rightX - .leftX))/3
1409 .wipeRadius = 1.1*.radius
1410 call DrawSaveAudio White '.centerX' '.centerY' '.wipeRadius'
1412 if sgc.saveAudioOn and sgc.saveAudio$ <> ""
1413 call DrawSaveAudio "DarkBlue" '.centerX' '.centerY' '.radius'
1418 # Uninstall word lists
1419 procedure removeWordlist .deletedWordlistName$
1421 if fileReadable("'sgc2wordlists$'/'.deletedWordlistName$'") or fileReadable("'sgc2wordlists$'/'.deletedWordlistName$'/wordlist.txt") or fileReadable("'sgc2wordlists$'/'.deletedWordlistName$'/wordlist.Table")
1422 .targetDir$ = "'sgc2wordlists$'/'.deletedWordlistName$'"
1424 if .targetDir$ <> ""
1425 Create Strings as file list... DeleteList '.targetDir$'
1426 .numdeleteFiles = Get number of strings
1427 for .i to .numdeleteFiles
1428 .file$ = Get string... '.i'
1429 deleteFile("'.targetDir$'/'.file$'")
1431 filedelete '.targetDir$'
1432 # Check whether the directory was actually deleted. Make sure this is a valid directory name!
1433 # That is, it does not contain funny characters, nor funny names
1434 if index_regex(.deletedWordlistName$, "[^a-zA-Z0-9_ .\-]") <= 0 and index(.deletedWordlistName$, "..") <= 0 and index_regex(.deletedWordlistName$, "[a-zA-Z]") > 0
1436 nocheck system rmdir "'.targetDir$'" /s /q
1437 elsif fileReadable(.targetDir$)
1438 system bash -rc -- 'rm -r -- "'.targetDir$'"'
1441 # Remove deleted word list
1442 select Strings DeleteList
1443 plus Table 'wordlist$'
1449 # Install word lists
1450 procedure sgc2wordlist .sourceDir$
1451 if startsWith(.sourceDir$, "preferencesDirectory$")
1452 .sourceDir$ = replace$(.sourceDir$, "preferencesDirectory$", preferencesDirectory$)
1455 .targetDirectory$ = "'sgc2wordlists$'"
1456 if fileReadable(.sourceDir$) or fileReadable("'.sourceDir$'/directory.txt")
1457 Create Strings as file list... PackageList '.sourceDir$'/*.sgc
1458 .numFiles = Get number of strings
1460 select Strings PackageList
1461 .file$ = Get string... '.i'
1462 call readWordlist '.sourceDir$' '.file$'
1465 select Strings PackageList
1470 # Debuggin remarks!!!
1471 # fileReadable(<directory>) does not work in Windows
1472 # The file paths / -> \\ must be performed on the filenames in Windows before the system_nocheck is given
1473 # And yet only the 7z decompression has been implemented
1474 windowsUnzipCommand$ = ""
1475 if fileReadable("C:\Program Files\7-Zip\7z.exe")
1476 windowsUnzipCommand$ = """C:\Program Files\7-Zip\7z.exe"" -y e"
1477 windowsUnzipDestDir$ = " -o"
1478 elsif fileReadable("C:\Program Files\WinZip\winzip32.exe")
1479 # !!! Find a way to include the output folder !!!
1480 windowsUnzipCommand$ = "C:\Program Files\WinZip\winzip32.exe"" -min -e -o -j "
1481 windowsUnzipDestDir$ = ""
1483 procedure readWordlist .sourceDir$ .file$
1484 # No use doing anything if the source does not exist
1485 if fileReadable("'.sourceDir$'/'.file$'") or fileReadable("'.sourceDir$'/'.file$'/wordlist.txt") or fileReadable("'.sourceDir$'/'.file$'/wordlist.Table")
1486 # What will be the target wordlist directory?
1487 .targetDirectory$ = "'sgc2wordlists$'"
1488 .dirname$ = left$(.file$, rindex(.file$, ".")-1)
1492 .wordlistDirectory$ = .targetDirectory$+"/"+.dirname$
1493 # Wordlist directory does not exist, neither locally nor in the preferences
1495 .tmpDirs = nocheck Create Strings as directory list... TMPWORDLISTS '.targetDirectory$'/
1496 if .tmpDirs != undefined and .tmpDirs > 0
1497 .numDirs = Get number of strings
1500 .currentString$ = Get string... '.d'
1501 if .currentString$ = .dirname$
1507 if not (.wordListExists or fileReadable(.dirname$) or fileReadable("'.dirname$'/directory.txt") or fileReadable(.wordlistDirectory$) or fileReadable("'.wordlistDirectory$'/directory.txt"))
1509 # Move source to destination
1510 # Use this if you want to allow direct loading of ZIP files. Could lead to problems.
1511 # if index(.file$, ".sgc") or index(.file$, ".zip")
1513 if index(.file$, ".sgc")
1514 if index_regex(.wordlistDirectory$, "[^a-zA-Z0-9_\.\- /~\:]") <= 0 and index_regex(.dirname$, "[^a-zA-Z0-9_\.\- ]") <= 0 and not (windows and windowsUnzipCommand$ = "")
1515 # Create wordlist directory
1516 createDirectory(.wordlistDirectory$)
1518 if macintosh or unix
1519 system bash -rc -- 'unzip -j "'.sourceDir$'/'.file$'" -d "'.wordlistDirectory$'"'
1520 elsif windows and windowsUnzipCommand$ <> ""
1521 .winWordListDirectory$ = replace_regex$(.wordlistDirectory$, "/", "\\", 0)
1522 .winSourceDirectory$ = replace_regex$("'.sourceDir$'\'.file$'", "/", "\\", 0)
1523 system mkdir "'.winWordListDirectory$'" & 'windowsUnzipCommand$' "'.winSourceDirectory$'" 'windowsUnzipDestDir$'"'.winWordListDirectory$'"
1525 elsif (windows and windowsUnzipCommand$ = "")
1526 # Warn to install 7Zip
1527 call get_feedback_text 'config.language$' InstallUnzip
1528 call convert_praat_to_latin1 'get_feedback_text.text$'
1529 .zipText$ = convert_praat_to_latin1.text$
1530 call write_text_popup 'defaultFont$' 14 '.zipText$'
1531 # Wait for confirmation
1533 call Draw_config_page
1535 # Remove if not valid!
1536 if fileReadable("'.wordlistDirectory$'/wordlist.Table") or fileReadable("'.wordlistDirectory$'/wordlist.txt") or fileReadable("'.wordlistDirectory$'/LICENSE.txt")
1537 if fileReadable("'.wordlistDirectory$'/wordlist.Table")
1538 call readTable '.sourceDir$'/'.file$'
1539 if readTable.tableID > 0
1540 select readTable.tableID
1541 # Hack around odd behavior of column index
1543 .firstColumn$ = Get column label: 1
1544 .firstColumn$ = replace_regex$(.firstColumn$, "^[^!-~]", "", 0)
1545 if .firstColumn$ = "Pinyin"
1548 .pinyinCol = Get column index... Pinyin
1551 # No Pinyin in table
1560 # None of wordlist.Table, wordlist.txt, nor LICENSE.txt
1563 ### REALLY DANGEROUS STUFF, SHOULD BE HANDLED BETTER
1565 # Remove newly created directory
1566 if index_regex(.wordlistDirectory$, "[^a-zA-Z0-9_\.\- /~\:]") <= 0 and index_regex(.dirname$, "[^a-zA-Z0-9_\.\- ]") <= 0 and index(.dirname$, "..") <= 0
1567 if macintosh or unix
1568 system bash -rc -- 'rm -r "'.wordlistDirectory$'/"'
1570 system rmdir /Q /S "'.winWordListDirectory$'/"
1574 elsif index_regex(.file$, "\.(Table|tsv|csv)")
1575 # Check whether this is a valid table
1576 call readTable '.sourceDir$'/'.file$'
1577 if readTable.tableID > 0
1578 select readTable.tableID
1579 # Hack around odd behavior of column index
1581 .firstColumn$ = Get column label: 1
1582 .firstColumn$ = replace_regex$(.firstColumn$, "^[^!-~]", "", 0)
1583 if .firstColumn$ = "Pinyin"
1586 .pinyinCol = Get column index... Pinyin
1590 select readTable.tableID
1591 # Create wordlist directory
1592 createDirectory(.wordlistDirectory$)
1594 .extension$ = "Table"
1595 .wordlistFilePath$ = "'.wordlistDirectory$'/wordlist.'.extension$'"
1597 .wordlistFilePath$ = replace_regex$(.wordlistFilePath$, "/", "\\", 0)
1600 select readTable.tableID
1601 Save as tab-separated file: .wordlistFilePath$
1602 if not fileReadable(.wordlistFilePath$)
1606 select readTable.tableID
1609 elsif index_regex(.file$, "\.(?itxt)")
1610 # Check whether this is a valid table
1611 readTable.tableID = nocheck Read Strings from raw text file: "'.sourceDir$'/'.file$'"
1612 if readTable.tableID > 0
1614 # Create wordlist directory
1615 createDirectory(.wordlistDirectory$)
1617 .wordlistFilePath$ = "'.wordlistDirectory$'/wordlist.'.extension$'"
1619 .wordlistFilePath$ = replace_regex$(.wordlistFilePath$, "/", "\\", 0)
1621 select readTable.tableID
1622 Save as raw text file: .wordlistFilePath$
1623 select readTable.tableID
1626 elsif fileReadable("'.sourceDir$'/'.file$'/wordlist.Table") or fileReadable("'.sourceDir$'/'.file$'/wordlist.txt") or fileReadable("'.sourceDir$'/'.file$'/LICENSE.txt")
1627 # Copy wordlist directory
1628 if index_regex(.file$, "[^a-zA-Z0-9_\.\- ]") <= 0
1630 if macintosh or unix
1631 system bash -rc -- 'cp -r "'.sourceDir$'/'.file$'" "'.wordlistDirectory$'"'
1633 createDirectory(.wordlistDirectory$)
1634 .winWordListDirectory$ = replace_regex$(.wordlistDirectory$, "/", "\\", 0)
1635 .winSourceDirectory$ = replace_regex$("'.sourceDir$'\'.file$'", "/", "\\", 0)
1636 system xcopy "'.winSourceDirectory$'" "'.winWordListDirectory$'" /s /e /q
1641 # Set current word list to read list
1643 wordlistName$ = .dirname$
1646 .label$ = "!NotAWordlist"
1649 call findLabel '.table$' '.label$'
1650 .row = findLabel.row
1651 select Table '.table$'
1652 .helpText$ = Get value... '.row' Helptext
1653 .printablePath$ = "'.sourceDir$'/'.file$'"
1655 .printablePath$ = replace$("'.sourceDir$'\'.file$'", "\", "\bs", 0)
1657 .filetext$ = replace_regex$(.printablePath$, "_", "\\_ ", 0)
1658 call write_text_popup 'defaultFont$' 14 '.helpText$' "'.filetext$'"
1659 # Wait for confirmation