-
Notifications
You must be signed in to change notification settings - Fork 31
/
audiostreamoggvorbis.gen.go
179 lines (142 loc) · 5.05 KB
/
audiostreamoggvorbis.gen.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
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
package godot
import (
"github.com/shadowapex/godot-go/gdnative"
)
/*------------------------------------------------------------------------------
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated. Any updates should be done in
// "class.go.tmpl" so they can be included in the generated
// code.
//----------------------------------------------------------------------------*/
//func NewAudioStreamOGGVorbisFromPointer(ptr gdnative.Pointer) AudioStreamOGGVorbis {
func newAudioStreamOGGVorbisFromPointer(ptr gdnative.Pointer) AudioStreamOGGVorbis {
owner := gdnative.NewObjectFromPointer(ptr)
obj := AudioStreamOGGVorbis{}
obj.SetBaseObject(owner)
return obj
}
/*
Undocumented
*/
type AudioStreamOGGVorbis struct {
AudioStream
owner gdnative.Object
}
func (o *AudioStreamOGGVorbis) BaseClass() string {
return "AudioStreamOGGVorbis"
}
/*
Undocumented
Args: [], Returns: PoolByteArray
*/
func (o *AudioStreamOGGVorbis) X_GetData() gdnative.PoolByteArray {
//log.Println("Calling AudioStreamOGGVorbis.X_GetData()")
// Build out the method's arguments
ptrArguments := make([]gdnative.Pointer, 0, 0)
// Get the method bind
methodBind := gdnative.NewMethodBind("AudioStreamOGGVorbis", "_get_data")
// Call the parent method.
// PoolByteArray
retPtr := gdnative.NewEmptyPoolByteArray()
gdnative.MethodBindPtrCall(methodBind, o.GetBaseObject(), ptrArguments, retPtr)
// If we have a return type, convert it from a pointer into its actual object.
ret := gdnative.NewPoolByteArrayFromPointer(retPtr)
return ret
}
/*
Undocumented
Args: [{ false data PoolByteArray}], Returns: void
*/
func (o *AudioStreamOGGVorbis) X_SetData(data gdnative.PoolByteArray) {
//log.Println("Calling AudioStreamOGGVorbis.X_SetData()")
// Build out the method's arguments
ptrArguments := make([]gdnative.Pointer, 1, 1)
ptrArguments[0] = gdnative.NewPointerFromPoolByteArray(data)
// Get the method bind
methodBind := gdnative.NewMethodBind("AudioStreamOGGVorbis", "_set_data")
// Call the parent method.
// void
retPtr := gdnative.NewEmptyVoid()
gdnative.MethodBindPtrCall(methodBind, o.GetBaseObject(), ptrArguments, retPtr)
}
/*
Undocumented
Args: [], Returns: float
*/
func (o *AudioStreamOGGVorbis) GetLoopOffset() gdnative.Real {
//log.Println("Calling AudioStreamOGGVorbis.GetLoopOffset()")
// Build out the method's arguments
ptrArguments := make([]gdnative.Pointer, 0, 0)
// Get the method bind
methodBind := gdnative.NewMethodBind("AudioStreamOGGVorbis", "get_loop_offset")
// Call the parent method.
// float
retPtr := gdnative.NewEmptyReal()
gdnative.MethodBindPtrCall(methodBind, o.GetBaseObject(), ptrArguments, retPtr)
// If we have a return type, convert it from a pointer into its actual object.
ret := gdnative.NewRealFromPointer(retPtr)
return ret
}
/*
Undocumented
Args: [], Returns: bool
*/
func (o *AudioStreamOGGVorbis) HasLoop() gdnative.Bool {
//log.Println("Calling AudioStreamOGGVorbis.HasLoop()")
// Build out the method's arguments
ptrArguments := make([]gdnative.Pointer, 0, 0)
// Get the method bind
methodBind := gdnative.NewMethodBind("AudioStreamOGGVorbis", "has_loop")
// Call the parent method.
// bool
retPtr := gdnative.NewEmptyBool()
gdnative.MethodBindPtrCall(methodBind, o.GetBaseObject(), ptrArguments, retPtr)
// If we have a return type, convert it from a pointer into its actual object.
ret := gdnative.NewBoolFromPointer(retPtr)
return ret
}
/*
Undocumented
Args: [{ false enable bool}], Returns: void
*/
func (o *AudioStreamOGGVorbis) SetLoop(enable gdnative.Bool) {
//log.Println("Calling AudioStreamOGGVorbis.SetLoop()")
// Build out the method's arguments
ptrArguments := make([]gdnative.Pointer, 1, 1)
ptrArguments[0] = gdnative.NewPointerFromBool(enable)
// Get the method bind
methodBind := gdnative.NewMethodBind("AudioStreamOGGVorbis", "set_loop")
// Call the parent method.
// void
retPtr := gdnative.NewEmptyVoid()
gdnative.MethodBindPtrCall(methodBind, o.GetBaseObject(), ptrArguments, retPtr)
}
/*
Undocumented
Args: [{ false seconds float}], Returns: void
*/
func (o *AudioStreamOGGVorbis) SetLoopOffset(seconds gdnative.Real) {
//log.Println("Calling AudioStreamOGGVorbis.SetLoopOffset()")
// Build out the method's arguments
ptrArguments := make([]gdnative.Pointer, 1, 1)
ptrArguments[0] = gdnative.NewPointerFromReal(seconds)
// Get the method bind
methodBind := gdnative.NewMethodBind("AudioStreamOGGVorbis", "set_loop_offset")
// Call the parent method.
// void
retPtr := gdnative.NewEmptyVoid()
gdnative.MethodBindPtrCall(methodBind, o.GetBaseObject(), ptrArguments, retPtr)
}
// AudioStreamOGGVorbisImplementer is an interface that implements the methods
// of the AudioStreamOGGVorbis class.
type AudioStreamOGGVorbisImplementer interface {
AudioStreamImplementer
X_GetData() gdnative.PoolByteArray
X_SetData(data gdnative.PoolByteArray)
GetLoopOffset() gdnative.Real
HasLoop() gdnative.Bool
SetLoop(enable gdnative.Bool)
SetLoopOffset(seconds gdnative.Real)
}