$76 GRAYBYTE WORDPRESS FILE MANAGER $74

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.217.254 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/opt/alt/alt-nodejs19/root/usr/share/doc/alt-nodejs19-libicu-devel/samples/layout/

HOME
Current File : /opt/alt/alt-nodejs19/root/usr/share/doc/alt-nodejs19-libicu-devel/samples/layout//cmaps.cpp
/*
 *******************************************************************************
 *
 *   © 2016 and later: Unicode, Inc. and others.
 *   License & terms of use: http://www.unicode.org/copyright.html
 *
 *******************************************************************************
 ****************************************************************************** *
 *
 *   Copyright (C) 1999-2003, International Business Machines
 *   Corporation and others.  All Rights Reserved.
 *
 ****************************************************************************** *
 *   file name:  cmaps.cpp
 *
 *   created on: ??/??/2001
 *   created by: Eric R. Mader
 */

#include "layout/LETypes.h"
#include "layout/LESwaps.h"

#include "sfnt.h"
#include "cmaps.h"

#define SWAPU16(code) ((LEUnicode16) SWAPW(code))
#define SWAPU32(code) ((LEUnicode32) SWAPL(code))

//
// Finds the high bit by binary searching
// through the bits in value.
//
le_uint8 highBit(le_uint32 value)
{
    le_uint8 bit = 0;

    if (value >= 1 << 16) {
        value >>= 16;
        bit += 16;
    }

    if (value >= 1 << 8) {
        value >>= 8;
        bit += 8;
    }

    if (value >= 1 << 4) {
        value >>= 4;
        bit += 4;
    }

    if (value >= 1 << 2) {
        value >>= 2;
        bit += 2;
    }

    if (value >= 1 << 1) {
        value >>= 1;
        bit += 1;
    }

    return bit;
}

CMAPMapper *CMAPMapper::createUnicodeMapper(const CMAPTable *cmap)
{
    le_uint16 i;
    le_uint16 nSubtables = SWAPW(cmap->numberSubtables);
    const CMAPEncodingSubtable *subtable = NULL;
    le_uint32 offset1 = 0, offset10 = 0;

    for (i = 0; i < nSubtables; i += 1) {
        const CMAPEncodingSubtableHeader *esh = &cmap->encodingSubtableHeaders[i];

        if (SWAPW(esh->platformID) == 3) {
            switch (SWAPW(esh->platformSpecificID)) {
            case 1:
                offset1 = SWAPL(esh->encodingOffset);
                break;

            case 10:
                offset10 = SWAPL(esh->encodingOffset);
                break;
            }
        }
    }


    if (offset10 != 0)
    {
        subtable = (const CMAPEncodingSubtable *) ((const char *) cmap + offset10);
    } else if (offset1 != 0) {
        subtable = (const CMAPEncodingSubtable *) ((const char *) cmap + offset1);
    } else {
        return NULL;
    }

    switch (SWAPW(subtable->format)) {
    case 4:
        return new CMAPFormat4Mapper(cmap, (const CMAPFormat4Encoding *) subtable);

    case 12:
    {
        const CMAPFormat12Encoding *encoding = (const CMAPFormat12Encoding *) subtable;

        return new CMAPGroupMapper(cmap, encoding->groups, SWAPL(encoding->nGroups));
    }

    default:
        break;
    }

    return NULL;
}

CMAPFormat4Mapper::CMAPFormat4Mapper(const CMAPTable *cmap, const CMAPFormat4Encoding *header)
    : CMAPMapper(cmap)
{
    le_uint16 segCount = SWAPW(header->segCountX2) / 2;

    fEntrySelector = SWAPW(header->entrySelector);
    fRangeShift = SWAPW(header->rangeShift) / 2;
    fEndCodes = &header->endCodes[0];
    fStartCodes = &header->endCodes[segCount + 1]; // + 1 for reservedPad...
    fIdDelta = &fStartCodes[segCount];
    fIdRangeOffset = &fIdDelta[segCount];
}

