2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
1998-01-22 15:02:57 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* 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
|
1998-04-13 13:44:11 +08:00
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1998-01-22 15:02:57 +08:00
|
|
|
*/
|
2000-12-29 23:22:01 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#ifndef __TILE_MANAGER_H__
|
|
|
|
#define __TILE_MANAGER_H__
|
|
|
|
|
|
|
|
|
2006-07-06 20:27:32 +08:00
|
|
|
/* Creates a new tile manager with the specified width for the
|
|
|
|
* toplevel. The toplevel size is used to compute the number of
|
|
|
|
* levels and their size. Each level is 1/2 the width and height of
|
1997-11-25 06:05:25 +08:00
|
|
|
* the level above it.
|
2001-05-15 19:25:25 +08:00
|
|
|
*
|
2006-07-06 20:27:32 +08:00
|
|
|
* The toplevel is level 0. The smallest level in the hierarchy
|
|
|
|
* is "nlevels - 1". That level will be smaller than TILE_WIDTH x
|
|
|
|
* TILE_HEIGHT
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
2006-07-06 20:27:32 +08:00
|
|
|
TileManager * tile_manager_new (gint width,
|
|
|
|
gint height,
|
2006-04-12 20:49:29 +08:00
|
|
|
gint bpp);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-05-27 01:02:06 +08:00
|
|
|
/* Ref/Unref a tile manager.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
2003-05-27 01:02:06 +08:00
|
|
|
TileManager * tile_manager_ref (TileManager *tm);
|
|
|
|
void tile_manager_unref (TileManager *tm);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2006-07-06 20:27:32 +08:00
|
|
|
/* Set the validate procedure for the tile manager. The validate
|
|
|
|
* procedure is called when an invalid tile is referenced. If the
|
|
|
|
* procedure is NULL, then the tile is set to valid and its memory is
|
|
|
|
* allocated, but not initialized.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
2000-12-29 23:22:01 +08:00
|
|
|
void tile_manager_set_validate_proc (TileManager *tm,
|
2006-04-12 20:49:29 +08:00
|
|
|
TileValidateProc proc);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-11-17 01:51:36 +08:00
|
|
|
/* Get a specified tile from a tile manager.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
2000-12-29 23:22:01 +08:00
|
|
|
Tile * tile_manager_get_tile (TileManager *tm,
|
2006-04-12 20:49:29 +08:00
|
|
|
gint xpixel,
|
|
|
|
gint ypixel,
|
|
|
|
gint wantread,
|
|
|
|
gint wantwrite);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Get a specified tile from a tile manager.
|
|
|
|
*/
|
2000-12-29 23:22:01 +08:00
|
|
|
Tile * tile_manager_get (TileManager *tm,
|
2006-04-12 20:49:29 +08:00
|
|
|
gint tile_num,
|
|
|
|
gint wantread,
|
|
|
|
gint wantwrite);
|
1998-07-10 10:43:12 +08:00
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
void tile_manager_map_tile (TileManager *tm,
|
2006-04-12 20:49:29 +08:00
|
|
|
gint xpixel,
|
|
|
|
gint ypixel,
|
|
|
|
Tile *srctile);
|
1998-07-10 10:43:12 +08:00
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
void tile_manager_map (TileManager *tm,
|
2006-04-12 20:49:29 +08:00
|
|
|
gint tile_num,
|
|
|
|
Tile *srctile);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Validate a tiles memory.
|
|
|
|
*/
|
2000-12-29 23:22:01 +08:00
|
|
|
void tile_manager_validate (TileManager *tm,
|
2006-04-12 20:49:29 +08:00
|
|
|
Tile *tile);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
void tile_invalidate (Tile **tile_ptr,
|
2006-04-12 20:49:29 +08:00
|
|
|
TileManager *tm,
|
|
|
|
gint tile_num);
|
2000-12-29 23:22:01 +08:00
|
|
|
void tile_invalidate_tile (Tile **tile_ptr,
|
2006-04-12 20:49:29 +08:00
|
|
|
TileManager *tm,
|
|
|
|
gint xpixel,
|
|
|
|
gint ypixel);
|
1998-08-12 01:35:34 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* Given a toplevel tile, this procedure will invalidate
|
1998-08-16 03:17:36 +08:00
|
|
|
* (set the dirty bit) for this toplevel tile.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
2001-05-15 19:25:25 +08:00
|
|
|
void tile_manager_invalidate_tiles (TileManager *tm,
|
2006-04-12 20:49:29 +08:00
|
|
|
Tile *toplevel_tile);
|
1998-07-29 07:13:36 +08:00
|
|
|
|
2001-05-15 19:25:25 +08:00
|
|
|
void tile_manager_set_user_data (TileManager *tm,
|
2006-04-12 20:49:29 +08:00
|
|
|
gpointer user_data);
|
2001-05-15 19:25:25 +08:00
|
|
|
gpointer tile_manager_get_user_data (const TileManager *tm);
|
1998-07-29 07:13:36 +08:00
|
|
|
|
2001-05-15 19:25:25 +08:00
|
|
|
gint tile_manager_width (const TileManager *tm);
|
|
|
|
gint tile_manager_height (const TileManager *tm);
|
|
|
|
gint tile_manager_bpp (const TileManager *tm);
|
2001-01-23 21:01:48 +08:00
|
|
|
|
2001-05-15 19:25:25 +08:00
|
|
|
void tile_manager_get_offsets (const TileManager *tm,
|
2006-04-12 20:49:29 +08:00
|
|
|
gint *x,
|
|
|
|
gint *y);
|
2001-05-15 19:25:25 +08:00
|
|
|
void tile_manager_set_offsets (TileManager *tm,
|
2006-04-12 20:49:29 +08:00
|
|
|
gint x,
|
|
|
|
gint y);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2004-09-20 03:47:26 +08:00
|
|
|
gint64 tile_manager_get_memsize (const TileManager *tm,
|
|
|
|
gboolean sparse);
|
2002-01-31 00:14:26 +08:00
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
void tile_manager_get_tile_coordinates (TileManager *tm,
|
2006-04-12 20:49:29 +08:00
|
|
|
Tile *tile,
|
|
|
|
gint *x,
|
|
|
|
gint *y);
|
1998-08-16 03:17:36 +08:00
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
void tile_manager_map_over_tile (TileManager *tm,
|
2006-04-12 20:49:29 +08:00
|
|
|
Tile *tile,
|
|
|
|
Tile *srctile);
|
1998-08-16 03:17:36 +08:00
|
|
|
|
2005-05-09 04:24:54 +08:00
|
|
|
void read_pixel_data (TileManager *tm,
|
|
|
|
gint x1,
|
|
|
|
gint y1,
|
|
|
|
gint x2,
|
|
|
|
gint y2,
|
|
|
|
guchar *buffer,
|
|
|
|
guint stride);
|
|
|
|
|
|
|
|
void write_pixel_data (TileManager *tm,
|
|
|
|
gint x1,
|
|
|
|
gint y1,
|
|
|
|
gint x2,
|
|
|
|
gint y2,
|
|
|
|
const guchar *buffer,
|
|
|
|
guint stride);
|
2001-11-29 09:06:44 +08:00
|
|
|
|
2003-04-04 19:19:57 +08:00
|
|
|
/* Fill buffer with the pixeldata for the pixel at coordinates x,y
|
|
|
|
* if x,y is outside the area of the tilemanger, nothing is done.
|
|
|
|
*/
|
2006-07-06 18:58:44 +08:00
|
|
|
void read_pixel_data_1 (TileManager *tm,
|
2006-07-06 20:27:32 +08:00
|
|
|
gint x,
|
|
|
|
gint y,
|
2005-05-09 04:24:54 +08:00
|
|
|
guchar *buffer);
|
|
|
|
|
2006-07-06 18:58:44 +08:00
|
|
|
void write_pixel_data_1 (TileManager *tm,
|
2006-07-06 20:27:32 +08:00
|
|
|
gint x,
|
|
|
|
gint y,
|
2006-04-12 20:49:29 +08:00
|
|
|
const guchar *buffer);
|
2001-05-15 19:25:25 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#endif /* __TILE_MANAGER_H__ */
|