summaryrefslogtreecommitdiff
path: root/packages/hermes/src/p_i8.inc
blob: 0c1573a28fe932318e60adb61e97f484ea177a25 (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
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
{
    Free Pascal port of the Hermes C library.
    Copyright (C) 2001-2003  Nikolay Nikolov (nickysn@users.sourceforge.net)
    Original C version by Christian Nentwich (c.nentwich@cs.ucl.ac.uk)

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2.1 of the License, or (at your option) any later version
    with the following modification:

    As a special exception, the copyright holders of this library give you
    permission to link this library with independent modules to produce an
    executable, regardless of the license terms of these independent modules,and
    to copy and distribute the resulting executable under terms of your choice,
    provided that you also meet, for each linked independent module, the terms
    and conditions of the license of that module. An independent module is a
    module which is not derived from or based on this library. If you modify
    this library, you may extend this exception to your version of the library,
    but you are not obligated to do so. If you do not wish to do so, delete this
    exception statement from your version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
}

{

   Generic C converter (from 8 bit indexed) for the HERMES library
   Copyright (c) 1998 Christian Nentwich (c.nentwich@cs.ucl.ac.uk)
   This source code is licensed under the GNU LGPL

   Please refer to the file COPYING.LIB contained in the distribution for
   licensing conditions
}

{ -------------------------------------------------------------------------

                             NORMAL CONVERTERS

  ------------------------------------------------------------------------- }

procedure ConvertP_index8_32(iface: PHermesConverterInterface); cdecl;
var
  i: Integer;
  s_pixel: Uint8;
  d_pixel: Uint32;
  source, dest: PUint8;
begin
  source := iface^.s_pixels;
  dest := iface^.d_pixels;
  repeat
    for i := 0 to iface^.s_width - 1 do
    begin
      s_pixel := source^;
      d_pixel := iface^.lookup[s_pixel];
      PUint32(dest)^ := d_pixel;
      Inc(source);
      Inc(dest, 4);
    end;
    Inc(source, iface^.s_add);
    Inc(dest, iface^.d_add);
    Dec(iface^.s_height);
  until iface^.s_height = 0;
end;

procedure ConvertP_index8_24(iface: PHermesConverterInterface); cdecl;
var
  count: Integer;
  s_pixel, s_pixel2, d_pixel: Uint32;
  d_ptr, source, dest: PUint8;
begin
  d_ptr := PUint8(@d_pixel) + (R_32 - R_24);
  source := iface^.s_pixels;
  dest := iface^.d_pixels;
  repeat
    count := iface^.d_width shr 2;
    while count <> 0 do
    begin
      Dec(count);

      s_pixel := iface^.lookup[source^]; Inc(source);
      s_pixel2 := iface^.lookup[source^]; Inc(source);

      {$IFDEF FPC_LITTLE_ENDIAN}
      s_pixel := s_pixel or (s_pixel2 shl 24);
      {$ELSE FPC_LITTLE_ENDIAN}
      s_pixel := (s_pixel shl 8) or (s_pixel2 shr 16);
      {$ENDIF FPC_LITTLE_ENDIAN}
      PUint32(dest)^ := s_pixel;

      s_pixel := iface^.lookup[source^]; Inc(source);
      {$IFDEF FPC_LITTLE_ENDIAN}
      s_pixel2 := (s_pixel2 shr 8) or (s_pixel shl 16);
      {$ELSE FPC_LITTLE_ENDIAN}
      s_pixel2 := (s_pixel2 shl 16) or (s_pixel shr 8);
      {$ENDIF FPC_LITTLE_ENDIAN}
      PUint32(dest + 4)^ := s_pixel2;

      s_pixel2 := iface^.lookup[source^]; Inc(source);
      {$IFDEF FPC_LITTLE_ENDIAN}
      s_pixel := (s_pixel shr 16) or (s_pixel2 shl 8);
      {$ELSE FPC_LITTLE_ENDIAN}
      s_pixel := (s_pixel shl 24) or s_pixel2;
      {$ENDIF FPC_LITTLE_ENDIAN}
      PUint32(dest + 8)^ := s_pixel;

      Inc(dest, 12);
    end;

    count := iface^.d_width and $3;
    while count <> 0 do
    begin
      Dec(count);
      d_pixel := iface^.lookup[source^]; Inc(source);

      (dest + 0)^ := (d_ptr + 0)^;
      (dest + 1)^ := (d_ptr + 1)^;
      (dest + 2)^ := (d_ptr + 2)^;

      Inc(dest, 3);
    end;
    Inc(source, iface^.s_add);
    Inc(dest, iface^.d_add);
    Dec(iface^.d_height);
  until iface^.d_height = 0;
end;

procedure ConvertP_index8_16(iface: PHermesConverterInterface); cdecl;
var
  source, dest: PUint8;
  count, c: DWord;
begin
  source := iface^.s_pixels;
  dest := iface^.d_pixels;
  repeat
    count := iface^.s_width;
    if (PtrUInt(dest) and $3) <> 0 then
    begin
      PUint16(dest)^ := iface^.lookup[source^]; Inc(source);
      Inc(dest, 2);
      Dec(count);
    end;
    c := count shr 1;
    if c <> 0 then
      repeat
        PUint32(dest)^ := (iface^.lookup[source^] shl DWORD_SMALLINT0_SHL) or
                        (iface^.lookup[(source + 1)^] shl DWORD_SMALLINT1_SHL);
        Inc(dest, 4);
        Inc(source, 2);
        Dec(c);
      until c = 0;
    if (count and 1) <> 0 then
    begin
      PUint16(dest)^ := iface^.lookup[source^];
      Inc(source);
      Inc(dest, 2);
    end;
    Inc(source, iface^.s_add);
    Inc(dest, iface^.d_add);
    Dec(iface^.s_height);
  until iface^.s_height = 0;
end;

procedure ConvertP_index8_8(iface: PHermesConverterInterface); cdecl;
var
  source, dest: PUint8;
  count, c: DWord;
begin
  source := iface^.s_pixels;
  dest := iface^.d_pixels;
  repeat
    count := iface^.s_width;
    if (PtrUInt(dest) and $3) <> 0 then
    begin
      dest^ := iface^.lookup[source^]; Inc(source);
      Inc(dest);
      Dec(count);
    end;
    c := count shr 2;
    if c <> 0 then
      repeat
        PUint32(dest)^ := (iface^.lookup[source^] shl DWORD_BYTE0_SHL) or
                        (iface^.lookup[(source + 1)^] shl DWORD_BYTE1_SHL) or
                        (iface^.lookup[(source + 2)^] shl DWORD_BYTE2_SHL) or
                        (iface^.lookup[(source + 3)^] shl DWORD_BYTE3_SHL);
        Inc(dest, 4);
        Inc(source, 4);
        Dec(c);
      until c = 0;
    count := count and $03;
    while count > 0 do
    begin
      dest^ := iface^.lookup[source^]; Inc(source);
      Inc(dest);
      Dec(count);
    end;
    Inc(source, iface^.s_add);
    Inc(dest, iface^.d_add);
    Dec(iface^.s_height);
  until iface^.s_height = 0;
end;

{ -------------------------------------------------------------------------

                             STRETCH CONVERTERS

  ------------------------------------------------------------------------- }

procedure ConvertP_index8_32_S(iface: PHermesConverterInterface); cdecl;
var
  x, y, count: DWord;
  dx, dy: DWord;
  source: PUint8;
begin
  y := 0;
  dy := (iface^.s_height shl 16) div iface^.d_height;
  dx := (iface^.s_width shl 16) div iface^.d_width;
  source := iface^.s_pixels;
  repeat
    count := iface^.d_width;
    x := 0;

    repeat
      PUint32(iface^.d_pixels)^ := iface^.lookup[(source + (x shr 16))^];
      Inc(x, dx);
      Inc(iface^.d_pixels, 4);
      Dec(count);
    until count = 0;

    { Go to next destination row }
    Inc(iface^.d_pixels, iface^.d_add);

    { Calculate amount of rows to move in source surface }
    Inc(y, dy);

    Inc(source, (y shr 16) * DWord(iface^.s_pitch));
    y := y and $ffff;
    Dec(iface^.d_height);
  until iface^.d_height = 0;
end;

procedure ConvertP_index8_24_S(iface: PHermesConverterInterface); cdecl;
var
  x, y, count: DWord;
  dx, dy: DWord;
  d_ptr, source, dest: PUint8;
  s_pixel, s_pixel2, d_pixel: Uint32;
begin
  d_ptr := PUint8(@d_pixel) + (R_32 - R_24);
  y := 0;
  dy := (iface^.s_height shl 16) div iface^.d_height;
  dx := (iface^.s_width shl 16) div iface^.d_width;
  source := iface^.s_pixels;
  dest := iface^.d_pixels;
  repeat
    x := 0;
    count := iface^.d_width shr 2;
    while count <> 0 do
    begin
      Dec(count);

      s_pixel := iface^.lookup[(source + (x shr 16))^]; Inc(x, dx);
      s_pixel2 := iface^.lookup[(source + (x shr 16))^]; Inc(x, dx);

      {$IFDEF FPC_LITTLE_ENDIAN}
      s_pixel := s_pixel or (s_pixel2 shl 24);
      {$ELSE FPC_LITTLE_ENDIAN}
      s_pixel := (s_pixel shl 8) or (s_pixel2 shr 16);
      {$ENDIF FPC_LITTLE_ENDIAN}
      PUint32(dest)^ := s_pixel;

      s_pixel := iface^.lookup[(source + (x shr 16))^]; Inc(x, dx);
      {$IFDEF FPC_LITTLE_ENDIAN}
      s_pixel2 := (s_pixel2 shr 8) or (s_pixel shl 16);
      {$ELSE FPC_LITTLE_ENDIAN}
      s_pixel2 := (s_pixel2 shl 16) or (s_pixel shr 8);
      {$ENDIF FPC_LITTLE_ENDIAN}
      PUint32(dest + 4)^ := s_pixel2;

      s_pixel2 := iface^.lookup[(source + (x shr 16))^]; Inc(x, dx);
      {$IFDEF FPC_LITTLE_ENDIAN}
      s_pixel := (s_pixel shr 16) or (s_pixel2 shl 8);
      {$ELSE FPC_LITTLE_ENDIAN}
      s_pixel := (s_pixel shl 24) or s_pixel2;
      {$ENDIF FPC_LITTLE_ENDIAN}
      PUint32(dest + 8)^ := s_pixel;

      Inc(dest, 12);
    end;

    count := iface^.d_width and $3;
    while count <> 0 do
    begin
      Dec(count);
      d_pixel := iface^.lookup[(source + (x shr 16))^]; Inc(x, dx);

      (dest + 0)^ := (d_ptr + 0)^;
      (dest + 1)^ := (d_ptr + 1)^;
      (dest + 2)^ := (d_ptr + 2)^;

      Inc(dest, 3);
    end;

    { Go to next destination row }
{    Inc(iface^.d_pixels, iface^.d_add);}
    Inc(dest, iface^.d_add);

    { Calculate amount of rows to move in source surface }
    Inc(y, dy);

    Inc(source, (y shr 16) * DWord(iface^.s_pitch));
    y := y and $ffff;
    Dec(iface^.d_height);
  until iface^.d_height = 0;
end;

{ Quick hack of a index 8 to 16 stretch converter }
procedure ConvertP_index8_16_S(iface: PHermesConverterInterface); cdecl;
var
  x, y, count: DWord;
  dx, dy: DWord;
  source, dest: PUint8;
begin
  y := 0;
  dy := (iface^.s_height shl 16) div iface^.d_height;
  dx := (iface^.s_width shl 16) div iface^.d_width;
  source := iface^.s_pixels;
  dest := iface^.d_pixels;
  repeat
    { do a two pixel at a time loop }

    count := iface^.d_width shr 1;
    x := 0;

    while count <> 0 do
    begin
      Dec(count);
      PUint32(dest)^ := (iface^.lookup[(source + (x shr 16))^] shl DWORD_SMALLINT0_SHL) or
                      (iface^.lookup[(source + ((x + dx) shr 16))^] shl DWORD_SMALLINT1_SHL);
      Inc(x, dx); Inc(x, dx);
      Inc(dest, 4);
    end;

    { Clean up remaining pixel if odd width }
    if (iface^.d_width and 1) <> 0 then
    begin
      PUint16(dest)^ := iface^.lookup[(source + (x shr 16))^];
      Inc(dest, 2);
    end;

    { Go to next destination row }
    Inc(dest, iface^.d_add);

    { Calculate amount of rows to move in source surface }
    Inc(y, dy);

    Inc(source, (y shr 16) * DWord(iface^.s_pitch));
    y := y and $ffff;
    Dec(iface^.d_height);
  until iface^.d_height = 0;
end;

procedure ConvertP_index8_8_S(iface: PHermesConverterInterface); cdecl;
var
  x, y, count, c: DWord;
  dx, dy: DWord;
  source, dest: PUint8;
begin
  y := 0;
  dy := (iface^.s_height shl 16) div iface^.d_height;
  dx := (iface^.s_width shl 16) div iface^.d_width;
  source := iface^.s_pixels;
  dest := iface^.d_pixels;
  repeat
    { do a four pixel at a time loop }

    count := iface^.d_width;
    x := 0;

    while ((PtrUInt(dest) and 3) <> 0) and (count > 0) do
    begin
      Dec(count);
      dest^ := iface^.lookup[(source + (x shr 16))^];
      Inc(x, dx);
      Inc(dest);
    end;

    c := count shr 2;
    count := count and 3;

    while c <> 0 do
    begin
      Dec(c);
      PUint32(dest)^ := (iface^.lookup[(source + (x shr 16))^] shl DWORD_BYTE0_SHL) or
                      (iface^.lookup[(source + ((x + dx) shr 16))^] shl DWORD_BYTE1_SHL) or
                      (iface^.lookup[(source + ((x + (dx shl 1)) shr 16))^] shl DWORD_BYTE2_SHL) or
                      (iface^.lookup[(source + ((x + dx + (dx shl 1)) shr 16))^] shl DWORD_BYTE3_SHL);
      Inc(x, dx shl 2);
      Inc(dest, 4);
    end;

    while count > 0 do
    begin
      Dec(count);
      dest^ := iface^.lookup[(source + (x shr 16))^];
      Inc(dest);
    end;

    { Go to next destination row }
    Inc(dest, iface^.d_add);

    { Calculate amount of rows to move in source surface }
    Inc(y, dy);

    Inc(source, (y shr 16) * DWord(iface^.s_pitch));
    y := y and $ffff;
    Dec(iface^.d_height);
  until iface^.d_height = 0;
end;