forked from cocos2d/cocos2d-html5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCCDirector.js
1284 lines (1084 loc) · 47.7 KB
/
CCDirector.js
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
/****************************************************************************
Copyright (c) 2010-2012 cocos2d-x.org
Copyright (c) 2008-2010 Ricardo Quesada
Copyright (c) 2011 Zynga Inc.
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.
****************************************************************************/
cc.g_NumberOfDraws = 0;
//Possible OpenGL projections used by director
/**
* sets a 2D projection (orthogonal projection)
* @constant
* @type Number
*/
cc.DIRECTOR_PROJECTION_2D = 0;
/**
* sets a 3D projection with a fovy=60, znear=0.5f and zfar=1500.
* @constant
* @type Number
*/
cc.DIRECTOR_PROJECTION_3D = 1;
/**
* it calls "updateProjection" on the projection delegate.
* @constant
* @type Number
*/
cc.DIRECTOR_PROJECTION_CUSTOM = 3;
/**
* Detault projection is 3D projection
* @constant
* @type Number
*/
cc.DIRECTOR_PROJECTION_DEFAULT = cc.DIRECTOR_PROJECTION_3D;
//----------------------------------------------------------------------------------------------------------------------
//Possible device orientations
/**
* Device oriented vertically, home button on the bottom (UIDeviceOrientationPortrait)
* @constant
* @type Number
*/
cc.DEVICE_ORIENTATION_PORTRAIT = 0;
/**
* Device oriented horizontally, home button on the right (UIDeviceOrientationLandscapeLeft)
* @constant
* @type Number
*/
cc.DEVICE_ORIENTATION_LANDSCAPE_LEFT = 1;
/**
* Device oriented vertically, home button on the top (UIDeviceOrientationPortraitUpsideDown)
* @constant
* @type Number
*/
cc.DEVICE_ORIENTATION_PORTRAIT_UPSIDE_DOWN = 2;
/**
* Device oriented horizontally, home button on the left (UIDeviceOrientationLandscapeRight)
* @constant
* @type Number
*/
cc.DEVICE_ORIENTATION_LANDSCAPE_RIGHT = 3;
/**
* In browsers, we only support 2 orientations by change window size.
* @constant
* @type Number
*/
cc.DEVICE_MAX_ORIENTATIONS = 2;
/**
* OpenGL projection protocol
* @class
* @extends cc.Class
*/
cc.DirectorDelegate = cc.Class.extend(/** @lends cc.DirectorDelegate# */{
/**
* Called by CCDirector when the projection is updated, and "custom" projection is used
*/
updateProjection:function () {
}
});
cc.GLToClipTransform = function (transformOut) {
var projection = new cc.kmMat4();
cc.kmGLGetMatrix(cc.KM_GL_PROJECTION, projection);
var modelview = new cc.kmMat4();
cc.kmGLGetMatrix(cc.KM_GL_MODELVIEW, modelview);
cc.kmMat4Multiply(transformOut, projection, modelview);
};
//----------------------------------------------------------------------------------------------------------------------
/**
* <p>
* Class that creates and handle the main Window and manages how<br/>
* and when to execute the Scenes.<br/>
* <br/>
* The cc.Director is also responsible for:<br/>
* - initializing the OpenGL context<br/>
* - setting the OpenGL pixel format (default on is RGB565)<br/>
* - setting the OpenGL pixel format (default on is RGB565)<br/>
* - setting the OpenGL buffer depth (default one is 0-bit)<br/>
* - setting the projection (default one is 3D)<br/>
* - setting the orientation (default one is Protrait)<br/>
* <br/>
* Since the cc.Director is a singleton, the standard way to use it is by calling:<br/>
* - cc.Director.getInstance().methodName(); <br/>
* <br/>
* The CCDirector also sets the default OpenGL context:<br/>
* - GL_TEXTURE_2D is enabled<br/>
* - GL_VERTEX_ARRAY is enabled<br/>
* - GL_COLOR_ARRAY is enabled<br/>
* - GL_TEXTURE_COORD_ARRAY is enabled<br/>
* </p>
* @class
* @extends cc.Class
*/
cc.Director = cc.Class.extend(/** @lends cc.Director# */{
//Variables
_landscape:false,
_nextDeltaTimeZero:false,
_paused:false,
_purgeDirecotorInNextLoop:false,
_sendCleanupToScene:false,
_animationInterval:0.0,
_oldAnimationInterval:0.0,
_projection:0,
_accumDt:0.0,
_contentScaleFactor:1.0,
_displayStats:false,
_deltaTime:0.0,
_frameRate:0.0,
_FPSLabel:null,
_SPFLabel:null,
_drawsLabel:null,
_winSizeInPoints:null,
_lastUpdate:null,
_nextScene:null,
_notificationNode:null,
_openGLView:null,
_scenesStack:null,
_projectionDelegate:null,
_runningScene:null,
_frames:0,
_totalFrames:0,
_secondsPerFrame:0,
_dirtyRegion:null,
_scheduler:null,
_actionManager:null,
_touchDispatcher:null,
_keyboardDispatcher:null,
_accelerometer:null,
_mouseDispatcher:null,
_isBlur:false,
/**
* Constructor
*/
ctor:function () {
this._lastUpdate = Date.now();
if (!cc.isAddedHiddenEvent) {
var selfPointer = this;
window.addEventListener("focus", function () {
selfPointer._lastUpdate = Date.now();
}, false);
}
},
_resetLastUpdate:function () {
this._lastUpdate = Date.now();
},
/**
* initializes cc.Director
* @return {Boolean}
*/
init:function () {
// scenes
this._oldAnimationInterval = this._animationInterval = 1.0 / cc.defaultFPS;
this._scenesStack = [];
// Set default projection (3D)
this._projection = cc.DIRECTOR_PROJECTION_DEFAULT;
// projection delegate if "Custom" projection is used
this._projectionDelegate = null;
//FPS
this._accumDt = 0;
this._frameRate = 0;
this._displayStats = false;//can remove
this._totalFrames = this._frames = 0;
this._lastUpdate = Date.now();
//Paused?
this._paused = false;
//purge?
this._purgeDirecotorInNextLoop = false;
this._winSizeInPoints = cc.size(0, 0);
this._openGLView = null;
this._contentScaleFactor = 1.0;
//scheduler
this._scheduler = new cc.Scheduler();
//action manager
this._actionManager = new cc.ActionManager();
this._scheduler.scheduleUpdateForTarget(this._actionManager, cc.PRIORITY_SYSTEM, false);
//touchDispatcher
this._touchDispatcher = new cc.TouchDispatcher();
this._touchDispatcher.init();
//KeyboardDispatcher
this._keyboardDispatcher = cc.KeyboardDispatcher.getInstance();
//accelerometer
this._accelerometer = new cc.Accelerometer();
//MouseDispatcher
this._mouseDispatcher = new cc.MouseDispatcher();
this._mouseDispatcher.init();
return true;
},
/**
* calculates delta time since last time it was called
*/
calculateDeltaTime:function () {
var now = Date.now();
// new delta time.
if (this._nextDeltaTimeZero) {
this._deltaTime = 0;
this._nextDeltaTimeZero = false;
} else {
this._deltaTime = (now - this._lastUpdate) / 1000;
}
if ((cc.COCOS2D_DEBUG > 0) && (this._deltaTime > 0.2))
this._deltaTime = 1 / 60.0;
this._lastUpdate = now;
},
/**
* <p>
* converts a UIKit coordinate to an OpenGL coordinate<br/>
* Useful to convert (multi) touches coordinates to the current layout (portrait or landscape)
* </p>
* @param {cc.Point} uiPoint
* @return {cc.Point}
*/
convertToGL:function (uiPoint) {
var transform = new cc.kmMat4();
cc.GLToClipTransform(transform);
var transformInv = new cc.kmMat4();
cc.kmMat4Inverse(transformInv, transform);
// Calculate z=0 using -> transform*[0, 0, 0, 1]/w
var zClip = transform.mat[14] / transform.mat[15];
var glSize = this._openGLView.getDesignResolutionSize();
var clipCoord = new cc.kmVec3(2.0 * uiPoint.x / glSize.width - 1.0, 1.0 - 2.0 * uiPoint.y / glSize.height, zClip);
var glCoord = new cc.kmVec3();
cc.kmVec3TransformCoord(glCoord, clipCoord, transformInv);
return cc.p(glCoord.x, glCoord.y);
},
/**
* <p>converts an OpenGL coordinate to a UIKit coordinate<br/>
* Useful to convert node points to window points for calls such as glScissor</p>
* @param {cc.Point} glPoint
* @return {cc.Point}
*/
convertToUI:function (glPoint) {
var transform = new cc.kmMat4();
cc.GLToClipTransform(transform);
var clipCoord = new cc.kmVec3();
// Need to calculate the zero depth from the transform.
var glCoord = new cc.kmVec3(glPoint.x, glPoint.y, 0.0);
cc.kmVec3TransformCoord(clipCoord, glCoord, transform);
var glSize = this._openGLView.getDesignResolutionSize();
return cc.p(glSize.width * (clipCoord.x * 0.5 + 0.5), glSize.height * (-clipCoord.y * 0.5 + 0.5));
},
/**
* Draw the scene. This method is called every frame. Don't call it manually.
*/
drawScene: null,
_drawSceneForCanvas: function () {
// calculate "global" dt
this.calculateDeltaTime();
//tick before glClear: issue #533
if (!this._paused)
this._scheduler.update(this._deltaTime);
cc.renderContext.clearRect(0, 0, cc.originalCanvasSize.width, -cc.originalCanvasSize.height);
/* to avoid flickr, nextScene MUST be here: after tick and before draw.
XXX: Which bug is this one. It seems that it can't be reproduced with v0.9 */
if (this._nextScene) {
this.setNextScene();
}
// draw the scene
if (this._runningScene)
this._runningScene.visit();
// draw the notifications node
if (this._notificationNode)
this._notificationNode.visit();
if (this._displayStats)
this._showStats();
this._totalFrames++;
if (this._displayStats)
this._calculateMPF();
},
_drawSceneForWebGL: function () {
// calculate "global" dt
this.calculateDeltaTime();
//tick before glClear: issue #533
if (!this._paused)
this._scheduler.update(this._deltaTime);
var gl = cc.renderContext;
gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);
/* to avoid flickr, nextScene MUST be here: after tick and before draw.
XXX: Which bug is this one. It seems that it can't be reproduced with v0.9 */
if (this._nextScene)
this.setNextScene();
cc.kmGLPushMatrix();
// draw the scene
if (this._runningScene)
this._runningScene.visit();
// draw the notifications node
if (this._notificationNode)
this._notificationNode.visit();
if (this._displayStats)
this._showStats();
cc.kmGLPopMatrix();
this._totalFrames++;
if (this._displayStats)
this._calculateMPF();
},
/**
* end director
*/
end:function () {
this._purgeDirecotorInNextLoop = true;
},
/**
* <p>get the size in pixels of the surface. It could be different than the screen size.<br/>
* High-res devices might have a higher surface size than the screen size.<br/>
* Only available when compiled using SDK >= 4.0.
* </p>
* @return {Number}
*/
getContentScaleFactor:function () {
return this._contentScaleFactor;
},
/**
* <p>
* This object will be visited after the main scene is visited.<br/>
* This object MUST implement the "visit" selector.<br/>
* Useful to hook a notification object, like CCNotifications (http://github.com/manucorporat/CCNotifications)
* </p>
* @return {cc.Node}
*/
getNotificationNode:function () {
return this._notificationNode;
},
/**
* <p>
* returns the size of the OpenGL view in points.<br/>
* It takes into account any possible rotation (device orientation) of the window
* </p>
* @return {cc.Size}
*/
getWinSize:function () {
return cc.size(this._winSizeInPoints.width, this._winSizeInPoints.height);
},
/**
* <p>
* returns the size of the OpenGL view in pixels.<br/>
* It takes into account any possible rotation (device orientation) of the window.<br/>
* On Mac winSize and winSizeInPixels return the same value.
* </p>
* @return {cc.Size}
*/
getWinSizeInPixels:function () {
return cc.size(this._winSizeInPoints.width * this._contentScaleFactor, this._winSizeInPoints.height * this._contentScaleFactor);
},
getVisibleSize:function () {
if (this._openGLView) {
return this._openGLView.getVisibleSize();
} else {
return cc.size(0,0);
}
},
getVisibleOrigin:function () {
if (this._openGLView) {
return this._openGLView.getVisibleOrigin();
} else {
return cc.p(0, 0);
}
},
getZEye:function () {
return (this._winSizeInPoints.height / 1.1566 );
},
/**
* pause director
*/
pause:function () {
if (this._paused)
return;
this._oldAnimationInterval = this._animationInterval;
// when paused, don't consume CPU
this.setAnimationInterval(1 / 4.0);
this._paused = true;
},
/**
* <p>
* Pops out a scene from the queue.<br/>
* This scene will replace the running one.<br/>
* The running scene will be deleted. If there are no more scenes in the stack the execution is terminated.<br/>
* ONLY call it if there is a running scene.
* </p>
*/
popScene:function () {
cc.Assert(this._runningScene != null, "running scene should not null");
//this.addRegionToDirtyRegion(cc.rect(0, 0, cc.canvas.width, cc.canvas.height));
this._scenesStack.pop();
var c = this._scenesStack.length;
if (c == 0)
this.end();
else {
this._sendCleanupToScene = true;
this._nextScene = this._scenesStack[c - 1];
}
},
/**
* Removes cached all cocos2d cached data. It will purge the CCTextureCache, CCSpriteFrameCache, CCLabelBMFont cache
*/
purgeCachedData:function () {
cc.LabelBMFont.purgeCachedData();
//cc.TextureCache.getInstance().removeUnusedTextures();
},
/**
* purge Director
*/
purgeDirector:function () {
//cleanup scheduler
this.getScheduler().unscheduleAllCallbacks();
// don't release the event handlers
// They are needed in case the director is run again
this._touchDispatcher.removeAllDelegates();
if (this._runningScene) {
this._runningScene.onExitTransitionDidStart();
this._runningScene.onExit();
this._runningScene.cleanup();
}
this._runningScene = null;
this._nextScene = null;
// remove all objects, but don't release it.
// runWithScene might be executed after 'end'.
this._scenesStack = [];
this.stopAnimation();
// purge bitmap cache
cc.LabelBMFont.purgeCachedData();
// purge all managers
cc.AnimationCache.purgeSharedAnimationCache();
cc.SpriteFrameCache.purgeSharedSpriteFrameCache();
cc.TextureCache.purgeSharedTextureCache();
//CCShaderCache::purgeSharedShaderCache();
//CCFileUtils::purgeFileUtils();
//CCConfiguration::purgeConfiguration();
//extension::CCNotificationCenter::purgeNotificationCenter();
//extension::CCTextureWatcher::purgeTextureWatcher();
//extension::CCNodeLoaderLibrary::purgeSharedCCNodeLoaderLibrary();
//cc.UserDefault.purgeSharedUserDefault();
//ccGLInvalidateStateCache();
cc.CHECK_GL_ERROR_DEBUG();
// OpenGL view
//this._openGLView.end();
//this._openGLView = null;
},
/**
* <p>
* Suspends the execution of the running scene, pushing it on the stack of suspended scenes.<br/>
* The new scene will be executed.<br/>
* Try to avoid big stacks of pushed scenes to reduce memory allocation.<br/>
* ONLY call it if there is a running scene.
* </p>
* @param {cc.Scene} scene
*/
pushScene:function (scene) {
cc.Assert(scene, "the scene should not null");
this._sendCleanupToScene = false;
this._scenesStack.push(scene);
this._nextScene = scene;
},
/**
* Replaces the running scene with a new one. The running scene is terminated. ONLY call it if there is a running scene.
* @param {cc.Scene} scene
*/
replaceScene:function (scene) {
cc.Assert(this._runningScene, "Use runWithScene: instead to start the director");
cc.Assert(scene != null, "the scene should not be null");
var i = this._scenesStack.length;
if(i === 0){
this._sendCleanupToScene = true;
this._scenesStack[i] = scene;
this._nextScene = scene;
} else {
this._sendCleanupToScene = true;
this._scenesStack[i - 1] = scene;
this._nextScene = scene;
}
},
/**
* resume director
*/
resume:function () {
if (!this._paused) {
return;
}
this.setAnimationInterval(this._oldAnimationInterval);
this._lastUpdate = Date.now();
if (!this._lastUpdate) {
cc.log("cocos2d: Director: Error in gettimeofday");
}
this._paused = false;
this._deltaTime = 0;
},
/**
* <p>
* Enters the Director's main loop with the given Scene.<br/>
* Call it to run only your FIRST scene.<br/>
* Don't call it if there is already a running scene.
* </p>
* @param {cc.Scene} scene
*/
runWithScene:function (scene) {
cc.Assert(scene != null, "This command can only be used to start the CCDirector. There is already a scene present.");
cc.Assert(this._runningScene == null, "_runningScene should be null");
this.pushScene(scene);
this.startAnimation();
},
/**
* enables/disables OpenGL alpha blending
* @param {Boolean} on
*/
setAlphaBlending:function (on) {
if (on)
cc.glBlendFunc(cc.BLEND_SRC, cc.BLEND_DST);
else
cc.glBlendFunc(cc.renderContext.ONE, cc.renderContext.ZERO);
//cc.CHECK_GL_ERROR_DEBUG();
},
/**
* <p>
* The size in pixels of the surface. It could be different than the screen size.<br/>
* High-res devices might have a higher surface size than the screen size.<br/>
* Only available when compiled using SDK >= 4.0.
* </p>
* @param {Number} scaleFactor
*/
setContentScaleFactor:function (scaleFactor) {
if (scaleFactor != this._contentScaleFactor) {
this._contentScaleFactor = scaleFactor;
this._createStatsLabel();
}
},
/**
* enables/disables OpenGL depth test
* @param {Boolean} on
*/
setDepthTest:function (on) {
if(cc.renderContextType === cc.CANVAS)
return;
if (on) {
cc.renderContext.clearDepth(1.0);
cc.renderContext.enable(cc.renderContext.DEPTH_TEST);
cc.renderContext.depthFunc(cc.renderContext.LEQUAL);
//cc.renderContext.hint(cc.renderContext.PERSPECTIVE_CORRECTION_HINT, cc.renderContext.NICEST);
} else {
cc.renderContext.disable(cc.renderContext.DEPTH_TEST);
}
//cc.CHECK_GL_ERROR_DEBUG();
},
/**
* sets the default values based on the CCConfiguration info
*/
setDefaultValues:function(){
},
/**
* sets the OpenGL default values
*/
setGLDefaultValues:function () {
this.setAlphaBlending(true);
// XXX: Fix me, should enable/disable depth test according the depth format as cocos2d-iphone did
// [self setDepthTest: view_.depthFormat];
this.setDepthTest(false);
this.setProjection(this._projection);
// set other opengl default values
cc.renderContext.clearColor(0.0, 0.0, 0.0, 1.0);
},
/**
* set next delta time is zero
* @param {Boolean} nextDeltaTimeZero
*/
setNextDeltaTimeZero:function (nextDeltaTimeZero) {
this._nextDeltaTimeZero = nextDeltaTimeZero;
},
/**
* set next scene
*/
setNextScene:function () {
var runningIsTransition = this._runningScene ? this._runningScene instanceof cc.TransitionScene : false;
var newIsTransition = this._nextScene ? this._nextScene instanceof cc.TransitionScene : false;
// If it is not a transition, call onExit/cleanup
if (!newIsTransition) {
if (this._runningScene) {
this._runningScene.onExitTransitionDidStart();
this._runningScene.onExit();
}
// issue #709. the root node (scene) should receive the cleanup message too
// otherwise it might be leaked.
if (this._sendCleanupToScene && this._runningScene)
this._runningScene.cleanup();
}
this._runningScene = this._nextScene;
this._nextScene = null;
if ((!runningIsTransition) && (this._runningScene != null)) {
this._runningScene.onEnter();
this._runningScene.onEnterTransitionDidFinish();
}
},
/**
* set Notification Node
* @param {cc.Node} node
*/
setNotificationNode:function (node) {
this._notificationNode = node;
},
/**
* CCDirector delegate. It shall implemente the CCDirectorDelegate protocol
* @return {cc.DirectorDelegate}
*/
getDelegate:function () {
return this._projectionDelegate;
},
setDelegate:function (delegate) {
this._projectionDelegate = delegate;
},
/**
* Set the CCEGLView, where everything is rendered
* @param {*} openGLView
*/
setOpenGLView:function (openGLView) {
// set size
this._winSizeInPoints = cc.size(cc.canvas.width, cc.canvas.height); //this._openGLView.getDesignResolutionSize();
this._openGLView = openGLView || cc.EGLView.getInstance();
if (cc.renderContextType === cc.CANVAS)
return;
// Configuration. Gather GPU info
var conf = cc.Configuration.getInstance();
conf.gatherGPUInfo();
conf.dumpInfo();
// set size
//this._winSizeInPoints = this._openGLView.getDesignResolutionSize();
//this._winSizeInPixels = cc.size(this._winSizeInPoints.width * this._contentScaleFactor, this._winSizeInPoints.height * this._contentScaleFactor);
//if (this._openGLView != openGLView) {
// because EAGLView is not kind of CCObject
this._createStatsLabel();
//if (this._openGLView)
this.setGLDefaultValues();
/* if (this._contentScaleFactor != 1) {
this.updateContentScaleFactor();
}*/
this._touchDispatcher.setDispatchEvents(true);
//}
},
/**
* Sets the glViewport
*/
setViewport:function(){
if(this._openGLView) {
var locWinSizeInPoints = this._winSizeInPoints;
this._openGLView.setViewPortInPoints(0,0, locWinSizeInPoints.width, locWinSizeInPoints.height);
}
},
/**
* Sets an OpenGL projection
* @param {Number} projection
*/
setProjection:function (projection) {
var size = this._winSizeInPoints;
if(cc.renderContextType === cc.WEBGL){
this.setViewport();
switch (projection) {
case cc.DIRECTOR_PROJECTION_2D:
cc.kmGLMatrixMode(cc.KM_GL_PROJECTION);
cc.kmGLLoadIdentity();
var orthoMatrix = new cc.kmMat4();
cc.kmMat4OrthographicProjection(orthoMatrix, 0, size.width, 0, size.height, -1024, 1024);
cc.kmGLMultMatrix(orthoMatrix);
cc.kmGLMatrixMode(cc.KM_GL_MODELVIEW);
cc.kmGLLoadIdentity();
break;
case cc.DIRECTOR_PROJECTION_3D:
var zeye = this.getZEye();
var matrixPerspective = new cc.kmMat4(), matrixLookup = new cc.kmMat4();
cc.kmGLMatrixMode(cc.KM_GL_PROJECTION);
cc.kmGLLoadIdentity();
// issue #1334
cc.kmMat4PerspectiveProjection(matrixPerspective, 60, size.width / size.height, 0.1, zeye * 2);
// kmMat4PerspectiveProjection( &matrixPerspective, 60, (GLfloat)size.width/size.height, 0.1f, 1500);
cc.kmGLMultMatrix(matrixPerspective);
cc.kmGLMatrixMode(cc.KM_GL_MODELVIEW);
cc.kmGLLoadIdentity();
var eye = cc.kmVec3Fill(null, size.width / 2, size.height / 2, zeye);
var center = cc.kmVec3Fill(null, size.width / 2, size.height / 2, 0.0);
var up = cc.kmVec3Fill(null, 0.0, 1.0, 0.0);
cc.kmMat4LookAt(matrixLookup, eye, center, up);
cc.kmGLMultMatrix(matrixLookup);
break;
case cc.DIRECTOR_PROJECTION_CUSTOM:
if (this._projectionDelegate)
this._projectionDelegate.updateProjection();
break;
default:
cc.log("cocos2d: Director: unrecognized projection");
break;
}
}
this._projection = projection;
cc.setProjectionMatrixDirty();
},
/**
* shows the FPS in the screen
*/
_showStats:function () {
this._frames++;
this._accumDt += this._deltaTime;
if (this._displayStats) {
if (this._FPSLabel && this._SPFLabel && this._drawsLabel) {
if (this._accumDt > cc.DIRECTOR_FPS_INTERVAL) {
this._SPFLabel.setString(this._secondsPerFrame.toFixed(3));
this._frameRate = this._frames / this._accumDt;
this._frames = 0;
this._accumDt = 0;
this._FPSLabel.setString(this._frameRate.toFixed(1));
this._drawsLabel.setString((0 | cc.g_NumberOfDraws).toString());
}
this._FPSLabel.visit();
this._SPFLabel.visit();
this._drawsLabel.visit();
} else {
this._createStatsLabel();
}
}
cc.g_NumberOfDraws = 0;
},
/**
* <p>
* Whether or not the replaced scene will receive the cleanup message.<br>
* If the new scene is pushed, then the old scene won't receive the "cleanup" message.<br/>
* If the new scene replaces the old one, the it will receive the "cleanup" message.
* </p>
* @return {Boolean}
*/
isSendCleanupToScene:function () {
return this._sendCleanupToScene;
},
/**
* Get current running Scene. Director can only run one Scene at the time
* @return {cc.Scene}
*/
getRunningScene:function () {
return this._runningScene;
},
/**
* Get the FPS value
* @return {Number}
*/
getAnimationInterval:function () {
return this._animationInterval;
},
/**
* Whether or not to display the FPS on the bottom-left corner
* @return {Boolean}
*/
isDisplayStats:function () {
return this._displayStats;
},
/**
* Display the FPS on the bottom-left corner
* @param {Boolean} displayStats
*/
setDisplayStats:function (displayStats) {
this._displayStats = displayStats;
},
/**
* seconds per frame
* @return {Number}
*/
getSecondsPerFrame:function () {
return this._secondsPerFrame;
},
/**
* Get the CCEGLView, where everything is rendered
* @return {*}
*/
getOpenGLView:function () {
return this._openGLView;
},
/**
* is next delta time zero
* @return {Boolean}
*/
isNextDeltaTimeZero:function () {
return this._nextDeltaTimeZero;
},
/**
* Whether or not the Director is paused
* @return {Boolean}
*/
isPaused:function () {
return this._paused;
},
/**
* How many frames were called since the director started
* @return {Number}
*/
getTotalFrames:function () {
return this._totalFrames;
},
/**
* Sets an OpenGL projection
* @return {Number}
*/
getProjection:function () {
return this._projection;
},
/**
* <p>
* Pops out all scenes from the queue until the root scene in the queue. <br/>
* This scene will replace the running one. <br/>
* Internally it will call `popToSceneStackLevel(1)`
* </p>
*/
popToRootScene:function () {
this.popToSceneStackLevel(1);
},
/**
* <p>
* Pops out all scenes from the queue until it reaches `level`. <br/>
* If level is 0, it will end the director. <br/>