| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- cc.Class({
- extends: cc.Component,
- properties: {
- rsultLabel:cc.Label,
- mask:cc.Mask,
- promptLabel:cc.Label,
- },
- // use this for initialization
- onLoad: function (){
- this.node.on(cc.Node.EventType.TOUCH_START, this._onTouchBegin, this);
- this.node.on(cc.Node.EventType.TOUCH_MOVE, this._onTouchMoved, this);
- this.node.on(cc.Node.EventType.TOUCH_END, this._onTouchEnd, this);
- this.node.on(cc.Node.EventType.TOUCH_CANCEL, this._onTouchCancel, this);
- },
- onDestroy:function () {
- this.node.off(cc.Node.EventType.TOUCH_START, this._onTouchBegin, this);
- this.node.off(cc.Node.EventType.TOUCH_MOVE, this._onTouchMoved, this);
- this.node.off(cc.Node.EventType.TOUCH_END, this._onTouchEnd, this);
- this.node.off(cc.Node.EventType.TOUCH_CANCEL, this._onTouchCancel, this);
- },
- start:function () {
- //
- // var x =-100;
- // var y =-100;
- // var width =300;
- // var height = 200;
- // var rectangle = [cc.v2(x, y),
- // cc.v2(x + width, y),
- // cc.v2(x + width, y + height),
- // cc.v2(x, y + height)];
- //
- // stencil.drawPoly(rectangle, color, 0, color);
- // stencil.drawPoly(this.mask._calculateCircle(cc.p(0,0),cc.p(100,100), 64), color, 0, color);
- //
- // stencil.drawPoly(this.mask._calculateCircle(cc.p(200,200),cc.p(50,50), 64), color, 0, color);
- },
- _onTouchBegin:function (event) {
- cc.log('touchBegin');
- var point = event.touch.getLocation();
- point = this.node.convertToNodeSpaceAR(point);
- this._addCircle(point);
- },
- _onTouchMoved:function (event) {
- var point = event.touch.getLocation();
- point = this.node.convertToNodeSpaceAR(point);
- this._addCircle(point);
- },
- _onTouchEnd:function (event) {
- var point = event.touch.getLocation();
- point = this.node.convertToNodeSpaceAR(point);
- this._addCircle(point);
- },
- _onTouchCancel:function (event) {
- // var point = event.touch.getLocation();
- // point = this.node.convertToNodeSpaceAR(point);
- // this._addCircle(point);
- },
- _addCircle:function (point) {
- var stencil = this.mask._clippingStencil;
- var color = cc.color(255, 255, 255, 0);
- stencil.drawPoly(this.mask._calculateCircle(point,cc.p(50,50), 64), color, 0, color);
- if (!CC_JSB) {
- cc.renderer.childrenOrderDirty = true;
- }
- },
- // called every frame, uncomment this function to activate update callback
- // update: function (dt) {
- // },
- });
|