-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.go
134 lines (117 loc) · 3.72 KB
/
options.go
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
package voicevoxcorego
// #include <voicevox_core.h>
import "C"
type (
// `VoicevoxCore`を初期化する際のオプションを表す構造体
VoicevoxInitializeOptions struct {
// C構造体
raw *C.VoicevoxInitializeOptions
}
// `AudioQuery()`を実行する際のオプションを表す構造体
VoicevoxAudioQueryOptions struct {
// C構造体
raw *C.VoicevoxAudioQueryOptions
}
// `Synthesis()`を実行する際のオプションを表す構造体
VoicevoxSynthesisOptions struct {
// C構造体
raw *C.VoicevoxSynthesisOptions
}
// `Tts()`を実行する際のオプションを表す構造体
VoicevoxTtsOptions struct {
// C構造体
raw *C.VoicevoxTtsOptions
}
)
/*
`VoiceVoxCore`の初期化オプションを生成する関数
*/
func NewVoicevoxInitializeOptions(accelerationMode int, cpuNumThreads int, loadAllModels bool, openJtalkDictDir string) *VoicevoxInitializeOptions {
raw := C.VoicevoxInitializeOptions{
acceleration_mode: C.int(accelerationMode),
cpu_num_threads: C.ushort(cpuNumThreads),
load_all_models: C.bool(loadAllModels),
open_jtalk_dict_dir: C.CString(openJtalkDictDir),
}
options := &VoicevoxInitializeOptions{raw: &raw}
return options
}
/*
初期化オプションの`accelerationMode`をアップデートする関数
*/
func (o *VoicevoxInitializeOptions) UpdateAccelerationMode(accelerationMode int) {
o.raw.acceleration_mode = C.int(accelerationMode)
}
/*
初期化オプションの`cpuNumThreads`をアップデートする関数
*/
func (o *VoicevoxInitializeOptions) UpdateCpuNumThreads(cpuNumThreads int) {
o.raw.cpu_num_threads = C.ushort(cpuNumThreads)
}
/*
初期化オプションの`loadAllModels`をアップデートする関数
*/
func (o *VoicevoxInitializeOptions) UpdateLoadAllModels(loadAllModels bool) {
o.raw.load_all_models = C.bool(loadAllModels)
}
/*
初期化オプションの`openJtalkDictDir`をアップデートする関数
*/
func (o *VoicevoxInitializeOptions) UpdateOpenJtalkDictDir(openJtalkDictDir string) {
o.raw.open_jtalk_dict_dir = C.CString(openJtalkDictDir)
}
/*
`AudioQuery()`の初期化オプションを生成する関数
*/
func NewVoicevoxAudioQueryOptions(kana bool) *VoicevoxAudioQueryOptions {
raw := C.VoicevoxAudioQueryOptions{
kana: C.bool(kana),
}
options := &VoicevoxAudioQueryOptions{raw: &raw}
return options
}
/*
`AudioQuery()`のオプションの`kana`をアップデートする関数
*/
func (o *VoicevoxAudioQueryOptions) UpdateKana(kana bool) {
o.raw.kana = C.bool(kana)
}
/*
`Synthesis()`の初期化オプションを生成する関数
*/
func NewVoicevoxSynthesisOptions(enableInterrogativeUpspeak bool) *VoicevoxSynthesisOptions {
raw := C.VoicevoxSynthesisOptions{
enable_interrogative_upspeak: C.bool(enableInterrogativeUpspeak),
}
options := &VoicevoxSynthesisOptions{raw: &raw}
return options
}
/*
`AudioQuery()`のオプションの`kana`をアップデートする関数
*/
func (o *VoicevoxSynthesisOptions) UpdateInterrogativeUpspeak(kana bool) {
o.raw.enable_interrogative_upspeak = C.bool(kana)
}
/*
`Tts()`の初期化オプションを生成する関数
*/
func NewVoicevoxTtsOptions(kana bool, enableInterrogativeUpspeak bool) *VoicevoxTtsOptions {
raw := C.VoicevoxTtsOptions{
kana: C.bool(kana),
enable_interrogative_upspeak: C.bool(enableInterrogativeUpspeak),
}
options := &VoicevoxTtsOptions{raw: &raw}
return options
}
/*
`Tts()`のオプションの`kana`をアップデートする関数
*/
func (o *VoicevoxTtsOptions) UpdateKana(kana bool) {
o.raw.kana = C.bool(kana)
}
/*
`Tts()`のオプションの`kana`をアップデートする関数
*/
func (o *VoicevoxTtsOptions) UpdateInterrogativeUpspeak(kana bool) {
o.raw.enable_interrogative_upspeak = C.bool(kana)
}