Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / htfed.h
1 /*****************************************************************************\
2   hfed.h : Open Source Imaging error diffusion prototypes
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 HTFED_H
33 #define HTFED_H
34
35 #define FORWARD_FED( thresholdValue, bitMask )\
36 {\
37     tone = (*inputPtr++ );\
38     fedResPtr = fedResTbl + (tone << 2);\
39     level = *fedResPtr++;\
40     if (tone != 0)\
41     {\
42     tone = ( tmpShortStore + (HPInt16)(*fedResPtr++) );\
43     if (tone >= thresholdValue)\
44         {\
45         tone -= 255;\
46         level++;\
47         }\
48         switch (level)\
49         {\
50             case 0:\
51             break;\
52             case 1:\
53             rasterByte1 |= bitMask;\
54             break;\
55             case 2:\
56             rasterByte2 |= bitMask;\
57             break;\
58             case 3:\
59             rasterByte2 |= bitMask; rasterByte1 |= bitMask;\
60             break;\
61             case 4:\
62             rasterByte3 |= bitMask;\
63             break;\
64             case 5:\
65             rasterByte3 |= bitMask; rasterByte1 |= bitMask;\
66             break;\
67             case 6:\
68             rasterByte3 |= bitMask; rasterByte2 |= bitMask;\
69             break;\
70             case 7:\
71             rasterByte3 |= bitMask; rasterByte2 |= bitMask; rasterByte1 |= bitMask;\
72             break;\
73         }\
74     }\
75     else\
76     {\
77     tone = tmpShortStore;\
78     }\
79     *diffusionErrorPtr++ = tone >> 1;\
80     tmpShortStore = *diffusionErrorPtr + (tone - (tone >> 1));\
81 }
82
83 #define BACKWARD_FED( thresholdValue, bitMask )\
84 {\
85     tone = (*inputPtr-- );\
86     fedResPtr = fedResTbl + (tone << 2);\
87     level = *fedResPtr++;\
88     if (tone != 0)\
89     {\
90     tone = ( tmpShortStore + (HPInt16)(*fedResPtr++) );\
91     if (tone >= thresholdValue)\
92         {\
93         tone -= 255;\
94         level++;\
95         }\
96         switch (level)\
97         {\
98             case 0:\
99             break;\
100             case 1:\
101             rasterByte1 |= bitMask;\
102             break;\
103             case 2:\
104             rasterByte2 |= bitMask;\
105             break;\
106             case 3:\
107             rasterByte2 |= bitMask; rasterByte1 |= bitMask;\
108             break;\
109             case 4:\
110             rasterByte3 |= bitMask;\
111             break;\
112             case 5:\
113             rasterByte3 |= bitMask; rasterByte1 |= bitMask;\
114             break;\
115             case 6:\
116             rasterByte3 |= bitMask; rasterByte2 |= bitMask;\
117             break;\
118             case 7:\
119             rasterByte3 |= bitMask; rasterByte2 |= bitMask; rasterByte1 |= bitMask;\
120             break;\
121         }\
122     }\
123     else\
124     {\
125     tone = tmpShortStore;\
126     }\
127     *diffusionErrorPtr-- = tone >> 1;\
128     tmpShortStore = *diffusionErrorPtr + (tone - (tone >> 1));\
129 }
130
131 #endif // INCLUDED_HTFED