-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathmain.cpp
More file actions
432 lines (385 loc) · 12.1 KB
/
main.cpp
File metadata and controls
432 lines (385 loc) · 12.1 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
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
#include "NUIE_NodeEditor.hpp"
#include "NUIE_NodeTree.hpp"
#include "WAS_GdiOffscreenContext.hpp"
#include "WAS_WindowsAppUtils.hpp"
#include "WAS_HwndEventHandler.hpp"
#include "WAS_ParameterDialog.hpp"
#include "WAS_NodeTree.hpp"
#include "BI_BuiltInNodes.hpp"
#include <windows.h>
#include <windowsx.h>
static void InitNodeTree (NUIE::NodeTree& nodeTree)
{
size_t inputNodes = nodeTree.AddGroup (L"Input Nodes");
nodeTree.AddItem (inputNodes, L"Boolean", [&] (const NUIE::Point& position) {
return NUIE::UINodePtr (new BI::BooleanNode (NE::LocString (L"Boolean"), position, true));
});
nodeTree.AddItem (inputNodes, L"Integer", [&] (const NUIE::Point& position) {
return NUIE::UINodePtr (new BI::IntegerUpDownNode (NE::LocString (L"Integer"), position, 0, 1));
});
nodeTree.AddItem (inputNodes, L"Number", [&] (const NUIE::Point& position) {
return NUIE::UINodePtr (new BI::DoubleUpDownNode (NE::LocString (L"Number"), position, 0.0, 1.0));
});
nodeTree.AddItem (inputNodes, L"Integer Increment", [&] (const NUIE::Point& position) {
return NUIE::UINodePtr (new BI::IntegerIncrementedNode (NE::LocString (L"Integer Increment"), position));
});
nodeTree.AddItem (inputNodes, L"Number Increment", [&] (const NUIE::Point& position) {
return NUIE::UINodePtr (new BI::DoubleIncrementedNode (NE::LocString (L"Number Increment"), position));
});
nodeTree.AddItem (inputNodes, L"Number Distribution", [&] (const NUIE::Point& position) {
return NUIE::UINodePtr (new BI::DoubleDistributedNode (NE::LocString (L"Number Distribution"), position));
});
nodeTree.AddItem (inputNodes, L"List Builder", [&] (const NUIE::Point& position) {
return NUIE::UINodePtr (new BI::ListBuilderNode (NE::LocString (L"List Builder"), position));
});
size_t arithmeticNodes = nodeTree.AddGroup (L"Arithmetic Nodes");
nodeTree.AddItem (arithmeticNodes, L"Addition", [&] (const NUIE::Point& position) {
return NUIE::UINodePtr (new BI::AdditionNode (NE::LocString (L"Addition"), position));
});
nodeTree.AddItem (arithmeticNodes, L"Subtraction", [&] (const NUIE::Point& position) {
return NUIE::UINodePtr (new BI::SubtractionNode (NE::LocString (L"Subtraction"), position));
});
nodeTree.AddItem (arithmeticNodes, L"Multiplication", [&] (const NUIE::Point& position) {
return NUIE::UINodePtr (new BI::MultiplicationNode (NE::LocString (L"Multiplication"), position));
});
nodeTree.AddItem (arithmeticNodes, L"Division", [&] (const NUIE::Point& position) {
return NUIE::UINodePtr (new BI::DivisionNode (NE::LocString (L"Division"), position));
});
size_t otherNodes = nodeTree.AddGroup (L"Other Nodes");
nodeTree.AddItem (otherNodes, L"Viewer", [&] (const NUIE::Point& position) {
return NUIE::UINodePtr (new BI::MultiLineViewerNode (NE::LocString (L"Viewer"), position, 5));
});
}
class MyEventHandler : public WAS::HwndEventHandler
{
public:
MyEventHandler () :
WAS::HwndEventHandler (),
nodeEditor (nullptr),
nodeTree ()
{
InitNodeTree (nodeTree);
}
void SetNodeEditor (NUIE::NodeEditor* nodeEditorPtr)
{
nodeEditor = nodeEditorPtr;
}
virtual NUIE::MenuCommandPtr OnContextMenu (NUIE::EventHandler::ContextMenuType type, const NUIE::Point& position, const NUIE::MenuCommandStructure& commands) override
{
if (type == NUIE::EventHandler::ContextMenuType::EmptyArea) {
NUIE::MenuCommandStructure finalCommands = commands;
NUIE::AddNodeTreeToMenuStructure (nodeTree, position, nodeEditor, finalCommands);
return WAS::SelectCommandFromContextMenu (hwnd, position, finalCommands);
} else {
return WAS::SelectCommandFromContextMenu (hwnd, position, commands);
}
}
private:
NUIE::NodeEditor* nodeEditor;
NUIE::NodeTree nodeTree;
};
class MyNodeUIEnvironment : public NUIE::NodeUIEnvironment
{
public:
MyNodeUIEnvironment () :
NUIE::NodeUIEnvironment (),
stringConverter (NE::BasicStringConverter (WAS::GetStringSettingsFromSystem ())),
skinParams (NUIE::GetDefaultSkinParams ()),
eventHandler (),
clipboardHandler (),
evaluationEnv (nullptr),
drawingContext (new WAS::GdiOffscreenContext ()),
nodeEditor (nullptr),
editorHandle (nullptr)
{
}
void Init (NUIE::NodeEditor* nodeEditorPtr, HWND editorWindowHandle)
{
nodeEditor = nodeEditorPtr;
editorHandle = editorWindowHandle;
drawingContext->Init (editorHandle);
eventHandler.Init (editorHandle);
eventHandler.SetNodeEditor (nodeEditor);
}
void OnResize (int width, int height)
{
drawingContext->Resize (width, height);
}
void OnPaint ()
{
nodeEditor->Draw ();
drawingContext->BlitToWindow (editorHandle);
}
virtual const NE::StringConverter& GetStringConverter () override
{
return stringConverter;
}
virtual const NUIE::SkinParams& GetSkinParams () override
{
return skinParams;
}
virtual NUIE::DrawingContext& GetDrawingContext () override
{
return *drawingContext;
}
virtual double GetWindowScale () override
{
return 1.0;
}
virtual NE::EvaluationEnv& GetEvaluationEnv () override
{
return evaluationEnv;
}
virtual void OnEvaluationBegin () override
{
}
virtual void OnEvaluationEnd () override
{
}
virtual void OnValuesRecalculated () override
{
}
virtual void OnRedrawRequested () override
{
InvalidateRect (editorHandle, NULL, FALSE);
}
virtual NUIE::EventHandler& GetEventHandler () override
{
return eventHandler;
}
virtual NUIE::ClipboardHandler& GetClipboardHandler () override
{
return clipboardHandler;
}
virtual void OnSelectionChanged (const NUIE::Selection&) override
{
}
virtual void OnUndoStateChanged (const NUIE::UndoState&) override
{
}
virtual void OnClipboardStateChanged (const NUIE::ClipboardState&) override
{
}
virtual void OnIncompatibleVersionPasted (const NUIE::Version&) override
{
}
private:
NE::BasicStringConverter stringConverter;
NUIE::BasicSkinParams skinParams;
MyEventHandler eventHandler;
NUIE::MemoryClipboardHandler clipboardHandler;
NE::EvaluationEnv evaluationEnv;
NUIE::NativeDrawingContextPtr drawingContext;
NUIE::NodeEditor* nodeEditor;
HWND editorHandle;
};
static MyNodeUIEnvironment uiEnvironment;
static NUIE::NodeEditor nodeEditor (uiEnvironment);
LRESULT CALLBACK ApplicationWindowProc (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch (msg) {
case WM_CREATE:
{
uiEnvironment.Init (&nodeEditor, hwnd);
}
break;
case WM_SIZE:
{
int newWidth = LOWORD (lParam);
int newHeight = HIWORD (lParam);
uiEnvironment.OnResize (newWidth, newHeight);
}
break;
case WM_PAINT:
uiEnvironment.OnPaint ();
break;
case WM_CLOSE:
DestroyWindow (hwnd);
break;
case WM_DESTROY:
PostQuitMessage (0);
break;
case WM_ERASEBKGND:
return 0;
case WM_LBUTTONDOWN:
{
WAS::SetWindowCapture (hwnd);
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor.OnMouseDown (WAS::GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Left, x, y);
}
break;
case WM_MBUTTONDOWN:
{
WAS::SetWindowCapture (hwnd);
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor.OnMouseDown (WAS::GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Middle, x, y);
}
break;
case WM_RBUTTONDOWN:
{
WAS::SetWindowCapture (hwnd);
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor.OnMouseDown (WAS::GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Right, x, y);
}
break;
case WM_LBUTTONUP:
{
WAS::ReleaseWindowCapture (hwnd);
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor.OnMouseUp (WAS::GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Left, x, y);
}
break;
case WM_MBUTTONUP:
{
WAS::ReleaseWindowCapture (hwnd);
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor.OnMouseUp (WAS::GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Middle, x, y);
}
break;
case WM_RBUTTONUP:
{
WAS::ReleaseWindowCapture (hwnd);
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor.OnMouseUp (WAS::GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Right, x, y);
}
break;
case WM_MOUSEMOVE:
{
SetFocus (hwnd);
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor.OnMouseMove (WAS::GetModiferKeysFromEvent (wParam), x, y);
}
break;
case WM_MOUSEWHEEL:
{
POINT mousePos;
mousePos.x = GET_X_LPARAM (lParam);
mousePos.y = GET_Y_LPARAM (lParam);
ScreenToClient (hwnd, &mousePos);
int delta = GET_WHEEL_DELTA_WPARAM (wParam);
NUIE::MouseWheelRotation rotation = delta > 0 ? NUIE::MouseWheelRotation::Forward : NUIE::MouseWheelRotation::Backward;
nodeEditor.OnMouseWheel (WAS::GetModiferKeysFromEvent (wParam), rotation, mousePos.x, mousePos.y);
}
break;
case WM_LBUTTONDBLCLK:
{
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor.OnMouseDoubleClick (WAS::GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Left, x, y);
}
break;
case WM_MBUTTONDBLCLK:
{
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor.OnMouseDoubleClick (WAS::GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Middle, x, y);
}
break;
case WM_RBUTTONDBLCLK:
{
int x = GET_X_LPARAM (lParam);
int y = GET_Y_LPARAM (lParam);
nodeEditor.OnMouseDoubleClick (WAS::GetModiferKeysFromEvent (wParam), NUIE::MouseButton::Right, x, y);
}
break;
case WM_KEYDOWN:
{
NUIE::CommandCode commandCode = NUIE::CommandCode::Undefined;
bool isControlPressed = (GetKeyState (VK_CONTROL) < 0);
bool isShiftPressed = (GetKeyState (VK_SHIFT) < 0);
if (isControlPressed) {
switch (wParam) {
case 'A':
commandCode = NUIE::CommandCode::SelectAll;
break;
case 'C':
commandCode = NUIE::CommandCode::Copy;
break;
case 'V':
commandCode = NUIE::CommandCode::Paste;
break;
case 'G':
if (isShiftPressed) {
commandCode = NUIE::CommandCode::Ungroup;
} else {
commandCode = NUIE::CommandCode::Group;
}
break;
case 'Z':
if (isShiftPressed) {
commandCode = NUIE::CommandCode::Redo;
} else {
commandCode = NUIE::CommandCode::Undo;
}
break;
}
} else {
switch (wParam) {
case VK_ESCAPE:
commandCode = NUIE::CommandCode::Escape;
break;
case VK_DELETE:
case VK_BACK:
commandCode = NUIE::CommandCode::Delete;
break;
}
}
if (commandCode != NUIE::CommandCode::Undefined) {
nodeEditor.ExecuteCommand (commandCode);
}
}
break;
case WM_CANCELMODE:
WAS::ReleaseWindowCapture (hwnd);
break;
}
return DefWindowProc (hwnd, msg, wParam, lParam);
}
#ifdef _MSC_VER
int wWinMain (HINSTANCE hInstance, HINSTANCE /*hPrevInstance*/, LPWSTR /*lpCmdLine*/, int /*nCmdShow*/)
#else
int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE, LPSTR, int)
#endif
{
WNDCLASSEX windowClass;
ZeroMemory (&windowClass, sizeof (WNDCLASSEX));
windowClass.cbSize = sizeof (WNDCLASSEX);
windowClass.style = CS_DBLCLKS;
windowClass.lpfnWndProc = ApplicationWindowProc;
windowClass.cbClsExtra = 0;
windowClass.cbWndExtra = 0;
windowClass.hInstance = hInstance;
windowClass.hIcon = LoadIcon (NULL, IDI_APPLICATION);
windowClass.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
windowClass.hCursor = LoadCursor (NULL, IDC_ARROW);
windowClass.hbrBackground = (HBRUSH) COLOR_WINDOW;
windowClass.lpszMenuName = NULL;
windowClass.lpszClassName = L"VisualScriptEngineDemo";
if (!RegisterClassEx (&windowClass)) {
return 1;
}
RECT requiredRect = { 0, 0, 900, 500 };
AdjustWindowRect (&requiredRect, WS_OVERLAPPEDWINDOW, false);
HWND windowHandle = CreateWindowEx (
WS_EX_WINDOWEDGE | WS_CLIPCHILDREN, windowClass.lpszClassName, L"Visual Script Engine Demo", WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT, CW_USEDEFAULT, requiredRect.right - requiredRect.left, requiredRect.bottom - requiredRect.top, NULL, NULL, NULL, nullptr
);
if (windowHandle == NULL) {
return 1;
}
ShowWindow (windowHandle, SW_SHOW);
UpdateWindow (windowHandle);
MSG msg;
while (GetMessage (&msg, NULL, 0, 0)) {
TranslateMessage (&msg);
DispatchMessage (&msg);
}
return 0;
}