FileDocCategorySizeDatePackage
JavaBlitter.javaAPI DocAndroid 1.5 API20606Wed May 06 22:41:54 BST 2009org.apache.harmony.awt.gl.render

JavaBlitter

public class JavaBlitter extends Object implements Blitter
Java implenetation of the Blitter interface. Using when we can't draw images natively.

Fields Summary
static byte[]
mulLUT
Instead of multiplication and division we are using values from Lookup tables.
static byte[]
divLUT
static final int
AlphaCompositeMode
static final int
XORMode
static final JavaBlitter
inst
Constructors Summary
Methods Summary
voidalphaCompose(int srcX, int srcY, java.awt.image.ColorModel srcCM, java.awt.image.Raster srcRast, int dstX, int dstY, java.awt.image.ColorModel dstCM, java.awt.image.WritableRaster dstRast, int width, int height, int rule, float alpha, java.awt.Color bgcolor)


        Object srcPixel, dstPixel;
        int srcConstAllpha = (int)(alpha * 255 + 0.5f);
        int srcRGB, dstRGB = 0;

        if(bgcolor != null){
            dstRGB = bgcolor.getRGB();
        }

        for(int sy = srcY, dy = dstY, srcYMax = srcY + height; sy < srcYMax; sy++, dy++){
            for(int sx = srcX, dx = dstX, srcXMax = srcX + width; sx < srcXMax; sx++, dx++){
                srcPixel = srcRast.getDataElements(sx, sy, null);
                srcRGB = srcCM.getRGB(srcPixel);
                if(bgcolor == null){
                    dstPixel = dstRast.getDataElements(dx, dy, null);
                    dstRGB = dstCM.getRGB(dstPixel);
                }

                dstRGB = compose(srcRGB, srcCM.isAlphaPremultiplied(),
                        dstRGB, dstCM.hasAlpha(), dstCM.isAlphaPremultiplied(),
                        rule, srcConstAllpha);

                dstPixel = dstCM.getDataElements(dstRGB, null);
                dstRast.setDataElements(dx,dy,dstPixel);
            }
        }
    
public voidblit(int srcX, int srcY, org.apache.harmony.awt.gl.Surface srcSurf, int dstX, int dstY, org.apache.harmony.awt.gl.Surface dstSurf, int width, int height, java.awt.geom.AffineTransform sysxform, java.awt.geom.AffineTransform xform, java.awt.Composite comp, java.awt.Color bgcolor, org.apache.harmony.awt.gl.MultiRectArea clip)


        if(xform == null){
            blit(srcX, srcY, srcSurf, dstX, dstY, dstSurf, width, height,
                    sysxform, comp, bgcolor, clip);
        }else{
            double scaleX = xform.getScaleX();
            double scaleY = xform.getScaleY();
            double scaledX = dstX / scaleX;
            double scaledY = dstY / scaleY;
            AffineTransform at = new AffineTransform();
            at.setToTranslation(scaledX, scaledY);
            xform.concatenate(at);
            sysxform.concatenate(xform);
            blit(srcX, srcY, srcSurf, 0, 0, dstSurf, width, height,
                    sysxform, comp, bgcolor, clip);
        }

    
public voidblit(int srcX, int srcY, org.apache.harmony.awt.gl.Surface srcSurf, int dstX, int dstY, org.apache.harmony.awt.gl.Surface dstSurf, int width, int height, java.awt.geom.AffineTransform sysxform, java.awt.Composite comp, java.awt.Color bgcolor, org.apache.harmony.awt.gl.MultiRectArea clip)


        if(sysxform == null) {
            sysxform = new AffineTransform();
        }
        int type = sysxform.getType();
        switch(type){
            case AffineTransform.TYPE_TRANSLATION:
                dstX += sysxform.getTranslateX();
                dstY += sysxform.getTranslateY();
            case AffineTransform.TYPE_IDENTITY:
                 blit(srcX, srcY, srcSurf, dstX, dstY, dstSurf,
                        width, height, comp, bgcolor, clip);
                break;
            default:
                int srcW = srcSurf.getWidth();
                int srcH = srcSurf.getHeight();

                int w = srcX + width < srcW ? width : srcW - srcX;
                int h = srcY + height < srcH ? height : srcH - srcY;

                ColorModel srcCM = srcSurf.getColorModel();
                Raster srcR = srcSurf.getRaster().createChild(srcX, srcY,
                        w, h, 0, 0, null);

                ColorModel dstCM = dstSurf.getColorModel();
                WritableRaster dstR = dstSurf.getRaster();

                transformedBlit(srcCM, srcR, 0, 0, dstCM, dstR, dstX, dstY, w, h,
                        sysxform, comp, bgcolor, clip);

        }
    
