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
|
/***************************************************************************
antialias.c Copyright (C) 2001 Christoph Reichenbach
This program may be modified and copied freely according to the terms of
the GNU general public license (GPL), as long as the above copyright
notice and the licensing information contained herein are preserved.
Please refer to www.gnu.org for licensing details.
This work is provided AS IS, without warranty of any kind, expressed or
implied, including but not limited to the warranties of merchantibility,
noninfringement, and fitness for a specific purpose. The author will not
be held liable for any damage caused by this work or derivatives of it.
By using this source code, you agree to the licensing terms as stated
above.
Please contact the maintainer for bug reports or inquiries.
Current Maintainer:
Christoph Reichenbach (CR) <jameson@linuxgames.com>
***************************************************************************/
/** Antialiasing code **/
#include "sci/include/gfx_system.h"
#include "sci/include/gfx_tools.h"
static void
antialiase_simple(gfx_pixmap_t *pixmap, int mask[], int shift_const, gfx_mode_t *mode) {
int x, y, c;
int bytespp = mode->bytespp;
int line_size = bytespp * pixmap->xl;
char *lastline[2];
char *lastline_p = NULL;
char *data_p = (char *) pixmap->data;
lastline[0] = (char*)sci_malloc(line_size);
lastline[1] = (char*)sci_malloc(line_size);
for (y = 0; y < pixmap->yl; y++) {
int visimode = (y > 0 && y + 1 < pixmap->yl) ? 1 : 0;
unsigned long last_pixel;
memcpy(lastline[y & 1], data_p, line_size);
lastline_p = lastline[(y & 1)^1];
for (x = 0; x < pixmap->xl; x++) {
unsigned long result = 0;
if (x == 1)
visimode++;
else if (x + 1 == pixmap->xl)
visimode--;
for (c = 0; c < 3; c++) {
unsigned long accum = 0;
unsigned long reader = 0;
int y_mode;
/* Yes, bad compilers will read three times as often as neccessary.
** This optimization is straightforward to detect (common subexpression
** elemination), so I prefer to write the stuff semi-legibly...
*/
for (y_mode = 0; y_mode < 2; y_mode++)
if ((y_mode == 0 && y > 0)
|| (y_mode == 1 && y + 1 < pixmap->yl)) {
char *src = (y_mode) ? data_p + line_size : lastline_p;
if (x > 0) {
memcpy(&reader, src - bytespp, bytespp);
accum += ((reader >> shift_const) & mask[c]) << 0;
}
memcpy(&reader, src, bytespp);
accum += ((reader >> shift_const) & mask[c]) << 1;
if (x + 1 < pixmap->xl) {
memcpy(&reader, src + bytespp, bytespp);
accum += ((reader >> shift_const) & mask[c]) << 0;
}
}
if (x > 0)
accum += ((last_pixel >> shift_const) & mask[c]) << 1;
memcpy(&reader, data_p, bytespp);
if (c == 2)
last_pixel = reader;
accum += ((reader >> shift_const) & mask[c]) << 2;
if (x + 1 < pixmap->xl) {
memcpy(&reader, data_p + bytespp, bytespp);
accum += ((reader >> shift_const) & mask[c]) << 1;
}
switch (visimode) {
case 0:
accum /= 9; /* Only happens twelve times */
break;
case 1:
accum = (accum >> 6) + (accum >> 4); /* 15/16 intensity */
break;
case 2:
accum >>= 4;
break;
default:
accum = (c == 0) ? 0xffffffff : 0; /* Error: mark as red */
}
result |= (accum & mask[c]);
}
result <<= shift_const;
memcpy(data_p, &result, bytespp);
data_p += bytespp;
lastline_p += bytespp;
}
}
free(lastline[0]);
free(lastline[1]);
}
void
gfxr_antialiase(gfx_pixmap_t *pixmap, gfx_mode_t *mode, gfxr_antialiasing_t type) {
int masks[3];
int shift_const = 0;
#ifdef WORDS_BIGENDIAN
shift_const = (sizeof(unsigned long) - mode->bytespp) << 3;
#endif /* WORDS_BIGENDIAN */
masks[0] = mode->red_mask;
masks[1] = mode->green_mask;
masks[2] = mode->blue_mask;
if (mode->palette)
return;
switch (type) {
case GFXR_ANTIALIASING_NONE:
break;
case GFXR_ANTIALIASING_SIMPLE:
antialiase_simple(pixmap, masks, shift_const, mode);
break;
default:
GFXERROR("Invalid antialiasing mode %d (internal error)\n", type);
}
return;
}
|