OLD | NEW |
1 | 1 |
2 import 'package:sky/framework/rendering/node.dart'; | 2 import 'package:sky/framework/rendering/object.dart'; |
3 import 'package:sky/framework/rendering/box.dart'; | 3 import 'package:sky/framework/rendering/box.dart'; |
4 import 'dart:sky' as sky; | 4 import 'dart:sky' as sky; |
5 | 5 |
6 typedef void Logger (String s); | 6 typedef void Logger (String s); |
7 | 7 |
8 class TestDisplayList extends RenderNodeDisplayList { | 8 class TestDisplayList extends RenderObjectDisplayList { |
9 TestDisplayList(double width, double height, this.logger, { this.indent: '' })
: | 9 TestDisplayList(double width, double height, this.logger, { this.indent: '' })
: |
10 this.width = width, | 10 this.width = width, |
11 this.height = height, | 11 this.height = height, |
12 super(width, height) { | 12 super(width, height) { |
13 log("TestDisplayList() constructor: $width x $height"); | 13 log("TestDisplayList() constructor: $width x $height"); |
14 } | 14 } |
15 | 15 |
16 final String indent; | 16 final String indent; |
17 final double width; | 17 final double width; |
18 final double height; | 18 final double height; |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 } | 79 } |
80 | 80 |
81 void drawCircle(double x, double y, double radius, sky.Paint paint) { | 81 void drawCircle(double x, double y, double radius, sky.Paint paint) { |
82 log("drawCircle($x, $y, $radius, ${explainPaint(paint)})"); | 82 log("drawCircle($x, $y, $radius, ${explainPaint(paint)})"); |
83 } | 83 } |
84 | 84 |
85 void drawPath(sky.Path path, sky.Paint paint) { | 85 void drawPath(sky.Path path, sky.Paint paint) { |
86 log("drawPath(Path, ${explainPaint(paint)})"); | 86 log("drawPath(Path, ${explainPaint(paint)})"); |
87 } | 87 } |
88 | 88 |
89 void paintChild(RenderNode child, sky.Point position) { | 89 void paintChild(RenderObject child, sky.Point position) { |
90 log("paintChild at ${position.x},${position.y}"); | 90 log("paintChild at ${position.x},${position.y}"); |
91 child.paint(new TestDisplayList(width, height, logger, indent: "$indent |")
); | 91 child.paint(new TestDisplayList(width, height, logger, indent: "$indent |")
); |
92 } | 92 } |
93 } | 93 } |
94 | 94 |
95 class TestView extends RenderView { | 95 class TestView extends RenderView { |
96 | 96 |
97 TestView({ | 97 TestView({ |
98 RenderBox child, | 98 RenderBox child, |
99 Duration timeForRotation | 99 Duration timeForRotation |
100 }) : super(child: child, timeForRotation: timeForRotation) { | 100 }) : super(child: child, timeForRotation: timeForRotation) { |
101 print("TestView enabled"); | 101 print("TestView enabled"); |
102 } | 102 } |
103 | 103 |
104 int frame = 0; | 104 int frame = 0; |
105 | 105 |
106 String lastPaint = ''; | 106 String lastPaint = ''; |
107 void log(String s) { | 107 void log(String s) { |
108 lastPaint += "\n$s"; | 108 lastPaint += "\n$s"; |
109 } | 109 } |
110 | 110 |
111 void paintFrame() { | 111 void paintFrame() { |
112 RenderNode.debugDoingPaint = true; | 112 RenderObject.debugDoingPaint = true; |
113 frame += 1; | 113 frame += 1; |
114 log("PAINT FOR FRAME #${frame} ---------------------------------------------
-"); | 114 log("PAINT FOR FRAME #${frame} ---------------------------------------------
-"); |
115 var canvas = new TestDisplayList(sky.view.width, sky.view.height, log, inden
t: "${frame} |"); | 115 var canvas = new TestDisplayList(sky.view.width, sky.view.height, log, inden
t: "${frame} |"); |
116 paint(canvas); | 116 paint(canvas); |
117 log("-----------------------------------------------------------------------
-"); | 117 log("-----------------------------------------------------------------------
-"); |
118 RenderNode.debugDoingPaint = false; | 118 RenderObject.debugDoingPaint = false; |
119 } | 119 } |
120 | 120 |
121 } | 121 } |
122 | 122 |
123 class TestApp { | 123 class TestApp { |
124 | 124 |
125 TestApp(RenderBox root) { | 125 TestApp(RenderBox root) { |
126 _renderView = new TestView(child: root); | 126 _renderView = new TestView(child: root); |
127 _renderView.attach(); | 127 _renderView.attach(); |
128 _renderView.layout(new ViewConstraints(width: sky.view.width, height: sky.vi
ew.height)); | 128 _renderView.layout(new ViewConstraints(width: sky.view.width, height: sky.vi
ew.height)); |
129 _renderView.paintFrame(); | 129 _renderView.paintFrame(); |
130 print(_renderView.lastPaint); // TODO(ianh): figure out how to make this fit
the unit testing framework better | 130 print(_renderView.lastPaint); // TODO(ianh): figure out how to make this fit
the unit testing framework better |
131 } | 131 } |
132 | 132 |
133 RenderView _renderView; | 133 RenderView _renderView; |
134 | 134 |
135 RenderBox get root => _renderView.child; | 135 RenderBox get root => _renderView.child; |
136 void set root(RenderBox value) { | 136 void set root(RenderBox value) { |
137 _renderView.child = value; | 137 _renderView.child = value; |
138 } | 138 } |
139 void _beginFrame(double timeStamp) { | 139 void _beginFrame(double timeStamp) { |
140 RenderNode.flushLayout(); | 140 RenderObject.flushLayout(); |
141 _renderView.paintFrame(); | 141 _renderView.paintFrame(); |
142 print(_renderView.lastPaint); // TODO(ianh): figure out how to make this fit
the unit testing framework better | 142 print(_renderView.lastPaint); // TODO(ianh): figure out how to make this fit
the unit testing framework better |
143 } | 143 } |
144 | 144 |
145 } | 145 } |
OLD | NEW |