File: prevman.c

package info (click to toggle)
gimp-plugin-registry 5.20120621
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 56,020 kB
  • sloc: ansic: 46,068; lisp: 20,560; python: 14,495; sh: 3,294; cpp: 2,528; makefile: 1,041; xml: 546
file content (259 lines) | stat: -rw-r--r-- 8,164 bytes parent folder | download
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
/* Refocus plug-in
 * Copyright (C) 1999-2003 Ernst Lippe
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 *
 * Version $Id: prevman.c,v 1.1.1.1 2003/01/30 21:30:18 ernstl Exp $
 */

#include <string.h>
#include "prevman.h"
#include "util.h"

#ifndef lint
static char vcid[] GCC_UNUSED = "$Id: prevman.c,v 1.1.1.1 2003/01/30 21:30:18 ernstl Exp $";
#endif /* lint */

/**
 * tile_source_init_from_drawable:
 * @tile_source: The @TileSource that is initialized.
 * @drawable: The #GimpDrawable that is used as the real source of tiles.
 * @x: Leftmost position in the @drawable that will be used.
 * @y: Topmost position in the @drawable that will be used.
 * @width: Width of the rectangle in the @drawable that will be used.
 * @height: Height of the rectangle in the @drawable that will be used.
 * 
 * Initialize a #TileSource to use a #GimpDrawable.
 * It can then be used to get tiles from the rectangle
 * (@x, @y, @width, @height) in the @drawable.
 * @see tile_source_get_tile() and tile_source_tile_unref()
 **/
void
tile_source_init_from_drawable (TileSource * tile_source,
                                GimpDrawable * drawable, gint x, gint y,
                                gint width, gint height)
{
  tile_source->type = TP_DRAWABLE;
  tile_source->un.drw.drawable = drawable;
  tile_source->x = 0;
  tile_source->y = 0;
  tile_source->width = drawable->width;
  tile_source->height = drawable->height;
  tile_source->bpp = drawable->bpp;
  tile_source->has_alpha = gimp_drawable_has_alpha (drawable->drawable_id);
  tile_source->un.drw.drawable = drawable;
  gimp_pixel_rgn_init (&tile_source->un.drw.pixel_rgn, drawable, x, y, width,
                       height, FALSE, FALSE);
}

/**
 * tile_source_get_tile:
 * @tile_source: The #TileSource.
 * @x: x coordinate of point in tile.
 * @y: y coordinate of point in tile.
 * 
 * Get the tile that contains the point (@x, @y).
 * When this tile is no longer needed it must be released with
 * tile_source_tile_unref().
 * 
 * Return value: The requested tile.
 **/
GimpTile *
tile_source_get_tile (TileSource * tile_source, const gint x, const gint y)
{
  GimpTile *result = NULL;
  if (tile_source->type == TP_DRAWABLE)
    {
      result =
        gimp_drawable_get_tile2 (tile_source->un.drw.drawable, FALSE, x, y);
      gimp_tile_ref (result);
    }
  else
    {
    };
  return (result);
}

/**
 * tile_source_tile_unref:
 * @tile_source: The #TileSource that manages @tile.
 * @tile: The #GimpTile that can be released.
 * 
 * Release the @tile. This function must always be called when
 * the @tile is no longer needed.
 **/
void
tile_source_tile_unref (TileSource * tile_source, GimpTile * tile)
{
  if (tile_source->type == TP_DRAWABLE)
    {
      gimp_tile_unref (tile, FALSE);
    }
  else
    {
    };
}



/**
 * tile_source_get_row:
 * @tile_source: The TileSource.
 * @buf: The buffer in which the result is returned. Its size must
 * be at least @width * @tile_source->bpp bytes.
 * @x: x coordinate of the start of the row.
 * @y: y coordinate of the row.
 * @width: length of the row in pixels.
 * 
 * Get a row of pixels from @tile_source.
 **/
void
tile_source_get_row (TileSource * tile_source, guchar * buf, gint x, gint y,
                     gint width)
{
  if (tile_source->type == TP_DRAWABLE)
    {
      gimp_pixel_rgn_get_row (&tile_source->un.drw.pixel_rgn, buf, x, y,
                              width);
    }
  else
    {
    };
}

