summaryrefslogtreecommitdiff
path: root/prnt/hpijs/scaler_open.cpp
blob: 2e2b7e419bf17e5ab55da06d9a928cde5e9421cc (plain)
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
/*****************************************************************************\
  scaler_open.cpp : Implimentation for the Scaler_Open class

  Copyright (c) 1996 - 2001, Hewlett-Packard 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 Hewlett-Packard 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.
\*****************************************************************************/

#include "header.h"
#include "scaler_open.h"


APDK_BEGIN_NAMESPACE

Scaler_Open::Scaler_Open(SystemServices* pSys,int inputwidth,
                         int numerator,int denominator,
                         BOOL bVIP, unsigned int iNumInks)
    : Scaler(pSys,inputwidth,numerator,denominator,bVIP, iNumInks),
        NumInks(iNumInks), vip(bVIP)
{
    rowremainder = remainder;
}

Scaler_Open::~Scaler_Open()
{ }

BOOL Scaler_Open::Process(RASTERDATA* raster_in)
{
    iRastersDelivered=0;

    if (raster_in == NULL || (raster_in->rasterdata[COLORTYPE_COLOR] == NULL && raster_in->rasterdata[COLORTYPE_BLACK] == NULL))
    {
        rowremainder=remainder;
        return FALSE;
    }

    if (!scaling)
	{
		// just copy both to output buffer
		for (int i = COLORTYPE_COLOR; i < MAX_COLORTYPE; i++)
		{
			if (raster_in->rasterdata[i])
			{
				memcpy(pOutputBuffer[i], raster_in->rasterdata[i], raster_in->rastersize[i]);
			}
		}
		iRastersReady = 1;
		return TRUE;
    }

	if (myplane == COLORTYPE_COLOR)
	{
		if (raster_in->rasterdata[COLORTYPE_BLACK])
		{
			memcpy(pOutputBuffer[COLORTYPE_BLACK], raster_in->rasterdata[COLORTYPE_BLACK], raster_in->rastersize[COLORTYPE_BLACK]);
		}
	}

	if (myplane == COLORTYPE_BLACK)
	{
		if (raster_in->rasterdata[COLORTYPE_COLOR])
		{
			memcpy(pOutputBuffer[COLORTYPE_COLOR], raster_in->rasterdata[COLORTYPE_COLOR], raster_in->rastersize[COLORTYPE_COLOR]);
		}
	}

    // multiply row
    unsigned int ifactor = (unsigned int) (int) ScaleFactor;
    unsigned int targptr=0;
    unsigned int sourceptr=0;
    unsigned int rem = remainder;

	if (myplane == COLORTYPE_COLOR || myplane == COLORTYPE_BOTH)
	{
		if (raster_in->rasterdata[COLORTYPE_COLOR])
		{
			if (vip)                   // RGB values interleaved
			{
				unsigned int width = iInputWidth*3;
				for (unsigned int i=0; i < width; i += 3)
				{
					unsigned int factor = ifactor;
					if (rem >= 1000)
					{
						factor++;
						rem -= 1000;
					}
					for (unsigned int j=0; j < factor; j++)
					{
						pOutputBuffer[COLORTYPE_COLOR][targptr++] = raster_in->rasterdata[COLORTYPE_COLOR][i];
						pOutputBuffer[COLORTYPE_COLOR][targptr++] = raster_in->rasterdata[COLORTYPE_COLOR][i+1];
						pOutputBuffer[COLORTYPE_COLOR][targptr++] = raster_in->rasterdata[COLORTYPE_COLOR][i+2];
					}
					rem += remainder;
				}
			}
			else            // KCMY values NOT interleaved
							// iInputWidth = bytes per plane
			for (unsigned int i=0; i < NumInks; i++)  // loop over planes
			{
				unsigned int planecount=0;          // count output bytes for this plane
				unsigned int src=0;                 // count input bytes for this plane
				while ((planecount < iOutputWidth-1) && (src < iInputWidth))
				{
					unsigned int factor = ifactor;
					if (rem >= 1000)
					{
						factor++;
						rem -= 1000;
					}
					for (unsigned int j=0; (j < factor) && (planecount < iOutputWidth-1); j++)
					{
						pOutputBuffer[COLORTYPE_COLOR][targptr++] = raster_in->rasterdata[COLORTYPE_COLOR][sourceptr];
						planecount++;
					}
					rem += remainder;
					sourceptr++; src++;
				}
				while (planecount < iOutputWidth-1)     // fill out odd bytes so all planes are equal
				{
					pOutputBuffer[COLORTYPE_COLOR][targptr++] = raster_in->rasterdata[COLORTYPE_COLOR][sourceptr-1];
					planecount++;
				}

			}
		}
	}

	ifactor = (unsigned int) (int) ScaleFactor;
    targptr=0;
    sourceptr=0;
    rem = remainder;

	if (myplane == COLORTYPE_BLACK || myplane == COLORTYPE_BOTH)
	{	
		if (raster_in->rasterdata[COLORTYPE_BLACK])
		{	
			// K values NOT interleaved
			// iInputWidth = bytes per plane
			unsigned int planecount=0;          // count output bytes for this plane
			unsigned int src=0;                 // count input bytes for this plane
			while ((planecount < iOutputWidth-1) && (src < iInputWidth))
			{
				unsigned int factor = ifactor;
				if (rem >= 1000)
				{
					factor++;
					rem -= 1000;
				}
				for (unsigned int j=0; (j < factor) && (planecount < iOutputWidth-1); j++)
				{
					pOutputBuffer[COLORTYPE_BLACK][targptr++] = raster_in->rasterdata[COLORTYPE_BLACK][sourceptr];
					planecount++;
				}
				rem += remainder;
				sourceptr++; src++;
			}
			while (planecount < iOutputWidth-1)     // fill out odd bytes so all planes are equal
			{
				pOutputBuffer[COLORTYPE_BLACK][targptr++] = raster_in->rasterdata[COLORTYPE_BLACK][sourceptr-1];
				planecount++;
			}
		}
	}

    unsigned int factor = ifactor;
    if (rowremainder >= 1000)
    {
        factor++;
        rowremainder -= 1000;
    }
	if (myplane == COLORTYPE_BLACK && raster_in->rasterdata[COLORTYPE_COLOR])
		iRastersReady = 1;
	else
		iRastersReady=factor;
    iRastersDelivered=0;
    rowremainder += remainder;
 return TRUE;
}


BYTE* Scaler_Open::NextOutputRaster(COLORTYPE color)
{
    if (iRastersReady==0)
        return NULL;

	if (myplane == COLORTYPE_BLACK)
	{
		if (raster.rasterdata[myplane] == NULL)
			iRastersReady = 1;
	}
	if (color == COLORTYPE_COLOR)
	{
		iRastersReady--; iRastersDelivered++;
	}
	if (raster.rastersize[color] > 0)
	{
		return pOutputBuffer[color];
	}
	else
	{
		return NULL;
	}
}

APDK_END_NAMESPACE