File: bmDrawImage.c

package info (click to toggle)
ted 2.16-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 13,944 kB
  • ctags: 20,273
  • sloc: ansic: 167,980; makefile: 12,518; sh: 263
file content (412 lines) | stat: -rw-r--r-- 9,011 bytes parent folder | download | duplicates (2)
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
#   include	"bitmapConfig.h"

#   include	"bmintern.h"
#   include	<string.h>

#   include	<appDebugon.h>

/************************************************************************/
/*									*/
/*  Draw images in another one.						*/
/*									*/
/************************************************************************/

# define PARANOIA 0

# if	PARANOIA

static const BitmapDescription * bdInPara;
static const BitmapDescription * bdToPara;

static unsigned char * bufToSav;
static const unsigned char * bufInSav;

static unsigned char oo[2000];
static unsigned char se[2000];
static unsigned char no[2000];

# define CHECK_RESULT() \
    \
    bmInflateTo8bit( no, bufToSav, bdToPara, 0, 0 ); \
    ocol= colTo0; \
    for ( col= colIn0; col < colInP; ocol++, col++ ) \
	{ \
	if  ( no[ocol] != ( oo[ocol] | se[col] ) ) \
	    { LLLDEB(no[ocol],oo[ocol],se[col]);LLDEB(ocol,col);abort();} \
	} \
    for ( ocol= 0; ocol < colTo0; ocol++ ) \
	{ \
	if  ( no[ocol] != oo[ocol] ) \
	    { LLLDEB(ocol,no[ocol],oo[ocol]);abort();} \
	} \
    for ( ocol= colTo0+ colInP- colIn0; \
				    ocol < bdToPara->bdPixelsWide; ocol++ ) \
	{ \
	if  ( no[ocol] != oo[ocol] ) \
	    { LLLDEB(ocol,no[ocol],oo[ocol]);abort();} \
	}

# define INIT_CHECK() \
    \
    int			ocol; \
\
    bufToSav= bufTo; \
    bufInSav= bufIn; \
\
    bmInflateTo8bit( oo, bufToSav, bdToPara, 0, 0 ); \
    bmInflateTo8bit( se, bufInSav, bdInPara, 0, 0 );

# endif


/************************************************************************/
/*									*/
/*  'Or'/'And' a shifted structuring element into the output buffer.	*/
/*									*/
/*  1)  Loop over the columns in the structuring element. NOTE that	*/
/*	the limits in the output are dictated by the size of the image	*/
/*	only, so we do not need to bother about masking off data to	*/
/*	protect bits in an output byte beyond colToP.			*/
/*									*/
/*  a)  Contribution of the first byte in the structuring element. As	*/
/*	its offset is left of the first output byte, only the left	*/
/*	shift is relevant.						*/
/*  b)  Contribution of all middle bytes in the structuring element.	*/
/*  c)  Contribution of the last byte in the strucuring element. Only	*/
/*	the right shift is relevant.					*/
/*									*/
/*  A)  Contribution of the first byte in the structuring element. As	*/
/*	its offset is right of the first output byte, only the right	*/
/*	shift is relevant for the first output byte. The left is for	*/
/*	the second output byte.						*/
/*  B)  Contribution of all middle bytes in the structuring element.	*/
/*  C)  Contribution of the last byte in the strucuring element. Only	*/
/*	the right shift is relevant.					*/
/*									*/
/************************************************************************/

typedef void (*OR_ROW)	(	unsigned char *		bufTo,
				const unsigned char *	bufIn,
				const int		colTo0,
				const int		colIn0,
				const int		colInP,
				int			shift0,
				int			shift1,
				unsigned char		inInvertMask,
				unsigned char		endMask );

/********************************/
/*				*/
/*  colIn0 % 8 > colTo0 % 8	*/
/*				*/
/********************************/