LEGlyphID CMAPFormat4Mapper::unicodeToGlyph(LEUnicode32 unicode32) const
{
    if (unicode32 >= 0x10000) {
        return 0;
    }

    LEUnicode16 unicode = (LEUnicode16) unicode32;
    le_uint16 index = 0;
    le_uint16 probe = 1 << fEntrySelector;
    TTGlyphID result = 0;

    if (SWAPU16(fStartCodes[fRangeShift]) <= unicode) {
        index = fRangeShift;
    }

    while (probe > (1 << 0)) {
        probe >>= 1;

        if (SWAPU16(fStartCodes[index + probe]) <= unicode) {
            index += probe;
        }
    }

    if (unicode >= SWAPU16(fStartCodes[index]) && unicode <= SWAPU16(fEndCodes[index])) {
        if (fIdRangeOffset[index] == 0) {
            result = (TTGlyphID) unicode;
        } else {
            le_uint16 offset = unicode - SWAPU16(fStartCodes[index]);
            le_uint16 rangeOffset = SWAPW(fIdRangeOffset[index]);
            le_uint16 *glyphIndexTable = (le_uint16 *) ((char *) &fIdRangeOffset[index] + rangeOffset);

            result = SWAPW(glyphIndexTable[offset]);
        }

        result += SWAPW(fIdDelta[index]);
    } else {
        result = 0;
    }

    return LE_SET_GLYPH(0, result);
}

CMAPFormat4Mapper::~CMAPFormat4Mapper()
{
    // parent destructor does it all
}

CMAPGroupMapper::CMAPGroupMapper(const CMAPTable *cmap, const CMAPGroup *groups, le_uint32 nGroups)
    : CMAPMapper(cmap), fGroups(groups)
{
    le_uint8 bit = highBit(nGroups);
    fPower = 1 << bit;
    fRangeOffset = nGroups - fPower;
}

LEGlyphID CMAPGroupMapper::unicodeToGlyph(LEUnicode32 unicode32) const
{
    le_int32 probe = fPower;
    le_int32 range = 0;

    if (SWAPU32(fGroups[fRangeOffset].startCharCode) <= unicode32) {
        range = fRangeOffset;
    }

    while (probe > (1 << 0)) {
        probe >>= 1;

        if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) {
            range += probe;
        }
    }

    if (SWAPU32(fGroups[range].startCharCode) <= unicode32 && SWAPU32(fGroups[range].endCharCode) >= unicode32) {
        return (LEGlyphID) (SWAPU32(fGroups[range].startGlyphCode) + unicode32 - SWAPU32(fGroups[range].startCharCode));
    }

    return 0;
}

