File: capture.cpp

package info (click to toggle)
hplip 3.21.2%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 182,104 kB
  • sloc: python: 83,189; ansic: 70,905; cpp: 63,443; sh: 11,445; perl: 4,397; makefile: 934
file content (285 lines) | stat: -rw-r--r-- 7,158 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
/*****************************************************************************\
  capture.cpp : Implimentation for capturing functions

  Copyright (c) 1996 - 2015, HP Co.
  All rights reserved.

  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions
  are met:
  1. Redistributions of source code must retain the above copyright
     notice, this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright
     notice, this list of conditions and the following disclaimer in the
     documentation and/or other materials provided with the distribution.
  3. Neither the name of HP nor the names of its
     contributors may be used to endorse or promote products derived
     from this software without specific prior written permission.

  THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
  NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
  TO, PATENT INFRINGEMENT; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\*****************************************************************************/


#ifdef APDK_CAPTURE
#include "header.h"
#include "script.h"

APDK_BEGIN_NAMESPACE

//////////////////////////////////////////////////////////////
// Capture functions belonging to API


void PrintContext::Capture_PrintContext(unsigned int InputPixelsPerRow,
                                        unsigned int OutputPixelsPerRow,
                                        PAPER_SIZE ps,
                                        IO_MODE IOMode)
{

    if (! pSS->Capturing)
        return;

    Scripter *pS = pSS->pScripter;

    pS->PutDebugToken(tokPrintContext);
    pS->PutDebugInt(InputPixelsPerRow);
    pS->PutDebugInt(OutputPixelsPerRow);
    pS->PutDebugByte(ps);
    pS->PutDebugByte(IOMode.bDevID);
    pS->PutDebugByte(IOMode.bStatus);
    if (!IOMode.bDevID)
        return;

    // need to simulate bidi, remember model and pens
    pS->PutDebugString((const char*)pSS->strModel,strlen(pSS->strModel));
    pS->PutDebugString((const char*)pSS->strPens,strlen(pSS->strPens));

}


void PrintContext::Capture_RealizeFont(const unsigned int ptr,
                                       const unsigned int index,
                                       const BYTE bSize,
                                       const TEXTCOLOR eColor,
                                       const BOOL bBold,
                                       const BOOL bItalic,
                                       const BOOL bUnderline)
{

    if (! pSS->Capturing)
        return;

    Scripter *pS = pSS->pScripter;

    pS->PutDebugToken(tokRealizeFont);
    pS->PutDebugInt(ptr);
    pS->PutDebugByte(index);
    pS->PutDebugByte(bSize);
    pS->PutDebugByte(eColor);
    pS->PutDebugByte(bBold);
    pS->PutDebugByte(bItalic);
    pS->PutDebugByte(bUnderline);

}

void PrintContext::Capture_SetPixelsPerRow(unsigned int InputPixelsPerRow,
                                           unsigned int OutputPixelsPerRow)
{

    if (! pSS->Capturing)
        return;

    Scripter *pS = pSS->pScripter;

    pS->PutDebugToken(tokSetPixelsPerRow);
    pS->PutDebugInt(InputPixelsPerRow);
    pS->PutDebugInt(OutputPixelsPerRow);
}

void PrintContext::Capture_SetInputResolution(unsigned int Res)
{

    if (! pSS->Capturing)
        return;

    Scripter *pS = pSS->pScripter;

    pS->PutDebugToken(tokSetRes);
    pS->PutDebugInt(Res);

}


void PrintContext::Capture_SelectDevice(const PRINTER_TYPE Model)
{

    if (! pSS->Capturing)
        return;

    Scripter *pS = pSS->pScripter;

    pS->PutDebugToken(tokSelectDevice);
    pS->PutDebugByte(Model);

}


void PrintContext::Capture_SelectDevice(const char* szDevIdString)
{
    if (! pSS->Capturing)
        return;

    Scripter *pS = pSS->pScripter;

    pS->PutDebugToken(tokSelectDevice);
    pS->PutDebugString(szDevIdString, strlen(szDevIdString));
}


void PrintContext::Capture_SelectPrintMode(unsigned int modenum)
{

    if (! pSS->Capturing)
        return;

    Scripter *pS = pSS->pScripter;

    pS->PutDebugToken(tokSelectPrintMode);
    pS->PutDebugByte(modenum);
}

void PrintContext::Capture_SetPaperSize(PAPER_SIZE ps, BOOL bFullBleed)
{

    if (! pSS->Capturing)
        return;

    Scripter *pS = pSS->pScripter;

    pS->PutDebugToken(tokSetPaperSize);
    pS->PutDebugByte(ps);
    pS->PutDebugByte (bFullBleed);
}




void Job::Capture_Job(PrintContext* pPC)
{

    if (! thePrintContext->pSS->Capturing)
        return;

    Scripter *pS = thePrintContext->pSS->pScripter;

    pS->PutDebugToken(tokJob);

}

void Job::Capture_SendRasters(BYTE* BlackImageData, BYTE* ColorImageData)
{

    if (! thePrintContext->pSS->Capturing)
        return;

    Scripter *pS = thePrintContext->pSS->pScripter;

    pS->PutDebugToken(tokSendRasters);
    unsigned int len=0;
    if (BlackImageData != NULL)
        len= (thePrintContext->InputWidth/8) + (thePrintContext->InputWidth%8);
	pS->PutDebugStream(BlackImageData, len);
	len = 0;
    if (ColorImageData != NULL)
        len= thePrintContext->OutputWidth*3;
    pS->PutDebugStream(ColorImageData, len);

}

#if defined(APDK_FONTS_NEEDED)
void Job::Capture_TextOut(const char* pTextString,
                          unsigned int iLenString,
                          const Font& font,
                          unsigned int iAbsX,
                          unsigned int iAbsY)
{
    SystemServices* pSS = thePrintContext->pSS;

    if (! pSS->Capturing)
        return;

    Scripter *pS = pSS->pScripter;

    pS->PutDebugToken(tokTextOut);
    pS->PutDebugInt((int)&font);
    pS->PutDebugString(pTextString,iLenString);
    pS->PutDebugInt(iAbsX);
    pS->PutDebugInt(iAbsY);
}
#endif

void Job::Capture_NewPage()
{
    SystemServices* pSS = thePrintContext->pSS;
    if (! pSS->Capturing)
        return;

    Scripter *pS = pSS->pScripter;

    pS->PutDebugToken(tokNewPage);

}


void Job::Capture_dJob()
{
    SystemServices* pSS = thePrintContext->pSS;
    if (! pSS->Capturing)
        return;

    Scripter *pS = pSS->pScripter;

    pS->PutDebugToken(tokdJob);

}

#if defined(APDK_FONTS_NEEDED)
void Font::Capture_dFont(const unsigned int ptr)
{

    if (internal)
        return;
    if (! pSS->Capturing)
        return;

    Scripter *pS = pSS->pScripter;

    pS->PutDebugToken(tokdFont);
    pS->PutDebugInt(ptr);
}
#endif

void PrintContext::Capture_dPrintContext()
{

    if (! pSS->Capturing)
        return;

    Scripter *pS = pSS->pScripter;

    pS->PutDebugToken(tokdPrintContext);

}

APDK_END_NAMESPACE

#endif