This repository has been archived by the owner on Dec 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 101
/
IO.go
404 lines (346 loc) · 14.4 KB
/
IO.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
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
package imgui
// #include "wrapper/IO.h"
import "C"
// IO is where your app communicate with ImGui. Access via CurrentIO().
// Read 'Programmer guide' section in imgui.cpp file for general usage.
type IO struct {
handle C.IggIO
}
// CurrentIO returns access to the ImGui communication struct for the currently active context.
func CurrentIO() IO {
return IO{handle: C.iggGetCurrentIO()}
}
// WantCaptureMouse returns true if imgui will use the mouse inputs.
// Do not dispatch them to your main game/application in this case.
// In either case, always pass on mouse inputs to imgui.
//
// e.g. unclicked mouse is hovering over an imgui window, widget is active,
// mouse was clicked over an imgui window, etc.
func (io IO) WantCaptureMouse() bool {
return C.iggWantCaptureMouse(io.handle) != 0
}
// WantCaptureMouseUnlessPopupClose returns true if imgui will use the mouse inputs.
// Alternative to WantCaptureMouse: (WantCaptureMouse == true &&
// WantCaptureMouseUnlessPopupClose == false) when a click over void is
// expected to close a popup.
func (io IO) WantCaptureMouseUnlessPopupClose() bool {
return C.iggWantCaptureMouseUnlessPopupClose(io.handle) != 0
}
// WantCaptureKeyboard returns true if imgui will use the keyboard inputs.
// Do not dispatch them to your main game/application (in both cases, always pass keyboard inputs to imgui).
//
// e.g. InputText active, or an imgui window is focused and navigation is enabled, etc.
func (io IO) WantCaptureKeyboard() bool {
return C.iggWantCaptureKeyboard(io.handle) != 0
}
// WantTextInput is true, you may display an on-screen keyboard.
// This is set by ImGui when it wants textual keyboard input to happen (e.g. when a InputText widget is active).
func (io IO) WantTextInput() bool {
return C.iggWantTextInput(io.handle) != 0
}
// Framerate application estimation, in frame per second. Solely for convenience.
// Rolling average estimation based on IO.DeltaTime over 120 frames.
func (io IO) Framerate() float32 {
return float32(C.iggFramerate(io.handle))
}
// MetricsRenderVertices returns vertices output during last call to Render().
func (io IO) MetricsRenderVertices() int {
return int(C.iggMetricsRenderVertices(io.handle))
}
// MetricsRenderIndices returns indices output during last call to Render() = number of triangles * 3.
func (io IO) MetricsRenderIndices() int {
return int(C.iggMetricsRenderIndices(io.handle))
}
// MetricsRenderWindows returns number of visible windows.
func (io IO) MetricsRenderWindows() int {
return int(C.iggMetricsRenderWindows(io.handle))
}
// MetricsActiveWindows returns number of active windows.
func (io IO) MetricsActiveWindows() int {
return int(C.iggMetricsActiveWindows(io.handle))
}
// MetricsActiveAllocations returns number of active allocations, updated by MemAlloc/MemFree
// based on current context. May be off if you have multiple imgui contexts.
func (io IO) MetricsActiveAllocations() int {
return int(C.iggMetricsActiveAllocations(io.handle))
}
// MousePosition returns the mouse position.
func (io IO) MousePosition() Vec2 {
var value Vec2
valueArg, valueFin := value.wrapped()
C.iggIoGetMousePosition(io.handle, valueArg)
valueFin()
return value
}
// MouseDelta returns the mouse delta movement. Note that this is zero if either current or previous position
// are invalid (-math.MaxFloat32,-math.MaxFloat32), so a disappearing/reappearing mouse won't have a huge delta.
func (io IO) MouseDelta() Vec2 {
var value Vec2
valueArg, valueFin := value.wrapped()
C.iggMouseDelta(io.handle, valueArg)
valueFin()
return value
}
// MouseWheel returns the mouse wheel movement.
func (io IO) MouseWheel() (float32, float32) {
var mouseWheelH, mouseWheel C.float
C.iggMouseWheel(io.handle, &mouseWheelH, &mouseWheel)
return float32(mouseWheelH), float32(mouseWheel)
}
// DisplayFrameBufferScale returns scale factor for HDPI displays.
// It is for retina display or other situations where window coordinates are different from framebuffer coordinates.
func (io IO) DisplayFrameBufferScale() Vec2 {
var value Vec2
valueArg, valueFin := value.wrapped()
C.iggDisplayFrameBufferScale(io.handle, valueArg)
valueFin()
return value
}
// SetDisplaySize sets the size in pixels.
func (io IO) SetDisplaySize(value Vec2) {
out, _ := value.wrapped()
C.iggIoSetDisplaySize(io.handle, out)
}
// SetDisplayFrameBufferScale sets the frame buffer scale factor.
func (io IO) SetDisplayFrameBufferScale(value Vec2) {
out, _ := value.wrapped()
C.iggIoSetDisplayFrameBufferScale(io.handle, out)
}
// Fonts returns the font atlas to load and assemble one or more fonts into a single tightly packed texture.
func (io IO) Fonts() FontAtlas {
return FontAtlas(C.iggIoGetFonts(io.handle))
}
// SetMousePosition sets the mouse position, in pixels.
// Set to Vec2(-math.MaxFloat32,-mathMaxFloat32) if mouse is unavailable (on another screen, etc.).
func (io IO) SetMousePosition(value Vec2) {
posArg, _ := value.wrapped()
C.iggIoSetMousePosition(io.handle, posArg)
}
// SetMouseButtonDown sets whether a specific mouse button is currently pressed.
// Mouse buttons: left, right, middle + extras.
// ImGui itself mostly only uses left button (BeginPopupContext** are using right button).
// Other buttons allows us to track if the mouse is being used by your application +
// available to user as a convenience via IsMouse** API.
func (io IO) SetMouseButtonDown(index int, down bool) {
var downArg C.IggBool
if down {
downArg = 1
}
C.iggIoSetMouseButtonDown(io.handle, C.int(index), downArg)
}
// AddMouseWheelDelta adds the given offsets to the current mouse wheel values.
// 1 vertical unit scrolls about 5 lines text.
// Most users don't have a mouse with an horizontal wheel, may not be provided by all back-ends.
func (io IO) AddMouseWheelDelta(horizontal, vertical float32) {
C.iggIoAddMouseWheelDelta(io.handle, C.float(horizontal), C.float(vertical))
}
// SetDeltaTime sets the time elapsed since last frame, in seconds.
func (io IO) SetDeltaTime(value float32) {
C.iggIoSetDeltaTime(io.handle, C.float(value))
}
// SetFontGlobalScale sets the global scaling factor for all fonts.
func (io IO) SetFontGlobalScale(value float32) {
C.iggIoSetFontGlobalScale(io.handle, C.float(value))
}
// KeyPress sets the KeysDown flag.
func (io IO) KeyPress(key int) {
C.iggIoKeyPress(io.handle, C.int(key))
}
// KeyRelease clears the KeysDown flag.
func (io IO) KeyRelease(key int) {
C.iggIoKeyRelease(io.handle, C.int(key))
}
// Constants to fill IO.KeyMap() lookup with indices into the IO.KeysDown[512] array.
// The mapped indices are then the ones reported to IO.KeyPress() and IO.KeyRelease().
const (
KeyTab = 0
KeyLeftArrow = 1
KeyRightArrow = 2
KeyUpArrow = 3
KeyDownArrow = 4
KeyPageUp = 5
KeyPageDown = 6
KeyHome = 7
KeyEnd = 8
KeyInsert = 9
KeyDelete = 10
KeyBackspace = 11
KeySpace = 12
KeyEnter = 13
KeyEscape = 14
KeyKeyPadEnter = 15
KeyA = 16 // for text edit CTRL+A: select all
KeyC = 17 // for text edit CTRL+C: copy
KeyV = 18 // for text edit CTRL+V: paste
KeyX = 19 // for text edit CTRL+X: cut
KeyY = 20 // for text edit CTRL+Y: redo
KeyZ = 21 // for text edit CTRL+Z: undo
)
// KeyMap maps a key into the KeysDown array which represents your "native" keyboard state.
func (io IO) KeyMap(imguiKey int, nativeKey int) {
C.iggIoKeyMap(io.handle, C.int(imguiKey), C.int(nativeKey))
}
// KeyCtrl sets the keyboard modifier control pressed.
func (io IO) KeyCtrl(leftCtrl int, rightCtrl int) {
C.iggIoKeyCtrl(io.handle, C.int(leftCtrl), C.int(rightCtrl))
}
// KeyCtrlPressed get the keyboard modifier control pressed.
func (io IO) KeyCtrlPressed() bool {
return C.iggIoKeyCtrlPressed(io.handle) != 0
}
// KeyShift sets the keyboard modifier shift pressed.
func (io IO) KeyShift(leftShift int, rightShift int) {
C.iggIoKeyShift(io.handle, C.int(leftShift), C.int(rightShift))
}
// KeyShiftPressed get the keyboard modifier shif pressed.
func (io IO) KeyShiftPressed() bool {
return C.iggIoKeyShiftPressed(io.handle) != 0
}
// KeyAlt sets the keyboard modifier alt pressed.
func (io IO) KeyAlt(leftAlt int, rightAlt int) {
C.iggIoKeyAlt(io.handle, C.int(leftAlt), C.int(rightAlt))
}
// KeyAltPressed get the keyboard modifier alt pressed.
func (io IO) KeyAltPressed() bool {
return C.iggIoKeyAltPressed(io.handle) != 0
}
// KeySuper sets the keyboard modifier super pressed.
func (io IO) KeySuper(leftSuper int, rightSuper int) {
C.iggIoKeySuper(io.handle, C.int(leftSuper), C.int(rightSuper))
}
// KeySuperPressed get the keyboard modifier super pressed.
func (io IO) KeySuperPressed() bool {
return C.iggIoKeySuperPressed(io.handle) != 0
}
// AddInputCharacters adds a new character into InputCharacters[].
func (io IO) AddInputCharacters(chars string) {
textArg, textFin := wrapString(chars)
defer textFin()
C.iggIoAddInputCharactersUTF8(io.handle, textArg)
}
// SetIniFilename changes the filename for the settings. Default: "imgui.ini".
// Use an empty string to disable the ini from being used.
func (io IO) SetIniFilename(value string) {
valueArg, valueFin := wrapString(value)
defer valueFin()
C.iggIoSetIniFilename(io.handle, valueArg)
}
// ConfigFlags for IO.SetConfigFlags.
type ConfigFlags int
const (
// ConfigFlagsNone default = 0.
ConfigFlagsNone ConfigFlags = 0
// ConfigFlagsNavEnableKeyboard main keyboard navigation enable flag. NewFrame() will automatically fill
// io.NavInputs[] based on io.KeysDown[].
ConfigFlagsNavEnableKeyboard ConfigFlags = 1 << 0
// ConfigFlagsNavEnableGamepad main gamepad navigation enable flag.
// This is mostly to instruct your imgui back-end to fill io.NavInputs[]. Back-end also needs to set
// BackendFlagHasGamepad.
ConfigFlagsNavEnableGamepad ConfigFlags = 1 << 1
// ConfigFlagsNavEnableSetMousePos instruct navigation to move the mouse cursor. May be useful on TV/console systems
// where moving a virtual mouse is awkward. Will update io.MousePos and set io.WantSetMousePos=true. If enabled you
// MUST honor io.WantSetMousePos requests in your binding, otherwise ImGui will react as if the mouse is jumping
// around back and forth.
ConfigFlagsNavEnableSetMousePos ConfigFlags = 1 << 2
// ConfigFlagsNavNoCaptureKeyboard instruct navigation to not set the io.WantCaptureKeyboard flag when io.NavActive
// is set.
ConfigFlagsNavNoCaptureKeyboard ConfigFlags = 1 << 3
// ConfigFlagsNoMouse instruct imgui to clear mouse position/buttons in NewFrame(). This allows ignoring the mouse
// information set by the back-end.
ConfigFlagsNoMouse ConfigFlags = 1 << 4
// ConfigFlagsNoMouseCursorChange instruct back-end to not alter mouse cursor shape and visibility. Use if the
// back-end cursor changes are interfering with yours and you don't want to use SetMouseCursor() to change mouse
// cursor. You may want to honor requests from imgui by reading GetMouseCursor() yourself instead.
ConfigFlagsNoMouseCursorChange ConfigFlags = 1 << 5
// User storage (to allow your back-end/engine to communicate to code that may be shared between multiple projects.
// Those flags are not used by core Dear ImGui).
// ConfigFlagsIsSRGB application is SRGB-aware.
ConfigFlagsIsSRGB ConfigFlags = 1 << 20
// ConfigFlagsIsTouchScreen application is using a touch screen instead of a mouse.
ConfigFlagsIsTouchScreen ConfigFlags = 1 << 21
)
// SetConfigFlags sets the gamepad/keyboard navigation options, etc.
func (io IO) SetConfigFlags(flags ConfigFlags) {
C.iggIoSetConfigFlags(io.handle, C.int(flags))
}
// BackendFlags for IO.SetBackendFlags.
type BackendFlags int
const (
// BackendFlagsNone default = 0.
BackendFlagsNone BackendFlags = 0
// BackendFlagsHasGamepad back-end Platform supports gamepad and currently has one connected.
BackendFlagsHasGamepad BackendFlags = 1 << 0
// BackendFlagsHasMouseCursors back-end Platform supports honoring GetMouseCursor() value to change the OS cursor
// shape.
BackendFlagsHasMouseCursors BackendFlags = 1 << 1
// BackendFlagsHasSetMousePos back-end Platform supports io.WantSetMousePos requests to reposition the OS mouse
// position (only used if ImGuiConfigFlags_NavEnableSetMousePos is set).
BackendFlagsHasSetMousePos BackendFlags = 1 << 2
// BackendFlagsRendererHasVtxOffset back-end Renderer supports ImDrawCmd::VtxOffset. This enables output of large
// meshes (64K+ vertices) while still using 16-bits indices.
BackendFlagsRendererHasVtxOffset BackendFlags = 1 << 3
)
// SetBackendFlags sets back-end capabilities.
func (io IO) SetBackendFlags(flags BackendFlags) {
C.iggIoSetBackendFlags(io.handle, C.int(flags))
}
// GetBackendFlags gets the current backend flags.
func (io IO) GetBackendFlags() BackendFlags {
return BackendFlags(C.iggIoGetBackendFlags(io.handle))
}
// SetMouseDrawCursor request ImGui to draw a mouse cursor for you (if you are on a platform without a mouse cursor).
func (io IO) SetMouseDrawCursor(show bool) {
C.iggIoSetMouseDrawCursor(io.handle, castBool(show))
}
// Clipboard describes the access to the text clipboard of the window manager.
type Clipboard interface {
// Text returns the current text from the clipboard, if available.
Text() (string, error)
// SetText sets the text as the current text on the clipboard.
SetText(value string)
}
var clipboards = map[C.IggIO]Clipboard{}
var dropLastClipboardText = func() {}
// SetClipboard registers a clipboard for text copy/paste actions.
// If no clipboard is set, then a fallback implementation may be used, if available for the OS.
// To disable clipboard handling overall, pass nil as the Clipboard.
//
// Since ImGui queries the clipboard text via a return value, the wrapper has to hold the
// current clipboard text as a copy in memory. This memory will be freed at the next clipboard operation.
func (io IO) SetClipboard(board Clipboard) {
dropLastClipboardText()
if board != nil {
clipboards[io.handle] = board
C.iggIoRegisterClipboardFunctions(io.handle)
} else {
C.iggIoClearClipboardFunctions(io.handle)
delete(clipboards, io.handle)
}
}
//export iggIoGetClipboardText
func iggIoGetClipboardText(handle C.IggIO) *C.char {
dropLastClipboardText()
board := clipboards[handle]
if board == nil {
return nil
}
text, err := board.Text()
if err != nil {
return nil
}
textPtr, textFin := wrapString(text)
dropLastClipboardText = func() {
dropLastClipboardText = func() {}
textFin()
}
return textPtr
}
//export iggIoSetClipboardText
func iggIoSetClipboardText(handle C.IggIO, text *C.char) {
dropLastClipboardText()
board := clipboards[handle]
if board == nil {
return
}
board.SetText(C.GoString(text))
}