summaryrefslogtreecommitdiff
path: root/libbuild/WebCat-swf/src/pt/tumba/parser/swf/Shape.java
blob: f13c49fddc1f970d6bb7006555b04ee61610444c (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
package pt.tumba.parser.swf;

import com.anotherbigidea.flash.SWFConstants;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

/**
 *  A Shape Symbol
 *
 *@author     unknown
 *@created    15 de Setembro de 2002
 */
public class Shape extends Symbol {
    /**
     *  Description of the Class
     *
     *@author     unknown
     *@created    15 de Setembro de 2002
     */
    public abstract static class Element {
    }


    /**
     *  Description of the Class
     *
     *@author     unknown
     *@created    15 de Setembro de 2002
     */
    public abstract static class Style extends Shape.Element {
    }


    /**
     *  Description of the Class
     *
     *@author     unknown
     *@created    15 de Setembro de 2002
     */
    public abstract static class FillStyle extends Shape.Style {
    }


    /**
     *  Description of the Class
     *
     *@author     unknown
     *@created    15 de Setembro de 2002
     */
    public static class ColorFill extends Shape.FillStyle {
        /**
         *  Description of the Field
         */
        protected Color color;


        /**
         *@return    may be Color or AlphaColor
         */
        public Color getColor() {
            return color;
        }


        /**
         *  Sets the color attribute of the ColorFill object
         *
         *@param  color  The new color value
         */
        public void setColor(Color color) {
            this.color = color;
        }


        /**
         *  Constructor for the ColorFill object
         *
         *@param  color  Description of the Parameter
         */
        public ColorFill(Color color) {
            this.color = color;
        }
    }


    /**
     *  Description of the Class
     *
     *@author     unknown
     *@created    15 de Setembro de 2002
     */
    public static class ImageFill extends Shape.FillStyle {
        /**
         *  Description of the Field
         */
        protected Symbol image;
        /**
         *  Description of the Field
         */
        protected Transform matrix;
        /**
         *  Description of the Field
         */
        protected boolean clipped;


        /**
         *  Gets the image attribute of the ImageFill object
         *
         *@return    The image value
         */
        public Symbol getImage() {
            return image;
        }


        /**
         *  Gets the transform attribute of the ImageFill object
         *
         *@return    The transform value
         */
        public Transform getTransform() {
            return matrix;
        }


        /**
         *  Gets the clipped attribute of the ImageFill object
         *
         *@return    The clipped value
         */
        public boolean isClipped() {
            return clipped;
        }


        /**
         *  Sets the image attribute of the ImageFill object
         *
         *@param  image  The new image value
         */
        public void setImage(Symbol image) {
            this.image = image;
        }


        /**
         *  Sets the transform attribute of the ImageFill object
         *
         *@param  matrix  The new transform value
         */
        public void setTransform(Transform matrix) {
            this.matrix = matrix;
        }


        /**
         *  Sets the clipped attribute of the ImageFill object
         *
         *@param  isClipped  The new clipped value
         */
        public void setClipped(boolean isClipped) {
            clipped = isClipped;
        }


        /**
         *  Constructor for the ImageFill object
         *
         *@param  image      Description of the Parameter
         *@param  matrix     Description of the Parameter
         *@param  isClipped  Description of the Parameter
         */
        public ImageFill(Symbol image, Transform matrix, boolean isClipped) {
            this.image = image;
            this.matrix = matrix;
            this.clipped = isClipped;
        }
    }


    /**
     *  Description of the Class
     *
     *@author     unknown
     *@created    15 de Setembro de 2002
     */
    public static class GradientFill extends Shape.FillStyle {
        /**
         *  Description of the Field
         */
        protected Color[] colors;
        /**
         *  Description of the Field
         */
        protected int[] ratios;
        /**
         *  Description of the Field
         */
        protected Transform matrix;
        /**
         *  Description of the Field
         */
        protected boolean radial;


        /**
         *  Gets the colors attribute of the GradientFill object
         *
         *@return    The colors value
         */
        public Color[] getColors() {
            return colors;
        }


        /**
         *  Gets the transform attribute of the GradientFill object
         *
         *@return    The transform value
         */
        public Transform getTransform() {
            return matrix;
        }


        /**
         *  Gets the ratios attribute of the GradientFill object
         *
         *@return    The ratios value
         */
        public int[] getRatios() {
            return ratios;
        }


        /**
         *  Gets the radial attribute of the GradientFill object
         *
         *@return    The radial value
         */
        public boolean isRadial() {
            return radial;
        }


        /**
         *  Sets the colors attribute of the GradientFill object
         *
         *@param  colors  The new colors value
         */
        public void setColors(Color[] colors) {
            this.colors = colors;
        }


        /**
         *  Sets the ratios attribute of the GradientFill object
         *
         *@param  ratios  The new ratios value
         */
        public void setRatios(int[] ratios) {
            this.ratios = ratios;
        }


        /**
         *  Sets the transform attribute of the GradientFill object
         *
         *@param  matrix  The new transform value
         */
        public void setTransform(Transform matrix) {
            this.matrix = matrix;
        }


        /**
         *  Sets the radial attribute of the GradientFill object
         *
         *@param  isRadial  The new radial value
         */
        public void setRadial(boolean isRadial) {
            this.radial = isRadial;
        }


        /**
         *  Constructor for the GradientFill object
         *
         *@param  colors    Description of the Parameter
         *@param  ratios    Description of the Parameter
         *@param  matrix    Description of the Parameter
         *@param  isRadial  Description of the Parameter
         */
        public GradientFill(Color[] colors, int[] ratios,
                Transform matrix, boolean isRadial) {
            this.colors = colors;
            this.matrix = matrix;
            this.radial = isRadial;
            this.ratios = ratios;
        }
    }


    /**
     *  Description of the Class
     *
     *@author     unknown
     *@created    15 de Setembro de 2002
     */
    public static class LineStyle extends Shape.Style {
        /**
         *  Description of the Field
         */
        protected double width;
        /**
         *  Description of the Field
         */
        protected Color color;


        /**
         *  Gets the width attribute of the LineStyle object
         *
         *@return    The width value
         */
        public double getWidth() {
            return width;
        }


        /**
         *  Gets the color attribute of the LineStyle object
         *
         *@return    The color value
         */
        public Color getColor() {
            return color;
        }


        /**
         *  Sets the width attribute of the LineStyle object
         *
         *@param  width  The new width value
         */
        public void setWidth(double width) {
            this.width = width;
        }


        /**
         *  Sets the color attribute of the LineStyle object
         *
         *@param  color  The new color value
         */
        public void setColor(Color color) {
            this.color = color;
        }


        /**
         *  Constructor for the LineStyle object
         *
         *@param  width  Description of the Parameter
         *@param  color  Description of the Parameter
         */
        public LineStyle(double width, Color color) {
            this.width = width;
            this.color = color;
        }
    }


    /**
     *  Description of the Class
     *
     *@author     unknown
     *@created    15 de Setembro de 2002
     */
    public abstract static class SetStyle extends Shape.Element {
        /**
         *  Description of the Field
         */
        protected int index;


        /**
         *  Gets the styleIndex attribute of the SetStyle object
         *
         *@return    The styleIndex value
         */
        public int getStyleIndex() {
            return index;
        }


        /**
         *  Sets the styleIndex attribute of the SetStyle object
         *
         *@param  index  The new styleIndex value
         */
        public void setStyleIndex(int index) {
            this.index = index;
        }


        /**
         *  Constructor for the SetStyle object
         *
         *@param  index  Description of the Parameter
         */
        protected SetStyle(int index) {
            this.index = index;
        }
    }


    /**
     *  Description of the Class
     *
     *@author     unknown
     *@created    15 de Setembro de 2002
     */
    public abstract static class SetFillStyle extends Shape.SetStyle {
        /**
         *  Constructor for the SetFillStyle object
         *
         *@param  index  Description of the Parameter
         */
        protected SetFillStyle(int index) {
            super(index);
        }
    }


    /**
     *  Description of the Class
     *
     *@author     unknown
     *@created    15 de Setembro de 2002
     */
    public static class SetLeftFillStyle extends Shape.SetFillStyle {
        /**
         *  Constructor for the SetLeftFillStyle object
         *
         *@param  index  Description of the Parameter
         */
        public SetLeftFillStyle(int index) {
            super(index);
        }
    }


    /**
     *  Description of the Class
     *
     *@author     unknown
     *@created    15 de Setembro de 2002
     */
    public static class SetRightFillStyle extends Shape.SetFillStyle {
        /**
         *  Constructor for the SetRightFillStyle object
         *
         *@param  index  Description of the Parameter
         */
        public SetRightFillStyle(int index) {
            super(index);
        }
    }


    /**
     *  Description of the Class
     *
     *@author     unknown
     *@created    15 de Setembro de 2002
     */
    public static class SetLineStyle extends Shape.SetStyle {
        /**
         *  Constructor for the SetLineStyle object
         *
         *@param  index  Description of the Parameter
         */
        public SetLineStyle(int index) {
            super(index);
        }
    }


    /**
     *  Description of the Class
     *
     *@author     unknown
     *@created    15 de Setembro de 2002
     */
    public abstract static class Vector extends Shape.Element {
        /**
         *  Description of the Field
         */
        protected double x, y;


        /**
         *  Gets the x attribute of the Vector object
         *
         *@return    The x value
         */
        public double getX() {
            return x;
        }


        /**
         *  Gets the y attribute of the Vector object
         *
         *@return    The y value
         */
        public double getY() {
            return y;
        }


        /**
         *  Sets the x attribute of the Vector object
         *
         *@param  x  The new x value
         */
        public void setX(double x) {
            this.x = x;
        }


        /**
         *  Sets the y attribute of the Vector object
         *
         *@param  y  The new y value
         */
        public void setY(double y) {
            this.y = y;
        }


        /**
         *  Constructor for the Vector object
         *
         *@param  x  Description of the Parameter
         *@param  y  Description of the Parameter
         */
        protected Vector(double x, double y) {
            this.x = x;
            this.y = y;
        }
    }


    /**
     *  Description of the Class
     *
     *@author     unknown
     *@created    15 de Setembro de 2002
     */
    public static class Move extends Shape.Vector {
        /**
         *  Constructor for the Move object
         *
         *@param  x  Description of the Parameter
         *@param  y  Description of the Parameter
         */
        public Move(double x, double y) {
            super(x, y);
        }
    }


    /**
     *  Description of the Class
     *
     *@author     unknown
     *@created    15 de Setembro de 2002
     */
    public static class Line extends Shape.Vector {
        /**
         *  Constructor for the Line object
         *
         *@param  x  Description of the Parameter
         *@param  y  Description of the Parameter
         */
        public Line(double x, double y) {
            super(x, y);
        }
    }


    /**
     *  Description of the Class
     *
     *@author     unknown
     *@created    15 de Setembro de 2002
     */
    public static class Curve extends Shape.Vector {
        /**
         *  Description of the Field
         */
        protected double cx, cy;


        /**
         *  Gets the controlX attribute of the Curve object
         *
         *@return    The controlX value
         */
        public double getControlX() {
            return cx;
        }


        /**
         *  Gets the controlY attribute of the Curve object
         *
         *@return    The controlY value
         */
        public double getControlY() {
            return cy;
        }


        /**
         *  Sets the controlX attribute of the Curve object
         *
         *@param  cx  The new controlX value
         */
        public void setControlX(double cx) {
            this.cx = cx;
        }


        /**
         *  Sets the controlY attribute of the Curve object
         *
         *@param  cy  The new controlY value
         */
        public void setControlY(double cy) {
            this.cy = cy;
        }


        /**
         *  Constructor for the Curve object
         *
         *@param  x         Description of the Parameter
         *@param  y         Description of the Parameter
         *@param  controlX  Description of the Parameter
         *@param  controlY  Description of the Parameter
         */
        public Curve(double x, double y, double controlX, double controlY) {
            super(x, y);
            this.cx = controlX;
            this.cy = controlY;
        }
    }


    /**
     *  Description of the Field
     */
    protected List elements = new ArrayList();
    /**
     *  Description of the Field
     */
    protected double minX, maxX, minY, maxY;
    //bounding rectangle
    /**
     *  Description of the Field
     */
    protected boolean hasAlpha = false;
    /**
     *  Description of the Field
     */
    protected double maxLineWidth;
    /**
     *  Description of the Field
     */
    protected double currx, curry;


    /**
     *  Constructor for the Shape object
     */
    public Shape() { }


    /**
     *  Get the bounding rectangle as a double[4] - (min-X,min-Y,max-X,max-Y)
     *
     *@return    The boundingRectangle value
     */
    public double[] getBoundingRectangle() {
        return new double[]{minX, minY, maxX, maxY};
    }


    /**
     *  Set the bounding rectangle. This will be automatically calculated as the
     *  geometry vectors are defined and this rectangle will be enlarged if it
     *  does not contain all the vectors.
     *
     *@param  minx  The new boundingRectangle value
     *@param  minY  The new boundingRectangle value
     *@param  maxX  The new boundingRectangle value
     *@param  maxY  The new boundingRectangle value
     */
    public void setBoundingRectangle(double minX, double minY,
            double maxX, double maxY) {
        this.minX = minX;
        this.minY = minY;
        this.maxX = maxX;
        this.maxY = maxY;
    }


    /**
     *  Access the list of shape elements Each object is a subclass of
     *  Shape.Element
     *
     *@return    The shapeElements value
     */
    public List getShapeElements() {
        return elements;
    }


    /**
     *  Define a line style
     *
     *@param  color  if null then black is assumed
     *@param  width  Description of the Parameter
     */
    public void defineLineStyle(double width, Color color2) {
        Color color = color2;
        if (color == null) {
            color = new Color(0, 0, 0);
        }

        LineStyle style = new LineStyle(width, color);

        if (maxLineWidth < width) {
            maxLineWidth = width;
        }

        if (color instanceof AlphaColor) {
            hasAlpha = true;
        }

        elements.add(style);
    }


    /**
     *  Define a color fill
     *
     *@param  color  if null then white is assumed
     */
    public void defineFillStyle(Color color2) {
        Color color = color2;
        if (color == null) {
            color = new Color(255, 255, 255);
        }
        ColorFill fill = new ColorFill(color);

        if (color instanceof AlphaColor) {
            hasAlpha = true;
        }

        elements.add(fill);
    }


    /**
     *  Define an image fill
     *
     *@param  image    Description of the Parameter
     *@param  matrix   Description of the Parameter
     *@param  clipped  Description of the Parameter
     */
    public void defineFillStyle(Symbol image, Transform matrix, boolean clipped) {
        ImageFill fill = new ImageFill(image, matrix, clipped);

        elements.add(fill);
    }


    /**
     *  Define a gradient fill
     *
     *@param  colors  Description of the Parameter
     *@param  ratios  Description of the Parameter
     *@param  matrix  Description of the Parameter
     *@param  radial  Description of the Parameter
     */
    public void defineFillStyle(Color[] colors, int[] ratios,
            Transform matrix, boolean radial) {
        GradientFill fill = new GradientFill(colors, ratios, matrix, radial);

        elements.add(fill);

        for (int i = 0; i < colors.length; i++) {
            if (colors[i] == null) {
                continue;
            }
            if (colors[i] instanceof AlphaColor) {
                hasAlpha = true;
            }
        }
    }


    /**
     *  Set the left fill style
     *
     *@param  index  The new leftFillStyle value
     */
    public void setLeftFillStyle(int index) {
        SetLeftFillStyle fill = new SetLeftFillStyle(index);

        elements.add(fill);
    }


    /**
     *  Set the right fill style
     *
     *@param  index  The new rightFillStyle value
     */
    public void setRightFillStyle(int index) {
        SetRightFillStyle fill = new SetRightFillStyle(index);

        elements.add(fill);
    }


    /**
     *  Set the line style
     *
     *@param  index  The new lineStyle value
     */
    public void setLineStyle(int index) {
        SetLineStyle style = new SetLineStyle(index);

        elements.add(style);
    }


    /**
     *  Move the pen without drawing any line
     *
     *@param  x  Description of the Parameter
     *@param  y  Description of the Parameter
     */
    public void move(double x, double y) {
        Move move = new Move(x, y);

        if (x < minX) {
            minX = x;
        }
        if (y < minY) {
            minY = y;
        }
        if (x > maxX) {
            maxX = x;
        }
        if (y > maxY) {
            maxY = y;
        }

        elements.add(move);
    }


    /**
     *  Draw a line in the current line style (if any)
     *
     *@param  x  Description of the Parameter
     *@param  y  Description of the Parameter
     */
    public void line(double x, double y) {
        Line line = new Line(x, y);

        if (x < minX) {
            minX = x;
        }
        if (y < minY) {
            minY = y;
        }
        if (x > maxX) {
            maxX = x;
        }
        if (y > maxY) {
            maxY = y;
        }

        elements.add(line);
    }


    /**
     *  Draw a curve in the current line style (if any)
     *
     *@param  x         Description of the Parameter
     *@param  y         Description of the Parameter
     *@param  controlX  Description of the Parameter
     *@param  controlY  Description of the Parameter
     */
    public void curve(double x, double y, double controlX, double controlY) {
        Curve curve = new Curve(x, y, controlX, controlY);

        if (x < minX) {
            minX = x;
        }
        if (y < minY) {
            minY = y;
        }
        if (x > maxX) {
            maxX = x;
        }
        if (y > maxY) {
            maxY = y;
        }

        if (controlX < minX) {
            minX = controlX;
        }
        if (controlY < minY) {
            minY = controlY;
        }
        if (controlX > maxX) {
            maxX = controlX;
        }
        if (controlY > maxY) {
            maxY = controlY;
        }

        elements.add(curve);
    }


    /**
     *  Description of the Method
     *
     *@param  movie             Description of the Parameter
     *@param  timelineWriter    Description of the Parameter
     *@param  definitionWriter  Description of the Parameter
     *@return                   Description of the Return Value
     *@exception  IOException   Description of the Exception
     */
    protected int defineSymbol(Movie movie,
            SWFTagTypes timelineWriter,
            SWFTagTypes definitionWriter)
             throws IOException {
        currx = 0.0;
        curry = 0.0;

        predefineImageFills(movie, timelineWriter, definitionWriter);

        int id = getNextId(movie);

        Rect outline = getRect();

        SWFShape shape = hasAlpha ?
                definitionWriter.tagDefineShape3(id, outline) :
                definitionWriter.tagDefineShape2(id, outline);

        writeShape(shape);

        return id;
    }


    /**
     *  Gets the rect attribute of the Shape object
     *
     *@return    The rect value
     */
    protected Rect getRect() {
        double adjust = maxLineWidth / 2.0;

        Rect outline = new Rect((int) (minX * SWFConstants.TWIPS - adjust * SWFConstants.TWIPS),
                (int) (minY * SWFConstants.TWIPS - adjust * SWFConstants.TWIPS),
                (int) (maxX * SWFConstants.TWIPS + adjust * SWFConstants.TWIPS),
                (int) (maxY * SWFConstants.TWIPS + adjust * SWFConstants.TWIPS));

        return outline;
    }


    /**
     *  Description of the Method
     *
     *@param  movie             Description of the Parameter
     *@param  timelineWriter    Description of the Parameter
     *@param  definitionWriter  Description of the Parameter
     *@exception  IOException   Description of the Exception
     */
    protected void predefineImageFills(Movie movie,
            SWFTagTypes timelineWriter,
            SWFTagTypes definitionWriter)
             throws IOException {
        //--Make sure any image fills are defined prior to the shape
        for (Iterator it = elements.iterator(); it.hasNext(); ) {
            Object el = it.next();

            if (el instanceof Shape.ImageFill) {
                Symbol image = ((Shape.ImageFill) el).getImage();

                if (image != null) {
                    image.define(movie,
                            timelineWriter,
                            definitionWriter);
                }
            }
        }
    }


    /**
     *  Description of the Method
     *
     *@param  shape            Description of the Parameter
     *@exception  IOException  Description of the Exception
     */
    protected void writeShape(SWFShape shape) throws IOException {
        for (Iterator it = elements.iterator(); it.hasNext(); ) {
            Object el = it.next();

            if (el instanceof Shape.ColorFill) {
                Shape.ColorFill fill = (Shape.ColorFill) el;
                shape.defineFillStyle(fill.getColor());
            } else if (el instanceof Shape.ImageFill) {
                Shape.ImageFill fill = (Shape.ImageFill) el;

                Symbol image = fill.getImage();
                int imgId = (image != null) ? image.getId() : 65535;

                shape.defineFillStyle(imgId, fill.getTransform(), fill.isClipped());
            } else if (el instanceof Shape.GradientFill) {
                Shape.GradientFill fill = (Shape.GradientFill) el;

                shape.defineFillStyle(fill.getTransform(),
                        fill.getRatios(),
                        fill.getColors(),
                        fill.isRadial());
            } else if (el instanceof Shape.LineStyle) {
                Shape.LineStyle style = (Shape.LineStyle) el;

                shape.defineLineStyle((int) (style.getWidth() * SWFConstants.TWIPS),
                        style.getColor());
            } else if (el instanceof Shape.SetLeftFillStyle) {
                Shape.SetLeftFillStyle style = (Shape.SetLeftFillStyle) el;
                shape.setFillStyle0(style.getStyleIndex());
            } else if (el instanceof Shape.SetRightFillStyle) {
                Shape.SetRightFillStyle style = (Shape.SetRightFillStyle) el;
                shape.setFillStyle1(style.getStyleIndex());
            } else if (el instanceof Shape.SetLineStyle) {
                Shape.SetLineStyle style = (Shape.SetLineStyle) el;
                shape.setLineStyle(style.getStyleIndex());
            } else {
                writeVector(shape, el);
            }
        }

        shape.done();
    }


    /**
     *  Description of the Method
     *
     *@param  vecs             Description of the Parameter
     *@param  el               Description of the Parameter
     *@exception  IOException  Description of the Exception
     */
    protected void writeVector(SWFVectors vecs, Object el) throws IOException {
        if (el instanceof Shape.Move) {
            Shape.Move move = (Shape.Move) el;

            currx = move.getX() * SWFConstants.TWIPS;
            curry = move.getY() * SWFConstants.TWIPS;

            int x = (int) currx;
            int y = (int) curry;

            vecs.move(x, y);

            //System.out.println( "M: " + x + " " + y );
        } else if (el instanceof Shape.Line) {
            Shape.Line line = (Shape.Line) el;

            double xx = line.getX() * SWFConstants.TWIPS;
            double yy = line.getY() * SWFConstants.TWIPS;

            int dx = (int) (xx - currx);
            int dy = (int) (yy - curry);

            vecs.line(dx, dy);

            //System.out.println( "currx=" + currx + " curry=" + curry + " xx=" + xx + " yy=" + yy + " (xx - currx)=" + (xx - currx) + "  (yy - curry)=" + (yy - curry) );
            //System.out.println( "L: " + dx + " " + dy );

            currx = xx;
            curry = yy;
        } else if (el instanceof Shape.Curve) {
            Shape.Curve curve = (Shape.Curve) el;

            double xx = curve.getX() * SWFConstants.TWIPS;
            double yy = curve.getY() * SWFConstants.TWIPS;
            double cxx = curve.getControlX() * SWFConstants.TWIPS;
            double cyy = curve.getControlY() * SWFConstants.TWIPS;

            int dx = (int) (xx - cxx);
            int dy = (int) (yy - cyy);
            int cx = (int) (cxx - currx);
            int cy = (int) (cyy - curry);

            vecs.curve(cx, cy, dx, dy);

            currx = xx;
            curry = yy;

            //System.out.println( "C: " + cx + " " + cy + " " + dx + " " + dy );
        }
    }


    /**
     *  Description of the Method
     *
     *@param  vecs             Description of the Parameter
     *@exception  IOException  Description of the Exception
     */
    protected void writeGlyph(SWFVectors vecs) throws IOException {
        currx = 0.0;
        curry = 0.0;

        for (Iterator it = elements.iterator(); it.hasNext(); ) {
            writeVector(vecs, it.next());
        }

        vecs.done();
    }
}