-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathimgui-SFML.cpp
1850 lines (1600 loc) · 67.1 KB
/
imgui-SFML.cpp
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
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include "imgui-SFML.h"
#include <imgui.h>
#include <SFML/Config.hpp>
#include <SFML/Graphics/Color.hpp>
#include <SFML/Graphics/RenderTarget.hpp>
#include <SFML/Graphics/RenderTexture.hpp>
#include <SFML/Graphics/RenderWindow.hpp>
#include <SFML/Graphics/Sprite.hpp>
#include <SFML/Graphics/Texture.hpp>
#include <SFML/OpenGL.hpp>
#include <SFML/Window/Clipboard.hpp>
#include <SFML/Window/Cursor.hpp>
#include <SFML/Window/Event.hpp>
#include <SFML/Window/Touch.hpp>
#include <SFML/Window/VideoMode.hpp>
#include <SFML/Window/Window.hpp>
#include <cassert>
#include <cmath> // abs
#include <cstddef> // offsetof, NULL, size_t
#include <cstring> // memcpy
#include <algorithm>
#include <memory>
#include <vector>
// For multi-viewport support enable/disable
#define VIEWPORTS_ENABLE
#if defined(VIEWPORTS_ENABLE) && defined(_WIN32)
#include <Windows.h>
#endif
#ifdef ANDROID
#ifdef USE_JNI
#include <SFML/System/NativeActivity.hpp>
#include <android/native_activity.h>
#include <jni.h>
int openKeyboardIME() {
ANativeActivity* activity = sf::getNativeActivity();
JavaVM* vm = activity->vm;
JNIEnv* env = activity->env;
JavaVMAttachArgs attachargs;
attachargs.version = JNI_VERSION_1_6;
attachargs.name = "NativeThread";
attachargs.group = NULL;
jint res = vm->AttachCurrentThread(&env, &attachargs);
if (res == JNI_ERR) return EXIT_FAILURE;
jclass natact = env->FindClass("android/app/NativeActivity");
jclass context = env->FindClass("android/content/Context");
jfieldID fid = env->GetStaticFieldID(context, "INPUT_METHOD_SERVICE", "Ljava/lang/String;");
jobject svcstr = env->GetStaticObjectField(context, fid);
jmethodID getss =
env->GetMethodID(natact, "getSystemService", "(Ljava/lang/String;)Ljava/lang/Object;");
jobject imm_obj = env->CallObjectMethod(activity->clazz, getss, svcstr);
jclass imm_cls = env->GetObjectClass(imm_obj);
jmethodID toggleSoftInput = env->GetMethodID(imm_cls, "toggleSoftInput", "(II)V");
env->CallVoidMethod(imm_obj, toggleSoftInput, 2, 0);
env->DeleteLocalRef(imm_obj);
env->DeleteLocalRef(imm_cls);
env->DeleteLocalRef(svcstr);
env->DeleteLocalRef(context);
env->DeleteLocalRef(natact);
vm->DetachCurrentThread();
return EXIT_SUCCESS;
}
int closeKeyboardIME() {
ANativeActivity* activity = sf::getNativeActivity();
JavaVM* vm = activity->vm;
JNIEnv* env = activity->env;
JavaVMAttachArgs attachargs;
attachargs.version = JNI_VERSION_1_6;
attachargs.name = "NativeThread";
attachargs.group = NULL;
jint res = vm->AttachCurrentThread(&env, &attachargs);
if (res == JNI_ERR) return EXIT_FAILURE;
jclass natact = env->FindClass("android/app/NativeActivity");
jclass context = env->FindClass("android/content/Context");
jfieldID fid = env->GetStaticFieldID(context, "INPUT_METHOD_SERVICE", "Ljava/lang/String;");
jobject svcstr = env->GetStaticObjectField(context, fid);
jmethodID getss =
env->GetMethodID(natact, "getSystemService", "(Ljava/lang/String;)Ljava/lang/Object;");
jobject imm_obj = env->CallObjectMethod(activity->clazz, getss, svcstr);
jclass imm_cls = env->GetObjectClass(imm_obj);
jmethodID toggleSoftInput = env->GetMethodID(imm_cls, "toggleSoftInput", "(II)V");
env->CallVoidMethod(imm_obj, toggleSoftInput, 1, 0);
env->DeleteLocalRef(imm_obj);
env->DeleteLocalRef(imm_cls);
env->DeleteLocalRef(svcstr);
env->DeleteLocalRef(context);
env->DeleteLocalRef(natact);
vm->DetachCurrentThread();
return EXIT_SUCCESS;
}
#endif
#endif
#if __cplusplus >= 201103L // C++11 and above
static_assert(sizeof(GLuint) <= sizeof(ImTextureID),
"ImTextureID is not large enough to fit GLuint.");
#endif
namespace {
// various helper functions
ImColor toImColor(sf::Color c);
ImVec2 getTopLeftAbsolute(const sf::FloatRect& rect);
ImVec2 getDownRightAbsolute(const sf::FloatRect& rect);
ImTextureID convertGLTextureHandleToImTextureID(GLuint glTextureHandle);
GLuint convertImTextureIDToGLTextureHandle(ImTextureID textureID);
void RenderDrawLists(ImDrawData* draw_data); // rendering callback function prototype
// Default mapping is XInput gamepad mapping
void initDefaultJoystickMapping();
// Returns first id of connected joystick
unsigned int getConnectedJoystickId();
void updateJoystickButtonState(ImGuiIO& io);
void updateJoystickDPadState(ImGuiIO& io);
void updateJoystickAxisState(ImGuiIO& io);
// clipboard functions
void setClipboardText(void* userData, const char* text);
const char* getClipboardText(void* userData);
std::string s_clipboardText;
// mouse cursors
void loadMouseCursor(ImGuiMouseCursor imguiCursorType, sf::Cursor::Type sfmlCursorType);
void updateMouseCursor(sf::Window& window);
// data
const unsigned int NULL_JOYSTICK_ID = sf::Joystick::Count;
const unsigned int NULL_JOYSTICK_BUTTON = sf::Joystick::ButtonCount;
struct StickInfo {
sf::Joystick::Axis xAxis;
sf::Joystick::Axis yAxis;
bool xInverted;
bool yInverted;
float threshold;
StickInfo() {
xAxis = sf::Joystick::X;
yAxis = sf::Joystick::Y;
xInverted = false;
yInverted = false;
threshold = 15;
}
};
struct TriggerInfo {
sf::Joystick::Axis axis;
float threshold;
TriggerInfo() {
axis = sf::Joystick::Z;
threshold = 0;
}
};
struct WindowContext {
sf::Window* const window;
ImGuiContext* imContext;
sf::Texture fontTexture; // internal font atlas which is used if user doesn't set a custom
// sf::Texture.
bool windowHasFocus;
bool mouseMoved;
bool mousePressed[3];
ImGuiMouseCursor lastCursor;
bool touchDown[3];
sf::Vector2i touchPos;
unsigned int joystickId;
ImGuiKey_ joystickMapping[sf::Joystick::ButtonCount];
StickInfo dPadInfo;
StickInfo lStickInfo;
StickInfo rStickInfo;
TriggerInfo lTriggerInfo;
TriggerInfo rTriggerInfo;
sf::Cursor mouseCursors[ImGuiMouseCursor_COUNT];
bool mouseCursorLoaded[ImGuiMouseCursor_COUNT];
#ifdef ANDROID
#ifdef USE_JNI
bool wantTextInput;
#endif
#endif
#ifdef VIEWPORTS_ENABLE
const bool imContextOwner; // Context owner/main viewport
const bool isRenderWindow;
bool mouseHovered;
WindowContext(const WindowContext&) = delete; // non construction-copyable
WindowContext& operator=(const WindowContext&) = delete; // non copyable
WindowContext(sf::RenderWindow* w, ImGuiContext* context = nullptr)
: WindowContext(w, context, true) { }
WindowContext(sf::Window* w, ImGuiContext* context = nullptr, bool isRenderWindow = false)
: window(w), imContextOwner(context == nullptr), isRenderWindow(isRenderWindow)
{
if (context) {
imContext = context;
} else {
imContext = ::ImGui::CreateContext();
}
windowHasFocus = window->hasFocus();
mouseMoved = false;
mouseHovered = false;
for (int i = 0; i < 3; ++i) {
mousePressed[i] = false;
touchDown[i] = false;
}
lastCursor = ImGuiMouseCursor_COUNT;
joystickId = getConnectedJoystickId();
for (int i = 0; i < sf::Joystick::ButtonCount; ++i) {
joystickMapping[i] = ImGuiKey_None;
}
for (int i = 0; i < ImGuiMouseCursor_COUNT; ++i) {
mouseCursorLoaded[i] = false;
}
#ifdef ANDROID
#ifdef USE_JNI
wantTextInput = false;
#endif
#endif
}
~WindowContext() {
if (imContextOwner)
::ImGui::DestroyContext(imContext);
else
delete window;
}
#else
WindowContext(const WindowContext&) = delete; // non construction-copyable
WindowContext& operator=(const WindowContext&) = delete; // non copyable
WindowContext(sf::Window* w) : window(w)
{
imContext = ::ImGui::CreateContext();
windowHasFocus = window->hasFocus();
mouseMoved = false;
for (int i = 0; i < 3; ++i) {
mousePressed[i] = false;
touchDown[i] = false;
}
lastCursor = ImGuiMouseCursor_COUNT;
joystickId = getConnectedJoystickId();
for (int i = 0; i < sf::Joystick::ButtonCount; ++i) {
joystickMapping[i] = ImGuiKey_None;
}
for (int i = 0; i < ImGuiMouseCursor_COUNT; ++i) {
mouseCursorLoaded[i] = false;
}
#ifdef ANDROID
#ifdef USE_JNI
wantTextInput = false;
#endif
#endif
}
~WindowContext() { ::ImGui::DestroyContext(imContext); }
#endif
};
std::vector<std::unique_ptr<WindowContext>> s_windowContexts;
WindowContext* s_currWindowCtx = nullptr;
#ifdef VIEWPORTS_ENABLE
void SFML_UpdateMonitors();
void SFML_InitInterface(WindowContext* windowContext);
void SFML_ShutdownInterface();
#endif
} // end of anonymous namespace
namespace ImGui {
namespace SFML {
bool Init(sf::RenderWindow& window, bool loadDefaultFont) {
return Init(window, window, loadDefaultFont);
}
bool Init(sf::Window& window, sf::RenderTarget& target, bool loadDefaultFont) {
return Init(window, static_cast<sf::Vector2f>(target.getSize()), loadDefaultFont);
}
bool Init(sf::Window& window, const sf::Vector2f& displaySize, bool loadDefaultFont) {
#if __cplusplus < 201103L // runtime assert when using earlier than C++11 as no
// static_assert support
assert(sizeof(GLuint) <= sizeof(ImTextureID)); // ImTextureID is not large enough to fit
// GLuint.
#endif
s_windowContexts.emplace_back(new WindowContext(&window));
s_currWindowCtx = s_windowContexts.back().get();
ImGui::SetCurrentContext(s_currWindowCtx->imContext);
ImGuiIO& io = ImGui::GetIO();
// tell ImGui which features we support
io.BackendFlags |= ImGuiBackendFlags_HasGamepad;
io.BackendFlags |= ImGuiBackendFlags_HasMouseCursors;
io.BackendFlags |= ImGuiBackendFlags_HasSetMousePos;
#ifdef VIEWPORTS_ENABLE
io.BackendFlags |= ImGuiBackendFlags_PlatformHasViewports;
io.BackendFlags |= ImGuiBackendFlags_RendererHasViewports;
io.BackendFlags |= ImGuiBackendFlags_HasMouseHoveredViewport;
SFML_InitInterface(s_currWindowCtx);
SFML_UpdateMonitors();
#endif
io.BackendPlatformName = "imgui_impl_sfml";
s_currWindowCtx->joystickId = getConnectedJoystickId();
initDefaultJoystickMapping();
// init rendering
io.DisplaySize = ImVec2(displaySize.x, displaySize.y);
// clipboard
io.SetClipboardTextFn = setClipboardText;
io.GetClipboardTextFn = getClipboardText;
// load mouse cursors
loadMouseCursor(ImGuiMouseCursor_Arrow, sf::Cursor::Arrow);
loadMouseCursor(ImGuiMouseCursor_TextInput, sf::Cursor::Text);
loadMouseCursor(ImGuiMouseCursor_ResizeAll, sf::Cursor::SizeAll);
loadMouseCursor(ImGuiMouseCursor_ResizeNS, sf::Cursor::SizeVertical);
loadMouseCursor(ImGuiMouseCursor_ResizeEW, sf::Cursor::SizeHorizontal);
loadMouseCursor(ImGuiMouseCursor_ResizeNESW, sf::Cursor::SizeBottomLeftTopRight);
loadMouseCursor(ImGuiMouseCursor_ResizeNWSE, sf::Cursor::SizeTopLeftBottomRight);
loadMouseCursor(ImGuiMouseCursor_Hand, sf::Cursor::Hand);
if (loadDefaultFont) {
// this will load default font automatically
// No need to call AddDefaultFont
return UpdateFontTexture();
}
return true;
}
void SetCurrentWindow(const sf::Window& window) {
auto found = std::find_if(s_windowContexts.begin(), s_windowContexts.end(),
[&](std::unique_ptr<WindowContext>& ctx) {
return ctx->window->getSystemHandle() == window.getSystemHandle();
});
assert(found != s_windowContexts.end() &&
"Failed to find the window. Forgot to call ImGui::SFML::Init for the window?");
s_currWindowCtx = found->get();
ImGui::SetCurrentContext(s_currWindowCtx->imContext);
}
void ProcessEvent(const sf::Window& window, const sf::Event& event) {
SetCurrentWindow(window);
ProcessEvent(event);
}
ImGuiKey keycodeToImGuiKey(sf::Keyboard::Key code) {
switch (code) {
case sf::Keyboard::Tab:
return ImGuiKey_Tab;
case sf::Keyboard::Left:
return ImGuiKey_LeftArrow;
case sf::Keyboard::Right:
return ImGuiKey_RightArrow;
case sf::Keyboard::Up:
return ImGuiKey_UpArrow;
case sf::Keyboard::Down:
return ImGuiKey_DownArrow;
case sf::Keyboard::PageUp:
return ImGuiKey_PageUp;
case sf::Keyboard::PageDown:
return ImGuiKey_PageDown;
case sf::Keyboard::Home:
return ImGuiKey_Home;
case sf::Keyboard::End:
return ImGuiKey_End;
case sf::Keyboard::Insert:
return ImGuiKey_Insert;
case sf::Keyboard::Delete:
return ImGuiKey_Delete;
case sf::Keyboard::Backspace:
return ImGuiKey_Backspace;
case sf::Keyboard::Space:
return ImGuiKey_Space;
case sf::Keyboard::Enter:
return ImGuiKey_Enter;
case sf::Keyboard::Escape:
return ImGuiKey_Escape;
case sf::Keyboard::Quote:
return ImGuiKey_Apostrophe;
case sf::Keyboard::Comma:
return ImGuiKey_Comma;
case sf::Keyboard::Hyphen:
return ImGuiKey_Minus;
case sf::Keyboard::Period:
return ImGuiKey_Period;
case sf::Keyboard::Slash:
return ImGuiKey_Slash;
case sf::Keyboard::Semicolon:
return ImGuiKey_Semicolon;
case sf::Keyboard::Equal:
return ImGuiKey_Equal;
case sf::Keyboard::LBracket:
return ImGuiKey_LeftBracket;
case sf::Keyboard::Backslash:
return ImGuiKey_Backslash;
case sf::Keyboard::RBracket:
return ImGuiKey_RightBracket;
case sf::Keyboard::Tilde:
return ImGuiKey_GraveAccent;
// case : return ImGuiKey_CapsLock;
// case : return ImGuiKey_ScrollLock;
// case : return ImGuiKey_NumLock;
// case : return ImGuiKey_PrintScreen;
case sf::Keyboard::Pause:
return ImGuiKey_Pause;
case sf::Keyboard::Numpad0:
return ImGuiKey_Keypad0;
case sf::Keyboard::Numpad1:
return ImGuiKey_Keypad1;
case sf::Keyboard::Numpad2:
return ImGuiKey_Keypad2;
case sf::Keyboard::Numpad3:
return ImGuiKey_Keypad3;
case sf::Keyboard::Numpad4:
return ImGuiKey_Keypad4;
case sf::Keyboard::Numpad5:
return ImGuiKey_Keypad5;
case sf::Keyboard::Numpad6:
return ImGuiKey_Keypad6;
case sf::Keyboard::Numpad7:
return ImGuiKey_Keypad7;
case sf::Keyboard::Numpad8:
return ImGuiKey_Keypad8;
case sf::Keyboard::Numpad9:
return ImGuiKey_Keypad9;
// case : return ImGuiKey_KeypadDecimal;
case sf::Keyboard::Divide:
return ImGuiKey_KeypadDivide;
case sf::Keyboard::Multiply:
return ImGuiKey_KeypadMultiply;
case sf::Keyboard::Subtract:
return ImGuiKey_KeypadSubtract;
case sf::Keyboard::Add:
return ImGuiKey_KeypadAdd;
// case : return ImGuiKey_KeypadEnter;
// case : return ImGuiKey_KeypadEqual;
case sf::Keyboard::LControl:
return ImGuiKey_LeftCtrl;
case sf::Keyboard::LShift:
return ImGuiKey_LeftShift;
case sf::Keyboard::LAlt:
return ImGuiKey_LeftAlt;
case sf::Keyboard::LSystem:
return ImGuiKey_LeftSuper;
case sf::Keyboard::RControl:
return ImGuiKey_RightCtrl;
case sf::Keyboard::RShift:
return ImGuiKey_RightShift;
case sf::Keyboard::RAlt:
return ImGuiKey_RightAlt;
case sf::Keyboard::RSystem:
return ImGuiKey_RightSuper;
case sf::Keyboard::Menu:
return ImGuiKey_Menu;
case sf::Keyboard::Num0:
return ImGuiKey_0;
case sf::Keyboard::Num1:
return ImGuiKey_1;
case sf::Keyboard::Num2:
return ImGuiKey_2;
case sf::Keyboard::Num3:
return ImGuiKey_3;
case sf::Keyboard::Num4:
return ImGuiKey_4;
case sf::Keyboard::Num5:
return ImGuiKey_5;
case sf::Keyboard::Num6:
return ImGuiKey_6;
case sf::Keyboard::Num7:
return ImGuiKey_7;
case sf::Keyboard::Num8:
return ImGuiKey_8;
case sf::Keyboard::Num9:
return ImGuiKey_9;
case sf::Keyboard::A:
return ImGuiKey_A;
case sf::Keyboard::B:
return ImGuiKey_B;
case sf::Keyboard::C:
return ImGuiKey_C;
case sf::Keyboard::D:
return ImGuiKey_D;
case sf::Keyboard::E:
return ImGuiKey_E;
case sf::Keyboard::F:
return ImGuiKey_F;
case sf::Keyboard::G:
return ImGuiKey_G;
case sf::Keyboard::H:
return ImGuiKey_H;
case sf::Keyboard::I:
return ImGuiKey_I;
case sf::Keyboard::J:
return ImGuiKey_J;
case sf::Keyboard::K:
return ImGuiKey_K;
case sf::Keyboard::L:
return ImGuiKey_L;
case sf::Keyboard::M:
return ImGuiKey_M;
case sf::Keyboard::N:
return ImGuiKey_N;
case sf::Keyboard::O:
return ImGuiKey_O;
case sf::Keyboard::P:
return ImGuiKey_P;
case sf::Keyboard::Q:
return ImGuiKey_Q;
case sf::Keyboard::R:
return ImGuiKey_R;
case sf::Keyboard::S:
return ImGuiKey_S;
case sf::Keyboard::T:
return ImGuiKey_T;
case sf::Keyboard::U:
return ImGuiKey_U;
case sf::Keyboard::V:
return ImGuiKey_V;
case sf::Keyboard::W:
return ImGuiKey_W;
case sf::Keyboard::X:
return ImGuiKey_X;
case sf::Keyboard::Y:
return ImGuiKey_Y;
case sf::Keyboard::Z:
return ImGuiKey_Z;
case sf::Keyboard::F1:
return ImGuiKey_F1;
case sf::Keyboard::F2:
return ImGuiKey_F2;
case sf::Keyboard::F3:
return ImGuiKey_F3;
case sf::Keyboard::F4:
return ImGuiKey_F4;
case sf::Keyboard::F5:
return ImGuiKey_F5;
case sf::Keyboard::F6:
return ImGuiKey_F6;
case sf::Keyboard::F7:
return ImGuiKey_F7;
case sf::Keyboard::F8:
return ImGuiKey_F8;
case sf::Keyboard::F9:
return ImGuiKey_F9;
case sf::Keyboard::F10:
return ImGuiKey_F10;
case sf::Keyboard::F11:
return ImGuiKey_F11;
case sf::Keyboard::F12:
return ImGuiKey_F12;
}
return ImGuiKey_None;
}
ImGuiKey keycodeToImGuiMod(sf::Keyboard::Key code) {
switch (code) {
case sf::Keyboard::LControl:
case sf::Keyboard::RControl:
return ImGuiKey_ModCtrl;
case sf::Keyboard::LShift:
case sf::Keyboard::RShift:
return ImGuiKey_ModShift;
case sf::Keyboard::LAlt:
case sf::Keyboard::RAlt:
return ImGuiKey_ModAlt;
case sf::Keyboard::LSystem:
case sf::Keyboard::RSystem:
return ImGuiKey_ModSuper;
}
return ImGuiKey_None;
}
void ProcessEvent(const sf::Event& event) {
assert(s_currWindowCtx && "No current window is set - forgot to call ImGui::SFML::Init?");
ImGuiIO& io = ImGui::GetIO();
if (s_currWindowCtx->windowHasFocus) {
switch (event.type) {
case sf::Event::MouseMoved:
if (io.ConfigFlags & ImGuiConfigFlags_ViewportsEnable) {
sf::Vector2i mousePos = sf::Mouse::getPosition();
io.AddMousePosEvent(mousePos.x, mousePos.y);
}
else {
io.AddMousePosEvent(event.mouseMove.x, event.mouseMove.y);
}
s_currWindowCtx->mouseMoved = true;
break;
case sf::Event::MouseButtonPressed: // fall-through
case sf::Event::MouseButtonReleased: {
int button = event.mouseButton.button;
if (button >= 0 && button < 3) {
if (event.type == sf::Event::MouseButtonPressed) {
s_currWindowCtx->mousePressed[event.mouseButton.button] = true;
io.AddMouseButtonEvent(button, true);
} else {
io.AddMouseButtonEvent(button, false);
}
}
} break;
case sf::Event::TouchBegan: // fall-through
case sf::Event::TouchEnded: {
s_currWindowCtx->mouseMoved = false;
int button = event.touch.finger;
if (event.type == sf::Event::TouchBegan && button >= 0 && button < 3) {
s_currWindowCtx->touchDown[event.touch.finger] = true;
}
} break;
case sf::Event::MouseWheelScrolled:
if (event.mouseWheelScroll.wheel == sf::Mouse::VerticalWheel ||
(event.mouseWheelScroll.wheel == sf::Mouse::HorizontalWheel && io.KeyShift)) {
io.AddMouseWheelEvent(0, event.mouseWheelScroll.delta);
} else if (event.mouseWheelScroll.wheel == sf::Mouse::HorizontalWheel) {
io.AddMouseWheelEvent(event.mouseWheelScroll.delta, 0);
}
break;
case sf::Event::KeyPressed: // fall-through
case sf::Event::KeyReleased: {
bool down = (event.type == sf::Event::KeyPressed);
ImGuiKey mod = keycodeToImGuiMod(event.key.code);
// The modifier booleans are not reliable when it's the modifier
// itself that's being pressed. Detect these presses directly.
if (mod != ImGuiKey_None) {
io.AddKeyEvent(mod, down);
} else {
io.AddKeyEvent(ImGuiKey_ModCtrl, event.key.control);
io.AddKeyEvent(ImGuiKey_ModShift, event.key.shift);
io.AddKeyEvent(ImGuiKey_ModAlt, event.key.alt);
io.AddKeyEvent(ImGuiKey_ModSuper, event.key.system);
}
ImGuiKey key = keycodeToImGuiKey(event.key.code);
io.AddKeyEvent(key, down);
io.SetKeyEventNativeData(key, event.key.code, -1);
} break;
case sf::Event::TextEntered:
// Don't handle the event for unprintable characters
if (event.text.unicode < ' ' || event.text.unicode == 127) {
break;
}
io.AddInputCharacter(event.text.unicode);
break;
case sf::Event::JoystickConnected:
if (s_currWindowCtx->joystickId == NULL_JOYSTICK_ID) {
s_currWindowCtx->joystickId = event.joystickConnect.joystickId;
}
break;
case sf::Event::JoystickDisconnected:
if (s_currWindowCtx->joystickId == event.joystickConnect.joystickId) { // used gamepad
// was
// disconnected
s_currWindowCtx->joystickId = getConnectedJoystickId();
}
break;
default:
break;
}
}
switch (event.type) {
case sf::Event::LostFocus: {
io.AddFocusEvent(false);
s_currWindowCtx->windowHasFocus = false;
} break;
case sf::Event::GainedFocus:
io.AddFocusEvent(true);
s_currWindowCtx->windowHasFocus = true;
break;
#ifdef VIEWPORTS_ENABLE
case sf::Event::MouseEntered:
if (io.ConfigFlags & ImGuiConfigFlags_ViewportsEnable) {
sf::Vector2i mousePos = sf::Mouse::getPosition();
io.AddMousePosEvent(mousePos.x, mousePos.y);
} else {
sf::Vector2i mousePos = sf::Mouse::getPosition(*s_currWindowCtx->window);
io.AddMousePosEvent(mousePos.x, mousePos.y);
}
s_currWindowCtx->mouseHovered = true;
break;
case sf::Event::MouseLeft:
io.AddMousePosEvent(-FLT_MAX, -FLT_MAX);
s_currWindowCtx->mouseHovered = false;
break;
#endif // VIEWPORT_ENABLE
default:
break;
}
}
void Update(sf::RenderWindow& window, sf::Time dt) {
Update(window, window, dt);
}
void Update(sf::Window& window, sf::RenderTarget& target, sf::Time dt) {
SetCurrentWindow(window);
assert(s_currWindowCtx);
// Update OS/hardware mouse cursor if imgui isn't drawing a software cursor
ImGuiMouseCursor mouse_cursor =
ImGui::GetIO().MouseDrawCursor ? ImGuiMouseCursor_None : ImGui::GetMouseCursor();
if (s_currWindowCtx->lastCursor != mouse_cursor) {
s_currWindowCtx->lastCursor = mouse_cursor;
updateMouseCursor(window);
}
if (!s_currWindowCtx->mouseMoved) {
if (sf::Touch::isDown(0)) s_currWindowCtx->touchPos = sf::Touch::getPosition(0, window);
Update(s_currWindowCtx->touchPos, static_cast<sf::Vector2f>(target.getSize()), dt);
} else {
if (ImGui::GetIO().ConfigFlags & ImGuiConfigFlags_ViewportsEnable)
Update(sf::Mouse::getPosition(), static_cast<sf::Vector2f>(target.getSize()), dt);
else
Update(sf::Mouse::getPosition(window), static_cast<sf::Vector2f>(target.getSize()), dt);
}
}
void Update(const sf::Vector2i& mousePos, const sf::Vector2f& displaySize, sf::Time dt) {
assert(s_currWindowCtx && "No current window is set - forgot to call ImGui::SFML::Init?");
ImGuiIO& io = ImGui::GetIO();
io.DisplaySize = ImVec2(displaySize.x, displaySize.y);
io.DeltaTime = dt.asSeconds();
#ifdef VIEWPORTS_ENABLE
if (io.ConfigFlags & ImGuiConfigFlags_ViewportsEnable) {
SFML_UpdateMonitors();
for (auto& viewport : ImGui::GetPlatformIO().Viewports) {
WindowContext* wc = (WindowContext*)viewport->PlatformUserData;
if (wc->imContextOwner) continue;
sf::Event event;
while (wc->window->pollEvent(event)) {
if (wc->window->hasFocus()) {
switch (event.type) {
case sf::Event::MouseMoved:
{
sf::Vector2i mousePos = sf::Mouse::getPosition();
io.AddMousePosEvent(mousePos.x, mousePos.y);
}
wc->mouseMoved = true;
break;
case sf::Event::MouseButtonPressed: // fall-through
case sf::Event::MouseButtonReleased: {
int button = event.mouseButton.button;
if (button >= 0 && button < 3) {
if (event.type == sf::Event::MouseButtonPressed) {
wc->mousePressed[event.mouseButton.button] = true;
io.AddMouseButtonEvent(button, true);
} else {
io.AddMouseButtonEvent(button, false);
}
}
} break;
case sf::Event::TouchBegan: // fall-through
case sf::Event::TouchEnded: {
wc->mouseMoved = false;
int button = event.touch.finger;
if (event.type == sf::Event::TouchBegan && button >= 0 && button < 3) {
wc->touchDown[event.touch.finger] = true;
}
} break;
case sf::Event::MouseWheelScrolled:
if (event.mouseWheelScroll.wheel == sf::Mouse::VerticalWheel ||
(event.mouseWheelScroll.wheel == sf::Mouse::HorizontalWheel &&
io.KeyShift)) {
io.AddMouseWheelEvent(0, event.mouseWheelScroll.delta);
} else if (event.mouseWheelScroll.wheel == sf::Mouse::HorizontalWheel) {
io.AddMouseWheelEvent(event.mouseWheelScroll.delta, 0);
}
break;
case sf::Event::KeyPressed: // fall-through
case sf::Event::KeyReleased: {
bool down = (event.type == sf::Event::KeyPressed);
ImGuiKey mod = keycodeToImGuiMod(event.key.code);
// The modifier booleans are not reliable when it's the modifier
// itself that's being pressed. Detect these presses directly.
if (mod != ImGuiKey_None) {
io.AddKeyEvent(mod, down);
} else {
io.AddKeyEvent(ImGuiKey_ModCtrl, event.key.control);
io.AddKeyEvent(ImGuiKey_ModShift, event.key.shift);
io.AddKeyEvent(ImGuiKey_ModAlt, event.key.alt);
io.AddKeyEvent(ImGuiKey_ModSuper, event.key.system);
}
ImGuiKey key = keycodeToImGuiKey(event.key.code);
io.AddKeyEvent(key, down);
io.SetKeyEventNativeData(key, event.key.code, -1);
} break;
case sf::Event::TextEntered:
// Don't handle the event for unprintable characters
if (event.text.unicode < ' ' || event.text.unicode == 127) {
break;
}
io.AddInputCharacter(event.text.unicode);
break;
case sf::Event::JoystickConnected:
if (wc->joystickId == NULL_JOYSTICK_ID) {
wc->joystickId = event.joystickConnect.joystickId;
}
break;
case sf::Event::JoystickDisconnected:
if (wc->joystickId == event.joystickConnect.joystickId) { // used gamepad
// was
// disconnected
wc->joystickId = getConnectedJoystickId();
}
break;
default:
break;
}
}
switch (event.type) {
case sf::Event::LostFocus: {
io.AddFocusEvent(false);
wc->windowHasFocus = false;
} break;
case sf::Event::GainedFocus:
io.AddFocusEvent(true);
wc->windowHasFocus = true;
break;
case sf::Event::MouseEntered:
{
sf::Vector2i mousePos = sf::Mouse::getPosition();
io.AddMousePosEvent(mousePos.x, mousePos.y);
}
wc->mouseHovered = true;
break;
case sf::Event::MouseLeft:
io.AddMousePosEvent(-FLT_MAX, -FLT_MAX);
wc->mouseHovered = false;
break;
default:
break;
}
}
}
}
ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
const ImVec2 mousePosPrev = io.MousePos;
ImGuiID mouseViewportID = 0;
for (auto* viewport : platform_io.Viewports) {
WindowContext* wc = (WindowContext*)viewport->PlatformUserData;
sf::Window* window = (sf::Window*)viewport->PlatformHandle;
if (window->hasFocus()) {
if (io.WantSetMousePos) {
sf::Mouse::setPosition({static_cast<int>(mousePosPrev.x - viewport->Pos.x),
static_cast<int>(mousePosPrev.y - viewport->Pos.y)},
*window);
}
sf::Vector2i mousePos;
if (io.ConfigFlags & ImGuiConfigFlags_ViewportsEnable)
mousePos = sf::Mouse::getPosition();
else
mousePos = sf::Mouse::getPosition(*window);
io.AddMousePosEvent(mousePos.x, mousePos.y);
for (unsigned int i = 0; i < 3; i++) {
io.MouseDown[i] = wc->touchDown[i] || sf::Touch::isDown(i) || wc->mousePressed[i] ||
sf::Mouse::isButtonPressed((sf::Mouse::Button)i);
wc->mousePressed[i] = false;
wc->touchDown[i] = false;
}
}
const bool windowNoInput = (viewport->Flags & ImGuiViewportFlags_NoInputs) != 0;
if (wc->mouseHovered && !windowNoInput) mouseViewportID = viewport->ID;
}
if (io.BackendFlags & ImGuiBackendFlags_HasMouseHoveredViewport)
io.AddMouseViewportEvent(mouseViewportID);
#else
if (s_currWindowCtx->windowHasFocus) {
if (io.WantSetMousePos) {
sf::Vector2i newMousePos(static_cast<int>(io.MousePos.x),
static_cast<int>(io.MousePos.y));
sf::Mouse::setPosition(newMousePos);
} else {
io.MousePos = ImVec2(static_cast<float>(mousePos.x), static_cast<float>(mousePos.y));
}
for (unsigned int i = 0; i < 3; i++) {
io.MouseDown[i] = s_currWindowCtx->touchDown[i] || sf::Touch::isDown(i) ||
s_currWindowCtx->mousePressed[i] ||
sf::Mouse::isButtonPressed((sf::Mouse::Button)i);
s_currWindowCtx->mousePressed[i] = false;
s_currWindowCtx->touchDown[i] = false;
}
}
#endif
#ifdef ANDROID
#ifdef USE_JNI
if (io.WantTextInput && !s_currWindowCtx->wantTextInput) {
openKeyboardIME();
s_currWindowCtx->wantTextInput = true;
}
if (!io.WantTextInput && s_currWindowCtx->wantTextInput) {
closeKeyboardIME();
s_currWindowCtx->wantTextInput = false;
}
#endif
#endif
assert(io.Fonts->Fonts.Size > 0); // You forgot to create and set up font
// atlas (see createFontTexture)
// gamepad navigation
if ((io.ConfigFlags & ImGuiConfigFlags_NavEnableGamepad) &&
s_currWindowCtx->joystickId != NULL_JOYSTICK_ID) {
updateJoystickButtonState(io);
updateJoystickDPadState(io);
updateJoystickAxisState(io);
}
ImGui::NewFrame();
}
void Render(sf::RenderWindow& window) {
SetCurrentWindow(window);
Render(static_cast<sf::RenderTarget&>(window));
}
void Render(sf::RenderTarget& target) {
target.resetGLStates();
target.pushGLStates();
ImGui::Render();
RenderDrawLists(ImGui::GetDrawData());
target.popGLStates();
}
void Render() {
ImGui::Render();