CMAPGroupMapper::~CMAPGroupMapper()
{
    // parent destructor does it all
}



Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
3 Mar 2024 10.41 PM
root / root
0755
FontMap.GDI
0.408 KB
19 Oct 2022 12.53 AM
root / root
0644
FontMap.Gnome
0.375 KB
19 Oct 2022 12.53 AM
root / root
0644
FontMap.cpp
7.333 KB
19 Oct 2022 12.53 AM
root / root
0644
FontMap.h
1.835 KB
19 Oct 2022 12.53 AM
root / root
0644
FontTableCache.cpp
2.362 KB
19 Oct 2022 12.53 AM
root / root
0644
FontTableCache.h
1.056 KB
19 Oct 2022 12.53 AM
root / root
0644
GDIFontInstance.cpp
9.588 KB
19 Oct 2022 12.53 AM
root / root
0644
GDIFontInstance.h
3.594 KB
19 Oct 2022 12.53 AM
root / root
0644
GDIFontMap.cpp
1.316 KB
19 Oct 2022 12.53 AM
root / root
0644
GDIFontMap.h
1.225 KB
19 Oct 2022 12.53 AM
root / root
0644
GDIGUISupport.cpp
0.834 KB
19 Oct 2022 12.53 AM
root / root
0644
GDIGUISupport.h
0.919 KB
19 Oct 2022 12.53 AM
root / root
0644
GUISupport.h
0.861 KB
19 Oct 2022 12.53 AM
root / root
0644
GnomeFontInstance.cpp
5.419 KB
19 Oct 2022 12.53 AM
root / root
0644
GnomeFontInstance.h
3.781 KB
19 Oct 2022 12.53 AM
root / root
0644
GnomeFontMap.cpp
1.386 KB
19 Oct 2022 12.53 AM
root / root
0644
GnomeFontMap.h
1.203 KB
19 Oct 2022 12.53 AM
root / root
0644
GnomeGUISupport.cpp
1.041 KB
19 Oct 2022 12.53 AM
root / root
0644
GnomeGUISupport.h
0.931 KB
19 Oct 2022 12.53 AM
root / root
0644
LayoutSample.rc
3.354 KB
19 Oct 2022 12.53 AM
root / root
0644
Makefile
2.91 KB
22 Feb 2023 10.01 AM
root / root
0644
Makefile.in
2.913 KB
19 Oct 2022 12.53 AM
root / root
0644
RenderingSurface.h
1.085 KB
19 Oct 2022 12.53 AM
root / root
0644
Sample.txt
1.657 KB
19 Oct 2022 12.53 AM
root / root
0644
ScriptCompositeFontInstance.cpp
3.189 KB
19 Oct 2022 12.53 AM
root / root
0644
ScriptCompositeFontInstance.h
6.147 KB
19 Oct 2022 12.53 AM
root / root
0644
Surface.cpp
0.863 KB
19 Oct 2022 12.53 AM
root / root
0644
Surface.h
0.499 KB
19 Oct 2022 12.53 AM
root / root
0644
UnicodeReader.cpp
4.096 KB
19 Oct 2022 12.53 AM
root / root
0644
UnicodeReader.h
0.968 KB
19 Oct 2022 12.53 AM
root / root
0644
arraymem.h
0.623 KB
19 Oct 2022 12.53 AM
root / root
0644
cgnomelayout.c
8.459 KB
19 Oct 2022 12.53 AM
root / root
0644
clayout.c
9.837 KB
19 Oct 2022 12.53 AM
root / root
0644
cmaps.cpp
5.293 KB
19 Oct 2022 12.53 AM
root / root
0644
cmaps.h
2.049 KB
19 Oct 2022 12.53 AM
root / root
0644
gdiglue.cpp
1.659 KB
19 Oct 2022 12.53 AM
root / root
0644
gdiglue.h
0.952 KB
19 Oct 2022 12.53 AM
root / root
0644
gnomeglue.cpp
1.635 KB
19 Oct 2022 12.53 AM
root / root
0644
gnomeglue.h
0.955 KB
19 Oct 2022 12.53 AM
root / root
0644
gnomelayout.cpp
8.489 KB
19 Oct 2022 12.53 AM
root / root
0644
gsupport.h
0.354 KB
19 Oct 2022 12.53 AM
root / root
0644
layout.cpp
9.789 KB
19 Oct 2022 12.53 AM
root / root
0644
layout.sln
1.174 KB
19 Oct 2022 12.53 AM
root / root
0644
layout.vcxproj
11.475 KB
19 Oct 2022 12.53 AM
root / root
0644
layout.vcxproj.filters
3.059 KB
19 Oct 2022 12.53 AM
root / root
0644
paragraph.cpp
7.575 KB
19 Oct 2022 12.53 AM
root / root
0644
paragraph.h
2.172 KB
19 Oct 2022 12.53 AM
root / root
0644
pflow.c
9.281 KB
19 Oct 2022 12.53 AM
root / root
0644
pflow.h
0.91 KB
19 Oct 2022 12.53 AM
root / root
0644
readme.html
7.316 KB
19 Oct 2022 12.53 AM
root / root
0644
resource.h
0.878 KB
19 Oct 2022 12.53 AM
root / root
0644
rsurface.cpp
0.688 KB
19 Oct 2022 12.53 AM
root / root
0644
rsurface.h
0.508 KB
19 Oct 2022 12.53 AM
root / root
0644
sfnt.h
4.896 KB
19 Oct 2022 12.53 AM
root / root
0644
ucreader.cpp
0.489 KB
19 Oct 2022 12.53 AM
root / root
0644
ucreader.h
0.404 KB
19 Oct 2022 12.53 AM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF