229 lines
7.5 KiB
C
229 lines
7.5 KiB
C
/* vim:expandtab:ts=2 sw=2:
|
|
*/
|
|
/* Grafx2 - The Ultimate 256-color bitmap paint program
|
|
|
|
Copyright 2007 Adrien Destugues
|
|
Copyright 1996-2001 Sunset Design (Guillaume Dorme & Karl Maritaud)
|
|
|
|
Grafx2 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; version 2
|
|
of the License.
|
|
|
|
Grafx2 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 Grafx2; if not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
///@file loadsave.h
|
|
/// Saving and loading different picture formats.
|
|
/// Also handles showing the preview in fileselectors.
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __LOADSAVE_H__
|
|
#define __LOADSAVE_H__
|
|
|
|
#include <stdio.h>
|
|
|
|
enum CONTEXT_TYPE {
|
|
CONTEXT_MAIN_IMAGE,
|
|
CONTEXT_BRUSH,
|
|
CONTEXT_PREVIEW,
|
|
CONTEXT_SURFACE,
|
|
};
|
|
|
|
|
|
typedef struct
|
|
{
|
|
/// Kind of context. Internally used to differentiate the "sub-classes"
|
|
enum CONTEXT_TYPE Type;
|
|
|
|
// File properties
|
|
|
|
char * File_name;
|
|
char * File_directory;
|
|
byte Format;
|
|
|
|
// Image properties
|
|
|
|
T_Palette Palette;
|
|
short Width;
|
|
short Height;
|
|
byte Nb_layers;
|
|
char Comment[COMMENT_SIZE+1];
|
|
short Transparent_color;
|
|
/// Pixel ratio of the image
|
|
enum PIXEL_RATIO Ratio;
|
|
|
|
/// Load/save address of first pixel
|
|
byte *Target_address;
|
|
/// Pitch: Difference of addresses between one pixel and the one just "below" it
|
|
long Pitch;
|
|
|
|
/// Internal: Used to mark truecolor images on loading. Only used by preview.
|
|
//byte Is_truecolor;
|
|
/// Internal: Temporary RGB buffer when loading 24bit images
|
|
T_Components *Buffer_image_24b;
|
|
|
|
/// Internal: Temporary buffer when saving the flattened copy of something
|
|
byte *Buffer_image;
|
|
|
|
// Internal: working data for preview case
|
|
short Preview_factor_X;
|
|
short Preview_factor_Y;
|
|
short Preview_pos_X;
|
|
short Preview_pos_Y;
|
|
|
|
// Internal: returned surface for SDL_Surface case
|
|
SDL_Surface * Surface;
|
|
|
|
} T_IO_Context;
|
|
|
|
/// Type of a function that can be called for a T_IO_Context. Kind of a method.
|
|
typedef void (* Func_IO) (T_IO_Context *);
|
|
|
|
/*
|
|
void Pixel_load_in_current_screen (word x_pos, word y_pos, byte color);
|
|
void Pixel_load_in_preview (word x_pos, word y_pos, byte color);
|
|
void Pixel_load_in_brush (word x_pos, word y_pos, byte color);
|
|
*/
|
|
|
|
// Setup for loading a preview in fileselector
|
|
void Init_context_preview(T_IO_Context * context, char *file_name, char *file_directory);
|
|
// Setup for loading/saving the current main image
|
|
void Init_context_layered_image(T_IO_Context * context, char *file_name, char *file_directory);
|
|
// Setup for loading/saving the flattened version of current main image
|
|
void Init_context_flat_image(T_IO_Context * context, char *file_name, char *file_directory);
|
|
// Setup for loading/saving the user's brush
|
|
void Init_context_brush(T_IO_Context * context, char *file_name, char *file_directory);
|
|
// Setup for saving an arbitrary undo/redo step, from either the main or spare page.
|
|
void Init_context_history_step(T_IO_Context * context, T_Page *page);
|
|
// Setup for loading an image into a new SDL surface.
|
|
void Init_context_surface(T_IO_Context * context, char *file_name, char *file_directory);
|
|
|
|
// Cleans up resources (currently: the 24bit buffer)
|
|
void Destroy_context(T_IO_Context *context);
|
|
|
|
///
|
|
/// High-level picture loading function.
|
|
void Load_image(T_IO_Context *context);
|
|
|
|
///
|
|
/// High-level picture saving function.
|
|
void Save_image(T_IO_Context *context);
|
|
|
|
///
|
|
/// Checks if there are any pending safety backups, and then opens them.
|
|
/// Returns 0 if there were none
|
|
/// Returns non-zero if some backups were loaded.
|
|
int Check_recovery(void);
|
|
|
|
/// Remove safety backups. Need to call on normal program exit.
|
|
void Delete_safety_backups(void);
|
|
|
|
/// Data for an image file format.
|
|
typedef struct {
|
|
byte Identifier; ///< Identifier for this format in enum :FILE_FORMATS
|
|
char *Label; ///< Five-letter label
|
|
Func_IO Test; ///< Function which tests if the file is of this format
|
|
Func_IO Load; ///< Function which loads an image of this format
|
|
Func_IO Save; ///< Function which saves an image of this format
|
|
byte Palette_only; ///< Boolean, true if this format saves/loads only the palette.
|
|
byte Comment; ///< This file format allows a text comment
|
|
byte Supports_layers; ///< Boolean, true if this format preserves layers on saving
|
|
char *Default_extension; ///< Default file extension
|
|
char *Extensions; ///< List of semicolon-separated file extensions
|
|
} T_Format;
|
|
|
|
/// Array of the known file formats
|
|
extern T_Format File_formats[];
|
|
|
|
///
|
|
/// Function which attempts to save backups of the images (main and spare),
|
|
/// called in case of SIGSEGV.
|
|
void Image_emergency_backup(void);
|
|
|
|
/// Load an arbitrary SDL_Surface.
|
|
SDL_Surface * Load_surface(char *full_name);
|
|
|
|
|
|
/*
|
|
/// Pixel ratio of last loaded image: one of :PIXEL_SIMPLE, :PIXEL_WIDE or :PIXEL_TALL
|
|
extern enum PIXEL_RATIO Ratio_of_loaded_image;
|
|
*/
|
|
|
|
T_Format * Get_fileformat(byte format);
|
|
|
|
// -- File formats
|
|
|
|
#ifndef __no_pnglib__
|
|
#define NB_KNOWN_FORMATS 19 ///< Total number of known file formats.
|
|
#else
|
|
// Without pnglib
|
|
#define NB_KNOWN_FORMATS 18 ///< Total number of known file formats.
|
|
#endif
|
|
|
|
// Internal use
|
|
|
|
/// Generic allocation and similar stuff, done at beginning of image load, as soon as size is known.
|
|
void Pre_load(T_IO_Context *context, short width, short height, long file_size, int format, enum PIXEL_RATIO ratio, byte truecolor);
|
|
/// Remaps the window. To call after palette (last) changes.
|
|
void Palette_loaded(T_IO_Context *context);
|
|
/// Generic cleanup done on end of loading (ex: color-conversion from the temporary 24b buffer)
|
|
//void Post_load(T_IO_Context *context);
|
|
|
|
/// Query the color of a pixel (to save)
|
|
byte Get_pixel(T_IO_Context *context, short x, short y);
|
|
/// Set the color of a pixel (on load)
|
|
void Set_pixel(T_IO_Context *context, short x, short y, byte c);
|
|
/// Set the color of a 24bit pixel (on load)
|
|
void Set_pixel_24b(T_IO_Context *context, short x, short y, byte r, byte g, byte b);
|
|
/// Function to call when need to switch layers.
|
|
void Set_layer(T_IO_Context *context, byte layer);
|
|
|
|
|
|
// =================================================================
|
|
// What follows here are the definitions of functions and data
|
|
// useful for fileformats.c, miscfileformats.c etc.
|
|
// =================================================================
|
|
|
|
// This is here and not in fileformats.c because the emergency save uses it...
|
|
#pragma pack(1)
|
|
typedef struct
|
|
{
|
|
byte Filler1[6];
|
|
word Width;
|
|
word Height;
|
|
byte Filler2[118];
|
|
T_Palette Palette;
|
|
} T_IMG_Header;
|
|
#pragma pack()
|
|
|
|
// Data for 24bit loading
|
|
|
|
/*
|
|
typedef void (* Func_24b_display) (short,short,byte,byte,byte);
|
|
|
|
extern int Image_24b;
|
|
extern T_Components * Buffer_image_24b;
|
|
extern Func_24b_display Pixel_load_24b;
|
|
|
|
void Init_preview_24b(short width,short height,long size,int format);
|
|
void Pixel_load_in_24b_preview(short x_pos,short y_pos,byte r,byte g,byte b);
|
|
*/
|
|
//
|
|
|
|
void Set_file_error(int value);
|
|
|
|
/*
|
|
void Init_preview(short width,short height,long size,int format,enum PIXEL_RATIO ratio);
|
|
*/
|
|
void Init_write_buffer(void);
|
|
void Write_one_byte(FILE *file, byte b);
|
|
void End_write(FILE *file);
|
|
|
|
#endif |