forked from inkyblackness/imgui-go
-
Notifications
You must be signed in to change notification settings - Fork 15
/
WrapperConverter.go
110 lines (98 loc) · 2.13 KB
/
WrapperConverter.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
package imgui
// #include "imguiWrapperTypes.h"
// #include <memory.h>
// #include <stdlib.h>
import "C"
import "unsafe"
func castBool(value bool) (cast C.IggBool) {
if value {
cast = 1
}
return
}
func wrapBool(goValue *bool) (wrapped *C.IggBool, finisher func()) {
if goValue != nil {
var cValue C.IggBool
if *goValue {
cValue = 1
}
wrapped = &cValue
finisher = func() {
*goValue = cValue != 0
}
} else {
finisher = func() {}
}
return
}
func wrapInt32(goValue *int32) (wrapped *C.int, finisher func()) {
if goValue != nil {
cValue := C.int(*goValue)
wrapped = &cValue
finisher = func() {
*goValue = int32(cValue)
}
} else {
finisher = func() {}
}
return
}
func wrapFloat(goValue *float32) (wrapped *C.float, finisher func()) {
if goValue != nil {
cValue := C.float(*goValue)
wrapped = &cValue
finisher = func() {
*goValue = float32(cValue)
}
} else {
finisher = func() {}
}
return
}
func wrapString(value string) (wrapped *C.char, finisher func()) {
wrapped = C.CString(value)
finisher = func() { C.free(unsafe.Pointer(wrapped)) } // nolint: gas
return
}
type stringBuffer struct {
ptr unsafe.Pointer
size int
}
func newStringBuffer(initialValue string) *stringBuffer {
rawText := []byte(initialValue)
bufSize := len(rawText) + 1
newPtr := C.malloc(C.size_t(bufSize))
zeroOffset := bufSize - 1
copy(((*[1 << 30]byte)(newPtr))[:zeroOffset], rawText)
((*[1 << 30]byte)(newPtr))[zeroOffset] = 0
return &stringBuffer{ptr: newPtr, size: bufSize}
}
func (buf *stringBuffer) free() {
C.free(buf.ptr)
buf.size = 0
}
func (buf *stringBuffer) resizeTo(requestedSize int) {
bufSize := requestedSize
if bufSize < 1 {
bufSize = 1
}
newPtr := C.malloc(C.size_t(bufSize))
copySize := bufSize
if copySize > buf.size {
copySize = buf.size
}
if copySize > 0 {
C.memcpy(newPtr, buf.ptr, C.size_t(copySize))
}
((*[1 << 30]byte)(newPtr))[bufSize-1] = 0
C.free(buf.ptr)
buf.ptr = newPtr
buf.size = bufSize
}
func (buf stringBuffer) toGo() string {
if (buf.ptr == nil) || (buf.size < 1) {
return ""
}
((*[1 << 30]byte)(buf.ptr))[buf.size-1] = 0
return C.GoString((*C.char)(buf.ptr))
}