jdk/src/share/native/sun/font/layout/AnchorTables.cpp
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 2 90ce3da70b43
child 3935 afcdb712a9c5
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * (C) Copyright IBM Corp. 1998-2005 - All Rights Reserved
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#include "LETypes.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#include "LEFontInstance.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
#include "DeviceTables.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
#include "AnchorTables.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
#include "LESwaps.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
void AnchorTable::getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
                            LEPoint &anchor) const
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    switch(SWAPW(anchorFormat)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    case 1:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
        const Format1AnchorTable *f1 = (const Format1AnchorTable *) this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        f1->getAnchor(fontInstance, anchor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    case 2:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        const Format2AnchorTable *f2 = (const Format2AnchorTable *) this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        f2->getAnchor(glyphID, fontInstance, anchor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    case 3:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
        const Format3AnchorTable *f3 = (const Format3AnchorTable *) this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        f3->getAnchor(fontInstance, anchor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        // unknown format: just use x, y coordinate, like format 1...
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        const Format1AnchorTable *f1 = (const Format1AnchorTable *) this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        f1->getAnchor(fontInstance, anchor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
void Format1AnchorTable::getAnchor(const LEFontInstance *fontInstance, LEPoint &anchor) const
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    le_int16 x = SWAPW(xCoordinate);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    le_int16 y = SWAPW(yCoordinate);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    LEPoint pixels;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    fontInstance->transformFunits(x, y, pixels);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    fontInstance->pixelsToUnits(pixels, anchor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
void Format2AnchorTable::getAnchor(LEGlyphID glyphID, const LEFontInstance *fontInstance, LEPoint &anchor) const
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    LEPoint point;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    if (! fontInstance->getGlyphPoint(glyphID, SWAPW(anchorPoint), point)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        le_int16 x = SWAPW(xCoordinate);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        le_int16 y = SWAPW(yCoordinate);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        fontInstance->transformFunits(x, y, point);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    fontInstance->pixelsToUnits(point, anchor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
void Format3AnchorTable::getAnchor(const LEFontInstance *fontInstance, LEPoint &anchor) const
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    le_int16 x = SWAPW(xCoordinate);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    le_int16 y = SWAPW(yCoordinate);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    LEPoint pixels;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    Offset dtxOffset = SWAPW(xDeviceTableOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    Offset dtyOffset = SWAPW(yDeviceTableOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    fontInstance->transformFunits(x, y, pixels);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    if (dtxOffset != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        const DeviceTable *dtx = (const DeviceTable *) ((char *) this + dtxOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        le_int16 adjx = dtx->getAdjustment((le_int16) fontInstance->getXPixelsPerEm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        pixels.fX += adjx;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    if (dtyOffset != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        const DeviceTable *dty = (const DeviceTable *) ((char *) this + dtyOffset);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
        le_int16 adjy = dty->getAdjustment((le_int16) fontInstance->getYPixelsPerEm());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        pixels.fY += adjy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    fontInstance->pixelsToUnits(pixels, anchor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
}