static void bmDrawOrRowRight(	unsigned char *		bufTo,
				const unsigned char *	bufIn,
				const int		colTo0,
				const int		colIn0,
				const int		colInP,
				int			shift0,
				int			shift1,
				unsigned char		inInvertMask,
				unsigned char		endMask )
    {
    int			col;
    unsigned char	mask;
    unsigned char	val;

#   if PARANOIA
    INIT_CHECK();
#   endif

    bufTo += colTo0/8;
    bufIn += colIn0/8;

    col= 8* ( colIn0/ 8 );
    mask= 0xff;

    if  ( col+ 8 > colInP )
	{ mask &= endMask; }

    /*  a  */
    val= bufIn[0] ^ inInvertMask;
    bufTo[0] |= ( val & mask ) << shift0;
    bufIn++, col += 8;

    /*  b  */
    for (; col+ 8 < colInP; bufIn++, col += 8 )
	{
	val= bufIn[0] ^ inInvertMask;

	bufTo[0] |= ( val        ) >> shift1;
	bufTo++;
	bufTo[0] |= ( val        ) << shift0;
	}

    /*  c  */
    if  ( col < colInP )
	{
	val= bufIn[0] ^ inInvertMask;

	if  ( col+ 8 > colInP )
	    { mask &= endMask; }

	bufTo[0] |= ( val & mask ) >> shift1;
	bufTo++;
	bufTo[0] |= ( val & mask ) << shift0;
	}

#   if PARANOIA
    CHECK_RESULT();
#   endif

    return;
    }

/********************************/
/*				*/
/*  colIn0 % 8 < colTo0 % 8	*/
/*				*/
/********************************/

static void bmDrawOrRowLeft(	unsigned char *		bufTo,
				const unsigned char *	bufIn,
				const int		colTo0,
				const int		colIn0,
				const int		colInP,
				int			shift0,
				int			shift1,
				unsigned char		inInvertMask,
				unsigned char		endMask )
    {
    int			col;
    unsigned char	mask;
    unsigned char	val;

#   if PARANOIA
    INIT_CHECK();
#   endif

    bufTo += colTo0/8;
    bufIn += colIn0/8;

    col= 8* ( colIn0/ 8 );
    mask= 0xff;

    if  ( col+ 8 > colInP )
	{ mask &= endMask; }

    /*  A  */
    val= bufIn[0] ^ inInvertMask;

    bufTo[0] |= ( val & mask ) >> shift0;
    bufTo++;
    bufTo[0] |= ( val & mask ) << shift1;
    bufIn++, col += 8;

    /*  B  */
    for (; col+ 8 < colInP; bufIn++, col += 8 )
	{
	val= bufIn[0] ^ inInvertMask;

	bufTo[0] |= ( val        ) >> shift0;
	bufTo++;
	bufTo[0] |= ( val        ) << shift1;
	}

    /*  C  */
    if  ( col < colInP )
	{
	val= bufIn[0] ^ inInvertMask;

	if  ( col+ 8 > colInP )
	    { mask &= endMask; }

	bufTo[0] |= ( val & mask ) >> shift0;
	bufTo++;
	bufTo[0] |= ( val & mask ) << shift1;
	}

#   if PARANOIA
    CHECK_RESULT();
#   endif

    return;
    }

/********************************/
/*				*/
/*  colIn0 % 8 == colTo0 % 8	*/
/*				*/
/********************************/

static void bmDrawOrRowEq(	unsigned char *		bufTo,
				const unsigned char *	bufIn,
				const int		colTo0,
				const int		colIn0,
				const int		colInP,
				int			ign_shift0,
				int			ign_shift1,
				unsigned char		inInvertMask,
				unsigned char		endMask )
    {
    int			col;
    unsigned char	mask;
    unsigned char	val;

#   if PARANOIA
    INIT_CHECK();
#   endif

    bufTo += colTo0/8;
    bufIn += colIn0/8;

    col= 8* ( colIn0/ 8 );
    mask= 0xff;

    if  ( col+ 8 > colInP )
	{ mask &= endMask; }

    /*  A  */
    val= bufIn[0] ^ inInvertMask;

    bufTo[0] |= ( val & mask );
    bufTo++;
    bufIn++, col += 8;

    /*  B  */
    for (; col+ 8 < colInP; bufIn++, col += 8 )
	{
	val= bufIn[0] ^ inInvertMask;

	bufTo[0] |= ( val        );
	bufTo++;
	}

    /*  C  */
    if  ( col < colInP )
	{
	val= bufIn[0] ^ inInvertMask;

	if  ( col+ 8 > colInP )
	    { mask &= endMask; }

	bufTo[0] |= ( val & mask );
	}

#   if PARANOIA
    CHECK_RESULT();
#   endif

    return;
    }

