Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / apollo21xx.cpp
1 /*****************************************************************************\
2   apollo21xx.cpp : Implimentation for the Apollo21xx class
3
4   Copyright (c) 2000, 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 #ifdef APDK_APOLLO21XX
32
33 #include "header.h"
34 #include "apollo2xxx.h"
35 #include "apollo21xx.h"
36 #include "printerproxy.h"
37
38 APDK_BEGIN_NAMESPACE
39
40 //! Constructor for Apollo21xx
41 /*!
42 ******************************************************************************/
43 Apollo21xx::Apollo21xx(SystemServices* pSS, BOOL proto)
44     : Apollo2xxx(pSS,proto)
45 {
46     // set ePen to COLOR in all cases
47         ePen=COLOR_PEN;    // matches default mode
48     // because of firmware bug, we make COLOR the default
49     PrintMode* pm = pMode[DEFAULTMODE_INDEX];
50     pMode[DEFAULTMODE_INDEX] = pMode[SPECIALMODE_INDEX];
51     pMode[SPECIALMODE_INDEX] = pm;
52 }
53
54 DRIVER_ERROR Apollo21xx::ParsePenInfo(PEN_TYPE& ePen, BOOL QueryPrinter)
55 // firmware always reports BOTH_PENS
56 // so we will act like it is a color pen only
57 {
58     ePen=COLOR_PEN;
59     return NO_ERROR;
60 }
61
62 Header21xx::Header21xx(Printer* p,PrintContext* pc)
63     : Header(p,pc)
64 {  }
65
66 Header* Apollo21xx::SelectHeader(PrintContext* pc)
67 {
68     return new Header21xx(this,pc);
69 }
70
71 DRIVER_ERROR Header21xx::Send()
72 {   DRIVER_ERROR err;
73
74     StartSend();
75
76     // the 2100 always reports two pens, AND mishandles CMY unless you send
77     // BlackExtractOff
78
79     err = thePrinter->Send((const BYTE*)BlackExtractOff,
80                         sizeof(BlackExtractOff)); // just pertains to 2-pen
81     ERRCHECK;
82
83     err = ConfigureRasterData();
84     ERRCHECK;
85
86     if (ResolutionY[0] == 600)
87     {
88         char uom[10];
89         sprintf(uom,"%c%c%c%d%c",ESC,'&','u',thePrintMode->ResolutionY[K],'D');
90         err=thePrinter->Send((const BYTE*)uom, 7 );
91         ERRCHECK;
92     }
93
94     err=Graphics();     // start raster graphics and set compression mode
95
96 return err;
97 }
98
99 APDK_END_NAMESPACE
100
101 #endif  //APDK_APOLLO21XX