forked from xzvfinet/OneLevelJson
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathState.cs
More file actions
484 lines (385 loc) · 14.6 KB
/
State.cs
File metadata and controls
484 lines (385 loc) · 14.6 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
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
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Windows.Forms;
using OneLevel2D.Annotations;
using OneLevel2D.CustomList;
using OneLevel2D.Model;
namespace OneLevel2D
{
static class State
{
/************************************************************************/
public static ComponentListView ComponentView;
public static LayerListView LayerView;
public static CienDocument Document;
public static TabControl SceneTab;
public static Blackboard Board;
public static CienScene CurrentScene;
/************************************************************************/
public static List<CienBaseComponent> CopiedComponentList;
public static SelectedNotifier _selected = new SelectedNotifier();
public static SelectedNotifier Selected
{
get { return _selected; }
}
#region Scene
public static void NewScene()
{
Document.NewScene();
var lastScene = Document.Scenes.Last();
if (lastScene == null) return;
var newPage = new TabPage(lastScene.Name);
newPage.Controls.Add(Board);
SceneTab.TabPages.Add(newPage);
SceneTab.SelectTab(newPage);
}
#endregion
#region Component Control
// Asset List에서 만들어지는 Image는 무조건 이 함수를 통해서 만들어져야 한다.
public static void MakeNewImage(string assetName, Point location)
{
Asset asset = Document.Assets.Find(x => x.GetName() == assetName);
string id = "image" + CurrentScene.Components.Count;
id = Document.GetNewId(id);
if (!IsLayerSelected())
{
MessageBox.Show(@"선택된 layer가 없습니다!");
return;
}
var newImage = new CienImage(asset.GetNameWithExt(), id, location,
CurrentScene.Components.Count, Selected.Layer.Name);
// 1. Document에 추가하고
Document.AddComponent(newImage);
// 2. List View에 추가한다.
ComponentView.AddComponent(newImage);
}
public static void MakeNewLabel(string text, int size, string fontName, List<float> tint)
{
string id = "label" + CurrentScene.Components.Count;
id = Document.GetNewId(id);
if (!IsLayerSelected())
{
MessageBox.Show(@"선택된 layer가 없습니다!");
return;
}
var newLabel = new CienLabel(text, size, fontName, tint, id,
CurrentScene.Components.Count, Selected.Layer.Name);
// 1. Document에 추가하고
Document.AddComponent(newLabel);
// 2. List View에 추가한다.
ComponentView.AddComponent(newLabel);
}
// from document and view
public static void RemoveSelectedComponent()
{
foreach (var component in _selected.ComponentList)
{
Document.RemoveComponent(component.Id);
ComponentView.RemoveComponent(component);
}
}
/*
* Convert CienImage instance to CienComposite
*/
public static void ConvertToComposite(string id)
{
// TODO sImage to sComposite
CienBaseComponent comp = CurrentScene.Components.Find(x => x.Id == id);
if (comp is CienComposite) return;
CienComposite newComposite;
var composites = CurrentScene.Components.FindAll(x => x is CienComposite);
string newId = "composite" + composites.Count;
newComposite = new CienComposite(newId, comp.Location, Document.GetNewZindex(), comp.LayerName);
newComposite.AddComponent(comp);
RemoveSelectedComponent();
Document.AddComponent(newComposite);
ComponentView.AddComponent(newComposite);
}
#endregion
#region Select
public static void SelectComponent(CienBaseComponent component)
{
_selected.Component = component;
if (!_selected.ComponentList.Contains(component) && component != CienBaseComponent.Empty)
_selected.ComponentList.Add(component);
ComponentView.SelectComponent(_selected.Component);
Board.Invalidate();
}
public static void SelectOneComponent(CienBaseComponent component)
{
SelectedComponentAbandon();
SelectComponent(component);
}
public static void UnselectComponent(CienBaseComponent component)
{
_selected.ComponentList.Remove(component);
if (_selected.Component.Id == component.Id)
ComponentView.UnselectComponent(_selected.Component);
}
public static void SelectedComponentAbandon()
{
_selected.Component = CienBaseComponent.Empty;
_selected.ComponentList.Clear();
ComponentView.UnselectAll();
}
public static bool IsComponentSelected()
{
return _selected.ComponentList.Count != 0;
}
public static void SelectOneLayer(CienLayer layer)
{
_selected.Layer = layer;
LayerView.UnselectAll();
}
public static bool IsLayerSelected()
{
if (_selected.Layer == null) _selected.Layer = CienLayer.Empty;
if (!CurrentScene.Layers.Contains(_selected.Layer)) _selected.Layer = CienLayer.Empty;
return !_selected.Layer.Equals(CienLayer.Empty);
}
public static void SelectedLayerAbandon()
{
_selected.Layer = CienLayer.Empty;
}
#endregion
#region Command
public static void Copy()
{
if (_selected.ComponentList.Count == 0) return;
CopiedComponentList = new List<CienBaseComponent>(_selected.ComponentList.Count);
_selected.ComponentList.ForEach(item =>
{
CopiedComponentList.Add((CienBaseComponent)item.Clone());
});
}
public static void Paste()
{
if (CopiedComponentList.Count == 0) return;
foreach (var component in CopiedComponentList)
{
var newComponent = (CienBaseComponent)component.Clone();
newComponent.SetZindex(Document.GetNewZindex());
Document.AddComponent(newComponent);
ComponentView.AddComponent(newComponent);
}
}
#endregion
#region Command Class
public static readonly Stack<Command> Commands = new Stack<Command>();
public static readonly Stack<Command> RevertedCommands = new Stack<Command>();
private static Command _lastCommand;
public static void CommandMoveStart(Point startPoint)
{
var command = new MoveCommand(Command.MOVE, _selected.ComponentList);
command.StartPoint = startPoint;
_lastCommand = command;
}
public static void CommandMoveEnd(Point endPoint)
{
if (_lastCommand == null) return;
var command = (MoveCommand)_lastCommand;
command.EndPoint = endPoint;
if (command.IsMoved())
{
_lastCommand = command;
Commands.Push(_lastCommand);
}
_lastCommand = null;
}
public static void CommandAddComponent(List<CienBaseComponent> components)
{
var command = new AddCommand(Command.ADD, components);
Commands.Push(command);
}
public static void CommandRemoveComponent(List<CienBaseComponent> components)
{
var command = new RemoveCommand(Command.REMOVE, components);
Commands.Push(command);
}
public static void CommandResizeStart(Point startPoint)
{
var command = new ResizeCommand(Command.RESIZE, _selected.Component);
command.StartPoint = startPoint;
_lastCommand = command;
}
public static void CommandResizeEnd(Point endPoint)
{
if (_lastCommand == null) return;
var command = (ResizeCommand)_lastCommand;
command.EndPoint = endPoint;
if (command.IsResized())
{
_lastCommand = command;
Commands.Push(_lastCommand);
}
_lastCommand = null;
}
private static void DoCommand(Command command)
{
switch (command.Name)
{
case Command.MOVE:
var moveCommand = (MoveCommand)command;
var offset = (Size)moveCommand.EndPoint - (Size)moveCommand.StartPoint;
foreach (var component in moveCommand.ComponentList)
{
component.SetLocation(component.Location + offset);
}
break;
case Command.ADD:
break;
case Command.REMOVE:
var removeCommand = (RemoveCommand)command;
foreach (var component in removeCommand.ComponentList)
{
Document.RemoveComponent(component.Id);
ComponentView.RemoveComponent(component);
}
break;
}
}
private static void DoReverse(Command command)
{
switch (command.Name)
{
case Command.MOVE:
var moveCommand = (MoveCommand)command;
var offset = (Size)moveCommand.EndPoint - (Size)moveCommand.StartPoint;
foreach (var component in moveCommand.ComponentList)
{
component.SetLocation(component.Location - offset);
}
break;
case Command.ADD:
var addCommand = (AddCommand)command;
foreach (var component in addCommand.ComponentList)
{
Document.RemoveComponent(component.Id);
ComponentView.RemoveComponent(component);
}
break;
case Command.REMOVE:
break;
}
}
public static void ReverseLastCommand()
{
var command = Commands.Pop();
DoReverse(command);
RevertedCommands.Push(command);
}
public static void ReverseLastReverse()
{
var command = RevertedCommands.Pop();
DoCommand(command);
Commands.Push(command);
}
#endregion
}
class SelectedNotifier : INotifyPropertyChanged
{
private CienLayer _layer = new CienLayer(CienLayer.DefaultLayerName);
public CienLayer Layer
{
get { return _layer; }
set { _layer = value; }
}
private CienBaseComponent _component = CienBaseComponent.Empty;
public CienBaseComponent Component
{
get { return _component; }
set { _component = value; NotifyPropertyChanged(); }
}
private List<CienBaseComponent> _componentList = new List<CienBaseComponent>();
public List<CienBaseComponent> ComponentList
{
get { return _componentList; }
set { _componentList = value; }
}
public void ChangeComponentId(string id)
{
Component.SetId(id);
NotifyPropertyChanged();
}
public void Move(Point offset)
{
if (ComponentList.Count != 1)
{
foreach (var component in ComponentList)
{
component.SetLocation(component.Location + (Size)offset);
}
}
else
{
Component.SetLocation(Component.Location + (Size)offset);
}
NotifyPropertyChanged();
}
private void MoveUp()
{
var toDown = State.CurrentScene.Components.Find(x => x.ZIndex == Component.ZIndex + 1);
if (toDown != null)
{
toDown.SetZindex(Component.ZIndex);
}
Component.SetZindex(Component.ZIndex + 1);
NotifyPropertyChanged();
}
private void MoveDown()
{
var toUp = State.CurrentScene.Components.Find(x => x.ZIndex == Component.ZIndex - 1);
if (toUp != null)
{
toUp.SetZindex(Component.ZIndex);
}
Component.SetZindex(Component.ZIndex - 1);
NotifyPropertyChanged();
}
public void MoveSelectedUp()
{
// 내림차순
ComponentList.Sort((a, b) => b.ZIndex.CompareTo(a.ZIndex));
var maxZindex = State.CurrentScene.Components.Max(x => x.ZIndex);
foreach (var component in ComponentList)
{
if (maxZindex == component.ZIndex) break;
Component = component;
MoveUp();
}
//State.ComponentListView.SortListDescending();
}
public void MoveSelectedDown()
{
// 오름차순
ComponentList.Sort((a, b) => a.ZIndex.CompareTo(b.ZIndex));
var minZindex = State.CurrentScene.Components.Min(x => x.ZIndex);
foreach (var component in ComponentList)
{
if (minZindex == component.ZIndex) break;
Component = component;
MoveDown();
}
//State.ComponentListView.SortListDescending();
}
#region Binding
public event PropertyChangedEventHandler PropertyChanged;
[NotifyPropertyChangedInvocator]
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
{
var handler = PropertyChanged;
if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
}
private void NotifyPropertyChanged()
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs("Name"));
}
}
#endregion
}
}