/************************************************************************/
/*									*/
/*  Insert an image in another one.					*/
/*									*/
/*  1)  Find the relevant rectangle on both images. It should not	*/
/*	protrude off one of the images.					*/
/*  2)  Determine how to mask the surplus bytes of the input image.	*/
/*  3)  Determine the best way to set the bits.				*/
/*  4)  Set the bits of the individual rows.				*/
/*									*/
/************************************************************************/

void bmDraw1BitImage(		const BitmapDescription *	bdTo,
				unsigned char *			bufTo,
				const BitmapDescription *	bdIn,
				const unsigned char *		bufIn,
				unsigned char			inInvertMask,
				int				rowTo0,
				int				colTo0 )
    {
    int			rowToP, colToP;
    int			rowIn0, colIn0;
    int			rowInP, colInP;

    int			rowTo;
    int			rowIn;

    int			shift0;
    int			shift1;

    unsigned char	endMask;

    OR_ROW		orRow= (OR_ROW)0;

    /*  1  */
    rowToP= rowTo0+ bdIn->bdPixelsHigh;
    colToP= colTo0+ bdIn->bdPixelsWide;

    rowIn0= 0;
    rowInP= bdIn->bdPixelsHigh;
    colIn0= 0;
    colInP= bdIn->bdPixelsWide;

    if  ( rowTo0 < 0 )
	{
	rowIn0 -= rowTo0;
	rowTo0=  0;
	}
    if  ( rowToP > bdTo->bdPixelsHigh )
	{
	rowInP -= rowToP- bdTo->bdPixelsHigh;
	rowToP= bdTo->bdPixelsHigh;
	}

    if  ( colTo0 < 0 )
	{
	colIn0 -= colTo0;
	colTo0=  0;
	}
    if  ( colToP > bdTo->bdPixelsWide )
	{
	colInP -= colToP- bdTo->bdPixelsWide;
	colToP= bdTo->bdPixelsWide;
	}

    /*  2  */
    endMask= 0xff;
    if  ( colInP % 8 )
	{ endMask= 0xff << ( 8- colInP % 8 );	}

    /*  3  */
    if  ( colIn0 % 8 > colTo0 % 8 )
	{
	shift0= colIn0 % 8- colTo0 % 8;
	shift1= 8- shift0;

	orRow= bmDrawOrRowRight;
	}
    else{
	shift0= colTo0 % 8- colIn0 % 8;
	shift1= 8- shift0;

	if  ( colIn0 % 8 < colTo0 % 8 )
	    { orRow= bmDrawOrRowLeft;	}
	else{ orRow= bmDrawOrRowEq;	}
	}

    /*
    LLLLDEB(rowTo0,rowToP,colTo0,colToP);
    LLLLDEB(rowIn0,rowInP,colIn0,colInP);
    */

    /*  4  */
    rowIn= rowIn0;
    for ( rowTo= rowTo0; rowTo < rowToP; rowIn++, rowTo++ )
	{
	unsigned char *		rowBufTo;
	const unsigned char *	rowBufIn;

	rowBufTo= bufTo+ rowTo* bdTo->bdBytesPerRow;
	rowBufIn= bufIn+ rowIn* bdIn->bdBytesPerRow;

	(*orRow)( rowBufTo, rowBufIn, colTo0, colIn0, colInP,
					shift0, shift1, inInvertMask, endMask );
	}

    return;
    }