319 lines
7.0 KiB
JavaScript
319 lines
7.0 KiB
JavaScript
//>>built
|
|
define("dojox/gfx/path",["./_base","dojo/_base/lang","dojo/_base/declare","./matrix","./shape"],function(g,_1,_2,_3,_4){
|
|
var _5=g.path={};
|
|
var _6=_2("dojox.gfx.path.Path",_4.Shape,{constructor:function(_7){
|
|
this.shape=_1.clone(g.defaultPath);
|
|
this.segments=[];
|
|
this.tbbox=null;
|
|
this.absolute=true;
|
|
this.last={};
|
|
this.rawNode=_7;
|
|
this.segmented=false;
|
|
},setAbsoluteMode:function(_8){
|
|
this._confirmSegmented();
|
|
this.absolute=typeof _8=="string"?(_8=="absolute"):_8;
|
|
return this;
|
|
},getAbsoluteMode:function(){
|
|
this._confirmSegmented();
|
|
return this.absolute;
|
|
},getBoundingBox:function(){
|
|
this._confirmSegmented();
|
|
return (this.bbox&&("l" in this.bbox))?{x:this.bbox.l,y:this.bbox.t,width:this.bbox.r-this.bbox.l,height:this.bbox.b-this.bbox.t}:null;
|
|
},_getRealBBox:function(){
|
|
this._confirmSegmented();
|
|
if(this.tbbox){
|
|
return this.tbbox;
|
|
}
|
|
var _9=this.bbox,_3=this._getRealMatrix();
|
|
this.bbox=null;
|
|
for(var i=0,_a=this.segments.length;i<_a;++i){
|
|
this._updateWithSegment(this.segments[i],_3);
|
|
}
|
|
var t=this.bbox;
|
|
this.bbox=_9;
|
|
this.tbbox=t?[{x:t.l,y:t.t},{x:t.r,y:t.t},{x:t.r,y:t.b},{x:t.l,y:t.b}]:null;
|
|
return this.tbbox;
|
|
},getLastPosition:function(){
|
|
this._confirmSegmented();
|
|
return "x" in this.last?this.last:null;
|
|
},_applyTransform:function(){
|
|
this.tbbox=null;
|
|
return this.inherited(arguments);
|
|
},_updateBBox:function(x,y,m){
|
|
if(m){
|
|
var t=_3.multiplyPoint(m,x,y);
|
|
x=t.x;
|
|
y=t.y;
|
|
}
|
|
if(this.bbox&&("l" in this.bbox)){
|
|
if(this.bbox.l>x){
|
|
this.bbox.l=x;
|
|
}
|
|
if(this.bbox.r<x){
|
|
this.bbox.r=x;
|
|
}
|
|
if(this.bbox.t>y){
|
|
this.bbox.t=y;
|
|
}
|
|
if(this.bbox.b<y){
|
|
this.bbox.b=y;
|
|
}
|
|
}else{
|
|
this.bbox={l:x,b:y,r:x,t:y};
|
|
}
|
|
},_updateWithSegment:function(_b,_c){
|
|
var n=_b.args,l=n.length,i;
|
|
switch(_b.action){
|
|
case "M":
|
|
case "L":
|
|
case "C":
|
|
case "S":
|
|
case "Q":
|
|
case "T":
|
|
for(i=0;i<l;i+=2){
|
|
this._updateBBox(n[i],n[i+1],_c);
|
|
}
|
|
this.last.x=n[l-2];
|
|
this.last.y=n[l-1];
|
|
this.absolute=true;
|
|
break;
|
|
case "H":
|
|
for(i=0;i<l;++i){
|
|
this._updateBBox(n[i],this.last.y,_c);
|
|
}
|
|
this.last.x=n[l-1];
|
|
this.absolute=true;
|
|
break;
|
|
case "V":
|
|
for(i=0;i<l;++i){
|
|
this._updateBBox(this.last.x,n[i],_c);
|
|
}
|
|
this.last.y=n[l-1];
|
|
this.absolute=true;
|
|
break;
|
|
case "m":
|
|
var _d=0;
|
|
if(!("x" in this.last)){
|
|
this._updateBBox(this.last.x=n[0],this.last.y=n[1],_c);
|
|
_d=2;
|
|
}
|
|
for(i=_d;i<l;i+=2){
|
|
this._updateBBox(this.last.x+=n[i],this.last.y+=n[i+1],_c);
|
|
}
|
|
this.absolute=false;
|
|
break;
|
|
case "l":
|
|
case "t":
|
|
for(i=0;i<l;i+=2){
|
|
this._updateBBox(this.last.x+=n[i],this.last.y+=n[i+1],_c);
|
|
}
|
|
this.absolute=false;
|
|
break;
|
|
case "h":
|
|
for(i=0;i<l;++i){
|
|
this._updateBBox(this.last.x+=n[i],this.last.y,_c);
|
|
}
|
|
this.absolute=false;
|
|
break;
|
|
case "v":
|
|
for(i=0;i<l;++i){
|
|
this._updateBBox(this.last.x,this.last.y+=n[i],_c);
|
|
}
|
|
this.absolute=false;
|
|
break;
|
|
case "c":
|
|
for(i=0;i<l;i+=6){
|
|
this._updateBBox(this.last.x+n[i],this.last.y+n[i+1],_c);
|
|
this._updateBBox(this.last.x+n[i+2],this.last.y+n[i+3],_c);
|
|
this._updateBBox(this.last.x+=n[i+4],this.last.y+=n[i+5],_c);
|
|
}
|
|
this.absolute=false;
|
|
break;
|
|
case "s":
|
|
case "q":
|
|
for(i=0;i<l;i+=4){
|
|
this._updateBBox(this.last.x+n[i],this.last.y+n[i+1],_c);
|
|
this._updateBBox(this.last.x+=n[i+2],this.last.y+=n[i+3],_c);
|
|
}
|
|
this.absolute=false;
|
|
break;
|
|
case "A":
|
|
for(i=0;i<l;i+=7){
|
|
this._updateBBox(n[i+5],n[i+6],_c);
|
|
}
|
|
this.last.x=n[l-2];
|
|
this.last.y=n[l-1];
|
|
this.absolute=true;
|
|
break;
|
|
case "a":
|
|
for(i=0;i<l;i+=7){
|
|
this._updateBBox(this.last.x+=n[i+5],this.last.y+=n[i+6],_c);
|
|
}
|
|
this.absolute=false;
|
|
break;
|
|
}
|
|
var _e=[_b.action];
|
|
for(i=0;i<l;++i){
|
|
_e.push(g.formatNumber(n[i],true));
|
|
}
|
|
if(typeof this.shape.path=="string"){
|
|
this.shape.path+=_e.join("");
|
|
}else{
|
|
Array.prototype.push.apply(this.shape.path,_e);
|
|
}
|
|
},_validSegments:{m:2,l:2,h:1,v:1,c:6,s:4,q:4,t:2,a:7,z:0},_pushSegment:function(_f,_10){
|
|
this.tbbox=null;
|
|
var _11=this._validSegments[_f.toLowerCase()],_12;
|
|
if(typeof _11=="number"){
|
|
if(_11){
|
|
if(_10.length>=_11){
|
|
_12={action:_f,args:_10.slice(0,_10.length-_10.length%_11)};
|
|
this.segments.push(_12);
|
|
this._updateWithSegment(_12);
|
|
}
|
|
}else{
|
|
_12={action:_f,args:[]};
|
|
this.segments.push(_12);
|
|
this._updateWithSegment(_12);
|
|
}
|
|
}
|
|
},_collectArgs:function(_13,_14){
|
|
for(var i=0;i<_14.length;++i){
|
|
var t=_14[i];
|
|
if(typeof t=="boolean"){
|
|
_13.push(t?1:0);
|
|
}else{
|
|
if(typeof t=="number"){
|
|
_13.push(t);
|
|
}else{
|
|
if(t instanceof Array){
|
|
this._collectArgs(_13,t);
|
|
}else{
|
|
if("x" in t&&"y" in t){
|
|
_13.push(t.x,t.y);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},moveTo:function(){
|
|
this._confirmSegmented();
|
|
var _15=[];
|
|
this._collectArgs(_15,arguments);
|
|
this._pushSegment(this.absolute?"M":"m",_15);
|
|
return this;
|
|
},lineTo:function(){
|
|
this._confirmSegmented();
|
|
var _16=[];
|
|
this._collectArgs(_16,arguments);
|
|
this._pushSegment(this.absolute?"L":"l",_16);
|
|
return this;
|
|
},hLineTo:function(){
|
|
this._confirmSegmented();
|
|
var _17=[];
|
|
this._collectArgs(_17,arguments);
|
|
this._pushSegment(this.absolute?"H":"h",_17);
|
|
return this;
|
|
},vLineTo:function(){
|
|
this._confirmSegmented();
|
|
var _18=[];
|
|
this._collectArgs(_18,arguments);
|
|
this._pushSegment(this.absolute?"V":"v",_18);
|
|
return this;
|
|
},curveTo:function(){
|
|
this._confirmSegmented();
|
|
var _19=[];
|
|
this._collectArgs(_19,arguments);
|
|
this._pushSegment(this.absolute?"C":"c",_19);
|
|
return this;
|
|
},smoothCurveTo:function(){
|
|
this._confirmSegmented();
|
|
var _1a=[];
|
|
this._collectArgs(_1a,arguments);
|
|
this._pushSegment(this.absolute?"S":"s",_1a);
|
|
return this;
|
|
},qCurveTo:function(){
|
|
this._confirmSegmented();
|
|
var _1b=[];
|
|
this._collectArgs(_1b,arguments);
|
|
this._pushSegment(this.absolute?"Q":"q",_1b);
|
|
return this;
|
|
},qSmoothCurveTo:function(){
|
|
this._confirmSegmented();
|
|
var _1c=[];
|
|
this._collectArgs(_1c,arguments);
|
|
this._pushSegment(this.absolute?"T":"t",_1c);
|
|
return this;
|
|
},arcTo:function(){
|
|
this._confirmSegmented();
|
|
var _1d=[];
|
|
this._collectArgs(_1d,arguments);
|
|
this._pushSegment(this.absolute?"A":"a",_1d);
|
|
return this;
|
|
},closePath:function(){
|
|
this._confirmSegmented();
|
|
this._pushSegment("Z",[]);
|
|
return this;
|
|
},_confirmSegmented:function(){
|
|
if(!this.segmented){
|
|
var _1e=this.shape.path;
|
|
this.shape.path=[];
|
|
this._setPath(_1e);
|
|
this.shape.path=this.shape.path.join("");
|
|
this.segmented=true;
|
|
}
|
|
},_setPath:function(_1f){
|
|
var p=_1.isArray(_1f)?_1f:_1f.match(g.pathSvgRegExp);
|
|
this.segments=[];
|
|
this.absolute=true;
|
|
this.bbox={};
|
|
this.last={};
|
|
if(!p){
|
|
return;
|
|
}
|
|
var _20="",_21=[],l=p.length;
|
|
for(var i=0;i<l;++i){
|
|
var t=p[i],x=parseFloat(t);
|
|
if(isNaN(x)){
|
|
if(_20){
|
|
this._pushSegment(_20,_21);
|
|
}
|
|
_21=[];
|
|
_20=t;
|
|
}else{
|
|
_21.push(x);
|
|
}
|
|
}
|
|
this._pushSegment(_20,_21);
|
|
},setShape:function(_22){
|
|
this.inherited(arguments,[typeof _22=="string"?{path:_22}:_22]);
|
|
this.segmented=false;
|
|
this.segments=[];
|
|
if(!g.lazyPathSegmentation){
|
|
this._confirmSegmented();
|
|
}
|
|
return this;
|
|
},_2PI:Math.PI*2});
|
|
var _23=_2("dojox.gfx.path.TextPath",_6,{constructor:function(_24){
|
|
if(!("text" in this)){
|
|
this.text=_1.clone(g.defaultTextPath);
|
|
}
|
|
if(!("fontStyle" in this)){
|
|
this.fontStyle=_1.clone(g.defaultFont);
|
|
}
|
|
},getText:function(){
|
|
return this.text;
|
|
},setText:function(_25){
|
|
this.text=g.makeParameters(this.text,typeof _25=="string"?{text:_25}:_25);
|
|
this._setText();
|
|
return this;
|
|
},getFont:function(){
|
|
return this.fontStyle;
|
|
},setFont:function(_26){
|
|
this.fontStyle=typeof _26=="string"?g.splitFontString(_26):g.makeParameters(g.defaultFont,_26);
|
|
this._setFont();
|
|
return this;
|
|
}});
|
|
return {Path:_6,TextPath:_23};
|
|
});
|