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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
|
//------------------------------------------------------------------------------
// VERSION 0.9.1
//
// LICENSE
// This software is dual-licensed to the public domain and under the following
// license: you are granted a perpetual, irrevocable license to copy, modify,
// publish, and distribute this file as you see fit.
//
// CREDITS
// Written by Michal Cichon
//------------------------------------------------------------------------------
# ifndef __IMGUI_NODE_EDITOR_INTERNAL_H__
# define __IMGUI_NODE_EDITOR_INTERNAL_H__
# pragma once
//------------------------------------------------------------------------------
# include "imgui_node_editor.h"
//------------------------------------------------------------------------------
# include <imgui.h>
# define IMGUI_DEFINE_MATH_OPERATORS
# include <imgui_internal.h>
# include "imgui_extra_math.h"
# include "imgui_bezier_math.h"
# include "imgui_canvas.h"
# include "crude_json.h"
# include <vector>
# include <string>
//------------------------------------------------------------------------------
namespace ax {
namespace NodeEditor {
namespace Detail {
//------------------------------------------------------------------------------
namespace ed = ax::NodeEditor::Detail;
namespace json = crude_json;
//------------------------------------------------------------------------------
using std::vector;
using std::string;
//------------------------------------------------------------------------------
void Log(const char* fmt, ...);
//------------------------------------------------------------------------------
//inline ImRect ToRect(const ax::rectf& rect);
//inline ImRect ToRect(const ax::rect& rect);
inline ImRect ImGui_GetItemRect();
//------------------------------------------------------------------------------
// https://stackoverflow.com/a/36079786
# define DECLARE_HAS_MEMBER(__trait_name__, __member_name__) \
\
template <typename __boost_has_member_T__> \
class __trait_name__ \
{ \
using check_type = ::std::remove_const_t<__boost_has_member_T__>; \
struct no_type {char x[2];}; \
using yes_type = char; \
\
struct base { void __member_name__() {}}; \
struct mixin : public base, public check_type {}; \
\
template <void (base::*)()> struct aux {}; \
\
template <typename U> static no_type test(aux<&U::__member_name__>*); \
template <typename U> static yes_type test(...); \
\
public: \
\
static constexpr bool value = (sizeof(yes_type) == sizeof(test<mixin>(0))); \
}
DECLARE_HAS_MEMBER(HasFringeScale, _FringeScale);
# undef DECLARE_HAS_MEMBER
struct FringeScaleRef
{
// Overload is present when ImDrawList does have _FringeScale member variable.
template <typename T>
static float& Get(typename std::enable_if<HasFringeScale<T>::value, T>::type* drawList)
{
return drawList->_FringeScale;
}
// Overload is present when ImDrawList does not have _FringeScale member variable.
template <typename T>
static float& Get(typename std::enable_if<!HasFringeScale<T>::value, T>::type*)
{
static float placeholder = 1.0f;
return placeholder;
}
};
static inline float& ImFringeScaleRef(ImDrawList* drawList)
{
return FringeScaleRef::Get<ImDrawList>(drawList);
}
struct FringeScaleScope
{
FringeScaleScope(float scale)
: m_LastFringeScale(ImFringeScaleRef(ImGui::GetWindowDrawList()))
{
ImFringeScaleRef(ImGui::GetWindowDrawList()) = scale;
}
~FringeScaleScope()
{
ImFringeScaleRef(ImGui::GetWindowDrawList()) = m_LastFringeScale;
}
private:
float m_LastFringeScale;
};
//------------------------------------------------------------------------------
enum class ObjectType
{
None,
Node,
Link,
Pin
};
using ax::NodeEditor::PinKind;
using ax::NodeEditor::StyleColor;
using ax::NodeEditor::StyleVar;
using ax::NodeEditor::SaveReasonFlags;
using ax::NodeEditor::NodeId;
using ax::NodeEditor::PinId;
using ax::NodeEditor::LinkId;
struct ObjectId final: Details::SafePointerType<ObjectId>
{
using Super = Details::SafePointerType<ObjectId>;
using Super::Super;
ObjectId(): Super(Invalid), m_Type(ObjectType::None) {}
ObjectId(PinId pinId): Super(pinId.AsPointer()), m_Type(ObjectType::Pin) {}
ObjectId(NodeId nodeId): Super(nodeId.AsPointer()), m_Type(ObjectType::Node) {}
ObjectId(LinkId linkId): Super(linkId.AsPointer()), m_Type(ObjectType::Link) {}
explicit operator PinId() const { return AsPinId(); }
explicit operator NodeId() const { return AsNodeId(); }
explicit operator LinkId() const { return AsLinkId(); }
PinId AsPinId() const { IM_ASSERT(IsPinId()); return PinId(AsPointer()); }
NodeId AsNodeId() const { IM_ASSERT(IsNodeId()); return NodeId(AsPointer()); }
LinkId AsLinkId() const { IM_ASSERT(IsLinkId()); return LinkId(AsPointer()); }
bool IsPinId() const { return m_Type == ObjectType::Pin; }
bool IsNodeId() const { return m_Type == ObjectType::Node; }
bool IsLinkId() const { return m_Type == ObjectType::Link; }
ObjectType Type() const { return m_Type; }
private:
ObjectType m_Type;
};
struct EditorContext;
struct Node;
struct Pin;
struct Link;
template <typename T, typename Id = typename T::IdType>
struct ObjectWrapper
{
Id m_ID;
T* m_Object;
T* operator->() { return m_Object; }
const T* operator->() const { return m_Object; }
operator T*() { return m_Object; }
operator const T*() const { return m_Object; }
bool operator<(const ObjectWrapper& rhs) const
{
return m_ID.AsPointer() < rhs.m_ID.AsPointer();
}
};
struct Object
{
enum DrawFlags
{
None = 0,
Hovered = 1,
Selected = 2
};
inline friend DrawFlags operator|(DrawFlags lhs, DrawFlags rhs) { return static_cast<DrawFlags>(static_cast<int>(lhs) | static_cast<int>(rhs)); }
inline friend DrawFlags operator&(DrawFlags lhs, DrawFlags rhs) { return static_cast<DrawFlags>(static_cast<int>(lhs) & static_cast<int>(rhs)); }
inline friend DrawFlags& operator|=(DrawFlags& lhs, DrawFlags rhs) { lhs = lhs | rhs; return lhs; }
inline friend DrawFlags& operator&=(DrawFlags& lhs, DrawFlags rhs) { lhs = lhs & rhs; return lhs; }
EditorContext* const Editor;
bool m_IsLive;
Object(EditorContext* editor)
: Editor(editor)
, m_IsLive(true)
{
}
virtual ~Object() = default;
virtual ObjectId ID() = 0;
bool IsVisible() const
{
if (!m_IsLive)
return false;
const auto bounds = GetBounds();
return ImGui::IsRectVisible(bounds.Min, bounds.Max);
}
virtual void Reset() { m_IsLive = false; }
virtual void Draw(ImDrawList* drawList, DrawFlags flags = None) = 0;
virtual bool AcceptDrag() { return false; }
virtual void UpdateDrag(const ImVec2& offset) { IM_UNUSED(offset); }
virtual bool EndDrag() { return false; }
virtual ImVec2 DragStartLocation() { return GetBounds().Min; }
virtual bool IsDraggable() { bool result = AcceptDrag(); EndDrag(); return result; }
virtual bool IsSelectable() { return false; }
virtual bool TestHit(const ImVec2& point, float extraThickness = 0.0f) const
{
if (!m_IsLive)
return false;
auto bounds = GetBounds();
if (extraThickness > 0)
bounds.Expand(extraThickness);
return bounds.Contains(point);
}
virtual bool TestHit(const ImRect& rect, bool allowIntersect = true) const
{
if (!m_IsLive)
return false;
const auto bounds = GetBounds();
return !ImRect_IsEmpty(bounds) && (allowIntersect ? bounds.Overlaps(rect) : rect.Contains(bounds));
}
virtual ImRect GetBounds() const = 0;
virtual Node* AsNode() { return nullptr; }
virtual Pin* AsPin() { return nullptr; }
virtual Link* AsLink() { return nullptr; }
};
struct Pin final: Object
{
using IdType = PinId;
PinId m_ID;
PinKind m_Kind;
Node* m_Node;
ImRect m_Bounds;
ImRect m_Pivot;
Pin* m_PreviousPin;
ImU32 m_Color;
ImU32 m_BorderColor;
float m_BorderWidth;
float m_Rounding;
int m_Corners;
ImVec2 m_Dir;
float m_Strength;
float m_Radius;
float m_ArrowSize;
float m_ArrowWidth;
bool m_HasConnection;
bool m_HadConnection;
Pin(EditorContext* editor, PinId id, PinKind kind)
: Object(editor)
, m_ID(id)
, m_Kind(kind)
, m_Node(nullptr)
, m_Bounds()
, m_PreviousPin(nullptr)
, m_Color(IM_COL32_WHITE)
, m_BorderColor(IM_COL32_BLACK)
, m_BorderWidth(0)
, m_Rounding(0)
, m_Corners(0)
, m_Dir(0, 0)
, m_Strength(0)
, m_Radius(0)
, m_ArrowSize(0)
, m_ArrowWidth(0)
, m_HasConnection(false)
, m_HadConnection(false)
{
}
virtual ObjectId ID() override { return m_ID; }
virtual void Reset() override final
{
m_HadConnection = m_HasConnection && m_IsLive;
m_HasConnection = false;
Object::Reset();
}
virtual void Draw(ImDrawList* drawList, DrawFlags flags = None) override final;
ImVec2 GetClosestPoint(const ImVec2& p) const;
ImLine GetClosestLine(const Pin* pin) const;
virtual ImRect GetBounds() const override final { return m_Bounds; }
virtual Pin* AsPin() override final { return this; }
};
enum class NodeType
{
Node,
Group
};
enum class NodeRegion : uint8_t
{
None = 0x00,
Top = 0x01,
Bottom = 0x02,
Left = 0x04,
Right = 0x08,
Center = 0x10,
Header = 0x20,
TopLeft = Top | Left,
TopRight = Top | Right,
BottomLeft = Bottom | Left,
BottomRight = Bottom | Right,
};
inline NodeRegion operator |(NodeRegion lhs, NodeRegion rhs) { return static_cast<NodeRegion>(static_cast<uint8_t>(lhs) | static_cast<uint8_t>(rhs)); }
inline NodeRegion operator &(NodeRegion lhs, NodeRegion rhs) { return static_cast<NodeRegion>(static_cast<uint8_t>(lhs) & static_cast<uint8_t>(rhs)); }
struct Node final: Object
{
using IdType = NodeId;
NodeId m_ID;
NodeType m_Type;
ImRect m_Bounds;
float m_ZPosition;
int m_Channel;
Pin* m_LastPin;
ImVec2 m_DragStart;
ImU32 m_Color;
ImU32 m_BorderColor;
float m_BorderWidth;
float m_Rounding;
ImU32 m_GroupColor;
ImU32 m_GroupBorderColor;
float m_GroupBorderWidth;
float m_GroupRounding;
ImRect m_GroupBounds;
bool m_RestoreState;
bool m_CenterOnScreen;
Node(EditorContext* editor, NodeId id)
: Object(editor)
, m_ID(id)
, m_Type(NodeType::Node)
, m_Bounds()
, m_ZPosition(0.0f)
, m_Channel(0)
, m_LastPin(nullptr)
, m_DragStart()
, m_Color(IM_COL32_WHITE)
, m_BorderColor(IM_COL32_BLACK)
, m_BorderWidth(0)
, m_Rounding(0)
, m_GroupBounds()
, m_RestoreState(false)
, m_CenterOnScreen(false)
{
}
virtual ObjectId ID() override { return m_ID; }
bool AcceptDrag() override;
void UpdateDrag(const ImVec2& offset) override;
bool EndDrag() override; // return true, when changed
ImVec2 DragStartLocation() override { return m_DragStart; }
virtual bool IsSelectable() override { return true; }
virtual void Draw(ImDrawList* drawList, DrawFlags flags = None) override final;
void DrawBorder(ImDrawList* drawList, ImU32 color, float thickness = 1.0f);
void GetGroupedNodes(std::vector<Node*>& result, bool append = false);
void CenterOnScreenInNextFrame() { m_CenterOnScreen = true; }
ImRect GetRegionBounds(NodeRegion region) const;
NodeRegion GetRegion(const ImVec2& point) const;
virtual ImRect GetBounds() const override final { return m_Bounds; }
virtual Node* AsNode() override final { return this; }
};
struct Link final: Object
{
using IdType = LinkId;
LinkId m_ID;
Pin* m_StartPin;
Pin* m_EndPin;
ImU32 m_Color;
float m_Thickness;
ImVec2 m_Start;
ImVec2 m_End;
Link(EditorContext* editor, LinkId id)
: Object(editor)
, m_ID(id)
, m_StartPin(nullptr)
, m_EndPin(nullptr)
, m_Color(IM_COL32_WHITE)
, m_Thickness(1.0f)
{
}
virtual ObjectId ID() override { return m_ID; }
virtual bool IsSelectable() override { return true; }
virtual void Draw(ImDrawList* drawList, DrawFlags flags = None) override final;
void Draw(ImDrawList* drawList, ImU32 color, float extraThickness = 0.0f) const;
void UpdateEndpoints();
ImCubicBezierPoints GetCurve() const;
virtual bool TestHit(const ImVec2& point, float extraThickness = 0.0f) const override final;
virtual bool TestHit(const ImRect& rect, bool allowIntersect = true) const override final;
virtual ImRect GetBounds() const override final;
virtual Link* AsLink() override final { return this; }
};
struct NodeSettings
{
NodeId m_ID;
ImVec2 m_Location;
ImVec2 m_Size;
ImVec2 m_GroupSize;
bool m_WasUsed;
bool m_Saved;
bool m_IsDirty;
SaveReasonFlags m_DirtyReason;
NodeSettings(NodeId id)
: m_ID(id)
, m_Location(0, 0)
, m_Size(0, 0)
, m_GroupSize(0, 0)
, m_WasUsed(false)
, m_Saved(false)
, m_IsDirty(false)
, m_DirtyReason(SaveReasonFlags::None)
{
}
void ClearDirty();
void MakeDirty(SaveReasonFlags reason);
json::value Serialize();
static bool Parse(const std::string& string, NodeSettings& settings);
static bool Parse(const json::value& data, NodeSettings& result);
};
struct Settings
{
bool m_IsDirty;
SaveReasonFlags m_DirtyReason;
vector<NodeSettings> m_Nodes;
vector<ObjectId> m_Selection;
ImVec2 m_ViewScroll;
float m_ViewZoom;
ImRect m_VisibleRect;
Settings()
: m_IsDirty(false)
, m_DirtyReason(SaveReasonFlags::None)
, m_ViewScroll(0, 0)
, m_ViewZoom(1.0f)
, m_VisibleRect()
{
}
NodeSettings* AddNode(NodeId id);
NodeSettings* FindNode(NodeId id);
void RemoveNode(NodeId id);
void ClearDirty(Node* node = nullptr);
void MakeDirty(SaveReasonFlags reason, Node* node = nullptr);
std::string Serialize();
static bool Parse(const std::string& string, Settings& settings);
};
struct Control
{
Object* HotObject;
Object* ActiveObject;
Object* ClickedObject;
Object* DoubleClickedObject;
Node* HotNode;
Node* ActiveNode;
Node* ClickedNode;
Node* DoubleClickedNode;
Pin* HotPin;
Pin* ActivePin;
Pin* ClickedPin;
Pin* DoubleClickedPin;
Link* HotLink;
Link* ActiveLink;
Link* ClickedLink;
Link* DoubleClickedLink;
bool BackgroundHot;
bool BackgroundActive;
bool BackgroundClicked;
bool BackgroundDoubleClicked;
Control()
: Control(nullptr, nullptr, nullptr, nullptr, false, false, false, false)
{
}
Control(Object* hotObject, Object* activeObject, Object* clickedObject, Object* doubleClickedObject,
bool backgroundHot, bool backgroundActive, bool backgroundClicked, bool backgroundDoubleClicked)
: HotObject(hotObject)
, ActiveObject(activeObject)
, ClickedObject(clickedObject)
, DoubleClickedObject(doubleClickedObject)
, HotNode(nullptr)
, ActiveNode(nullptr)
, ClickedNode(nullptr)
, DoubleClickedNode(nullptr)
, HotPin(nullptr)
, ActivePin(nullptr)
, ClickedPin(nullptr)
, DoubleClickedPin(nullptr)
, HotLink(nullptr)
, ActiveLink(nullptr)
, ClickedLink(nullptr)
, DoubleClickedLink(nullptr)
, BackgroundHot(backgroundHot)
, BackgroundActive(backgroundActive)
, BackgroundClicked(backgroundClicked)
, BackgroundDoubleClicked(backgroundDoubleClicked)
{
if (hotObject)
{
HotNode = hotObject->AsNode();
HotPin = hotObject->AsPin();
HotLink = hotObject->AsLink();
if (HotPin)
HotNode = HotPin->m_Node;
}
if (activeObject)
{
ActiveNode = activeObject->AsNode();
ActivePin = activeObject->AsPin();
ActiveLink = activeObject->AsLink();
}
if (clickedObject)
{
ClickedNode = clickedObject->AsNode();
ClickedPin = clickedObject->AsPin();
ClickedLink = clickedObject->AsLink();
}
if (doubleClickedObject)
{
DoubleClickedNode = doubleClickedObject->AsNode();
DoubleClickedPin = doubleClickedObject->AsPin();
DoubleClickedLink = doubleClickedObject->AsLink();
}
}
};
struct NavigateAction;
struct SizeAction;
struct DragAction;
struct SelectAction;
struct CreateItemAction;
struct DeleteItemsAction;
struct ContextMenuAction;
struct ShortcutAction;
struct AnimationController;
struct FlowAnimationController;
struct Animation
{
enum State
{
Playing,
Stopped
};
EditorContext* Editor;
State m_State;
float m_Time;
float m_Duration;
Animation(EditorContext* editor);
virtual ~Animation();
void Play(float duration);
void Stop();
void Finish();
void Update();
bool IsPlaying() const { return m_State == Playing; }
float GetProgress() const { return m_Time / m_Duration; }
protected:
virtual void OnPlay() {}
virtual void OnFinish() {}
virtual void OnStop() {}
virtual void OnUpdate(float progress) { IM_UNUSED(progress); }
};
struct NavigateAnimation final: Animation
{
NavigateAction& Action;
ImRect m_Start;
ImRect m_Target;
NavigateAnimation(EditorContext* editor, NavigateAction& scrollAction);
void NavigateTo(const ImRect& target, float duration);
private:
void OnUpdate(float progress) override final;
void OnStop() override final;
void OnFinish() override final;
};
struct FlowAnimation final: Animation
{
FlowAnimationController* Controller;
Link* m_Link;
float m_Speed;
float m_MarkerDistance;
float m_Offset;
FlowAnimation(FlowAnimationController* controller);
void Flow(Link* link, float markerDistance, float speed, float duration);
void Draw(ImDrawList* drawList);
private:
struct CurvePoint
{
float Distance;
ImVec2 Point;
};
ImVec2 m_LastStart;
ImVec2 m_LastEnd;
float m_PathLength;
vector<CurvePoint> m_Path;
bool IsLinkValid() const;
bool IsPathValid() const;
void UpdatePath();
void ClearPath();
ImVec2 SamplePath(float distance) const;
void OnUpdate(float progress) override final;
void OnStop() override final;
};
struct AnimationController
{
EditorContext* Editor;
AnimationController(EditorContext* editor)
: Editor(editor)
{
}
virtual ~AnimationController()
{
}
virtual void Draw(ImDrawList* drawList)
{
IM_UNUSED(drawList);
}
};
struct FlowAnimationController final : AnimationController
{
FlowAnimationController(EditorContext* editor);
virtual ~FlowAnimationController();
void Flow(Link* link, FlowDirection direction = FlowDirection::Forward);
virtual void Draw(ImDrawList* drawList) override final;
void Release(FlowAnimation* animation);
private:
FlowAnimation* GetOrCreate(Link* link);
vector<FlowAnimation*> m_Animations;
vector<FlowAnimation*> m_FreePool;
};
struct EditorAction
{
enum AcceptResult { False, True, Possible };
EditorAction(EditorContext* editor)
: Editor(editor)
{
}
virtual ~EditorAction() {}
virtual const char* GetName() const = 0;
virtual AcceptResult Accept(const Control& control) = 0;
virtual bool Process(const Control& control) = 0;
virtual void Reject() {} // celled when Accept return 'Possible' and was rejected
virtual ImGuiMouseCursor GetCursor() { return ImGuiMouseCursor_Arrow; }
virtual bool IsDragging() { return false; }
virtual void ShowMetrics() {}
virtual NavigateAction* AsNavigate() { return nullptr; }
virtual SizeAction* AsSize() { return nullptr; }
virtual DragAction* AsDrag() { return nullptr; }
virtual SelectAction* AsSelect() { return nullptr; }
virtual CreateItemAction* AsCreateItem() { return nullptr; }
virtual DeleteItemsAction* AsDeleteItems() { return nullptr; }
virtual ContextMenuAction* AsContextMenu() { return nullptr; }
virtual ShortcutAction* AsCutCopyPaste() { return nullptr; }
EditorContext* Editor;
};
struct NavigateAction final: EditorAction
{
enum class ZoomMode
{
None,
Exact,
WithMargin
};
enum class NavigationReason
{
Unknown,
MouseZoom,
Selection,
Object,
Content,
Edge
};
bool m_IsActive;
float m_Zoom;
ImRect m_VisibleRect;
ImVec2 m_Scroll;
ImVec2 m_ScrollStart;
ImVec2 m_ScrollDelta;
NavigateAction(EditorContext* editor, ImGuiEx::Canvas& canvas);
virtual const char* GetName() const override final { return "Navigate"; }
virtual AcceptResult Accept(const Control& control) override final;
virtual bool Process(const Control& control) override final;
virtual void ShowMetrics() override final;
virtual NavigateAction* AsNavigate() override final { return this; }
void NavigateTo(const ImRect& bounds, ZoomMode zoomMode, float duration = -1.0f, NavigationReason reason = NavigationReason::Unknown);
void StopNavigation();
void FinishNavigation();
bool MoveOverEdge(const ImVec2& canvasSize);
void StopMoveOverEdge();
bool IsMovingOverEdge() const { return m_MovingOverEdge; }
ImVec2 GetMoveScreenOffset() const { return m_MoveScreenOffset; }
void SetWindow(ImVec2 position, ImVec2 size);
ImVec2 GetWindowScreenPos() const { return m_WindowScreenPos; };
ImVec2 GetWindowScreenSize() const { return m_WindowScreenSize; };
ImGuiEx::CanvasView GetView() const;
ImVec2 GetViewOrigin() const;
float GetViewScale() const;
void SetViewRect(const ImRect& rect);
ImRect GetViewRect() const;
private:
ImGuiEx::Canvas& m_Canvas;
ImVec2 m_WindowScreenPos;
ImVec2 m_WindowScreenSize;
NavigateAnimation m_Animation;
NavigationReason m_Reason;
uint64_t m_LastSelectionId;
Object* m_LastObject;
bool m_MovingOverEdge;
ImVec2 m_MoveScreenOffset;
bool HandleZoom(const Control& control);
void NavigateTo(const ImRect& target, float duration = -1.0f, NavigationReason reason = NavigationReason::Unknown);
float MatchZoom(int steps, float fallbackZoom);
int MatchZoomIndex(int direction);
static const float s_ZoomLevels[];
static const int s_ZoomLevelCount;
};
struct SizeAction final: EditorAction
{
bool m_IsActive;
bool m_Clean;
Node* m_SizedNode;
SizeAction(EditorContext* editor);
virtual const char* GetName() const override final { return "Size"; }
virtual AcceptResult Accept(const Control& control) override final;
virtual bool Process(const Control& control) override final;
virtual ImGuiMouseCursor GetCursor() override final { return m_Cursor; }
virtual void ShowMetrics() override final;
virtual SizeAction* AsSize() override final { return this; }
virtual bool IsDragging() override final { return m_IsActive; }
const ImRect& GetStartGroupBounds() const { return m_StartGroupBounds; }
private:
NodeRegion GetRegion(Node* node);
ImGuiMouseCursor ChooseCursor(NodeRegion region);
ImRect m_StartBounds;
ImRect m_StartGroupBounds;
ImVec2 m_LastSize;
ImVec2 m_MinimumSize;
ImVec2 m_LastDragOffset;
ed::NodeRegion m_Pivot;
ImGuiMouseCursor m_Cursor;
};
struct DragAction final: EditorAction
{
bool m_IsActive;
bool m_Clear;
Object* m_DraggedObject;
vector<Object*> m_Objects;
DragAction(EditorContext* editor);
virtual const char* GetName() const override final { return "Drag"; }
virtual AcceptResult Accept(const Control& control) override final;
virtual bool Process(const Control& control) override final;
virtual ImGuiMouseCursor GetCursor() override final { return ImGuiMouseCursor_ResizeAll; }
virtual bool IsDragging() override final { return m_IsActive; }
virtual void ShowMetrics() override final;
virtual DragAction* AsDrag() override final { return this; }
};
struct SelectAction final: EditorAction
{
bool m_IsActive;
bool m_SelectGroups;
bool m_SelectLinkMode;
bool m_CommitSelection;
ImVec2 m_StartPoint;
ImVec2 m_EndPoint;
vector<Object*> m_CandidateObjects;
vector<Object*> m_SelectedObjectsAtStart;
Animation m_Animation;
SelectAction(EditorContext* editor);
virtual const char* GetName() const override final { return "Select"; }
virtual AcceptResult Accept(const Control& control) override final;
virtual bool Process(const Control& control) override final;
virtual void ShowMetrics() override final;
virtual bool IsDragging() override final { return m_IsActive; }
virtual SelectAction* AsSelect() override final { return this; }
void Draw(ImDrawList* drawList);
};
struct ContextMenuAction final: EditorAction
{
enum Menu { None, Node, Pin, Link, Background };
Menu m_CandidateMenu;
Menu m_CurrentMenu;
ObjectId m_ContextId;
ContextMenuAction(EditorContext* editor);
virtual const char* GetName() const override final { return "Context Menu"; }
virtual AcceptResult Accept(const Control& control) override final;
virtual bool Process(const Control& control) override final;
virtual void Reject() override final;
virtual void ShowMetrics() override final;
virtual ContextMenuAction* AsContextMenu() override final { return this; }
bool ShowNodeContextMenu(NodeId* nodeId);
bool ShowPinContextMenu(PinId* pinId);
bool ShowLinkContextMenu(LinkId* linkId);
bool ShowBackgroundContextMenu();
};
struct ShortcutAction final: EditorAction
{
enum Action { None, Cut, Copy, Paste, Duplicate, CreateNode };
bool m_IsActive;
bool m_InAction;
Action m_CurrentAction;
vector<Object*> m_Context;
ShortcutAction(EditorContext* editor);
virtual const char* GetName() const override final { return "Shortcut"; }
virtual AcceptResult Accept(const Control& control) override final;
virtual bool Process(const Control& control) override final;
virtual void Reject() override final;
virtual void ShowMetrics() override final;
virtual ShortcutAction* AsCutCopyPaste() override final { return this; }
bool Begin();
void End();
bool AcceptCut();
bool AcceptCopy();
bool AcceptPaste();
bool AcceptDuplicate();
bool AcceptCreateNode();
};
struct CreateItemAction final : EditorAction
{
enum Stage
{
None,
Possible,
Create
};
enum Action
{
Unknown,
UserReject,
UserAccept
};
enum Type
{
NoItem,
Node,
Link
};
enum Result
{
True,
False,
Indeterminate
};
bool m_InActive;
Stage m_NextStage;
Stage m_CurrentStage;
Type m_ItemType;
Action m_UserAction;
ImU32 m_LinkColor;
float m_LinkThickness;
Pin* m_LinkStart;
Pin* m_LinkEnd;
bool m_IsActive;
Pin* m_DraggedPin;
int m_LastChannel = -1;
CreateItemAction(EditorContext* editor);
virtual const char* GetName() const override final { return "Create Item"; }
virtual AcceptResult Accept(const Control& control) override final;
virtual bool Process(const Control& control) override final;
virtual ImGuiMouseCursor GetCursor() override final { return ImGuiMouseCursor_Arrow; }
virtual void ShowMetrics() override final;
virtual bool IsDragging() override final { return m_IsActive; }
virtual CreateItemAction* AsCreateItem() override final { return this; }
void SetStyle(ImU32 color, float thickness);
bool Begin();
void End();
Result RejectItem();
Result AcceptItem();
Result QueryLink(PinId* startId, PinId* endId);
Result QueryNode(PinId* pinId);
private:
bool m_IsInGlobalSpace;
void DragStart(Pin* startPin);
void DragEnd();
void DropPin(Pin* endPin);
void DropNode();
void DropNothing();
};
struct DeleteItemsAction final: EditorAction
{
bool m_IsActive;
bool m_InInteraction;
DeleteItemsAction(EditorContext* editor);
virtual const char* GetName() const override final { return "Delete Items"; }
virtual AcceptResult Accept(const Control& control) override final;
virtual bool Process(const Control& control) override final;
virtual void ShowMetrics() override final;
virtual DeleteItemsAction* AsDeleteItems() override final { return this; }
bool Add(Object* object);
bool Begin();
void End();
bool QueryLink(LinkId* linkId, PinId* startId = nullptr, PinId* endId = nullptr);
bool QueryNode(NodeId* nodeId);
bool AcceptItem(bool deleteDependencies);
void RejectItem();
private:
enum IteratorType { Unknown, Link, Node };
enum UserAction { Undetermined, Accepted, Rejected };
void DeleteDeadLinks(NodeId nodeId);
bool QueryItem(ObjectId* itemId, IteratorType itemType);
void RemoveItem(bool deleteDependencies);
vector<Object*> m_ManuallyDeletedObjects;
IteratorType m_CurrentItemType;
UserAction m_UserAction;
vector<Object*> m_CandidateObjects;
int m_CandidateItemIndex;
};
struct NodeBuilder
{
EditorContext* const Editor;
Node* m_CurrentNode;
Pin* m_CurrentPin;
ImRect m_NodeRect;
ImRect m_PivotRect;
ImVec2 m_PivotAlignment;
ImVec2 m_PivotSize;
ImVec2 m_PivotScale;
bool m_ResolvePinRect;
bool m_ResolvePivot;
ImRect m_GroupBounds;
bool m_IsGroup;
ImDrawListSplitter m_Splitter;
ImDrawListSplitter m_PinSplitter;
NodeBuilder(EditorContext* editor);
~NodeBuilder();
void Begin(NodeId nodeId);
void End();
void BeginPin(PinId pinId, PinKind kind);
void EndPin();
void PinRect(const ImVec2& a, const ImVec2& b);
void PinPivotRect(const ImVec2& a, const ImVec2& b);
void PinPivotSize(const ImVec2& size);
void PinPivotScale(const ImVec2& scale);
void PinPivotAlignment(const ImVec2& alignment);
void Group(const ImVec2& size);
ImDrawList* GetUserBackgroundDrawList() const;
ImDrawList* GetUserBackgroundDrawList(Node* node) const;
};
struct HintBuilder
{
EditorContext* const Editor;
bool m_IsActive;
Node* m_CurrentNode;
float m_LastFringe = 1.0f;
int m_LastChannel = 0;
HintBuilder(EditorContext* editor);
bool Begin(NodeId nodeId);
void End();
ImVec2 GetGroupMin();
ImVec2 GetGroupMax();
ImDrawList* GetForegroundDrawList();
ImDrawList* GetBackgroundDrawList();
};
struct Style: ax::NodeEditor::Style
{
void PushColor(StyleColor colorIndex, const ImVec4& color);
void PopColor(int count = 1);
void PushVar(StyleVar varIndex, float value);
void PushVar(StyleVar varIndex, const ImVec2& value);
void PushVar(StyleVar varIndex, const ImVec4& value);
void PopVar(int count = 1);
const char* GetColorName(StyleColor colorIndex) const;
private:
struct ColorModifier
{
StyleColor Index;
ImVec4 Value;
};
struct VarModifier
{
StyleVar Index;
ImVec4 Value;
};
float* GetVarFloatAddr(StyleVar idx);
ImVec2* GetVarVec2Addr(StyleVar idx);
ImVec4* GetVarVec4Addr(StyleVar idx);
vector<ColorModifier> m_ColorStack;
vector<VarModifier> m_VarStack;
};
struct Config: ax::NodeEditor::Config
{
Config(const ax::NodeEditor::Config* config);
std::string Load();
std::string LoadNode(NodeId nodeId);
void BeginSave();
bool Save(const std::string& data, SaveReasonFlags flags);
bool SaveNode(NodeId nodeId, const std::string& data, SaveReasonFlags flags);
void EndSave();
};
enum class SuspendFlags : uint8_t
{
None = 0,
KeepSplitter = 1
};
inline SuspendFlags operator |(SuspendFlags lhs, SuspendFlags rhs) { return static_cast<SuspendFlags>(static_cast<uint8_t>(lhs) | static_cast<uint8_t>(rhs)); }
inline SuspendFlags operator &(SuspendFlags lhs, SuspendFlags rhs) { return static_cast<SuspendFlags>(static_cast<uint8_t>(lhs) & static_cast<uint8_t>(rhs)); }
struct EditorContext
{
EditorContext(const ax::NodeEditor::Config* config = nullptr);
~EditorContext();
const Config& GetConfig() const { return m_Config; }
Style& GetStyle() { return m_Style; }
void Begin(const char* id, const ImVec2& size = ImVec2(0, 0));
void End();
bool DoLink(LinkId id, PinId startPinId, PinId endPinId, ImU32 color, float thickness);
NodeBuilder& GetNodeBuilder() { return m_NodeBuilder; }
HintBuilder& GetHintBuilder() { return m_HintBuilder; }
EditorAction* GetCurrentAction() { return m_CurrentAction; }
CreateItemAction& GetItemCreator() { return m_CreateItemAction; }
DeleteItemsAction& GetItemDeleter() { return m_DeleteItemsAction; }
ContextMenuAction& GetContextMenu() { return m_ContextMenuAction; }
ShortcutAction& GetShortcut() { return m_ShortcutAction; }
const ImGuiEx::CanvasView& GetView() const { return m_Canvas.View(); }
const ImRect& GetViewRect() const { return m_Canvas.ViewRect(); }
const ImRect& GetRect() const { return m_Canvas.Rect(); }
void SetNodePosition(NodeId nodeId, const ImVec2& screenPosition);
void SetGroupSize(NodeId nodeId, const ImVec2& size);
ImVec2 GetNodePosition(NodeId nodeId);
ImVec2 GetNodeSize(NodeId nodeId);
void SetNodeZPosition(NodeId nodeId, float z);
float GetNodeZPosition(NodeId nodeId);
void MarkNodeToRestoreState(Node* node);
void UpdateNodeState(Node* node);
void RemoveSettings(Object* object);
void ClearSelection();
void SelectObject(Object* object);
void DeselectObject(Object* object);
void SetSelectedObject(Object* object);
void ToggleObjectSelection(Object* object);
bool IsSelected(Object* object);
const vector<Object*>& GetSelectedObjects();
bool IsAnyNodeSelected();
bool IsAnyLinkSelected();
bool HasSelectionChanged();
uint64_t GetSelectionId() const { return m_SelectionId; }
Node* FindNodeAt(const ImVec2& p);
void FindNodesInRect(const ImRect& r, vector<Node*>& result, bool append = false, bool includeIntersecting = true);
void FindLinksInRect(const ImRect& r, vector<Link*>& result, bool append = false);
bool HasAnyLinks(NodeId nodeId) const;
bool HasAnyLinks(PinId pinId) const;
int BreakLinks(NodeId nodeId);
int BreakLinks(PinId pinId);
void FindLinksForNode(NodeId nodeId, vector<Link*>& result, bool add = false);
bool PinHadAnyLinks(PinId pinId);
ImVec2 ToCanvas(const ImVec2& point) const { return m_Canvas.ToLocal(point); }
ImVec2 ToScreen(const ImVec2& point) const { return m_Canvas.FromLocal(point); }
void NotifyLinkDeleted(Link* link);
void Suspend(SuspendFlags flags = SuspendFlags::None);
void Resume(SuspendFlags flags = SuspendFlags::None);
bool IsSuspended();
bool IsFocused();
bool IsHovered() const;
bool IsHoveredWithoutOverlapp() const;
bool CanAcceptUserInput() const;
void MakeDirty(SaveReasonFlags reason);
void MakeDirty(SaveReasonFlags reason, Node* node);
int CountLiveNodes() const;
int CountLivePins() const;
int CountLiveLinks() const;
Pin* CreatePin(PinId id, PinKind kind);
Node* CreateNode(NodeId id);
Link* CreateLink(LinkId id);
Node* FindNode(NodeId id);
Pin* FindPin(PinId id);
Link* FindLink(LinkId id);
Object* FindObject(ObjectId id);
Node* GetNode(NodeId id);
Pin* GetPin(PinId id, PinKind kind);
Link* GetLink(LinkId id);
Link* FindLinkAt(const ImVec2& p);
template <typename T>
ImRect GetBounds(const std::vector<T*>& objects)
{
ImRect bounds(FLT_MAX, FLT_MAX, -FLT_MAX, -FLT_MAX);
for (auto object : objects)
if (object->m_IsLive)
bounds.Add(object->GetBounds());
if (ImRect_IsEmpty(bounds))
bounds = ImRect();
return bounds;
}
template <typename T>
ImRect GetBounds(const std::vector<ObjectWrapper<T>>& objects)
{
ImRect bounds(FLT_MAX, FLT_MAX, -FLT_MAX, -FLT_MAX);
for (auto object : objects)
if (object.m_Object->m_IsLive)
bounds.Add(object.m_Object->GetBounds());
if (ImRect_IsEmpty(bounds))
bounds = ImRect();
return bounds;
}
ImRect GetSelectionBounds() { return GetBounds(m_SelectedObjects); }
ImRect GetContentBounds() { return GetBounds(m_Nodes); }
ImU32 GetColor(StyleColor colorIndex) const;
ImU32 GetColor(StyleColor colorIndex, float alpha) const;
int GetNodeIds(NodeId* nodes, int size) const;
void NavigateTo(const ImRect& bounds, bool zoomIn = false, float duration = -1)
{
auto zoomMode = zoomIn ? NavigateAction::ZoomMode::WithMargin : NavigateAction::ZoomMode::None;
m_NavigateAction.NavigateTo(bounds, zoomMode, duration);
}
void RegisterAnimation(Animation* animation);
void UnregisterAnimation(Animation* animation);
void Flow(Link* link, FlowDirection direction);
void SetUserContext(bool globalSpace = false);
void EnableShortcuts(bool enable);
bool AreShortcutsEnabled();
NodeId GetHoveredNode() const { return m_HoveredNode; }
PinId GetHoveredPin() const { return m_HoveredPin; }
LinkId GetHoveredLink() const { return m_HoveredLink; }
NodeId GetDoubleClickedNode() const { return m_DoubleClickedNode; }
PinId GetDoubleClickedPin() const { return m_DoubleClickedPin; }
LinkId GetDoubleClickedLink() const { return m_DoubleClickedLink; }
bool IsBackgroundClicked() const { return m_BackgroundClicked; }
bool IsBackgroundDoubleClicked() const { return m_BackgroundDoubleClicked; }
float AlignPointToGrid(float p) const
{
if (!ImGui::GetIO().KeyAlt)
return p - ImFmod(p, 16.0f);
else
return p;
}
ImVec2 AlignPointToGrid(const ImVec2& p) const
{
return ImVec2(AlignPointToGrid(p.x), AlignPointToGrid(p.y));
}
ImDrawList* GetDrawList() { return m_DrawList; }
private:
void LoadSettings();
void SaveSettings();
Control BuildControl(bool allowOffscreen);
void ShowMetrics(const Control& control);
void UpdateAnimations();
bool m_IsFirstFrame;
bool m_IsFocused;
bool m_IsHovered;
bool m_IsHoveredWithoutOverlapp;
bool m_ShortcutsEnabled;
Style m_Style;
vector<ObjectWrapper<Node>> m_Nodes;
vector<ObjectWrapper<Pin>> m_Pins;
vector<ObjectWrapper<Link>> m_Links;
vector<Object*> m_SelectedObjects;
vector<Object*> m_LastSelectedObjects;
uint64_t m_SelectionId;
Link* m_LastActiveLink;
vector<Animation*> m_LiveAnimations;
vector<Animation*> m_LastLiveAnimations;
ImGuiEx::Canvas m_Canvas;
bool m_IsCanvasVisible;
NodeBuilder m_NodeBuilder;
HintBuilder m_HintBuilder;
EditorAction* m_CurrentAction;
NavigateAction m_NavigateAction;
SizeAction m_SizeAction;
DragAction m_DragAction;
SelectAction m_SelectAction;
ContextMenuAction m_ContextMenuAction;
ShortcutAction m_ShortcutAction;
CreateItemAction m_CreateItemAction;
DeleteItemsAction m_DeleteItemsAction;
vector<AnimationController*> m_AnimationControllers;
FlowAnimationController m_FlowAnimationController;
NodeId m_HoveredNode;
PinId m_HoveredPin;
LinkId m_HoveredLink;
NodeId m_DoubleClickedNode;
PinId m_DoubleClickedPin;
LinkId m_DoubleClickedLink;
bool m_BackgroundClicked;
bool m_BackgroundDoubleClicked;
bool m_IsInitialized;
Settings m_Settings;
Config m_Config;
ImDrawList* m_DrawList;
int m_ExternalChannel;
ImDrawListSplitter m_Splitter;
};
//------------------------------------------------------------------------------
} // namespace Detail
} // namespace Editor
} // namespace ax
//------------------------------------------------------------------------------
# include "imgui_node_editor_internal.inl"
//------------------------------------------------------------------------------
# endif // __IMGUI_NODE_EDITOR_INTERNAL_H__
|