Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / translator.cpp
1 /*****************************************************************************\
2    translator.h : Implimentation for the RasterSender class
3
4    Copyright (c) 1996 - 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 #include "header.h"
33 #include "halftoner.h"
34
35 APDK_BEGIN_NAMESPACE
36
37 RasterSender::RasterSender(Printer* pP, PrintContext* pPC,
38                        Job* pJob,Halftoner* pHalftoner)
39     : thePrinter(pP), thePrintContext(pPC), theJob(pJob),theHalftoner(pHalftoner)
40 {
41     constructor_error=NO_ERROR;
42     m_lNBlankRasters = 0;
43 }
44
45 RasterSender::~RasterSender()
46 {
47 }
48
49 ////////////////////////////////////////////////////////////////////////
50 BOOL RasterSender::Process(RASTERDATA* InputRaster)
51 {
52     DRIVER_ERROR err=NO_ERROR;
53     BOOL bOutput=FALSE;
54     if (InputRaster && (InputRaster->rasterdata[COLORTYPE_COLOR] || InputRaster->rasterdata[COLORTYPE_BLACK]))
55     {
56         err=SendRaster(InputRaster);
57         if (err==NO_ERROR)
58             bOutput=TRUE;
59     }
60     else
61     {
62
63 /*
64  *      Replace CAP move command here with vertical raster move command.
65  *      If buffering this causes code bloat, do send the command here.
66  */
67         err = theJob->SendCAPy ();
68
69     }
70
71     myphase->err = err;
72
73   return bOutput;
74 }
75
76
77 DRIVER_ERROR RasterSender::SendRaster(RASTERDATA* InputRaster)
78 {
79     DRIVER_ERROR err;
80     BOOL lastplane,firstplane;
81
82     if (theHalftoner)
83     {
84         lastplane = theHalftoner->LastPlane();
85         firstplane = theHalftoner->FirstPlane();
86     }
87     else lastplane=firstplane=TRUE;
88
89         // older code used to send regular CAPy move as part of text-synchronization scheme
90     if (firstplane)
91             err=theJob->SendCAPy();
92
93     err = thePrinter->Encapsulate (InputRaster, lastplane);
94     ERRCHECK;
95
96   return err;
97 }
98
99 APDK_END_NAMESPACE
100