annotate dmscaledblit.h @ 100:f16d102dbbac

Add a function for setting bitmapped font palette.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 02 Oct 2012 20:33:01 +0300
parents 0430f484641b
children 79dac918c81e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 /*
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2 * DMLib
87
baf72a99d5ee Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 85
diff changeset
3 * -- Scaled sprite / surface blitting function template
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4 * Programmed and designed by Matti 'ccr' Hamalainen
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
5 * (C) Copyright 2011-2012 Tecnic Software productions (TNSP)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
6 */
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
7
85
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
8 int DM_BLITFUNC_NAME (SDL_Surface *src,
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
9 const int x0, const int y0,
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
10 const int dwidth, const int dheight,
16
d9251dd496ce Add new scaled blit template parameters in order to implement global alpha.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
11 SDL_Surface *dst
85
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
12 #ifdef DM_BLITFUNC_ARGS
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
13 DM_BLITFUNC_ARGS
16
d9251dd496ce Add new scaled blit template parameters in order to implement global alpha.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
14 #endif
d9251dd496ce Add new scaled blit template parameters in order to implement global alpha.
Matti Hamalainen <ccr@tnsp.org>
parents: 0
diff changeset
15 )
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
16 {
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
17 int yc;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
18 DMFixedPoint32 xv, yv, dx, dy;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
19 DMQValue xr, yr;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
20
85
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
21 #ifdef DM_BLITFUNC_VARS
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
22 DM_BLITFUNC_VARS
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
23 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
24
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
25 // Clip coordinates
95
0430f484641b Add unscaled blitting functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 87
diff changeset
26 if (dmScaledClipCoord(&xr, x0, src->w, dwidth,
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
27 dst->clip_rect.x, dst->clip_rect.x + dst->clip_rect.w)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
28 ||
95
0430f484641b Add unscaled blitting functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 87
diff changeset
29 dmScaledClipCoord(&yr, y0, src->h, dheight,
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
30 dst->clip_rect.y, dst->clip_rect.y + dst->clip_rect.h))
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
31 return -1;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
32
85
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
33 #ifdef DM_BLITFUNC_INIT
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
34 DM_BLITFUNC_INIT
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
35 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
36
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
37 // Calculate "final" initial source bitmap offsets
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
38 FP_CONV(dy, yr.voffs);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
39 FP_MUL_R(yv, dy, yr.vdelta);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
40
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
41 FP_CONV(dx, xr.voffs);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
42 FP_MUL_R(dx, dx, xr.vdelta);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
43
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
44 // Take pitch into account
95
0430f484641b Add unscaled blitting functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 87
diff changeset
45 const int dstadd = xr.vadd - dst->clip_rect.w + dst->clip_rect.x + (dst->pitch / DM_BLITFUNC_DST_BYTES);
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
46
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
47 // Blit scaled
85
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
48 DM_BLITFUNC_DST_TYPE * dp = ((DM_BLITFUNC_DST_TYPE *) dst->pixels) + (yr.v0 * dst->pitch) / DM_BLITFUNC_DST_BYTES + xr.v0;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
49 for (yc = yr.v0; yc < yr.v1; yc++)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
50 {
85
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
51 const DM_BLITFUNC_SRC_TYPE * sp = ((DM_BLITFUNC_SRC_TYPE *) src->pixels) + (FP_GETH(yv) * src->pitch) / DM_BLITFUNC_SRC_BYTES;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
52 int xc;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
53
85
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
54 #ifdef DM_BLITFUNC_INNER_INIT
87
baf72a99d5ee Cosmetics.
Matti Hamalainen <ccr@tnsp.org>
parents: 85
diff changeset
55 DM_BLITFUNC_INNER_INIT
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
56 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
57
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
58 for (xv.dw = dx.dw, xc = xr.v0; xc < xr.v1; xc++)
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
59 {
85
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
60 DM_BLITFUNC_INNER
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
61 FP_ADD(xv, xr.vdelta);
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
62 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
63 FP_ADD(yv, yr.vdelta);
95
0430f484641b Add unscaled blitting functions.
Matti Hamalainen <ccr@tnsp.org>
parents: 87
diff changeset
64 dp += dstadd;
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
65 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
66
85
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
67 #ifdef DM_BLITFUNC_FINISH
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
68 DM_BLITFUNC_FINISH
0
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
69 #endif
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
70
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
71 return 0;
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
72 }
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
73
32250b436bca Initial re-import.
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
74
85
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
75 #undef DM_BLITFUNC_NAME
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
76 #undef DM_BLITFUNC_ARGS
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
77 #undef DM_BLITFUNC_SRC_BYTES
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
78 #undef DM_BLITFUNC_DST_BYTES
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
79 #undef DM_BLITFUNC_SRC_TYPE
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
80 #undef DM_BLITFUNC_DST_TYPE
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
81 #undef DM_BLITFUNC_VARS
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
82 #undef DM_BLITFUNC_INIT
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
83 #undef DM_BLITFUNC_INNER_INIT
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
84 #undef DM_BLITFUNC_INNER
c257d73cf790 Rename some macros.
Matti Hamalainen <ccr@tnsp.org>
parents: 16
diff changeset
85 #undef DM_BLITFUNC_FINISH