1 package net.systemeD.halcyon.styleparser {
5 import net.systemeD.halcyon.ExtendedLoader;
6 import net.systemeD.halcyon.ExtendedURLLoader;
7 import net.systemeD.halcyon.connection.Entity;
9 import net.systemeD.halcyon.connection.*;
10 import net.systemeD.halcyon.Globals;
11 // import bustin.dev.Inspector;
13 public class RuleSet {
15 public var loaded:Boolean=false; // has it loaded yet?
16 public var images:Object=new Object(); // loaded images
17 public var imageWidths:Object=new Object(); // width of each bitmap image
18 private var redrawCallback:Function=null; // function to call when CSS loaded
19 private var iconCallback:Function=null; // function to call when all icons loaded
20 private var iconsToLoad:uint=0; // number of icons left to load (fire iconCallback when ==0)
21 private var evalsToLoad:uint=0; // number of evals left to load (fire redrawCallback when ==0)
23 private var minscale:uint;
24 private var maxscale:uint;
25 public var choosers:Array;
26 public var evals:Array;
28 private static const WHITESPACE:RegExp =/^ \s+ /sx;
29 private static const COMMENT:RegExp =/^ \/\* .+? \*\/ \s* /sx; /* */
30 private static const CLASS:RegExp =/^ ([\.:]\w+) \s* /sx;
31 private static const NOT_CLASS:RegExp =/^ !([\.:]\w+) \s* /sx;
32 private static const ZOOM:RegExp =/^ \| \s* z([\d\-]+) \s* /isx;
33 private static const GROUP:RegExp =/^ , \s* /isx;
34 private static const CONDITION:RegExp =/^ \[(.+?)\] \s* /sx;
35 private static const OBJECT:RegExp =/^ (\w+) \s* /sx;
36 private static const DECLARATION:RegExp =/^ \{(.+?)\} \s* /sx;
37 private static const UNKNOWN:RegExp =/^ (\S+) \s* /sx;
39 private static const ZOOM_MINMAX:RegExp =/^ (\d+)\-(\d+) $/sx;
40 private static const ZOOM_MIN:RegExp =/^ (\d+)\- $/sx;
41 private static const ZOOM_MAX:RegExp =/^ \-(\d+) $/sx;
42 private static const ZOOM_SINGLE:RegExp =/^ (\d+) $/sx;
44 private static const CONDITION_TRUE:RegExp =/^ \s* ([:\w]+) \s* = \s* yes \s* $/isx;
45 private static const CONDITION_FALSE:RegExp =/^ \s* ([:\w]+) \s* = \s* no \s* $/isx;
46 private static const CONDITION_SET:RegExp =/^ \s* ([:\w]+) \s* $/sx;
47 private static const CONDITION_UNSET:RegExp =/^ \s* !([:\w]+) \s* $/sx;
48 private static const CONDITION_EQ:RegExp =/^ \s* ([:\w]+) \s* = \s* (.+) \s* $/sx;
49 private static const CONDITION_NE:RegExp =/^ \s* ([:\w]+) \s* != \s* (.+) \s* $/sx;
50 private static const CONDITION_GT:RegExp =/^ \s* ([:\w]+) \s* > \s* (.+) \s* $/sx;
51 private static const CONDITION_GE:RegExp =/^ \s* ([:\w]+) \s* >= \s* (.+) \s* $/sx;
52 private static const CONDITION_LT:RegExp =/^ \s* ([:\w]+) \s* < \s* (.+) \s* $/sx;
53 private static const CONDITION_LE:RegExp =/^ \s* ([:\w]+) \s* <= \s* (.+) \s* $/sx;
54 private static const CONDITION_REGEX:RegExp =/^ \s* ([:\w]+) \s* =~\/ \s* (.+) \/ \s* $/sx;
56 private static const ASSIGNMENT_EVAL:RegExp =/^ \s* (\S+) \s* \: \s* eval \s* \( \s* ' (.+?) ' \s* \) \s* $/isx;
57 private static const ASSIGNMENT:RegExp =/^ \s* (\S+) \s* \: \s* (.+?) \s* $/sx;
58 private static const SET_TAG_EVAL:RegExp =/^ \s* set \s+(\S+)\s* = \s* eval \s* \( \s* ' (.+?) ' \s* \) \s* $/isx;
59 private static const SET_TAG:RegExp =/^ \s* set \s+(\S+)\s* = \s* (.+?) \s* $/isx;
60 private static const SET_TAG_TRUE:RegExp =/^ \s* set \s+(\S+)\s* $/isx;
61 private static const EXIT:RegExp =/^ \s* exit \s* $/isx;
63 private static const oZOOM:uint=2;
64 private static const oGROUP:uint=3;
65 private static const oCONDITION:uint=4;
66 private static const oOBJECT:uint=5;
67 private static const oDECLARATION:uint=6;
69 private static const DASH:RegExp=/\-/g;
70 private static const COLOR:RegExp=/color$/;
71 private static const BOLD:RegExp=/^bold$/i;
72 private static const ITALIC:RegExp=/^italic|oblique$/i;
73 private static const UNDERLINE:RegExp=/^underline$/i;
74 private static const CAPS:RegExp=/^uppercase$/i;
75 private static const CENTER:RegExp=/^center$/i;
76 private static const FALSE:RegExp=/^(no|false|0)$/i;
78 private static const HEX:RegExp=/^#([0-9a-f]+)$/i;
79 private static const CSSCOLORS:Object = {
81 antiquewhite:0xfaebd7,
88 blanchedalmond:0xffebcd,
97 cornflowerblue:0x6495ed,
103 darkgoldenrod:0xb8860b,
107 darkmagenta:0x8b008b,
108 darkolivegreen:0x556b2f,
113 darkseagreen:0x8fbc8f,
114 darkslateblue:0x483d8b,
115 darkslategray:0x2f4f4f,
116 darkturquoise:0x00ced1,
119 deepskyblue:0x00bfff,
123 floralwhite:0xfffaf0,
124 forestgreen:0x228b22,
132 greenyellow:0xadff2f,
140 lavenderblush:0xfff0f5,
142 lemonchiffon:0xfffacd,
146 lightgoldenrodyellow:0xfafad2,
150 lightsalmon:0xffa07a,
151 lightseagreen:0x20b2aa,
152 lightskyblue:0x87cefa,
153 lightslategray:0x778899,
154 lightsteelblue:0xb0c4de,
155 lightyellow:0xffffe0,
161 mediumaquamarine:0x66cdaa,
163 mediumorchid:0xba55d3,
164 mediumpurple:0x9370d8,
165 mediumseagreen:0x3cb371,
166 mediumslateblue:0x7b68ee,
167 mediumspringgreen:0x00fa9a,
168 mediumturquoise:0x48d1cc,
169 mediumvioletred:0xc71585,
170 midnightblue:0x191970,
174 navajowhite:0xffdead,
182 palegoldenrod:0xeee8aa,
184 paleturquoise:0xafeeee,
185 palevioletred:0xd87093,
196 saddlebrown:0x8b4513,
207 springgreen:0x00ff7f,
219 yellowgreen:0x9acd32 };
221 public function RuleSet(mins:uint,maxs:uint,redrawCall:Function=null,iconLoadedCallback:Function=null):void {
224 redrawCallback = redrawCall;
225 iconCallback = iconLoadedCallback;
228 // Get styles for an object
230 public function getStyles(obj:Entity, tags:Object, zoom:uint):StyleList {
231 var sl:StyleList=new StyleList();
232 for each (var sc:StyleChooser in choosers) {
233 sc.updateStyles(obj,tags,sl,imageWidths,zoom);
238 // ---------------------------------------------------------------------------------------------------------
239 // Loading stylesheet
241 public function loadFromCSS(str:String):void {
242 if (str.match(/[\s\n\r\t]/)!=null) { parseCSS(str); loaded=true; redrawCallback(); return; }
244 var request:URLRequest=new URLRequest(str+"?"+Math.random());
245 var loader:URLLoader=new URLLoader();
247 request.method=URLRequestMethod.GET;
248 loader.dataFormat = URLLoaderDataFormat.TEXT;
249 loader.addEventListener(Event.COMPLETE, doParseCSS);
250 loader.addEventListener(HTTPStatusEvent.HTTP_STATUS, httpStatusHandler);
251 loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
252 loader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
253 loader.load(request);
256 private function doParseCSS(e:Event):void {
257 parseCSS(e.target.data);
260 private function parseCSS(str:String):void {
263 if (evals.length==0) { redrawCallback(); }
268 // ------------------------------------------------------------------------------------------------
269 // Load all referenced images
270 // ** will duplicate if referenced twice, shouldn't
272 public function loadImages():void {
274 for each (var chooser:StyleChooser in choosers) {
275 for each (var style:Style in chooser.styles) {
276 if (style is PointStyle && PointStyle(style).icon_image ) { filename=PointStyle(style).icon_image; }
277 else if (style is ShapeStyle && ShapeStyle(style).fill_image ) { filename=ShapeStyle(style).fill_image; }
278 else if (style is ShieldStyle && ShieldStyle(style).shield_image) { filename=ShieldStyle(style).shield_image; }
280 if (filename=='square' || filename=='circle') { continue; }
283 var request:URLRequest=new URLRequest(filename);
284 var loader:ExtendedURLLoader=new ExtendedURLLoader();
285 loader.dataFormat=URLLoaderDataFormat.BINARY;
286 loader.info['filename']=filename;
287 loader.addEventListener(Event.COMPLETE, loadedImage, false, 0, true);
288 loader.addEventListener(HTTPStatusEvent.HTTP_STATUS, httpStatusHandler, false, 0, true);
289 loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler, false, 0, true);
290 loader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler, false, 0, true);
291 loader.load(request);
298 private function loadedImage(event:Event):void {
299 var fn:String=event.target.info['filename'];
300 images[fn]=event.target.data;
302 var loader:ExtendedLoader = new ExtendedLoader();
303 loader.info['filename']=fn;
304 loader.contentLoaderInfo.addEventListener(Event.COMPLETE, measureWidth);
305 loader.loadBytes(images[fn]);
308 private function measureWidth(event:Event):void {
309 var fn:String=event.target.loader.info['filename'];
310 imageWidths[fn]=event.target.width;
311 // ** do we need to explicitly remove the loader object now?
314 if (iconsToLoad==0 && iconCallback!=null) { iconCallback(); }
317 private function httpStatusHandler( event:HTTPStatusEvent ):void { }
318 private function securityErrorHandler( event:SecurityErrorEvent ):void { Globals.vars.root.addDebug("securityerrorevent"); }
319 private function ioErrorHandler( event:IOErrorEvent ):void { Globals.vars.root.addDebug("ioerrorevent"); }
321 // ------------------------------------------------------------------------------------------------
324 public function parse(css:String):void {
325 var previous:uint=0; // what was the previous CSS word?
326 var sc:StyleChooser=new StyleChooser(); // currently being assembled
327 choosers=new Array();
330 var o:Object=new Object();
331 while (css.length>0) {
334 if ((o=COMMENT.exec(css))) {
335 css=css.replace(COMMENT,'');
337 // Whitespace (probably only at beginning of file)
338 } else if ((o=WHITESPACE.exec(css))) {
339 css=css.replace(WHITESPACE,'');
341 // Class - .motorway, .builtup, :hover
342 } else if ((o=CLASS.exec(css))) {
343 if (previous==oDECLARATION) { saveChooser(sc); sc=new StyleChooser(); }
345 css=css.replace(CLASS,'');
346 sc.addCondition(new Condition('set',o[1]));
349 // Not class - !.motorway, !.builtup, !:hover
350 } else if ((o=NOT_CLASS.exec(css))) {
351 if (previous==oDECLARATION) { saveChooser(sc); sc=new StyleChooser(); }
353 css=css.replace(NOT_CLASS,'');
354 sc.addCondition(new Condition('unset',o[1]));
358 } else if ((o=ZOOM.exec(css))) {
359 if (previous!=oOBJECT && previous!=oCONDITION) { sc.newObject(); }
361 css=css.replace(ZOOM,'');
362 var z:Array=parseZoom(o[1]);
363 sc.addZoom(z[0],z[1]);
366 // Grouping - just a comma
367 } else if ((o=GROUP.exec(css))) {
368 css=css.replace(GROUP,'');
372 // Condition - [highway=primary]
373 } else if ((o=CONDITION.exec(css))) {
374 if (previous==oDECLARATION) { saveChooser(sc); sc=new StyleChooser(); }
375 if (previous!=oOBJECT && previous!=oZOOM && previous!=oCONDITION) { sc.newObject(); }
376 css=css.replace(CONDITION,'');
377 sc.addCondition(parseCondition(o[1]) as Condition);
380 // Object - way, node, relation
381 } else if ((o=OBJECT.exec(css))) {
382 if (previous==oDECLARATION) { saveChooser(sc); sc=new StyleChooser(); }
384 css=css.replace(OBJECT,'');
388 // Declaration - {...}
389 } else if ((o=DECLARATION.exec(css))) {
390 css=css.replace(DECLARATION,'');
391 sc.addStyles(parseDeclaration(o[1]));
392 previous=oDECLARATION;
395 } else if ((o=UNKNOWN.exec(css))) {
396 css=css.replace(UNKNOWN,'');
397 Globals.vars.root.addDebug("unknown: "+o[1]);
398 // ** do some debugging with o[1]
401 Globals.vars.root.addDebug("choked on "+css);
405 if (previous==oDECLARATION) { saveChooser(sc); sc=new StyleChooser(); }
408 private function saveChooser(sc:StyleChooser):void {
412 private function saveEval(expr:String):Eval {
414 var e:Eval=new Eval(expr);
415 e.addEventListener("swf_loaded",evalLoaded);
420 private function evalLoaded(e:Event):void {
422 if (evalsToLoad==0) { redrawCallback(); }
425 // Parse declaration string into list of styles
427 private function parseDeclaration(s:String):Array {
429 var t:Object=new Object();
430 var o:Object=new Object();
431 var a:String, k:String, v:*;
434 var ss:ShapeStyle =new ShapeStyle() ;
435 var ps:PointStyle =new PointStyle() ;
436 var ts:TextStyle =new TextStyle() ;
437 var hs:ShieldStyle=new ShieldStyle();
438 var xs:InstructionStyle=new InstructionStyle();
440 for each (a in s.split(';')) {
441 if ((o=ASSIGNMENT_EVAL.exec(a))) { t[o[1].replace(DASH,'_')]=saveEval(o[2]); }
442 else if ((o=ASSIGNMENT.exec(a))) { t[o[1].replace(DASH,'_')]=o[2]; }
443 else if ((o=SET_TAG_EVAL.exec(a))) { xs.addSetTag(o[1],saveEval(o[2])); }
444 else if ((o=SET_TAG.exec(a))) { xs.addSetTag(o[1],o[2]); }
445 else if ((o=SET_TAG_TRUE.exec(a))) { xs.addSetTag(o[1],true); }
446 else if ((o=EXIT.exec(a))) { xs.setPropertyFromString('breaker',true); }
451 if (t['z_index']) { sub=Number(t['z_index']); delete t['z_index']; }
452 ss.sublayer=ps.sublayer=ts.sublayer=hs.sublayer=sub;
456 var inter:Boolean=true;
457 if (t['interactive']) { inter=t['interactive'].match(FALSE) ? false : true; delete t['interactive']; }
458 ss.interactive=ps.interactive=ts.interactive=hs.interactive=xs.interactive=inter;
460 // Munge special values
461 if (t['font_weight'] ) { t['font_bold' ] = t['font_weight' ].match(BOLD ) ? true : false; delete t['font_weight']; }
462 if (t['font_style'] ) { t['font_italic'] = t['font_style' ].match(ITALIC) ? true : false; delete t['font_style']; }
463 if (t['text_decoration']) { t['font_underline'] = t['text_decoration'].match(UNDERLINE) ? true : false; delete t['text_decoration']; }
464 if (t['text_position'] ) { t['text_center'] = t['text_position' ].match(CENTER) ? true : false; delete t['text_position']; }
465 if (t['text_transform']) {
466 // ** needs other transformations, e.g. lower-case, sentence-case
467 if (t['text_transform'].match(CAPS)) { t['font_caps']=true; } else { t['font_caps']=false; }
468 delete t['text_transform'];
471 // ** Do compound settings (e.g. line: 5px dotted blue;)
473 // Assign each property to the appropriate style
476 // ** also do units, e.g. px/pt/m
477 if (a.match(COLOR)) { v = parseCSSColor(t[a]); }
481 if (ss.hasOwnProperty(a)) { ss.setPropertyFromString(a,v); }
482 else if (ps.hasOwnProperty(a)) { ps.setPropertyFromString(a,v); }
483 else if (ts.hasOwnProperty(a)) { ts.setPropertyFromString(a,v); }
484 else if (hs.hasOwnProperty(a)) { hs.setPropertyFromString(a,v); }
487 // Add each style to list
488 if (ss.edited) { styles.push(ss); }
489 if (ps.edited) { styles.push(ps); }
490 if (ts.edited) { styles.push(ts); }
491 if (hs.edited) { styles.push(hs); }
492 if (xs.edited) { styles.push(xs); }
496 private function parseZoom(s:String):Array {
497 var o:Object=new Object();
498 if ((o=ZOOM_MINMAX.exec(s))) { return [o[1],o[2]]; }
499 else if ((o=ZOOM_MIN.exec(s))) { return [o[1],maxscale]; }
500 else if ((o=ZOOM_MAX.exec(s))) { return [minscale,o[1]]; }
501 else if ((o=ZOOM_SINGLE.exec(s))) { return [o[1],o[1]]; }
505 private function parseCondition(s:String):Object {
506 var o:Object=new Object();
507 if ((o=CONDITION_TRUE.exec(s))) { return new Condition('true' ,o[1]); }
508 else if ((o=CONDITION_FALSE.exec(s))) { return new Condition('false',o[1]); }
509 else if ((o=CONDITION_SET.exec(s))) { return new Condition('set' ,o[1]); }
510 else if ((o=CONDITION_UNSET.exec(s))) { return new Condition('unset',o[1]); }
511 else if ((o=CONDITION_NE.exec(s))) { return new Condition('ne' ,o[1],o[2]); }
512 else if ((o=CONDITION_GT.exec(s))) { return new Condition('>' ,o[1],o[2]); }
513 else if ((o=CONDITION_GE.exec(s))) { return new Condition('>=' ,o[1],o[2]); }
514 else if ((o=CONDITION_LT.exec(s))) { return new Condition('<' ,o[1],o[2]); }
515 else if ((o=CONDITION_LE.exec(s))) { return new Condition('<=' ,o[1],o[2]); }
516 else if ((o=CONDITION_REGEX.exec(s))) { return new Condition('regex',o[1],o[2]); }
517 else if ((o=CONDITION_EQ.exec(s))) { return new Condition('eq' ,o[1],o[2]); }
521 public static function parseCSSColor(colorStr:String):uint {
522 colorStr = colorStr.toLowerCase();
523 if (CSSCOLORS[colorStr]) {
524 return CSSCOLORS[colorStr];
526 var match:Object = HEX.exec(colorStr);
528 if ( match[1].length == 3) {
529 // repeat digits. #abc => 0xaabbcc
530 return Number("0x"+match[1].charAt(0)+match[1].charAt(0)+
531 match[1].charAt(1)+match[1].charAt(1)+
532 match[1].charAt(2)+match[1].charAt(2));
533 } else if ( match[1].length == 6) {
534 return Number("0x"+match[1]);
536 return Number("0x000000"); //as good as any