Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / halftoner_open.h
1 /*****************************************************************************\
2   halftoner_open.h : Open Source Imaging Halftoning Interface
3
4   Copyright (c) 1994 - 2001, Hewlett-Packard Co.
5   All rights reserved.
6
7   Redistribution and use in source and binary forms, with or without
8   modification, are permitted provided that the following conditions
9   are met:
10   1. Redistributions of source code must retain the above copyright
11      notice, this list of conditions and the following disclaimer.
12   2. Redistributions in binary form must reproduce the above copyright
13      notice, this list of conditions and the following disclaimer in the
14      documentation and/or other materials provided with the distribution.
15   3. Neither the name of Hewlett-Packard nor the names of its
16      contributors may be used to endorse or promote products derived
17      from this software without specific prior written permission.
18
19   THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
20   WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21   MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
22   NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
24   TO, PATENT INFRINGEMENT; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
25   OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
26   ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28   THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 \*****************************************************************************/
30
31
32 #ifndef HALFTONER_OPEN_H
33 #define HALFTONER_OPEN_H
34
35 APDK_BEGIN_NAMESPACE
36
37 class Halftoner_Open : public Halftoner
38 {
39 public:
40     Halftoner_Open
41     (
42         SystemServices* pSys,
43         PrintMode* pPM,
44         unsigned int iInputWidth,
45         unsigned int iNumRows[],        // for mixed-res cases
46         unsigned int HiResFactor,        // when base-res is multiple of 300
47         BOOL matrixbased
48     );
49     virtual ~Halftoner_Open();
50
51     virtual BOOL Process(RASTERDATA* pbyInputKRGBRaster=NULL);
52
53
54 protected:
55
56     void Interpolate(const uint32_t *start,const unsigned long i,
57         unsigned char r,unsigned char g,unsigned char b,
58         unsigned char *blackout, unsigned char *cyanout,
59         unsigned char *magentaout, unsigned char *yellowout, HPBool);
60
61
62     HPByte HPRand() // normalize to 5..79
63     { BYTE b=RandomNumber() % 74; b+= 5; return b; }
64
65
66     void HTEDiffOpen   (THTDitherParmsPtr ditherParmsPtr,
67         HPUInt16          count);
68
69     THTDitherParms  fDitherParms[6];
70
71     THTDitherParmsPtr       ditherParms;
72     kSpringsErrorType       tone;
73     kSpringsErrorTypePtr    diffusionErrorPtr;
74     kSpringsErrorType       tmpShortStore;
75     HPUInt8                 rasterByte1, rasterByte2, rasterByte3;
76     HPUInt8                 level;
77     HPInt16                 pixelCount;
78     HPInt16                 thValue;
79
80     kSpringsErrorTypePtr    errPtr;
81     HPUInt16                numLoop;
82
83     HPBytePtr               inputPtr;
84     HPBytePtr               outputPtr1, outputPtr2, outputPtr3;
85
86     HPCBytePtr               fedResTbl;
87     HPCBytePtr               fedResPtr;
88
89     HPBool                  symmetricFlag;
90
91     HPBool                  doNext8Pixels;
92
93     HPBool                  hifipe;
94
95     void BACKWARD_FED( HPInt16 thresholdValue, unsigned int bitMask );
96     void FORWARD_FED( HPInt16 thresholdValue, unsigned int bitMask );
97
98 };
99
100 APDK_END_NAMESPACE
101
102 #endif //HALFTONER_OPEN_H