public voidblit(int srcX, int srcY, org.apache.harmony.awt.gl.Surface srcSurf, int dstX, int dstY, org.apache.harmony.awt.gl.Surface dstSurf, int width, int height, java.awt.Composite comp, java.awt.Color bgcolor, org.apache.harmony.awt.gl.MultiRectArea clip)


        javaBlt(srcX, srcY, srcSurf.getWidth(), srcSurf.getHeight(),
                srcSurf.getColorModel(), srcSurf.getRaster(), dstX, dstY,
                dstSurf.getWidth(), dstSurf.getHeight(),
                dstSurf.getColorModel(), dstSurf.getRaster(),
                width, height, comp, bgcolor, clip);

    
private intcompose(int srcRGB, boolean isSrcAlphaPre, int dstRGB, boolean dstHasAlpha, boolean isDstAlphaPre, int rule, int srcConstAlpha)


        int sa, sr, sg, sb, da, dr, dg, db;

        sa = (srcRGB >> 24) & 0xff;
        sr = (srcRGB >> 16) & 0xff;
        sg = (srcRGB >> 8) & 0xff;
        sb = srcRGB & 0xff;

        if(isSrcAlphaPre){
            sa = mulLUT[srcConstAlpha][sa] & 0xff;
            sr = mulLUT[srcConstAlpha][sr] & 0xff;
            sg = mulLUT[srcConstAlpha][sg] & 0xff;
            sb = mulLUT[srcConstAlpha][sb] & 0xff;
        }else{
            sa = mulLUT[srcConstAlpha][sa] & 0xff;
            sr = mulLUT[sa][sr] & 0xff;
            sg = mulLUT[sa][sg] & 0xff;
            sb = mulLUT[sa][sb] & 0xff;
        }

        da = (dstRGB >> 24) & 0xff;
        dr = (dstRGB >> 16) & 0xff;
        dg = (dstRGB >> 8) & 0xff;
        db = dstRGB & 0xff;

        if(!isDstAlphaPre){
            dr = mulLUT[da][dr] & 0xff;
            dg = mulLUT[da][dg] & 0xff;
            db = mulLUT[da][db] & 0xff;
        }

        int Fs = 0;
        int Fd = 0;
        switch(rule){
        case AlphaComposite.CLEAR:
            break;

        case AlphaComposite.DST:
            Fd = 255;
            break;

        case AlphaComposite.DST_ATOP:
            Fs = 255 - da;
            Fd = sa;
            break;

        case AlphaComposite.DST_IN:
            Fd = sa;
            break;

        case AlphaComposite.DST_OUT:
            Fd = 255 - sa;
            break;

        case AlphaComposite.DST_OVER:
            Fs = 255 - da;
            Fd = 255;
            break;

        case AlphaComposite.SRC:
            Fs = 255;
            break;

        case AlphaComposite.SRC_ATOP:
            Fs = da;
            Fd = 255 - sa;
            break;

        case AlphaComposite.SRC_IN:
            Fs = da;
            break;

        case AlphaComposite.SRC_OUT:
            Fs = 255 - da;
            break;

        case AlphaComposite.SRC_OVER:
            Fs = 255;
            Fd = 255 - sa;
            break;

        case AlphaComposite.XOR:
            Fs = 255 - da;
            Fd = 255 - sa;
            break;
        }
        dr = (mulLUT[sr][Fs] & 0xff) + (mulLUT[dr][Fd] & 0xff);
        dg = (mulLUT[sg][Fs] & 0xff) + (mulLUT[dg][Fd] & 0xff);
        db = (mulLUT[sb][Fs] & 0xff) + (mulLUT[db][Fd] & 0xff);

        da = (mulLUT[sa][Fs] & 0xff) + (mulLUT[da][Fd] & 0xff);

        if(!isDstAlphaPre){
            if(da != 255){
                dr = divLUT[da][dr] & 0xff;
                dg = divLUT[da][dg] & 0xff;
                db = divLUT[da][db] & 0xff;
            }
        }
        if(!dstHasAlpha) {
            da = 0xff;
        }
        dstRGB = (da << 24) | (dr << 16) | (dg << 8) | db;

        return dstRGB;

    
private java.awt.geom.Rectangle2DgetBounds2D(java.awt.geom.AffineTransform at, java.awt.Rectangle r)

        int x = r.x;
        int y = r.y;
        int width = r.width;
        int height = r.height;

        float[] corners = {
            x, y,
            x + width, y,
            x + width, y + height,
            x, y + height
        };

        at.transform(corners, 0, corners, 0, 4);

        Rectangle2D.Float bounds = new Rectangle2D.Float(corners[0], corners[1], 0 , 0);
        bounds.add(corners[2], corners[3]);
        bounds.add(corners[4], corners[5]);
        bounds.add(corners[6], corners[7]);

        return bounds;
    
public static org.apache.harmony.awt.gl.render.JavaBlittergetInstance()


       
        return inst;
    
public voidjavaBlt(int srcX, int srcY, int srcW, int srcH, java.awt.image.ColorModel srcCM, java.awt.image.Raster srcRast, int dstX, int dstY, int dstW, int dstH, java.awt.image.ColorModel dstCM, java.awt.image.WritableRaster dstRast, int width, int height, java.awt.Composite comp, java.awt.Color bgcolor, org.apache.harmony.awt.gl.MultiRectArea clip)


        int srcX2 = srcW - 1;
        int srcY2 = srcH - 1;
        int dstX2 = dstW - 1;
        int dstY2 = dstH - 1;

        if(srcX < 0){
            width += srcX;
            srcX = 0;
        }
        if(srcY < 0){
            height += srcY;
            srcY = 0;
        }

        if(dstX < 0){
            width += dstX;
            srcX -= dstX;
            dstX = 0;
        }
        if(dstY < 0){
            height += dstY;
            srcY -= dstY;
            dstY = 0;
        }

        if(srcX > srcX2 || srcY > srcY2) {
            return;
        }
        if(dstX > dstX2 || dstY > dstY2) {
            return;
        }

        if(srcX + width > srcX2) {
            width = srcX2 - srcX + 1;
        }
        if(srcY + height > srcY2) {
            height = srcY2 - srcY + 1;
        }
        if(dstX + width > dstX2) {
            width = dstX2 - dstX + 1;
        }
        if(dstY + height > dstY2) {
            height = dstY2 - dstY + 1;
        }

        if(width <= 0 || height <= 0) {
            return;
        }

        int clipRects[];
        if(clip != null) {
            clipRects = clip.rect;
        } else {
            clipRects = new int[]{5, 0, 0, dstW - 1, dstH - 1};
        }

        boolean isAlphaComp = false;
        int rule = 0;
        float alpha = 0;
        boolean isXORComp = false;
        Color xorcolor = null;
        CompositeContext cont = null;

        if(comp instanceof AlphaComposite){
            isAlphaComp = true;
            AlphaComposite ac = (AlphaComposite) comp;
            rule = ac.getRule();
            alpha = ac.getAlpha();
        }else if(comp instanceof XORComposite){
            isXORComp = true;
            XORComposite xcomp = (XORComposite) comp;
            xorcolor = xcomp.getXORColor();
        }else{
            cont = comp.createContext(srcCM, dstCM, null);
        }

        for(int i = 1; i < clipRects[0]; i += 4){
            int _sx = srcX;
            int _sy = srcY;

            int _dx = dstX;
            int _dy = dstY;

            int _w = width;
            int _h = height;

            int cx = clipRects[i];          // Clipping left top X
            int cy = clipRects[i + 1];      // Clipping left top Y
            int cx2 = clipRects[i + 2];     // Clipping right bottom X
            int cy2 = clipRects[i + 3];     // Clipping right bottom Y

            if(_dx > cx2 || _dy > cy2 || dstX2 < cx || dstY2 < cy) {
                continue;
            }

            if(cx > _dx){
                int shx = cx - _dx;
                _w -= shx;
                _dx = cx;
                _sx += shx;
            }

            if(cy > _dy){
                int shy = cy - _dy;
                _h -= shy;
                _dy = cy;
                _sy += shy;
            }

            if(_dx + _w > cx2 + 1){
                _w = cx2 - _dx + 1;
            }

            if(_dy + _h > cy2 + 1){
                _h = cy2 - _dy + 1;
            }

            if(_sx > srcX2 || _sy > srcY2) {
                continue;
            }

            if(isAlphaComp){
                alphaCompose(_sx, _sy, srcCM, srcRast, _dx, _dy,
                        dstCM, dstRast, _w, _h, rule, alpha, bgcolor);
            }else if(isXORComp){
                xorCompose(_sx, _sy, srcCM, srcRast, _dx, _dy,
                        dstCM, dstRast, _w, _h, xorcolor);
            }else{
                Raster sr = srcRast.createChild(_sx, _sy, _w, _h, 0, 0, null);
                WritableRaster dr = dstRast.createWritableChild(_dx, _dy,
                        _w, _h, 0, 0, null);
                cont.compose(sr, dr, dr);
            }
        }
    
private voidtransformedBlit(java.awt.image.ColorModel srcCM, java.awt.image.Raster srcR, int srcX, int srcY, java.awt.image.ColorModel dstCM, java.awt.image.WritableRaster dstR, int dstX, int dstY, int width, int height, java.awt.geom.AffineTransform at, java.awt.Composite comp, java.awt.Color bgcolor, org.apache.harmony.awt.gl.MultiRectArea clip)


        Rectangle srcBounds = new Rectangle(width, height);
        Rectangle dstBlitBounds = new Rectangle(dstX, dstY, srcR.getWidth(), srcR.getHeight());

        Rectangle transSrcBounds = getBounds2D(at, srcBounds).getBounds();
        Rectangle transDstBlitBounds = getBounds2D(at, dstBlitBounds).getBounds();

        int translateX = transDstBlitBounds.x - transSrcBounds.x;
        int translateY = transDstBlitBounds.y - transSrcBounds.y;

        AffineTransform inv = null;
        try {
             inv = at.createInverse();
        } catch (NoninvertibleTransformException e) {
            return;
        }

        double[] m = new double[6];
        inv.getMatrix(m);

        int clipRects[];
        if(clip != null) {
            clipRects = clip.rect;
        } else {
            clipRects = new int[]{5, 0, 0, dstR.getWidth(), dstR.getHeight()};
        }

        int compType = 0;
        int srcConstAlpha = 0;
        int rule = 0;
        int bgRGB = bgcolor == null ? 0 : bgcolor.getRGB();
        int srcRGB = 0, dstRGB = 0;
        Object srcVal = null, dstVal = null;
        if(comp instanceof AlphaComposite){
            compType = AlphaCompositeMode;
            AlphaComposite ac = (AlphaComposite) comp;
            rule = ac.getRule();
            srcConstAlpha = (int)(ac.getAlpha() * 255 + 0.5f);
        }else if(comp instanceof XORComposite){
            compType = XORMode;
            XORComposite xor = (XORComposite) comp;
            bgRGB = xor.getXORColor().getRGB();
        }

        for(int i = 1; i < clipRects[0]; i += 4){
            Rectangle dstBounds = new Rectangle(clipRects[i], clipRects[i + 1], 0, 0);
            dstBounds.add(clipRects[i + 2] + 1, clipRects[i + 1]);
            dstBounds.add(clipRects[i + 2] + 1, clipRects[i + 3] + 1);
            dstBounds.add(clipRects[i], clipRects[i + 3] + 1);

            Rectangle bounds = dstBounds.intersection(transDstBlitBounds);

            int minSrcX = srcBounds.x;
            int minSrcY = srcBounds.y;
            int maxSrcX = minSrcX + srcBounds.width;
            int maxSrcY = minSrcY + srcBounds.height;

            int minX = bounds.x;
            int minY = bounds.y;
            int maxX = minX + bounds.width;
            int maxY = minY + bounds.height;

            int hx = (int)((m[0] * 256) + 0.5);
            int hy = (int)((m[1] * 256) + 0.5);
            int vx = (int)((m[2] * 256) + 0.5);
            int vy = (int)((m[3] * 256) + 0.5);
            int sx = (int)((m[4] + m[0] * (bounds.x - translateX) + m[2] * (bounds.y - translateY)) * 256 + 0.5);
            int sy = (int)((m[5] + m[1] * (bounds.x - translateX) + m[3] * (bounds.y - translateY)) * 256 + 0.5);

            vx -= hx * bounds.width;
            vy -= hy * bounds.width;

            for(int y = minY; y < maxY; y++) {
                for(int x = minX; x < maxX; x++) {
                    int px = sx >> 8;
                    int py = sy >> 8;
                    if (px >= minSrcX && py >= minSrcY && px < maxSrcX && py < maxSrcY) {
                        switch(compType){
                            case AlphaCompositeMode:
                                srcVal = srcR.getDataElements(px , py , null);
                                srcRGB = srcCM.getRGB(srcVal);
                                if(bgcolor != null){
                                    dstRGB = bgRGB;
                                }else{
                                    dstVal = dstR.getDataElements(x, y, null);
                                    dstRGB = dstCM.getRGB(dstVal);
                                }
                                dstRGB = compose(srcRGB, srcCM.isAlphaPremultiplied(),
                                        dstRGB, dstCM.hasAlpha(), dstCM.isAlphaPremultiplied(),
                                        rule, srcConstAlpha);
                                dstVal = dstCM.getDataElements(dstRGB, null);
                                dstR.setDataElements(x, y, dstVal);
                                break;

                            case XORMode:
                                srcVal = srcR.getDataElements(px , py , null);
                                srcRGB = srcCM.getRGB(srcVal);
                                dstVal = dstR.getDataElements(x, y, null);
                                dstRGB = dstCM.getRGB(dstVal);
                                dstRGB = srcRGB ^ bgRGB;

                                dstRGB = 0xff000000 | dstRGB;
                                dstVal = dstCM.getDataElements(dstRGB, null);
                                dstR.setDataElements(x, y, dstVal);
                                break;

                            default:
                                // awt.37=Unknown  composite type {0}
                                throw new IllegalArgumentException(Messages.getString("awt.37", //$NON-NLS-1$
                                        comp.getClass()));
                        }
                    }
                    sx += hx;
                    sy += hy;
                }
                sx += vx;
                sy += vy;
            }
        }

    
voidxorCompose(int srcX, int srcY, java.awt.image.ColorModel srcCM, java.awt.image.Raster srcRast, int dstX, int dstY, java.awt.image.ColorModel dstCM, java.awt.image.WritableRaster dstRast, int width, int height, java.awt.Color xorcolor)


        Object srcPixel, dstPixel;
        int xorRGB = xorcolor.getRGB();
        int srcRGB, dstRGB;

        for(int sy = srcY, dy = dstY, srcYMax = srcY + height; sy < srcYMax; sy++, dy++){
            for(int sx = srcX, dx = dstX, srcXMax = srcX + width; sx < srcXMax; sx++, dx++){
                srcPixel = srcRast.getDataElements(sx, sy, null);
                dstPixel = dstRast.getDataElements(dx, dy, null);

                srcRGB = srcCM.getRGB(srcPixel);
                dstRGB = dstCM.getRGB(dstPixel);
                dstRGB = srcRGB ^ xorRGB ^ dstRGB;

                dstRGB = 0xff000000 | dstRGB;
                dstPixel = dstCM.getDataElements(dstRGB, dstPixel);
                dstRast.setDataElements(dx,dy,dstPixel);

            }
        }