void
tile_sink_init_from_drawable (TileSink * tile_sink, GimpDrawable * drawable,
                              gint x, gint y, gint width, gint height)
{
  tile_sink->type = TP_DRAWABLE;
  tile_sink->un.drw.drawable = drawable;
  tile_sink->x = 0;
  tile_sink->y = 0;
  tile_sink->width = drawable->width;
  tile_sink->height = drawable->height;
  tile_sink->bpp = drawable->bpp;
  tile_sink->has_alpha = gimp_drawable_has_alpha (drawable->drawable_id);
  gimp_pixel_rgn_init (&tile_sink->un.drw.pixel_rgn, drawable, x, y, width,
                       height, TRUE, TRUE);
}

void
tile_sink_init_for_preview (TileSink * tile_sink, GimpDrawable * drawable,
                            gint x, gint y, gint width, gint height)
{
  tile_sink->type = TP_PREV;
  tile_sink->x = x;
  tile_sink->y = y;
  tile_sink->width = width;
  tile_sink->height = height;
  tile_sink->bpp = drawable->bpp;
  tile_sink->has_alpha = gimp_drawable_has_alpha (drawable->drawable_id);
  tile_sink->un.prv.data = g_new (guchar,
                                  tile_sink->width * tile_sink->height *
                                  tile_sink->bpp);
  /* This number of rows and cols is only sometimes too high */
  tile_sink->un.prv.ntile_cols = 1 + (tile_sink->width + tile_width () - 1) /
    tile_width ();
  tile_sink->un.prv.ntile_rows =
    1 + (tile_sink->height + tile_height () - 1) / tile_height ();
  tile_sink->un.prv.tiles =
    g_new (GimpTile,
           tile_sink->un.prv.ntile_rows * tile_sink->un.prv.ntile_cols);
}

void
tile_sink_free_buffers (TileSink * tile_sink)
{
  if (tile_sink->type == TP_PREV)
    {
      g_free (tile_sink->un.prv.data);
      g_free (tile_sink->un.prv.tiles);
    };
}

GimpTile *
tile_sink_get_tile (TileSink * tile_sink, const gint x, const gint y)
{
  GimpTile *result;
  if (tile_sink->type == TP_DRAWABLE)
    {
      result =
        gimp_drawable_get_tile2 (tile_sink->un.drw.drawable, TRUE, x, y);
      gimp_tile_ref (result);
    }
  else
    {
      gint tile_row_nr =
        (y - floorm (tile_sink->y, tile_height ())) / tile_height ();
      gint tile_col_nr =
        (x - floorm (tile_sink->x, tile_width ())) / tile_width ();
      gint tile_nr = tile_row_nr * tile_sink->un.prv.ntile_cols + tile_col_nr;

      g_assert (tile_row_nr >= 0);
      g_assert (tile_row_nr < tile_sink->un.prv.ntile_rows);
      g_assert (tile_col_nr >= 0);
      g_assert (tile_col_nr < tile_sink->un.prv.ntile_cols);
      result = tile_sink->un.prv.tiles + tile_nr;
      result->ewidth = tile_width ();   /* Wroong on the right */
      result->eheight = tile_height (); /* Wroong on the bottom */
      result->bpp = tile_sink->bpp;
      result->data = g_new (guchar,
                            result->ewidth * result->eheight * result->bpp);
      result->tile_num = tile_nr;
    };
  return (result);
}

void
tile_sink_tile_unref (TileSink * tile_sink, GimpTile * tile)
{
  if (tile_sink->type == TP_DRAWABLE)
    {
      gimp_tile_unref (tile, TRUE);
    }
  else
    {
      gint tile_row_nr = tile->tile_num / tile_sink->un.prv.ntile_cols;
      gint tile_col_nr = tile->tile_num % tile_sink->un.prv.ntile_cols;
      gint tile_x = floorm (tile_sink->x, tile_width ()) +
        tile_col_nr * tile_width ();
      gint tile_y = floorm (tile_sink->y, tile_height ()) +
        tile_row_nr * tile_height ();

      g_assert (tile_sink->un.prv.tiles + tile->tile_num == tile);
      copy_rect (tile_sink->un.prv.data, tile_sink->x, tile_sink->y,
                 tile_sink->width, tile_sink->height,
                 tile->data, tile_x, tile_y, tile->ewidth, tile->eheight,
                 tile_sink->bpp);
      g_free (tile->data);
    };
}

void
tile_sink_get_row (TileSink * tile_sink, guchar * buf, gint x, gint y,
                   gint width)
{
  if (tile_sink->type == TP_DRAWABLE)
    {

    }
  else
    {
      guchar *start = tile_sink->un.prv.data +
        (tile_sink->bpp *
         ((y - tile_sink->y) * tile_sink->width + (x - tile_sink->x)));
      memmove (buf, start, width * tile_sink->bpp);
    }
}