Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpcups / ModeDeltaPlus.h
1 /*****************************************************************************\
2   DeltaPlus.h : Interface for the DeltaPlus class
3
4   Copyright (c) 1996 - 2009, 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 #ifndef MODE_DELTAPLUS_H
32 #define MODE_DELTAPLUS_H
33
34 #include "CommonDefinitions.h"
35 #include "Processor.h"
36 #include "Compressor.h"
37
38 #define INDY_STRIP_HEIGHT 128
39
40 class ModeDeltaPlus : public Compressor
41 {
42 public:
43     ModeDeltaPlus(unsigned int RasterSize);
44     virtual ~ModeDeltaPlus();
45     DRIVER_ERROR Init();
46     bool Process(RASTERDATA *input);
47     bool NextOutputRaster(RASTERDATA &next_raster);
48     bool IsCompressed()
49     {
50         return m_bCompressed;
51     }
52         BYTE GetFRatio()
53         {
54             return (BYTE) (m_fRatio + 0.5);
55         }
56         long GetCurrentRasterRow()
57         {
58             return m_lPrinterRasterRow;
59         }
60         long GetCurrentBlockHeight()
61         {
62             return m_lCurrBlockHeight;
63         }
64         void NewPage()
65         {
66         m_lPrinterRasterRow = 0;
67             m_bLastBand = false;
68         }
69         void SetLastBand()
70         {
71             m_bLastBand = true;
72         }
73
74 private:
75     bool  compress(BYTE *outmem, uint32_t *outlen, const BYTE *inmem,
76                    const uint32_t row_width, const uint32_t inheight,
77                    uint32_t horz_ht_dist);
78
79     BYTE  *encode_header(BYTE *outptr, const BYTE *pastoutmem, uint32_t isrun,
80                          uint32_t location, uint32_t seedrow_count, uint32_t run_count,
81                          const BYTE new_color);
82
83     BYTE                *pbyInputImageBuffer;
84
85     long                m_lCurrCDRasterRow;         // Current  raster index. in PrintNextBand
86     long                m_lCurrBlockHeight;
87     long                m_lPrinterRasterRow;        // Current printer raster row.
88
89     uint32_t            m_compressedsize;
90     bool                m_bCompressed;
91     float               m_fRatio;
92     BYTE                *pbySeedRow;
93         bool                m_bLastBand;
94 }; // ModeDeltaPlus
95
96 #endif // MODE_DELTAPLUS_H
97