-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathGroupComment.cpp
More file actions
139 lines (115 loc) · 3 KB
/
GroupComment.cpp
File metadata and controls
139 lines (115 loc) · 3 KB
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
#include "GroupComment.h"
#include "SubSystems/VisualNodeArea/VisualNodeArea.h"
using namespace VisNodeSys;
char GroupComment::GroupCommentRename[GROUP_COMMENT_CAPTION_MAX_LENGTH] = "";
GroupComment::GroupComment(const std::string ID)
{
this->ID = ID;
if (ID.empty())
this->ID = NODE_CORE.GetUniqueHexID();
SetSize(ImVec2(200, 200));
}
GroupComment::GroupComment(const GroupComment& Other)
{
ParentArea = Other.ParentArea;
ID = NODE_CORE.GetUniqueHexID();
Position = Other.Position;
Size = Other.Size;
Caption = Other.Caption;
bMoveElementsWithComment = Other.bMoveElementsWithComment;
BackgroundColor = Other.BackgroundColor;
}
std::string GroupComment::GetID()
{
return ID;
}
ImVec2 GroupComment::GetPosition() const
{
return Position;
}
void GroupComment::SetPosition(const ImVec2 NewValue)
{
if (ParentArea == nullptr)
{
Position = NewValue;
return;
}
ImVec2 Delta = NewValue - Position;
ParentArea->AttachElementsToGroupComment(this);
ParentArea->MoveGroupComment(this, Delta);
}
ImVec2 GroupComment::GetSize() const
{
return Size;
}
void GroupComment::SetSize(const ImVec2 NewValue)
{
Size = NewValue;
}
void GroupComment::Draw() {}
Json::Value GroupComment::ToJson()
{
Json::Value Result;
Result["ID"] = ID;
Result["Position"]["X"] = Position.x;
Result["Position"]["Y"] = Position.y;
Result["Size"]["X"] = Size.x;
Result["Size"]["Y"] = Size.y;
Result["Caption"] = Caption;
Result["bMoveElementsWithComment"] = bMoveElementsWithComment;
Result["BackgroundColor"]["X"] = BackgroundColor.x;
Result["BackgroundColor"]["Y"] = BackgroundColor.y;
Result["BackgroundColor"]["Z"] = BackgroundColor.z;
Result["BackgroundColor"]["W"] = BackgroundColor.w;
return Result;
}
void GroupComment::FromJson(Json::Value Json)
{
ID = Json["ID"].asCString();
Position.x = Json["Position"]["X"].asFloat();
Position.y = Json["Position"]["Y"].asFloat();
Size.x = Json["Size"]["X"].asFloat();
Size.y = Json["Size"]["Y"].asFloat();
Caption = Json["Caption"].asCString();
bMoveElementsWithComment = Json["bMoveElementsWithComment"].asBool();
BackgroundColor.x = Json["BackgroundColor"]["X"].asFloat();
BackgroundColor.y = Json["BackgroundColor"]["Y"].asFloat();
BackgroundColor.z = Json["BackgroundColor"]["Z"].asFloat();
BackgroundColor.w = Json["BackgroundColor"]["W"].asFloat();
}
bool GroupComment::IsHovered() const
{
return bHovered;
}
bool GroupComment::IsSelected() const
{
return bSelected;
}
NodeArea* GroupComment::GetParentArea() const
{
return ParentArea;
}
void GroupComment::SetCaption(std::string NewValue)
{
Caption = NewValue;
}
std::string GroupComment::GetCaption() const
{
return Caption;
}
float GroupComment::GetCaptionHeight(float Zoom) const
{
return 50.0f * Zoom;
}
ImVec2 GroupComment::GetCaptionSize(float Zoom) const
{
return ImVec2((GetSize() * Zoom).x - 8.0f * Zoom, GetCaptionHeight(Zoom));
}
bool GroupComment::MoveElementsWithComment() const
{
return bMoveElementsWithComment;
}
void GroupComment::SetMoveElementsWithComment(bool NewValue)
{
bMoveElementsWithComment = NewValue;
}