-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuistuff.py
907 lines (728 loc) · 40.1 KB
/
uistuff.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
import math
import os
from typing import Optional, Union, Callable
import customtkinter
import options as opts
import texttospeech
import sys
"""
Frame 1: Program Options ✓
✓ verbose logging
✓ chatboxes
✓ parrot mode
✓ sound feedback
✓ audio trigger
Frame 2: AI Stuff
✓ Whisper Prompt (textfield)
- Whisper Model (dropdown)
✓ GPT Model (RadioButton)
✓ Max Tokens (spinbox)
✓ Max Conv Length (spinbox)
Frame 3: Bools
✓ key press window
- key trigger key
Frame 4: Audio
✓ rms threshold (spinbox)
✓ silence timeout (spinbox)
✓ max recording time (spinbox)
- input device name (dropdown)
- output device name (dropdown)
Frame 5: TTS Settings
✓ Dynamic Frame Switcher
✓ Google Cloud
- language code (dropdown)
- voice name (dropdown)
- Eleven Labs
✓ Voice Name (dropdown)
- Voice Settings??
- Google Translate
- Language Code (dropdown)
✓ Windows Default
✓ Voice Name (dropdown)
✓ Speech Rate (spinbox)
✓ TikTok
✓ Voice Name (dropdown)
"""
app = None
icon = os.getcwd() + "\\icon.ico"
class ProgramOptionsFrame(customtkinter.CTkFrame):
def __init__(self, master, title):
super().__init__(master)
self.grid_columnconfigure(0, weight=1)
self.title = title
self.checkboxes = []
self.checkbox_names = [
"Verbose logging",
"VRC Chatboxes",
"Parrot mode",
"Sound feedback",
"Audio trigger"
]
self.variables = [
opts.verbosity,
opts.chatbox,
opts.parrot_mode,
opts.soundFeedback,
opts.audio_trigger_enabled
]
self.title = customtkinter.CTkLabel(
self, text=self.title, fg_color="gray30", corner_radius=6)
self.title.grid(row=0, column=0, padx=10, pady=(10, 0), sticky="ew")
self.vars = []
for i, val in enumerate(self.variables):
var = customtkinter.BooleanVar(value=self.variables[i])
self.vars.append(var)
for i, name in enumerate(self.checkbox_names):
checkbox = customtkinter.CTkCheckBox( self, text=name, variable=self.vars[i], command=self._update_variables )
checkbox.grid( row=i+1, column=0, padx=10, pady=(10, 0), sticky="w" )
self.checkboxes.append(checkbox)
def _update_variables(self):
opts.verbosity = self.checkboxes[0].get()
opts.chatbox = self.checkboxes[1].get()
opts.parrot_mode = self.checkboxes[2].get()
opts.soundFeedback = self.checkboxes[3].get()
opts.audio_trigger_enabled = self.checkboxes[4].get()
def update_checkboxes(self):
# TODO: This is so ugly. Oh my god. I need to find a better way to do this.
if self.checkboxes[0].get() is not opts.verbosity: self.checkboxes[0].toggle()
if self.checkboxes[1].get() is not opts.chatbox: self.checkboxes[1].toggle()
if self.checkboxes[2].get() is not opts.parrot_mode: self.checkboxes[2].toggle()
if self.checkboxes[3].get() is not opts.soundFeedback: self.checkboxes[3].toggle()
if self.checkboxes[4].get() is not opts.audio_trigger_enabled: self.checkboxes[3].toggle()
class AIStuffFrame(customtkinter.CTkFrame):
def __init__(self, master, title):
super().__init__(master)
self.grid_columnconfigure(1, weight=1)
self.title = title
self.whispermodels = ["tiny", "tiny.en", "base", "base.en", "small", "small.en", "medium", "medium.en", "large", "large-v2"]
self.title = customtkinter.CTkLabel(
self, text=self.title, fg_color="gray30", corner_radius=6)
self.title.grid(row=0, column=0, columnspan=3, padx=10, pady=(10,0), sticky="ew")
self.whisper_prompt = customtkinter.StringVar(value=opts.whisper_prompt)
self.selected_whisper_model = customtkinter.StringVar(value=opts.whisper_model)
self.gpt_radio_var = customtkinter.IntVar(value=0 if opts.gpt == "GPT-3.5-Turbo" else 1)
self.max_tokens_var = customtkinter.IntVar(value=opts.max_tokens)
self.max_conv_length_var = customtkinter.IntVar(value=opts.max_conv_length)
self.sytem_prompt_var = customtkinter.StringVar(value=opts.system_prompt)
self.label_whisper_prompt = customtkinter.CTkLabel(self, text="Whisper Prompt: ", fg_color="transparent")
self.label_whisper_prompt.grid(row=1, column=0, columnspan=2, sticky="w", pady=(4,1), padx=5)
self.textfield_whisper_prompt = customtkinter.CTkEntry(self, width=200, placeholder_text="Whisper Prompt...", textvariable=self.whisper_prompt)
self.textfield_whisper_prompt.grid(row=2, column=0, columnspan=2, sticky="ew", pady=2, padx=10)
self.label_whisper_model = customtkinter.CTkLabel(self, text="Whisper Model: ", fg_color="transparent")
self.label_whisper_model.grid(row=3, column=0, columnspan=2, sticky="w", pady=(4,1), padx=5)
self.dropdown_whisper_model = customtkinter.CTkOptionMenu(self, variable=self.selected_whisper_model, values=self.whispermodels, command=self._set_whisper_model)
self.dropdown_whisper_model.grid(row=4, column=0, columnspan=3, sticky="ew", padx=10)
self.label_gpt_picker = customtkinter.CTkLabel(self, text="OpenAI GPT Model: ", fg_color="transparent")
self.label_gpt_picker.grid(row=5, column=0, sticky="w", pady=(4,1), padx=5)
self.radiobutton_gpt_3 = customtkinter.CTkRadioButton(self, text="GPT-3.5-Turbo", command=self._set_variables, variable=self.gpt_radio_var, value=0)
self.radiobutton_gpt_3.grid(row=6, column=0, padx=10)
self.radiobutton_gpt_4 = customtkinter.CTkRadioButton(self, text="GPT-4", command=self._set_variables, variable=self.gpt_radio_var, value=1)
self.radiobutton_gpt_4.grid(row=6, column=1)
self.label_max_tokens = customtkinter.CTkLabel(self, text="GPT Max Tokens: ", fg_color="transparent")
self.label_max_tokens.grid(row=7, column=0, sticky="w", pady=(4,1), padx=5)
self.spinbox_max_tokens = IntSpinbox(self, step_size=4, min=0, max=8192, value=self.max_tokens_var.get(), command=self._spinbox_callback)
self.spinbox_max_tokens.grid(row=8, column=0, columnspan=2, sticky="ew", pady=2, padx=10)
self.label_max_conv_length = customtkinter.CTkLabel(self, text="GPT Max Conv. Length: ", fg_color="transparent")
self.label_max_conv_length.grid(row=9, column=0, sticky="w", pady=(4,1), padx=5)
self.spinbox_max_conv_length = IntSpinbox(self, step_size=1, min=2, value=self.max_conv_length_var.get(), command=self._spinbox_callback)
self.spinbox_max_conv_length.grid(row=10, column=0, columnspan=2, sticky="ew", pady=2, padx=10)
self.label_system_prompt = customtkinter.CTkLabel(self, text="GPT System Prompt: ", fg_color="transparent")
self.label_system_prompt.grid(row=11, column=0, sticky="w", pady=(4,1), padx=5)
self.textbox_system_prompt = customtkinter.CTkTextbox(self, height=122, wrap="word")
self.textbox_system_prompt.insert("0.0", opts.system_prompt)
self.textbox_system_prompt.grid(row=12, column=0, columnspan=3, sticky="ew", padx=10, pady=(0,2))
self.button_system_prompt = customtkinter.CTkButton(self, text="Update System Prompt", command=self._set_variables)
self.button_system_prompt.grid(row=13, column=0, columnspan=3, sticky="ew", padx=10, pady=(2,10))
self.button_reset = customtkinter.CTkButton(self, text="Clear Message History", command=self._reset_chat_buffer)
self.button_reset.grid(row=14, column=0, columnspan=3, sticky="ew", padx=10, pady=(2,10))
self.textfield_whisper_prompt.bind("<FocusOut>", self._set_variables)
self.textfield_whisper_prompt.bind("<Return>", self._set_variables)
def update_radio_buttons(self):
value = 0 if opts.gpt == "GPT-3.5-Turbo" else 1
self.gpt_radio_var.set(value)
def _reset_chat_buffer(self):
opts.message_array = []
print(f'$ Messages cleared!')
def _spinbox_callback(self):
self.max_conv_length_var.set( int( self.spinbox_max_conv_length.get() ) )
opts.max_conv_length = int( self.spinbox_max_conv_length.get() )
self.max_tokens_var.set( int( self.spinbox_max_tokens.get() ) )
opts.max_tokens = int( self.max_tokens_var.get() )
def _set_whisper_model(self, choice):
opts.whisper_model = choice
self.popup = Popup(self, window_title="Restart Required",
window_text="Please restart the program to reload the whisper model", button_text="OK")
self.popup.after(250, self.popup.focus) # Why do I need to wait for this???
def _set_variables(self, event=None):
opts.system_prompt = self.textbox_system_prompt.get("0.0", "end")
value = self.gpt_radio_var.get()
opts.gpt = "GPT-3.5-Turbo" if value == 0 else "GPT-4"
opts.whisper_prompt = self.whisper_prompt.get()
opts.max_tokens = int( self.max_tokens_var.get() )
opts.max_conv_length = int( self.spinbox_max_conv_length.get() )
class AudioStuffFrame(customtkinter.CTkFrame):
def __init__(self, master, title):
super().__init__(master)
self.title = title
self.grid_columnconfigure(0, weight=1)
self.textfields = []
self.title = customtkinter.CTkLabel(
self, text=self.title, fg_color="gray30", corner_radius=6)
self.title.grid(row=0, column=0, columnspan=3, padx=10, pady=(10,0), sticky="ew")
vcmd = (self.register(self._validate))
self.rms_threshold = customtkinter.StringVar(self, value=opts.THRESHOLD)
self.silence_timeout = customtkinter.StringVar(self, value=opts.SILENCE_TIMEOUT)
self.max_recording_time = customtkinter.StringVar(self, value=opts.MAX_RECORDING_TIME)
self.input_device_name = customtkinter.StringVar(self, value=opts.in_dev_name)
self.output_device_name = customtkinter.StringVar(self, value=opts.out_dev_name)
row_id = 1
self.label_rms_threshold = customtkinter.CTkLabel(self, text="Audio Trigger Threshold: ", fg_color="transparent")
self.label_rms_threshold.grid(row=row_id, column=0, sticky="w", pady=(4,1), padx=5)
row_id += 1
self.spinbox_rms_threshold = IntSpinbox(self, step_size=4, min=0, max=16384, value=self.rms_threshold.get(), command=self._spinbox_callback)
self.spinbox_rms_threshold.grid(row=row_id, column=0, columnspan=2, sticky="ew", pady=2, padx=10)
row_id += 1
self.label_silence_timeout = customtkinter.CTkLabel(self, text="Silence Timeout: ", fg_color="transparent")
self.label_silence_timeout.grid(row=row_id, column=0, sticky="w", pady=(4,1), padx=5)
row_id += 1
self.spinbox_silence_timeout = FloatSpinbox(self, step_size=0.25, min=0, max=30, value=self.silence_timeout.get(), command=self._spinbox_callback)
self.spinbox_silence_timeout.grid(row=row_id, column=0, columnspan=2, sticky="ew", pady=2, padx=10)
row_id += 1
self.label_max_recording_time = customtkinter.CTkLabel(self, text="Max Listen Time: ", fg_color="transparent")
self.label_max_recording_time.grid(row=row_id, column=0, sticky="w", pady=(4,1), padx=5)
row_id += 1
self.spinbox_max_recording_time = FloatSpinbox(self, step_size=0.25, min=0, max=30, value=self.max_recording_time.get(), command=self._spinbox_callback)
self.spinbox_max_recording_time.grid(row=row_id, column=0, columnspan=2, sticky="ew", pady=2, padx=10)
row_id += 1
self.label_input_dev_name = customtkinter.CTkLabel(self, text="Input Device: ", fg_color="transparent")
self.label_input_dev_name.grid(row=row_id, column=0, sticky="w", pady=(4,1), padx=5)
row_id += 1
self.textfield_input_dev_name = customtkinter.CTkEntry(self, width=50, placeholder_text="#", textvariable=self.input_device_name)
self.textfield_input_dev_name.grid(row=row_id, column=0, columnspan=2, sticky="ew", pady=2, padx=10)
self.textfields.append(self.textfield_input_dev_name)
row_id += 1
self.label_output_dev_name = customtkinter.CTkLabel(self, text="Output Device: ", fg_color="transparent")
self.label_output_dev_name.grid(row=row_id, column=0, sticky="w", pady=(4,1), padx=5)
row_id += 1
self.textfield_output_dev_name = customtkinter.CTkEntry(self, width=50, placeholder_text="#", textvariable=self.output_device_name)
self.textfield_output_dev_name.grid(row=row_id, column=0, columnspan=2, sticky="ew", pady=(2,10), padx=10)
self.textfields.append(self.textfield_output_dev_name)
row_id += 1
for field in self.textfields:
field.bind("<FocusOut>", self._update_audio_page)
field.bind("<Return>", self._update_audio_page)
def _spinbox_callback(self):
self.rms_threshold.set( self.spinbox_rms_threshold.get() )
self.silence_timeout.set( self.spinbox_silence_timeout.get() )
self.max_recording_time.set( self.spinbox_max_recording_time.get() )
self._update_audio_page()
def _update_audio_page(self, event=None):
try:
opts.THRESHOLD = int(self.rms_threshold.get())
opts.SILENCE_TIMEOUT = float(self.silence_timeout.get())
opts.MAX_RECORDING_TIME = float(self.max_recording_time.get())
opts.in_dev_name = self.input_device_name.get()
opts.out_dev_name = self.output_device_name.get()
except ValueError as e:
print(f"Bad value input to field: {e}")
except Exception as e:
print(f"Unable to update audio page: {e}")
def _validate(self, P):
if P == "":
return True
else:
try:
float(P)
return True
except ValueError:
return False
class KeyboardControlFrame(customtkinter.CTkFrame):
def __init__(self, master, title):
super().__init__(master)
self.title = title
self.grid_columnconfigure(0, weight=1)
self.textfields = []
self.title = customtkinter.CTkLabel(
self, text=self.title, fg_color="gray30", corner_radius=6)
self.title.grid(row=0, column=0, columnspan=3, padx=10, pady=(10,0), sticky="ew")
vcmd = (self.register(self._validate))
self.key_press_window_var = customtkinter.DoubleVar(self, value=opts.key_press_window)
row_id = 1
self.label_key_press_window = customtkinter.CTkLabel(self, text="Double Press Window: ", fg_color="transparent")
self.label_key_press_window.grid(row=row_id, column=0, sticky="w", pady=(4,1), padx=5)
row_id += 1
self.spinbox_key_press_window = FloatSpinbox(self, step_size=0.05, min=0.1, value=self.key_press_window_var.get(), command=self._spinbox_callback)
self.spinbox_key_press_window.grid(row=row_id, column=0, sticky="ew", pady=2, padx=10)
row_id += 1
def _spinbox_callback(self):
value = self.spinbox_key_press_window.get()
if value is not None:
self.key_press_window_var.set( value )
self._update_keyboard_page()
def _update_keyboard_page(self, event=None):
opts.key_press_window = float(self.key_press_window_var.get())
def _validate(self, P):
if P == "":
return True
else:
try:
float(P)
return True
except ValueError:
return False
class TTSSelectorFrame(customtkinter.CTkFrame):
def __init__(self, master, title):
super().__init__(master)
self.title = title
self.width = 140
self.columnconfigure(0, weight=1)
self.rowconfigure((0,1), weight=0)
self.rowconfigure(2, weight=1)
self.title = customtkinter.CTkLabel(
self, text=self.title, fg_color="gray30", corner_radius=6)
self.title.grid(row=0, column=0, padx=10, pady=(10,0), sticky="ew")
self.selected_tts_engine_name = customtkinter.StringVar(value=opts.tts_engine_name)
self.dropdown_tts_engine_select = customtkinter.CTkOptionMenu(self, variable=self.selected_tts_engine_name, values=opts.tts_engine_selections, command=self._set_tts_engine)
self.dropdown_tts_engine_select.grid(row=1, column=0, sticky="ew", padx=10, pady=(10,15))
self.frame_tts_options = WindowsTTSOptionsFrame(master=self, title="Windows TTS Configuration")
self.frame_tts_options.grid(row=2, column=0, sticky="nsew", padx=0, pady=(10,0))
def _set_tts_engine(self, choice):
match choice:
case "Windows":
opts.tts_engine = texttospeech.WindowsTTS()
self.frame_tts_options = WindowsTTSOptionsFrame(master=self, title="Windows TTS Configuration")
self.frame_tts_options.grid(row=2, column=0, sticky="nsew", padx=0, pady=0)
case "Google Cloud":
engine = texttospeech.GoogleCloudTTS()
if not engine.ready:
print("Google Cloud TTS engine is not ready!")
popup = Popup(self, window_title="TTS engine not ready",
window_text="Google Cloud's TTS engine could not start!\nMake sure your credentials are set up properly.",
button_text="OK")
popup.after(250, popup.focus) # Why do I need to wait for this???
return
opts.tts_engine = engine
self.frame_tts_options = GCloudOptionsFrame(master=self, title="Google Cloud TTS Configuration")
self.frame_tts_options.grid(row=2, column=0, sticky="nsew", padx=0, pady=0)
case "Google Translate":
opts.tts_engine = texttospeech.GoogleTranslateTTS()
self.frame_tts_options = GoogleTranslateOptionsFrame(master=self, title="Google Translate TTS Configuration")
self.frame_tts_options.grid(row=2, column=0, sticky="nsew", padx=0, pady=0)
case "ElevenLabs":
engine = texttospeech.eleven
if not engine.ready:
print("ElevenLabs TTS engine is not ready!")
popup = Popup(self, window_title="TTS engine not ready",
window_text="ElevenLabs' TTS engine could not start!\nMake sure your credentials are set up properly.",
button_text="OK")
popup.after(250, popup.focus) # Why do I need to wait for this???
return
opts.tts_engine = engine
self.frame_tts_options = ElevenTTSOptionsFrame(master=self, title="ElevenLabs TTS Configuration")
self.frame_tts_options.grid(row=2, column=0, sticky="nsew", padx=0, pady=0)
case "TikTok":
opts.tts_engine = texttospeech.TikTokTTS()
self.frame_tts_options = TikTokOptionsFrame(master=self, title="TikTok TTS Configuration")
self.frame_tts_options.grid(row=2, column=0, sticky="nsew", padx=0, pady=0)
class PlaceholderOptionsFrame(customtkinter.CTkFrame):
def __init__(self, master, title):
super().__init__(master)
self.title = title
self.title = customtkinter.CTkLabel(
self, text=self.title, fg_color="gray30", corner_radius=6)
self.title.grid(row=0, column=0, columnspan=3, padx=10, pady=(10,0), sticky="ew")
class GoogleTranslateOptionsFrame(customtkinter.CTkFrame):
def __init__(self, master, title):
super().__init__(master, fg_color="transparent")
self.title = title
self.grid_columnconfigure(0, weight=1)
self.textfields = []
self.title = customtkinter.CTkLabel(
self, text=self.title, fg_color="gray20", corner_radius=4)
self.title.grid(row=0, column=0, padx=10, pady=(10,0), sticky="ew")
if not isinstance(opts.tts_engine, texttospeech.GoogleTranslateTTS):
self.label_error = customtkinter.CTkLabel(self, text="Google Translate is not the currently selected TTS engine.", fg_color="transparent")
self.label_error.grid(row=1, column=0, sticky="ew", pady=(4,1), padx=5)
return
self.selected_language = customtkinter.StringVar(value=opts.gtrans_language_code)
row_id = 1
self.label_gtrans_tts_voice = customtkinter.CTkLabel(self, text="Language Code: ", fg_color="transparent")
self.label_gtrans_tts_voice.grid(row=row_id, column=0, sticky="w", pady=(4,1), padx=5)
row_id += 1
self.textfield_selected_language = customtkinter.CTkEntry(self, width=60, placeholder_text="en", textvariable=self.selected_language)
self.textfield_selected_language.grid(row=row_id, column=0, sticky="w", pady=(2,10), padx=10)
self.textfields.append(self.textfield_selected_language)
for field in self.textfields:
field.bind("<FocusOut>", self._update_language)
field.bind("<Return>", self._update_language)
def _update_language(self, event=None):
if not isinstance(opts.tts_engine, texttospeech.GoogleTranslateTTS):
print("Google Translate is not the currently selected TTS engine")
return
opts.tts_engine.set_language(self.textfield_selected_language.get())
class TikTokOptionsFrame(customtkinter.CTkFrame):
def __init__(self, master, title):
super().__init__(master, fg_color="transparent")
self.title = title
self.grid_columnconfigure(0, weight=1)
self.title = customtkinter.CTkLabel(
self, text=self.title, fg_color="gray20", corner_radius=4)
self.title.grid(row=0, column=0, padx=10, pady=(10,0), sticky="ew")
self.voices = []
if not isinstance(opts.tts_engine, texttospeech.TikTokTTS):
self.label_error = customtkinter.CTkLabel(self, text="TikTok is not the currently selected TTS engine.", fg_color="transparent")
self.label_error.grid(row=1, column=0, sticky="ew", pady=(4,1), padx=5)
return
self.voices = list(texttospeech.tiktok_voice_list.keys())
self.selected_tiktok_tts_voice_name = customtkinter.StringVar(value=opts.tiktok_voice_id)
row_id = 1
self.label_tiktok_tts_voice = customtkinter.CTkLabel(self, text="Voice Name: ", fg_color="transparent")
self.label_tiktok_tts_voice.grid(row=row_id, column=0, sticky="w", pady=(4,1), padx=5)
row_id += 1
self.dropdown_tiktok_tts_voice_select = customtkinter.CTkOptionMenu(self, dynamic_resizing=False, variable=self.selected_tiktok_tts_voice_name, values=self.voices, command=self._set_tts_voice)
self.dropdown_tiktok_tts_voice_select.grid(row=row_id, column=0, sticky="ew", padx=10, pady=(0,10))
row_id += 1
def _set_tts_voice(self, choice):
if not isinstance(opts.tts_engine, texttospeech.TikTokTTS):
print("TikTok is not the currently selected TTS engine")
return
opts.tts_engine.set_voice(texttospeech.tiktok_voice_list[choice])
print(f'Set TikTok voice to {choice} ({opts.tts_engine.voice_id})')
class ElevenTTSOptionsFrame(customtkinter.CTkFrame):
def __init__(self, master, title):
super().__init__(master, fg_color="transparent")
self.title = title
self.grid_columnconfigure(0, weight=1)
self.title = customtkinter.CTkLabel(
self, text=self.title, fg_color="gray20", corner_radius=4)
self.title.grid(row=0, column=0, columnspan=3, padx=10, pady=(10,0), sticky="ew")
self.voices = []
if not isinstance(opts.tts_engine, texttospeech.ElevenTTS):
self.label_error = customtkinter.CTkLabel(self, text="ElevenLabs is not the currently selected TTS engine.", fg_color="transparent")
self.label_error.grid(row=1, column=0, sticky="ew", pady=(4,1), padx=5)
return
for voice in opts.tts_engine.voices:
self.voices.append(voice.name)
self.selected_eleven_tts_voice_name = customtkinter.StringVar(value=opts.eleven_voice_id)
row_id = 1
self.label_eleven_tts_voice = customtkinter.CTkLabel(self, text="Voice Name: ", fg_color="transparent")
self.label_eleven_tts_voice.grid(row=row_id, column=0, sticky="w", pady=(4,1), padx=5)
row_id += 1
self.dropdown_eleven_tts_voice_select = customtkinter.CTkOptionMenu(self, dynamic_resizing=False, variable=self.selected_eleven_tts_voice_name, values=self.voices, command=self._set_tts_voice)
self.dropdown_eleven_tts_voice_select.grid(row=row_id, column=0, sticky="ew", padx=10, pady=(0,10))
row_id += 1
# self.label_speaking_rate = customtkinter.CTkLabel(self, text="Speaking Rate: ", fg_color="transparent")
# self.label_speaking_rate.grid(row=row_id, column=0, sticky="w", pady=(4,1), padx=5)
# row_id += 1
# self.spinbox_speaking_rate = IntSpinbox(self, step_size=1, min=1, max=500, value=self.speaking_rate.get(), command=self._spinbox_callback)
# self.spinbox_speaking_rate.grid(row=row_id, column=0, columnspan=2, sticky="ew", pady=2, padx=10)
# row_id += 1
def _set_tts_voice(self, choice):
if not isinstance(opts.tts_engine, texttospeech.ElevenTTS):
print("ElevenLabs is not the currently selected TTS engine")
return
opts.tts_engine.set_voice(choice)
class WindowsTTSOptionsFrame(customtkinter.CTkFrame):
def __init__(self, master, title):
super().__init__(master, fg_color="transparent")
self.title = title
self.grid_columnconfigure(0, weight=1)
self.title = customtkinter.CTkLabel(
self, text=self.title, fg_color="gray20", corner_radius=4)
self.title.grid(row=0, column=0, columnspan=3, padx=10, pady=(10,0), sticky="ew")
self.voices = []
if not isinstance(opts.tts_engine, texttospeech.WindowsTTS):
self.label_error = customtkinter.CTkLabel(self, text="Windows is not the currently selected TTS engine.", fg_color="transparent")
self.label_error.grid(row=1, column=0, sticky="ew", pady=(4,1), padx=5)
return
for voice in opts.tts_engine.voices:
self.voices.append(voice.name)
self.selected_wtts_voice_name = customtkinter.StringVar(value=self.voices[opts.windows_tts_voice_id])
self.speaking_rate = customtkinter.IntVar(value=opts.tts_engine.rate)
row_id = 1
self.label_wtts_voice = customtkinter.CTkLabel(self, text="Voice Name: ", fg_color="transparent")
self.label_wtts_voice.grid(row=row_id, column=0, sticky="w", pady=(4,1), padx=5)
row_id += 1
self.dropdown_tts_voice_select = customtkinter.CTkOptionMenu(self, dynamic_resizing=False, variable=self.selected_wtts_voice_name, values=self.voices, command=self._set_tts_engine)
self.dropdown_tts_voice_select.grid(row=row_id, column=0, sticky="ew", padx=10, pady=(0,10))
row_id += 1
self.label_speaking_rate = customtkinter.CTkLabel(self, text="Speaking Rate: ", fg_color="transparent")
self.label_speaking_rate.grid(row=row_id, column=0, sticky="w", pady=(4,1), padx=5)
row_id += 1
self.spinbox_speaking_rate = IntSpinbox(self, step_size=1, min=1, max=500, value=self.speaking_rate.get(), command=self._spinbox_callback)
self.spinbox_speaking_rate.grid(row=row_id, column=0, columnspan=2, sticky="ew", pady=2, padx=10)
row_id += 1
def _set_tts_engine(self, choice):
if not isinstance(opts.tts_engine, texttospeech.WindowsTTS):
print("Windows is not the currently selected TTS engine")
return
try:
index = self.voices.index(choice)
opts.windows_tts_voice_id = index
opts.tts_engine.set_voice(index)
print(f"Set TTS Engine to {self.voices[index]}")
except ValueError:
print("Invalid selection: " + choice)
def _spinbox_callback(self):
if not isinstance(opts.tts_engine, texttospeech.WindowsTTS):
print("Windows is not the currently selected TTS engine")
return
opts.tts_engine.set_rate(self.spinbox_speaking_rate.get())
# verbose_print(f"Set WTTS speaking rate to {opts.tts_engine.rate}")
class GCloudOptionsFrame(customtkinter.CTkFrame):
def __init__(self, master, title):
super().__init__(master, fg_color="transparent")
self.title = title
self.grid_columnconfigure(0, weight=1)
self.textfields = []
self.language_codes = {}
self.voices = {}
self.title = customtkinter.CTkLabel(
self, text=self.title, fg_color="gray20", corner_radius=4)
self.title.grid(row=0, column=0, columnspan=3, padx=10, pady=(10,0), sticky="ew")
self.gcloud_language_code_var = customtkinter.StringVar(self, value=opts.gcloud_language_code)
self.gcloud_voice_name_var = customtkinter.StringVar(self, value="Standard-F")
row_id = 1
self.label_gcloud_language_code = customtkinter.CTkLabel(self, text="TTS Language Code: ", fg_color="transparent")
self.label_gcloud_language_code.grid(row=row_id, column=0, sticky="w", pady=(4,1), padx=5)
row_id += 1
self.textfield_gcloud_language_code = customtkinter.CTkEntry(self, width=60, placeholder_text="#", textvariable=self.gcloud_language_code_var)
self.textfield_gcloud_language_code.grid(row=row_id, column=0, columnspan=2, sticky="w", pady=2, padx=10)
self.textfields.append(self.textfield_gcloud_language_code)
row_id += 1
self.label_gcloud_voice = customtkinter.CTkLabel(self, text="TTS Voice Name: ", fg_color="transparent")
self.label_gcloud_voice.grid(row=row_id, column=0, sticky="w", pady=(4,1), padx=5)
row_id += 1
self.textfield_gcloud_voice = customtkinter.CTkEntry(self, placeholder_text="#", textvariable=self.gcloud_voice_name_var)
self.textfield_gcloud_voice.grid(row=row_id, column=0, columnspan=2, sticky="ew", pady=2, padx=10)
self.textfields.append(self.textfield_gcloud_voice)
row_id += 1
for field in self.textfields:
field.bind("<FocusOut>", self._update_gcloud)
field.bind("<Return>", self._update_gcloud)
def _update_gcloud(self, event=None):
opts.gcloud_language_code = self.gcloud_language_code_var.get()
opts.gcloud_voice_name = f'{self.gcloud_language_code_var.get()}-{self.gcloud_voice_name_var.get()}'
class Popup(customtkinter.CTkToplevel):
def __init__(self, master, window_title, window_text, button_text, *args, **kwargs):
super().__init__(master)
self.geometry("300x150")
self.grid_columnconfigure(0, weight=1)
self.grid_rowconfigure(1, weight=1)
self.grid_rowconfigure((0,2), weight=0)
self.title(window_title)
self.iconbitmap(icon)
self.titlebar = customtkinter.CTkLabel( self, text=window_title, fg_color="gray30", corner_radius=6 )
self.titlebar.grid(row=0, column=0, columnspan=3, padx=10, pady=10, sticky="ew")
self.label = customtkinter.CTkLabel(self, text=window_text, fg_color="gray10", corner_radius=6, wraplength=260)
self.label.grid(row=1, column=0, sticky='nsew', padx=20, pady=5)
self.button = customtkinter.CTkButton(self, text=button_text, command=self.destroy)
self.button.grid(row=2, column=0, sticky="s", padx=10, pady=(2,10))
class IntSpinbox(customtkinter.CTkFrame):
def __init__(self, *args,
width: int = 100,
height: int = 32,
step_size: int = 1,
command: Callable = None,
value: int,
min: Optional [int] = None,
max: Optional [int] = None,
**kwargs):
super().__init__(*args, width=width, height=height, **kwargs)
self.step_size = step_size
self.command = command
self.min = min
self.max = max
self.configure(fg_color=("gray78", "gray28")) # set frame color
self.grid_columnconfigure((0, 2), weight=0) # buttons don't expand
self.grid_columnconfigure(1, weight=1) # entry expands
vcmd = (self.register(self._validate))
self.subtract_button = customtkinter.CTkButton(self, text="-", width=height-6, height=height-6,
command=self.subtract_button_callback)
self.subtract_button.grid(row=0, column=0, padx=(3, 0), pady=3)
self.entry = customtkinter.CTkEntry(self, width=width-(2*height), height=height-6, border_width=0, validate='key', validatecommand=(vcmd, '%P'))
self.entry.grid(row=0, column=1, columnspan=1, padx=3, pady=3, sticky="ew")
self.add_button = customtkinter.CTkButton(self, text="+", width=height-6, height=height-6,
command=self.add_button_callback)
self.add_button.grid(row=0, column=2, padx=(0, 3), pady=3)
# default value
self.entry.insert(0, int(value))
self.entry.bind("<Key>", self.bind_callback)
self.entry.bind("<FocusOut>", self.bind_callback)
self.entry.bind("<Return>", self.bind_callback)
self.entry.bind("<MouseWheel>", self.mousewheel_callback)
def bind_callback(self, event):
if self.command is not None:
self.command()
def mousewheel_callback(self, event):
if event.delta > 0:
self.add_button_callback()
elif event.delta < 0:
self.subtract_button_callback()
def add_button_callback(self):
try:
value = int(self.entry.get()) + self.step_size
if self.max is not None and value > self.max:
return
self.entry.delete(0, "end")
self.entry.insert(0, value)
except ValueError:
return
if self.command is not None:
self.command()
def subtract_button_callback(self):
try:
value = int(self.entry.get()) - self.step_size
if self.min is not None and value < self.min:
return
self.entry.delete(0, "end")
self.entry.insert(0, value)
except ValueError:
return
if self.command is not None:
self.command()
def get(self) -> Union[int, None]:
try:
return int(self.entry.get())
except ValueError:
return None
def set(self, value: int):
self.entry.delete(0, "end")
self.entry.insert(0, str(int(value)))
def _validate(self, P):
if P == "":
return True
else:
try:
int(P)
return True
except ValueError:
return False
class FloatSpinbox(customtkinter.CTkFrame):
def __init__(self, *args,
width: int = 100,
height: int = 32,
step_size: Union[int, float] = 1,
command: Callable = None,
value: float,
min: Optional [float] = None,
max: Optional [float] = None,
**kwargs):
super().__init__(*args, width=width, height=height, **kwargs)
self.step_size = step_size
self.command = command
self.min = min
self.max = max
self.configure(fg_color=("gray78", "gray28")) # set frame color
self.grid_columnconfigure((0, 2), weight=0) # buttons don't expand
self.grid_columnconfigure(1, weight=1) # entry expands
vcmd = (self.register(self._validate), '%d', '%P')
self.subtract_button = customtkinter.CTkButton(self, text="-", width=height-6, height=height-6,
command=self.subtract_button_callback)
self.subtract_button.grid(row=0, column=0, padx=(3, 0), pady=3)
self.entry = customtkinter.CTkEntry(self, width=width-(2*height), height=height-6, border_width=0, validate='key', validatecommand=vcmd)
self.entry.grid(row=0, column=1, columnspan=1, padx=3, pady=3, sticky="ew")
self.add_button = customtkinter.CTkButton(self, text="+", width=height-6, height=height-6,
command=self.add_button_callback)
self.add_button.grid(row=0, column=2, padx=(0, 3), pady=3)
# default value
self.entry.insert(0, float(value))
self.entry.bind("<Key>", self.bind_callback)
self.entry.bind("<FocusOut>", self.bind_callback)
self.entry.bind("<Return>", self.bind_callback)
self.entry.bind("<MouseWheel>", self.mousewheel_callback)
def bind_callback(self, event):
if self.command is not None:
self.command()
def mousewheel_callback(self, event):
if event.delta > 0:
self.add_button_callback()
elif event.delta < 0:
self.subtract_button_callback()
def add_button_callback(self):
try:
value = float(self.entry.get()) + self.step_size
if self.max is not None and value > self.max:
return
self.entry.delete(0, "end")
self.entry.insert(0, value)
except ValueError:
return
if self.command is not None:
self.command()
def subtract_button_callback(self):
try:
value = float(self.entry.get()) - self.step_size
if self.min is not None and value < self.min:
return
self.entry.delete(0, "end")
self.entry.insert(0, value)
except ValueError:
return
if self.command is not None:
self.command()
def get(self) -> Union[float, None]:
try:
return float(self.entry.get())
except ValueError:
return None
def set(self, value: float):
self.entry.delete(0, "end")
self.entry.insert(0, str(float(value)))
def _validate(self, d, P):
if d == 0:
return True
if P == "":
return True
else:
try:
float(P)
return True
except ValueError:
return False
class App(customtkinter.CTk):
def __init__(self):
super().__init__()
self.title("VRChat AI Assistant")
self.geometry("840x630")
self.grid_columnconfigure(0, weight=0)
self.grid_columnconfigure((1,2), weight=1)
self.grid_rowconfigure(0, weight=0)
self.grid_rowconfigure(1, weight=1)
column_id = 0
row_id = 0
# self.gcloud_frame = GCloudOptionsFrame(self, "GCloud TTS Configuration")
# self.gcloud_frame.grid(row=1, column=cols, padx=(10,0), pady=(10, 10), sticky="nsew")
self.tts_selector_frame = TTSSelectorFrame(self, "TTS Selection")
self.tts_selector_frame.grid(row=row_id, column=column_id, padx=(10,0), pady=(10, 0), sticky="nsew")
self.tts_selector_frame._set_tts_engine(opts.tts_engine_name)
row_id += 1
self.program_bools_frame = ProgramOptionsFrame(self, "Program Options")
self.program_bools_frame.grid(row=row_id, column=column_id, padx=(10,0), pady=(10, 10), sticky="nsew")
row_id += 1
column_id += 1
row_id = 0
self.audio_stuff_frame = AudioStuffFrame(self, "Audio Configuration")
self.audio_stuff_frame.grid(row=row_id, column=column_id, padx=(10,0), pady=(10, 0), sticky="nsew")
row_id += 1
self.keyboard_control_frame = KeyboardControlFrame(self, "Trigger Key Configuration")
self.keyboard_control_frame.grid(row=row_id, column=column_id, padx=(10,0), pady=(10, 10), sticky="nsew")
row_id += 1
column_id += 1
row_id = 0
self.ai_stuff_frame = AIStuffFrame(self, "AI Configuration")
self.ai_stuff_frame.grid(row=row_id, rowspan=2, column=column_id, padx=(10,10), pady=(10, 10), sticky="nsew")
row_id += 1
column_id += 1
row_id = 0
self.protocol("WM_DELETE_WINDOW", self.on_close)
def on_close(self):
opts.LOOP = False
self.destroy()
def initialize():
global app
customtkinter.set_appearance_mode("System")
customtkinter.set_default_color_theme("green")
app = App()
app.iconbitmap(icon)
app.mainloop()