CCNode.h
68.5 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
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
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
/****************************************************************************
Copyright (c) 2008-2010 Ricardo Quesada
Copyright (c) 2009 Valentin Milea
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2011 Zynga Inc.
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************/
#ifndef __CCNODE_H__
#define __CCNODE_H__
#include <cstdint>
#include "base/ccMacros.h"
#include "base/CCVector.h"
#include "base/CCProtocols.h"
#include "base/CCScriptSupport.h"
#include "math/CCAffineTransform.h"
#include "math/CCMath.h"
#include "2d/CCComponentContainer.h"
#include "2d/CCComponent.h"
#if CC_USE_PHYSICS
#include "physics/CCPhysicsBody.h"
#endif
NS_CC_BEGIN
class GridBase;
class Touch;
class Action;
class LabelProtocol;
class Scheduler;
class ActionManager;
class Component;
class ComponentContainer;
class EventDispatcher;
class Scene;
class Renderer;
class Director;
class Material;
class Camera;
class PhysicsBody;
namespace backend{
class ProgramState;
}
/**
* @addtogroup _2d
* @{
*/
enum {
kNodeOnEnter,
kNodeOnExit,
kNodeOnEnterTransitionDidFinish,
kNodeOnExitTransitionDidStart,
kNodeOnCleanup
};
class EventListener;
/** @class Node
* @brief Node is the base element of the Scene Graph. Elements of the Scene Graph must be Node objects or subclasses of it.
The most common Node objects are: Scene, Layer, Sprite, Menu, Label.
The main features of a Node are:
- They can contain other Node objects (`addChild`, `getChildByTag`, `removeChild`, etc)
- They can schedule periodic callback (`schedule`, `unschedule`, etc)
- They can execute actions (`runAction`, `stopAction`, etc)
Subclassing a Node usually means (one/all) of:
- overriding init to initialize resources and schedule callbacks
- create callbacks to handle the advancement of time
- overriding `draw` to render the node
Properties of Node:
- position (default: x=0, y=0)
- scale (default: x=1, y=1)
- rotation (in degrees, clockwise) (default: 0)
- anchor point (default: x=0, y=0)
- contentSize (default: width=0, height=0)
- visible (default: true)
Limitations:
- A Node is a "void" object. If you want to draw something on the screen, you should use a Sprite instead. Or subclass Node and override `draw`.
*/
class CC_DLL Node : public Ref
{
public:
/** Default tag used for all the nodes */
static const int INVALID_TAG = -1;
enum {
FLAGS_TRANSFORM_DIRTY = (1 << 0),
FLAGS_CONTENT_SIZE_DIRTY = (1 << 1),
FLAGS_RENDER_AS_3D = (1 << 3),
FLAGS_DIRTY_MASK = (FLAGS_TRANSFORM_DIRTY | FLAGS_CONTENT_SIZE_DIRTY),
};
/// @{
/// @name Constructor, Destructor and Initializers
/**
* Allocates and initializes a node.
* @return A initialized node which is marked as "autorelease".
*/
static Node * create();
/**
* Gets count of nodes those are attached to scene graph.
*/
static int getAttachedNodeCount();
public:
/**
* Gets the description string. It makes debugging easier.
* @return A string
* @js NA
* @lua NA
*/
virtual std::string getDescription() const;
/// @} end of initializers
/// @{
/// @name Setters & Getters for Graphic Properties
/**
LocalZOrder is the 'key' used to sort the node relative to its siblings.
The Node's parent will sort all its children based on the LocalZOrder value.
If two nodes have the same LocalZOrder, then the node that was added first to the children's array will be in front of the other node in the array.
Also, the Scene Graph is traversed using the "In-Order" tree traversal algorithm ( http://en.wikipedia.org/wiki/Tree_traversal#In-order )
And Nodes that have LocalZOrder values < 0 are the "left" subtree
While Nodes with LocalZOrder >=0 are the "right" subtree.
@see `setGlobalZOrder`
@see `setVertexZ`
*
* @param localZOrder The local Z order value.
*/
virtual void setLocalZOrder(std::int32_t localZOrder);
/*
Helper function used by `setLocalZOrder`. Don't use it unless you know what you are doing.
@js NA
*/
virtual void _setLocalZOrder(std::int32_t z);
/** !!! ONLY FOR INTERNAL USE
* Sets the arrival order when this node has a same ZOrder with other children.
*
* A node which called addChild subsequently will take a larger arrival order,
* If two children have the same Z order, the child with larger arrival order will be drawn later.
*
* @warning This method is used internally for localZOrder sorting, don't change this manually
*
* @param orderOfArrival The arrival order.
*/
void updateOrderOfArrival();
/**
* Gets the local Z order of this node.
*
* @see `setLocalZOrder(int)`
*
* @return The local (relative to its siblings) Z order.
*/
virtual std::int32_t getLocalZOrder() const { return _localZOrder; }
/**
Defines the order in which the nodes are renderer.
Nodes that have a Global Z Order lower, are renderer first.
In case two or more nodes have the same Global Z Order, the order is not guaranteed.
The only exception if the Nodes have a Global Z Order == 0. In that case, the Scene Graph order is used.
By default, all nodes have a Global Z Order = 0. That means that by default, the Scene Graph order is used to render the nodes.
Global Z Order is useful when you need to render nodes in an order different than the Scene Graph order.
Limitations: Global Z Order can't be used by Nodes that have SpriteBatchNode as one of their ancestors.
And if ClippingNode is one of the ancestors, then "global Z order" will be relative to the ClippingNode.
@see `setLocalZOrder()`
@see `setVertexZ()`
@since v3.0
*
* @param globalZOrder The global Z order value.
*/
virtual void setGlobalZOrder(float globalZOrder);
/**
* Returns the Node's Global Z Order.
*
* @see `setGlobalZOrder(int)`
*
* @return The node's global Z order
*/
virtual float getGlobalZOrder() const { return _globalZOrder; }
/**
* Sets the scale (x) of the node.
*
* It is a scaling factor that multiplies the width of the node and its children.
*
* @param scaleX The scale factor on X axis.
*
* @warning The physics body doesn't support this.
*/
virtual void setScaleX(float scaleX);
/**
* Returns the scale factor on X axis of this node
*
* @see setScaleX(float)
*
* @return The scale factor on X axis.
*/
virtual float getScaleX() const;
/**
* Sets the scale (y) of the node.
*
* It is a scaling factor that multiplies the height of the node and its children.
*
* @param scaleY The scale factor on Y axis.
*
* @warning The physics body doesn't support this.
*/
virtual void setScaleY(float scaleY);
/**
* Returns the scale factor on Y axis of this node
*
* @see `setScaleY(float)`
*
* @return The scale factor on Y axis.
*/
virtual float getScaleY() const;
/**
* Changes the scale factor on Z axis of this node
*
* The Default value is 1.0 if you haven't changed it before.
*
* @param scaleZ The scale factor on Z axis.
*
* @warning The physics body doesn't support this.
*/
virtual void setScaleZ(float scaleZ);
/**
* Returns the scale factor on Z axis of this node
*
* @see `setScaleZ(float)`
*
* @return The scale factor on Z axis.
*/
virtual float getScaleZ() const;
/**
* Sets the scale (x,y,z) of the node.
*
* It is a scaling factor that multiplies the width, height and depth of the node and its children.
*
* @param scale The scale factor for both X and Y axis.
*
* @warning The physics body doesn't support this.
*/
virtual void setScale(float scale);
/**
* Gets the scale factor of the node, when X and Y have the same scale factor.
*
* @warning Assert when `_scaleX != _scaleY`
* @see setScale(float)
*
* @return The scale factor of the node.
*/
virtual float getScale() const;
/**
* Sets the scale (x,y) of the node.
*
* It is a scaling factor that multiplies the width and height of the node and its children.
*
* @param scaleX The scale factor on X axis.
* @param scaleY The scale factor on Y axis.
*
* @warning The physics body doesn't support this.
*/
virtual void setScale(float scaleX, float scaleY);
/**
* Sets the position (x,y) of the node in its parent's coordinate system.
*
* Usually we use `Vec2(x,y)` to compose Vec2 object.
* This code snippet sets the node in the center of screen.
@code
Size size = Director::getInstance()->getWinSize();
node->setPosition(size.width/2, size.height/2);
@endcode
*
* @param position The position (x,y) of the node in OpenGL coordinates.
*/
virtual void setPosition(const Vec2 &position);
/** Sets the position (x,y) using values between 0 and 1.
The positions in pixels is calculated like the following:
@code
// pseudo code
void setNormalizedPosition(Vec2 pos) {
Size s = getParent()->getContentSize();
_position = pos * s;
}
@endcode
*
* @param position The normalized position (x,y) of the node, using value between 0 and 1.
*/
virtual void setPositionNormalized(const Vec2 &position);
// FIXME: should get deprecated in v4.0
virtual void setNormalizedPosition(const Vec2 &position) { setPositionNormalized(position); }
/**
* Gets the position (x,y) of the node in its parent's coordinate system.
*
* @see setPosition(const Vec2&)
*
* @return The position (x,y) of the node in OpenGL coordinates.
* @code
* In js and lua return value is table which contains x,y.
* @endcode
*/
virtual const Vec2& getPosition() const;
/** Returns the normalized position.
*
* @return The normalized position.
*/
virtual const Vec2& getPositionNormalized() const;
// FIXME: should get deprecated in v4.0
virtual const Vec2& getNormalizedPosition() const { return getPositionNormalized(); }
/**
* Sets the position (x,y) of the node in its parent's coordinate system.
*
* Passing two numbers (x,y) is much efficient than passing Vec2 object.
* This method is bound to Lua and JavaScript.
* Passing a number is 10 times faster than passing a object from Lua to c++.
*
@code
// sample code in Lua
local pos = node::getPosition() -- returns Vec2 object from C++.
node:setPosition(x, y) -- pass x, y coordinate to C++.
@endcode
*
* @param x X coordinate for position.
* @param y Y coordinate for position.
*/
virtual void setPosition(float x, float y);
/**
* Gets position in a more efficient way, returns two number instead of a Vec2 object.
*
* @see `setPosition(float, float)`
* In js,out value not return.
*
* @param x To receive x coordinate for position.
* @param y To receive y coordinate for position.
*/
virtual void getPosition(float* x, float* y) const;
/**
* Gets/Sets x or y coordinate individually for position.
* These methods are used in Lua and Javascript Bindings
*/
/** Sets the x coordinate of the node in its parent's coordinate system.
*
* @param x The x coordinate of the node.
*/
virtual void setPositionX(float x);
/** Gets the x coordinate of the node in its parent's coordinate system.
*
* @return The x coordinate of the node.
*/
virtual float getPositionX() const;
/** Sets the y coordinate of the node in its parent's coordinate system.
*
* @param y The y coordinate of the node.
*/
virtual void setPositionY(float y);
/** Gets the y coordinate of the node in its parent's coordinate system.
*
* @return The y coordinate of the node.
*/
virtual float getPositionY() const;
/**
* Sets the position (X, Y, and Z) in its parent's coordinate system.
*
* @param position The position (X, Y, and Z) in its parent's coordinate system.
* @js NA
*/
virtual void setPosition3D(const Vec3& position);
/**
* Returns the position (X,Y,Z) in its parent's coordinate system.
*
* @return The position (X, Y, and Z) in its parent's coordinate system.
* @js NA
*/
virtual Vec3 getPosition3D() const;
/**
* Sets the 'z' coordinate in the position. It is the OpenGL Z vertex value.
*
* The OpenGL depth buffer and depth testing are disabled by default. You need to turn them on.
* In order to use this property correctly.
*
* `setPositionZ()` also sets the `setGlobalZValue()` with the positionZ as value.
*
* @see `setGlobalZValue()`
*
* @param positionZ OpenGL Z vertex of this node.
* @js setVertexZ
*/
virtual void setPositionZ(float positionZ);
/**
* Gets position Z coordinate of this node.
*
* @see setPositionZ(float)
*
* @return The position Z coordinate of this node.
* @js getVertexZ
*/
virtual float getPositionZ() const;
/**
* Changes the X skew angle of the node in degrees.
*
* The difference between `setRotationalSkew()` and `setSkew()` is that the first one simulate Flash's skew functionality
* while the second one uses the real skew function.
*
* This angle describes the shear distortion in the X direction.
* Thus, it is the angle between the Y coordinate and the left edge of the shape
* The default skewX angle is 0. Positive values distort the node in a CW direction.
*
* @param skewX The X skew angle of the node in degrees.
*
* @warning The physics body doesn't support this.
*/
virtual void setSkewX(float skewX);
/**
* Returns the X skew angle of the node in degrees.
*
* @see `setSkewX(float)`
*
* @return The X skew angle of the node in degrees.
*/
virtual float getSkewX() const;
/**
* Changes the Y skew angle of the node in degrees.
*
* The difference between `setRotationalSkew()` and `setSkew()` is that the first one simulate Flash's skew functionality
* while the second one uses the real skew function.
*
* This angle describes the shear distortion in the Y direction.
* Thus, it is the angle between the X coordinate and the bottom edge of the shape.
* The default skewY angle is 0. Positive values distort the node in a CCW direction.
*
* @param skewY The Y skew angle of the node in degrees.
*
* @warning The physics body doesn't support this.
*/
virtual void setSkewY(float skewY);
/**
* Returns the Y skew angle of the node in degrees.
*
* @see `setSkewY(float)`
*
* @return The Y skew angle of the node in degrees.
*/
virtual float getSkewY() const;
/**
* Sets the anchor point in percent.
*
* anchorPoint is the point around which all transformations and positioning manipulations take place.
* It's like a pin in the node where it is "attached" to its parent.
* The anchorPoint is normalized, like a percentage. (0,0) means the bottom-left corner and (1,1) means the top-right corner.
* But you can use values higher than (1,1) and lower than (0,0) too.
* The default anchorPoint is (0,0), so it starts in the lower left corner of the node.
* @note If node has a physics body, the anchor must be in the middle, you can't change this to other value.
*
* @param anchorPoint The anchor point of node.
*/
virtual void setAnchorPoint(const Vec2& anchorPoint);
/**
* Returns the anchor point in percent.
*
* @see `setAnchorPoint(const Vec2&)`
*
* @return The anchor point of node.
*/
virtual const Vec2& getAnchorPoint() const;
/**
* Returns the anchorPoint in absolute pixels.
*
* @warning You can only read it. If you wish to modify it, use anchorPoint instead.
* @see `getAnchorPoint()`
*
* @return The anchor point in absolute pixels.
*/
virtual const Vec2& getAnchorPointInPoints() const;
/**
* Sets the untransformed size of the node.
*
* The contentSize remains the same no matter the node is scaled or rotated.
* All nodes has a size. Layer and Scene has the same size of the screen.
*
* @param contentSize The untransformed size of the node.
*/
virtual void setContentSize(const Size& contentSize);
/**
* Returns the untransformed size of the node.
*
* @see `setContentSize(const Size&)`
*
* @return The untransformed size of the node.
*/
virtual const Size& getContentSize() const;
/**
* Sets whether the node is visible.
*
* The default value is true, a node is default to visible.
*
* @param visible true if the node is visible, false if the node is hidden.
*/
virtual void setVisible(bool visible);
/**
* Determines if the node is visible.
*
* @see `setVisible(bool)`
*
* @return true if the node is visible, false if the node is hidden.
*/
virtual bool isVisible() const;
/**
* Sets the rotation (angle) of the node in degrees.
*
* 0 is the default rotation angle.
* Positive values rotate node clockwise, and negative values for anti-clockwise.
*
* @param rotation The rotation of the node in degrees.
*/
virtual void setRotation(float rotation);
/**
* Returns the rotation of the node in degrees.
*
* @see `setRotation(float)`
*
* @return The rotation of the node in degrees.
*/
virtual float getRotation() const;
/**
* Sets the rotation (X,Y,Z) in degrees.
* Useful for 3d rotations.
*
* @warning The physics body doesn't support this.
*
* @param rotation The rotation of the node in 3d.
* @js NA
*/
virtual void setRotation3D(const Vec3& rotation);
/**
* Returns the rotation (X,Y,Z) in degrees.
*
* @return The rotation of the node in 3d.
* @js NA
*/
virtual Vec3 getRotation3D() const;
/**
* Set rotation by quaternion. You should make sure the quaternion is normalized.
*
* @param quat The rotation in quaternion, note that the quat must be normalized.
* @js NA
*/
virtual void setRotationQuat(const Quaternion& quat);
/**
* Return the rotation by quaternion, Note that when _rotationZ_X == _rotationZ_Y, the returned quaternion equals to RotationZ_X * RotationY * RotationX,
* it equals to RotationY * RotationX otherwise.
*
* @return The rotation in quaternion.
* @js NA
*/
virtual Quaternion getRotationQuat() const;
/**
* Sets the X rotation (angle) of the node in degrees which performs a horizontal rotational skew.
*
* The difference between `setRotationalSkew()` and `setSkew()` is that the first one simulate Flash's skew functionality,
* while the second one uses the real skew function.
*
* 0 is the default rotation angle.
* Positive values rotate node clockwise, and negative values for anti-clockwise.
*
* @param rotationX The X rotation in degrees which performs a horizontal rotational skew.
*
* @warning The physics body doesn't support this.
* @js setRotationX
*/
virtual void setRotationSkewX(float rotationX);
/**
* Gets the X rotation (angle) of the node in degrees which performs a horizontal rotation skew.
*
* @see `setRotationSkewX(float)`
*
* @return The X rotation in degrees.
* @js getRotationX
*/
virtual float getRotationSkewX() const;
/**
* Sets the Y rotation (angle) of the node in degrees which performs a vertical rotational skew.
*
* The difference between `setRotationalSkew()` and `setSkew()` is that the first one simulate Flash's skew functionality,
* while the second one uses the real skew function.
*
* 0 is the default rotation angle.
* Positive values rotate node clockwise, and negative values for anti-clockwise.
*
* @param rotationY The Y rotation in degrees.
*
* @warning The physics body doesn't support this.
* @js setRotationY
*/
virtual void setRotationSkewY(float rotationY);
/**
* Gets the Y rotation (angle) of the node in degrees which performs a vertical rotational skew.
*
* @see `setRotationSkewY(float)`
*
* @return The Y rotation in degrees.
* @js getRotationY
*/
virtual float getRotationSkewY() const;
/**
* Sets whether the anchor point will be (0,0) when you position this node.
*
* This is an internal method, only used by Layer and Scene. Don't call it outside framework.
* The default value is false, while in Layer and Scene are true.
*
* @param ignore true if anchor point will be (0,0) when you position this node.
*/
virtual void setIgnoreAnchorPointForPosition(bool ignore);
/**
* Gets whether the anchor point will be (0,0) when you position this node.
*
* @see `setIgnoreAnchorPointForPosition(bool)`
*
* @return true if the anchor point will be (0,0) when you position this node.
*/
virtual bool isIgnoreAnchorPointForPosition() const;
/// @} end of Setters & Getters for Graphic Properties
/// @{
/// @name Children and Parent
/**
* Adds a child to the container with z-order as 0.
*
* If the child is added to a 'running' node, then 'onEnter' and 'onEnterTransitionDidFinish' will be called immediately.
*
* @param child A child node.
*/
virtual void addChild(Node * child);
/**
* Adds a child to the container with a local z-order.
*
* If the child is added to a 'running' node, then 'onEnter' and 'onEnterTransitionDidFinish' will be called immediately.
*
* @param child A child node.
* @param localZOrder Z order for drawing priority. Please refer to `setLocalZOrder(int)`.
*/
virtual void addChild(Node * child, int localZOrder);
/**
* Adds a child to the container with z order and tag.
*
* If the child is added to a 'running' node, then 'onEnter' and 'onEnterTransitionDidFinish' will be called immediately.
*
* @param child A child node.
* @param localZOrder Z order for drawing priority. Please refer to `setLocalZOrder(int)`.
* @param tag An integer to identify the node easily. Please refer to `setTag(int)`.
*
* Please use `addChild(Node* child, int localZOrder, const std::string &name)` instead.
*/
virtual void addChild(Node* child, int localZOrder, int tag);
/**
* Adds a child to the container with z order and tag
*
* If the child is added to a 'running' node, then 'onEnter' and 'onEnterTransitionDidFinish' will be called immediately.
*
* @param child A child node.
* @param localZOrder Z order for drawing priority. Please refer to `setLocalZOrder(int)`.
* @param name A string to identify the node easily. Please refer to `setName(int)`.
*
*/
virtual void addChild(Node* child, int localZOrder, const std::string &name);
/**
* Gets a child from the container with its tag.
*
* @param tag An identifier to find the child node.
*
* @return a Node object whose tag equals to the input parameter.
*
* Please use `getChildByName()` instead.
*/
virtual Node * getChildByTag(int tag) const;
/**
* Gets a child from the container with its tag that can be cast to Type T.
*
* @param tag An identifier to find the child node.
*
* @return a Node with the given tag that can be cast to Type T.
*/
template <typename T>
T getChildByTag(int tag) const { return static_cast<T>(getChildByTag(tag)); }
/**
* Gets a child from the container with its name.
*
* @param name An identifier to find the child node.
*
* @return a Node object whose name equals to the input parameter.
*
* @since v3.2
*/
virtual Node* getChildByName(const std::string& name) const;
/**
* Gets a child from the container with its name that can be cast to Type T.
*
* @param name An identifier to find the child node.
*
* @return a Node with the given name that can be cast to Type T.
*/
template <typename T>
T getChildByName(const std::string& name) const { return static_cast<T>(getChildByName(name)); }
/** Search the children of the receiving node to perform processing for nodes which share a name.
*
* @param name The name to search for, supports c++11 regular expression.
* Search syntax options:
* `//`: Can only be placed at the begin of the search string. This indicates that it will search recursively.
* `/..`: The search should move up to the node's parent. Can only be placed at the end of string.
* `/` : When placed anywhere but the start of the search string, this indicates that the search should move to the node's children.
*
* @code
* enumerateChildren("//MyName", ...): This searches the children recursively and matches any node with the name `MyName`.
* enumerateChildren("[[:alnum:]]+", ...): This search string matches every node of its children.
* enumerateChildren("A[[:digit:]]", ...): This searches the node's children and returns any child named `A0`, `A1`, ..., `A9`.
* enumerateChildren("Abby/Normal", ...): This searches the node's grandchildren and returns any node whose name is `Normal`
* and whose parent is named `Abby`.
* enumerateChildren("//Abby/Normal", ...): This searches recursively and returns any node whose name is `Normal` and whose
* parent is named `Abby`.
* @endcode
*
* @warning Only support alpha or number for name, and not support unicode.
*
* @param callback A callback function to execute on nodes that match the `name` parameter. The function takes the following arguments:
* `node`
* A node that matches the name
* And returns a boolean result. Your callback can return `true` to terminate the enumeration.
*
* @since v3.2
*/
virtual void enumerateChildren(const std::string &name, std::function<bool(Node* node)> callback) const;
/**
* Returns the array of the node's children.
*
* @return the array the node's children.
*/
virtual Vector<Node*>& getChildren() { return _children; }
virtual const Vector<Node*>& getChildren() const { return _children; }
/**
* Returns the amount of children.
*
* @return The amount of children.
*/
virtual ssize_t getChildrenCount() const;
/**
* Sets the parent node.
*
* @param parent A pointer to the parent node.
*/
virtual void setParent(Node* parent);
/**
* Returns a pointer to the parent node.
*
* @see `setParent(Node*)`
*
* @returns A pointer to the parent node.
*/
virtual Node* getParent() { return _parent; }
virtual const Node* getParent() const { return _parent; }
////// REMOVES //////
/**
* Removes this node itself from its parent node with a cleanup.
* If the node orphan, then nothing happens.
* @see `removeFromParentAndCleanup(bool)`
*/
virtual void removeFromParent();
/**
* Removes this node itself from its parent node.
* If the node orphan, then nothing happens.
* @param cleanup true if all actions and callbacks on this node should be removed, false otherwise.
* @js removeFromParent
* @lua removeFromParent
*/
virtual void removeFromParentAndCleanup(bool cleanup);
/**
* Removes a child from the container. It will also cleanup all running actions depending on the cleanup parameter.
*
* @param child The child node which will be removed.
* @param cleanup True if all running actions and callbacks on the child node will be cleanup, false otherwise.
*/
virtual void removeChild(Node* child, bool cleanup = true);
/**
* Removes a child from the container by tag value. It will also cleanup all running actions depending on the cleanup parameter.
*
* @param tag An integer number that identifies a child node.
* @param cleanup True if all running actions and callbacks on the child node will be cleanup, false otherwise.
*
* Please use `removeChildByName` instead.
*/
virtual void removeChildByTag(int tag, bool cleanup = true);
/**
* Removes a child from the container by tag value. It will also cleanup all running actions depending on the cleanup parameter.
*
* @param name A string that identifies a child node.
* @param cleanup True if all running actions and callbacks on the child node will be cleanup, false otherwise.
*/
virtual void removeChildByName(const std::string &name, bool cleanup = true);
/**
* Removes all children from the container with a cleanup.
*
* @see `removeAllChildrenWithCleanup(bool)`
*/
virtual void removeAllChildren();
/**
* Removes all children from the container, and do a cleanup to all running actions depending on the cleanup parameter.
*
* @param cleanup True if all running actions on all children nodes should be cleanup, false otherwise.
* @js removeAllChildren
* @lua removeAllChildren
*/
virtual void removeAllChildrenWithCleanup(bool cleanup);
/**
* Reorders a child according to a new z value.
*
* @param child An already added child node. It MUST be already added.
* @param localZOrder Z order for drawing priority. Please refer to setLocalZOrder(int).
*/
virtual void reorderChild(Node * child, int localZOrder);
/**
* Sorts the children array once before drawing, instead of every time when a child is added or reordered.
* This approach can improve the performance massively.
* @note Don't call this manually unless a child added needs to be removed in the same frame.
*/
virtual void sortAllChildren();
/**
* Sorts helper function
*
*/
template<typename _T> inline
static void sortNodes(cocos2d::Vector<_T*>& nodes)
{
static_assert(std::is_base_of<Node, _T>::value, "Node::sortNodes: Only accept derived of Node!");
#if CC_64BITS
std::sort(std::begin(nodes), std::end(nodes), [](_T* n1, _T* n2) {
return (n1->_localZOrder$Arrival < n2->_localZOrder$Arrival);
});
#else
std::sort(std::begin(nodes), std::end(nodes), [](_T* n1, _T* n2) {
return (n1->_localZOrder == n2->_localZOrder && n1->_orderOfArrival < n2->_orderOfArrival) || n1->_localZOrder < n2->_localZOrder;
});
#endif
}
/// @} end of Children and Parent
/// @{
/// @name Tag & User data
/**
* Returns a tag that is used to identify the node easily.
*
* @return An integer that identifies the node.
*
* Please use `getTag()` instead.
*/
virtual int getTag() const;
/**
* Changes the tag that is used to identify the node easily.
*
* Please refer to getTag for the sample code.
*
* @param tag A integer that identifies the node.
*
* Please use `setName()` instead.
*/
virtual void setTag(int tag);
/** Returns a string that is used to identify the node.
* @return A string that identifies the node.
*
* @since v3.2
*/
virtual const std::string& getName() const;
/** Changes the name that is used to identify the node easily.
* @param name A string that identifies the node.
*
* @since v3.2
*/
virtual void setName(const std::string& name);
/**
* Returns a custom user data pointer.
*
* You can set everything in UserData pointer, a data block, a structure or an object.
*
* @return A custom user data pointer.
* @lua NA
*/
virtual void* getUserData() { return _userData; }
/**
* @lua NA
*/
virtual const void* getUserData() const { return _userData; }
/**
* Sets a custom user data pointer.
*
* You can set everything in UserData pointer, a data block, a structure or an object, etc.
* @warning Don't forget to release the memory manually,
* especially before you change this data pointer, and before this node is autoreleased.
*
* @param userData A custom user data pointer.
* @lua NA
*/
virtual void setUserData(void *userData);
/**
* Returns a user assigned Object.
*
* Similar to userData, but instead of holding a void* it holds an object.
*
* @return A user assigned Object.
* @lua NA
*/
virtual Ref* getUserObject() { return _userObject; }
/**
* @lua NA
*/
virtual const Ref* getUserObject() const { return _userObject; }
/**
* Returns a user assigned Object.
*
* Similar to UserData, but instead of holding a void* it holds an object.
* The UserObject will be retained once in this method,
* and the previous UserObject (if existed) will be released.
* The UserObject will be released in Node's destructor.
*
* @param userObject A user assigned Object.
*/
virtual void setUserObject(Ref *userObject);
/// @} end of Tag & User Data
/**
* Returns whether or not the node is "running".
*
* If the node is running it will accept event callbacks like onEnter(), onExit(), update().
*
* @return Whether or not the node is running.
*/
virtual bool isRunning() const;
/**
* Schedules for lua script.
* @js NA
*
* @param handler The key to search lua function.
* @param priority A given priority value.
*/
void scheduleUpdateWithPriorityLua(int handler, int priority);
/// @} end Script Bindings
/// @{
/// @name Event Callbacks
/**
* Event callback that is invoked every time when Node enters the 'stage'.
* If the Node enters the 'stage' with a transition, this event is called when the transition starts.
* During onEnter you can't access a "sister/brother" node.
* If you override onEnter, you shall call its parent's one, e.g., Node::onEnter().
* @lua NA
*/
virtual void onEnter();
/** Event callback that is invoked when the Node enters in the 'stage'.
* If the Node enters the 'stage' with a transition, this event is called when the transition finishes.
* If you override onEnterTransitionDidFinish, you shall call its parent's one, e.g. Node::onEnterTransitionDidFinish()
* @lua NA
*/
virtual void onEnterTransitionDidFinish();
/**
* Event callback that is invoked every time the Node leaves the 'stage'.
* If the Node leaves the 'stage' with a transition, this event is called when the transition finishes.
* During onExit you can't access a sibling node.
* If you override onExit, you shall call its parent's one, e.g., Node::onExit().
* @lua NA
*/
virtual void onExit();
/**
* Event callback that is called every time the Node leaves the 'stage'.
* If the Node leaves the 'stage' with a transition, this callback is called when the transition starts.
* @lua NA
*/
virtual void onExitTransitionDidStart();
/// @} end of event callbacks.
/**
* Stops all running actions and schedulers
*/
virtual void cleanup();
/**
* Override this method to draw your own node.
* The following GL states will be enabled by default:
* - `glEnableClientState(GL_VERTEX_ARRAY);`
* - `glEnableClientState(GL_COLOR_ARRAY);`
* - `glEnableClientState(GL_TEXTURE_COORD_ARRAY);`
* - `glEnable(GL_TEXTURE_2D);`
* AND YOU SHOULD NOT DISABLE THEM AFTER DRAWING YOUR NODE
* But if you enable any other GL state, you should disable it after drawing your node.
*
* @param renderer A given renderer.
* @param transform A transform matrix.
* @param flags Renderer flag.
*/
virtual void draw(Renderer *renderer, const Mat4& transform, uint32_t flags);
virtual void draw() final;
/**
* Visits this node's children and draw them recursively.
*
* @param renderer A given renderer.
* @param parentTransform A transform matrix.
* @param parentFlags Renderer flag.
*/
virtual void visit(Renderer *renderer, const Mat4& parentTransform, uint32_t parentFlags);
virtual void visit() final;
/** Returns the Scene that contains the Node.
It returns `nullptr` if the node doesn't belong to any Scene.
This function recursively calls parent->getScene() until parent is a Scene object. The results are not cached. It is that the user caches the results in case this functions is being used inside a loop.
*
* @return The Scene that contains the node.
*/
virtual Scene* getScene() const;
/**
* Returns an AABB (axis-aligned bounding-box) in its parent's coordinate system.
*
* @return An AABB (axis-aligned bounding-box) in its parent's coordinate system
*/
virtual Rect getBoundingBox() const;
/** Set event dispatcher for scene.
*
* @param dispatcher The event dispatcher of scene.
*/
virtual void setEventDispatcher(EventDispatcher* dispatcher);
/** Get the event dispatcher of scene.
*
* @return The event dispatcher of scene.
*/
virtual EventDispatcher* getEventDispatcher() const { return _eventDispatcher; };
/// @{
/// @name Actions
/**
* Sets the ActionManager object that is used by all actions.
*
* @warning If you set a new ActionManager, then previously created actions will be removed.
*
* @param actionManager A ActionManager object that is used by all actions.
*/
virtual void setActionManager(ActionManager* actionManager);
/**
* Gets the ActionManager object that is used by all actions.
* @see setActionManager(ActionManager*)
* @return A ActionManager object.
*/
virtual ActionManager* getActionManager() { return _actionManager; }
virtual const ActionManager* getActionManager() const { return _actionManager; }
/**
* Executes an action, and returns the action that is executed.
*
* This node becomes the action's target. Refer to Action::getTarget().
* @warning Actions don't retain their target.
*
* @param action An Action pointer.
*/
virtual Action* runAction(Action* action);
/**
* Stops and removes all actions from the running action list .
*/
virtual void stopAllActions();
/**
* Stops and removes an action from the running action list.
*
* @param action The action object to be removed.
*/
void stopAction(Action* action);
/**
* Removes an action from the running action list by its tag.
*
* @param tag A tag that indicates the action to be removed.
*/
void stopActionByTag(int tag);
/**
* Removes all actions from the running action list by its tag.
*
* @param tag A tag that indicates the action to be removed.
*/
void stopAllActionsByTag(int tag);
/**
* Removes all actions from the running action list by its flags.
*
* @param flags A flag field that removes actions based on bitwise AND.
*/
void stopActionsByFlags(unsigned int flags);
/**
* Gets an action from the running action list by its tag.
*
* @see `setTag(int)`, `getTag()`.
*
* @return The action object with the given tag.
*/
Action* getActionByTag(int tag);
/**
* Returns the numbers of actions that are running plus the ones that are schedule to run (actions in actionsToAdd and actions arrays).
*
* Composable actions are counted as 1 action. Example:
* If you are running 1 Sequence of 7 actions, it will return 1.
* If you are running 7 Sequences of 2 actions, it will return 7.
*
* @return The number of actions that are running plus the ones that are schedule to run.
*/
ssize_t getNumberOfRunningActions() const;
/**
* Returns the numbers of actions that are running plus the ones that are
* schedule to run (actions in actionsToAdd and actions arrays) with a
* specific tag.
*
* Composable actions are counted as 1 action. Example:
* If you are running 1 Sequence of 7 actions, it will return 1.
* If you are running 7 Sequences of 2 actions, it will return 7.
*
* @param tag The tag that will be searched.
*
* @return The number of actions that are running plus the
* ones that are schedule to run with specific tag.
*/
ssize_t getNumberOfRunningActionsByTag(int tag) const;
/// @} end of Actions
/// @{
/// @name Scheduler and Timer
/**
* Sets a Scheduler object that is used to schedule all "updates" and timers.
*
* @warning If you set a new Scheduler, then previously created timers/update are going to be removed.
* @param scheduler A Scheduler object that is used to schedule all "update" and timers.
*/
virtual void setScheduler(Scheduler* scheduler);
/**
* Gets a Scheduler object.
*
* @see setScheduler(Scheduler*)
* @return A Scheduler object.
*/
virtual Scheduler* getScheduler() { return _scheduler; }
virtual const Scheduler* getScheduler() const { return _scheduler; }
/**
* Checks whether a selector is scheduled.
*
* @param selector A function selector
* @return Whether the function selector is scheduled.
* @js NA
* @lua NA
*/
bool isScheduled(SEL_SCHEDULE selector) const;
/**
* Checks whether a lambda function is scheduled.
*
* @param key key of the callback
* @return Whether the lambda function selector is scheduled.
* @js NA
* @lua NA
*/
bool isScheduled(const std::string &key) const;
/**
* Schedules the "update" method.
*
* It will use the order number 0. This method will be called every frame.
* Scheduled methods with a lower order value will be called before the ones that have a higher order value.
* Only one "update" method could be scheduled per node.
* @lua NA
*/
void scheduleUpdate();
/**
* Schedules the "update" method with a custom priority.
*
* This selector will be called every frame.
* Scheduled methods with a lower priority will be called before the ones that have a higher value.
* Only one "update" selector could be scheduled per node (You can't have 2 'update' selectors).
* @lua NA
*
* @param priority A given priority value.
*/
void scheduleUpdateWithPriority(int priority);
/*
* Unschedules the "update" method.
* @see scheduleUpdate();
*/
void unscheduleUpdate();
/**
* Schedules a custom selector.
*
* If the selector is already scheduled, then the interval parameter will be updated without scheduling it again.
@code
// firstly, implement a schedule function
void MyNode::TickMe(float dt);
// wrap this function into a selector via schedule_selector macro.
this->schedule(CC_SCHEDULE_SELECTOR(MyNode::TickMe), 0, 0, 0);
@endcode
*
* @param selector The SEL_SCHEDULE selector to be scheduled.
* @param interval Tick interval in seconds. 0 means tick every frame. If interval = 0, it's recommended to use scheduleUpdate() instead.
* @param repeat The selector will be executed (repeat + 1) times, you can use CC_REPEAT_FOREVER for tick infinitely.
* @param delay The amount of time that the first tick will wait before execution.
* @lua NA
*/
void schedule(SEL_SCHEDULE selector, float interval, unsigned int repeat, float delay);
/**
* Schedules a custom selector with an interval time in seconds.
* @see `schedule(SEL_SCHEDULE, float, unsigned int, float)`
*
* @param selector The SEL_SCHEDULE selector to be scheduled.
* @param interval Callback interval time in seconds. 0 means tick every frame,
* @lua NA
*/
void schedule(SEL_SCHEDULE selector, float interval);
/**
* Schedules a selector that runs only once, with a delay of 0 or larger
* @see `schedule(SEL_SCHEDULE, float, unsigned int, float)`
*
* @param selector The SEL_SCHEDULE selector to be scheduled.
* @param delay The amount of time that the first tick will wait before execution.
* @lua NA
*/
void scheduleOnce(SEL_SCHEDULE selector, float delay);
/**
* Schedules a lambda function that runs only once, with a delay of 0 or larger
*
* @param callback The lambda function to be scheduled.
* @param delay The amount of time that the first tick will wait before execution.
* @param key The key of the lambda function. To be used if you want to unschedule it.
* @lua NA
*/
void scheduleOnce(const std::function<void(float)>& callback, float delay, const std::string &key);
/**
* Schedules a custom selector, the scheduled selector will be ticked every frame.
* @see schedule(SEL_SCHEDULE, float, unsigned int, float)
*
* @param selector A function wrapped as a selector
* @lua NA
*/
void schedule(SEL_SCHEDULE selector);
/**
* Schedules a lambda function. The scheduled lambda function will be called every frame.
*
* @param callback The lambda function to be scheduled.
* @param key The key of the lambda function. To be used if you want to unschedule it.
* @lua NA
*/
void schedule(const std::function<void(float)>& callback, const std::string &key);
/**
* Schedules a lambda function. The scheduled lambda function will be called every "interval" seconds
*
* @param callback The lambda function to be scheduled
* @param interval Callback interval time in seconds. 0 means every frame,
* @param key The key of the lambda function. To be used if you want to unschedule it
* @lua NA
*/
void schedule(const std::function<void(float)>& callback, float interval, const std::string &key);
/**
* Schedules a lambda function.
*
* @param callback The lambda function to be schedule.
* @param interval Tick interval in seconds. 0 means tick every frame.
* @param repeat The selector will be executed (repeat + 1) times, you can use CC_REPEAT_FOREVER for tick infinitely.
* @param delay The amount of time that the first tick will wait before execution.
* @param key The key of the lambda function. To be used if you want to unschedule it.
* @lua NA
*/
void schedule(const std::function<void(float)>& callback, float interval, unsigned int repeat, float delay, const std::string &key);
/**
* Unschedules a custom selector.
* @see `schedule(SEL_SCHEDULE, float, unsigned int, float)`
*
* @param selector A function wrapped as a selector.
* @lua NA
*/
void unschedule(SEL_SCHEDULE selector);
/**
* Unschedules a lambda function.
*
* @param key The key of the lambda function to be unscheduled.
* @lua NA
*/
void unschedule(const std::string &key);
/**
* Unschedule all scheduled selectors and lambda functions: custom selectors, and the 'update' selector and lambda functions.
* Actions are not affected by this method.
* @lua NA
*/
void unscheduleAllCallbacks();
/**
* Resumes all scheduled selectors, actions and event listeners.
* This method is called internally by onEnter.
*/
virtual void resume();
/**
* Pauses all scheduled selectors, actions and event listeners.
* This method is called internally by onExit.
*/
virtual void pause();
/**
* Update method will be called automatically every frame if "scheduleUpdate" is called, and the node is "live".
* @param delta In seconds.
*/
virtual void update(float delta);
/// @} end of Scheduler and Timer
/// @{
/// @name Transformations
/**
* Calls children's updateTransform() method recursively.
*
* This method is moved from Sprite, so it's no longer specific to Sprite.
* As the result, you apply SpriteBatchNode's optimization on your customed Node.
* e.g., `batchNode->addChild(myCustomNode)`, while you can only addChild(sprite) before.
*/
virtual void updateTransform();
/**
* Returns the matrix that transform the node's (local) space coordinates into the parent's space coordinates.
* The matrix is in Pixels.
*
* @return The transformation matrix.
*/
virtual const Mat4& getNodeToParentTransform() const;
virtual AffineTransform getNodeToParentAffineTransform() const;
/**
* Returns the matrix that transform the node's (local) space coordinates into the parent's space coordinates.
* The matrix is in Pixels.
* Note: If ancestor is not a valid ancestor of the node, the API would return the same value as @see getNodeToWorldTransform
*
* @param ancestor The parent's node pointer.
* @since v3.7
* @return The transformation matrix.
*/
virtual Mat4 getNodeToParentTransform(Node* ancestor) const;
/**
* Returns the affine transform matrix that transform the node's (local) space coordinates into the parent's space coordinates.
* The matrix is in Pixels.
*
* Note: If ancestor is not a valid ancestor of the node, the API would return the same value as @see getNodeToWorldAffineTransform
*
* @param ancestor The parent's node pointer.
* @since v3.7
* @return The affine transformation matrix.
*/
virtual AffineTransform getNodeToParentAffineTransform(Node* ancestor) const;
/**
* Sets the transformation matrix manually.
*
* @param transform A given transformation matrix.
*/
virtual void setNodeToParentTransform(const Mat4& transform);
/**
* Returns the matrix that transform parent's space coordinates to the node's (local) space coordinates.
* The matrix is in Pixels.
*
* @return The transformation matrix.
*/
virtual const Mat4& getParentToNodeTransform() const;
virtual AffineTransform getParentToNodeAffineTransform() const;
/**
* Returns the world affine transform matrix. The matrix is in Pixels.
*
* @return transformation matrix, in pixels.
*/
virtual Mat4 getNodeToWorldTransform() const;
virtual AffineTransform getNodeToWorldAffineTransform() const;
/**
* Returns the inverse world affine transform matrix. The matrix is in Pixels.
*
* @return The transformation matrix.
*/
virtual Mat4 getWorldToNodeTransform() const;
virtual AffineTransform getWorldToNodeAffineTransform() const;
/// @} end of Transformations
/// @{
/// @name Coordinate Converters
/**
* Converts a Vec2 to node (local) space coordinates. The result is in Points.
*
* @param worldPoint A given coordinate.
* @return A point in node (local) space coordinates.
*/
Vec2 convertToNodeSpace(const Vec2& worldPoint) const;
/**
* Converts a Vec2 to world space coordinates. The result is in Points.
*
* @param nodePoint A given coordinate.
* @return A point in world space coordinates.
*/
Vec2 convertToWorldSpace(const Vec2& nodePoint) const;
/**
* Converts a Vec2 to node (local) space coordinates. The result is in Points.
* treating the returned/received node point as anchor relative.
*
* @param worldPoint A given coordinate.
* @return A point in node (local) space coordinates, anchor relative.
*/
Vec2 convertToNodeSpaceAR(const Vec2& worldPoint) const;
/**
* Converts a local Vec2 to world space coordinates.The result is in Points.
* treating the returned/received node point as anchor relative.
*
* @param nodePoint A given coordinate.
* @return A point in world space coordinates, anchor relative.
*/
Vec2 convertToWorldSpaceAR(const Vec2& nodePoint) const;
/**
* convenience methods which take a Touch instead of Vec2.
*
* @param touch A given touch.
* @return A point in world space coordinates.
*/
Vec2 convertTouchToNodeSpace(Touch * touch) const;
/**
* converts a Touch (world coordinates) into a local coordinate. This method is AR (Anchor Relative).
*
* @param touch A given touch.
* @return A point in world space coordinates, anchor relative.
*/
Vec2 convertTouchToNodeSpaceAR(Touch * touch) const;
/**
* Sets an additional transform matrix to the node.
*
* In order to remove it, call it again with the argument `nullptr`.
*
* @note The additional transform will be concatenated at the end of getNodeToParentTransform.
* It could be used to simulate `parent-child` relationship between two nodes (e.g. one is in BatchNode, another isn't).
*
* @param additionalTransform An additional transform matrix.
*/
void setAdditionalTransform(const Mat4* additionalTransform);
void setAdditionalTransform(const Mat4& additionalTransform);
void setAdditionalTransform(const AffineTransform& additionalTransform);
/// @} end of Coordinate Converters
/// @{
/// @name component functions
/**
* Gets a component by its name.
*
* @param name A given name of component.
* @return The Component by name.
*/
Component* getComponent(const std::string& name);
/**
* Adds a component.
*
* @param component A given component.
* @return True if added success.
*/
virtual bool addComponent(Component *component);
/**
* Removes a component by its name.
*
* @param name A given name of component.
* @return True if removed success.
*/
virtual bool removeComponent(const std::string& name);
/**
* Removes a component by its pointer.
*
* @param component A given component.
* @return True if removed success.
*/
virtual bool removeComponent(Component *component);
/**
* Removes all components
*/
virtual void removeAllComponents();
/// @} end of component functions
// overrides
/**
* Return the node's opacity.
* @return A GLubyte value.
*/
virtual uint8_t getOpacity() const;
/**
* Return the node's display opacity.
* The difference between opacity and displayedOpacity is:
* The displayedOpacity is what's the final rendering opacity of node.
* @return A GLubyte value.
*/
virtual uint8_t getDisplayedOpacity() const;
/**
* Change node opacity.
* @param opacity A GLubyte opacity value.
*/
virtual void setOpacity(uint8_t opacity);
/**
* Update the displayed opacity of node with it's parent opacity;
* @param parentOpacity The opacity of parent node.
*/
virtual void updateDisplayedOpacity(uint8_t parentOpacity);
/**
* Whether cascadeOpacity is enabled or not.
* @return A boolean value.
*/
virtual bool isCascadeOpacityEnabled() const;
/**
* Change node's cascadeOpacity property.
* @param cascadeOpacityEnabled True to enable cascadeOpacity, false otherwise.
*/
virtual void setCascadeOpacityEnabled(bool cascadeOpacityEnabled);
/**
* Query node's color value.
* @return A Color3B color value.
*/
virtual const Color3B& getColor() const;
/**
* Query node's displayed color.
* @return A Color3B color value.
*/
virtual const Color3B& getDisplayedColor() const;
/**
* Change the color of node.
* @param color A Color3B color value.
*/
virtual void setColor(const Color3B& color);
/**
* Update node's displayed color with its parent color.
* @param parentColor A Color3B color value.
*/
virtual void updateDisplayedColor(const Color3B& parentColor);
/**
* Query whether cascadeColor is enabled or not.
* @return Whether cascadeColor is enabled or not.
*/
virtual bool isCascadeColorEnabled() const;
/**
* If you want node's color affect the children node's color, then set it to true.
* Otherwise, set it to false.
* @param cascadeColorEnabled A boolean value.
*/
virtual void setCascadeColorEnabled(bool cascadeColorEnabled);
/**
* If you want the opacity affect the color property, then set to true.
* @param value A boolean value.
*/
virtual void setOpacityModifyRGB(bool value);
/**
* If node opacity will modify the RGB color value, then you should override this method and return true.
* @return A boolean value, true indicates that opacity will modify color; false otherwise.
*/
virtual bool isOpacityModifyRGB() const;
/**
* Set the callback of event onEnter.
* @param callback A std::function<void()> callback.
*/
void setOnEnterCallback(const std::function<void()>& callback) { _onEnterCallback = callback; }
/**
* Get the callback of event onEnter.
* @return A std:function<void()> callback.
*/
const std::function<void()>& getOnEnterCallback() const { return _onEnterCallback; }
/**
* Set the callback of event onExit.
* @param callback A std::function<void()> callback.
*/
void setOnExitCallback(const std::function<void()>& callback) { _onExitCallback = callback; }
/**
* Get the callback of event onExit.
* @return A std::function<void()>.
*/
const std::function<void()>& getOnExitCallback() const { return _onExitCallback; }
/**
* Set the callback of event EnterTransitionDidFinish.
* @param callback A std::function<void()> callback.
*/
void setOnEnterTransitionDidFinishCallback(const std::function<void()>& callback) { _onEnterTransitionDidFinishCallback = callback; }
/**
* Get the callback of event EnterTransitionDidFinish.
* @return std::function<void()>
*/
const std::function<void()>& getOnEnterTransitionDidFinishCallback() const { return _onEnterTransitionDidFinishCallback; }
/**
* Set the callback of event ExitTransitionDidStart.
* @param callback A std::function<void()> callback.
*/
void setOnExitTransitionDidStartCallback(const std::function<void()>& callback) { _onExitTransitionDidStartCallback = callback; }
/**
* Get the callback of event ExitTransitionDidStart.
* @return std::function<void()>
*/
const std::function<void()>& getOnExitTransitionDidStartCallback() const { return _onExitTransitionDidStartCallback; }
/**
* get & set camera mask, the node is visible by the camera whose camera flag & node's camera mask is true
*/
unsigned short getCameraMask() const { return _cameraMask; }
/**
* Modify the camera mask for current node.
* If applyChildren is true, then it will modify the camera mask of its children recursively.
* @param mask A unsigned short bit for mask.
* @param applyChildren A boolean value to determine whether the mask bit should apply to its children or not.
*/
virtual void setCameraMask(unsigned short mask, bool applyChildren = true);
virtual void setProgramState(backend::ProgramState* programState);
virtual backend::ProgramState* getProgramState() const;
CC_CONSTRUCTOR_ACCESS:
// Nodes should be created using create();
Node();
virtual ~Node();
virtual bool init();
protected:
/// lazy allocs
void childrenAlloc();
/// helper that reorder a child
void insertChild(Node* child, int z);
/// Removes a child, call child->onExit(), do cleanup, remove it from children array.
void detachChild(Node *child, ssize_t index, bool doCleanup);
/// Convert cocos2d coordinates to UI windows coordinate.
Vec2 convertToWindowSpace(const Vec2& nodePoint) const;
Mat4 transform(const Mat4 &parentTransform);
uint32_t processParentFlags(const Mat4& parentTransform, uint32_t parentFlags);
virtual void updateCascadeOpacity();
virtual void disableCascadeOpacity();
virtual void updateCascadeColor();
virtual void disableCascadeColor();
virtual void updateColor() {}
bool doEnumerate(std::string name, std::function<bool (Node *)> callback) const;
bool doEnumerateRecursive(const Node* node, const std::string &name, std::function<bool (Node *)> callback) const;
//check whether this camera mask is visible by the current visiting camera
bool isVisitableByVisitingCamera() const;
// update quaternion from Rotation3D
void updateRotationQuat();
// update Rotation3D from quaternion
void updateRotation3D();
private:
void addChildHelper(Node* child, int localZOrder, int tag, const std::string &name, bool setTag);
protected:
float _rotationX; ///< rotation on the X-axis
float _rotationY; ///< rotation on the Y-axis
// rotation Z is decomposed in 2 to simulate Skew for Flash animations
float _rotationZ_X; ///< rotation angle on Z-axis, component X
float _rotationZ_Y; ///< rotation angle on Z-axis, component Y
Quaternion _rotationQuat; ///rotation using quaternion, if _rotationZ_X == _rotationZ_Y, _rotationQuat = RotationZ_X * RotationY * RotationX, else _rotationQuat = RotationY * RotationX
float _scaleX; ///< scaling factor on x-axis
float _scaleY; ///< scaling factor on y-axis
float _scaleZ; ///< scaling factor on z-axis
Vec2 _position; ///< position of the node
float _positionZ; ///< OpenGL real Z position
Vec2 _normalizedPosition;
bool _usingNormalizedPosition;
bool _normalizedPositionDirty;
float _skewX; ///< skew angle on x-axis
float _skewY; ///< skew angle on y-axis
Vec2 _anchorPointInPoints; ///< anchor point in points
Vec2 _anchorPoint; ///< anchor point normalized (NOT in points)
Size _contentSize; ///< untransformed size of the node
bool _contentSizeDirty; ///< whether or not the contentSize is dirty
Mat4 _modelViewTransform; ///< ModelView transform of the Node.
// "cache" variables are allowed to be mutable
mutable Mat4 _transform; ///< transform
mutable bool _transformDirty; ///< transform dirty flag
mutable Mat4 _inverse; ///< inverse transform
mutable bool _inverseDirty; ///< inverse transform dirty flag
mutable Mat4* _additionalTransform; ///< two transforms needed by additional transforms
mutable bool _additionalTransformDirty; ///< transform dirty ?
bool _transformUpdated; ///< Whether or not the Transform object was updated since the last frame
#if CC_LITTLE_ENDIAN
union {
struct {
std::uint32_t _orderOfArrival;
std::int32_t _localZOrder;
};
std::int64_t _localZOrder$Arrival;
};
#else
union {
struct {
std::int32_t _localZOrder;
std::uint32_t _orderOfArrival;
};
std::int64_t _localZOrder$Arrival;
};
#endif
float _globalZOrder; ///< Global order used to sort the node
static std::uint32_t s_globalOrderOfArrival;
Vector<Node*> _children; ///< array of children nodes
Node *_parent; ///< weak reference to parent node
Director* _director; //cached director pointer to improve rendering performance
int _tag; ///< a tag. Can be any number you assigned just to identify this node
std::string _name; ///<a string label, an user defined string to identify this node
size_t _hashOfName; ///<hash value of _name, used for speed in getChildByName
void *_userData; ///< A user assigned void pointer, Can be point to any cpp object
Ref *_userObject; ///< A user assigned Object
Scheduler *_scheduler; ///< scheduler used to schedule timers and updates
ActionManager *_actionManager; ///< a pointer to ActionManager singleton, which is used to handle all the actions
EventDispatcher* _eventDispatcher; ///< event dispatcher used to dispatch all kinds of events
bool _running; ///< is running
bool _visible; ///< is this node visible
bool _ignoreAnchorPointForPosition; ///< true if the Anchor Vec2 will be (0,0) when you position the Node, false otherwise.
///< Used by Layer and Scene.
bool _reorderChildDirty; ///< children order dirty flag
bool _isTransitionFinished; ///< flag to indicate whether the transition was finished
#if CC_ENABLE_SCRIPT_BINDING
int _scriptHandler; ///< script handler for onEnter() & onExit(), used in Javascript binding and Lua binding.
int _updateScriptHandler; ///< script handler for update() callback per frame, which is invoked from lua & javascript.
ccScriptType _scriptType; ///< type of script binding, lua or javascript
#endif
ComponentContainer *_componentContainer; ///< Dictionary of components
// opacity controls
uint8_t _displayedOpacity;
uint8_t _realOpacity;
Color3B _displayedColor;
Color3B _realColor;
bool _cascadeColorEnabled;
bool _cascadeOpacityEnabled;
// camera mask, it is visible only when _cameraMask & current camera' camera flag is true
unsigned short _cameraMask;
std::function<void()> _onEnterCallback;
std::function<void()> _onExitCallback;
std::function<void()> _onEnterTransitionDidFinishCallback;
std::function<void()> _onExitTransitionDidStartCallback;
backend::ProgramState* _programState = nullptr;
//Physics:remaining backwardly compatible
#if CC_USE_PHYSICS
PhysicsBody* _physicsBody;
public:
void setPhysicsBody(PhysicsBody* physicsBody)
{
if (_physicsBody != nullptr)
{
removeComponent(_physicsBody);
}
addComponent(physicsBody);
}
PhysicsBody* getPhysicsBody() const { return _physicsBody; }
friend class PhysicsBody;
#endif
static int __attachedNodeCount;
private:
CC_DISALLOW_COPY_AND_ASSIGN(Node);
};
/**
* This is a helper function, checks a GL screen point is in content rectangle space.
*
* The content rectangle defined by origin(0,0) and content size.
* This function convert GL screen point to near and far planes as points Pn and Pf,
* then calculate the intersect point P which the line PnPf intersect with content rectangle.
* If P in content rectangle means this node be hit.
*
* @param pt The point in GL screen space.
* @param camera Which camera used to unproject pt to near/far planes.
* @param w2l World to local transform matrix, used to convert Pn and Pf to rectangle space.
* @param rect The test rectangle in local space.
* @parma p Point to a Vec3 for store the intersect point, if don't need them set to nullptr.
* @return true if the point is in content rectangle, false otherwise.
*/
bool CC_DLL isScreenPointInRect(const Vec2 &pt, const Camera* camera, const Mat4& w2l, const Rect& rect, Vec3 *p);
// end of _2d group
/// @}
NS_CC_END
#endif // __CCNODE_H__