2019-10-28 18:28:42 +00:00
|
|
|
// SONIC ROBO BLAST 2
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 1993-1996 by id Software, Inc.
|
2023-03-31 12:53:31 +00:00
|
|
|
// Copyright (C) 2018-2023 by Jaime "Lactozilla" Passos.
|
|
|
|
// Copyright (C) 2019-2023 by Sonic Team Junior.
|
2019-10-28 18:28:42 +00:00
|
|
|
//
|
|
|
|
// This program is free software distributed under the
|
|
|
|
// terms of the GNU General Public License, version 2.
|
|
|
|
// See the 'LICENSE' file for more details.
|
|
|
|
//-----------------------------------------------------------------------------
|
2020-01-06 21:22:23 +00:00
|
|
|
/// \file r_picformats.h
|
2019-10-28 18:28:42 +00:00
|
|
|
/// \brief Patch generation.
|
|
|
|
|
2020-05-15 04:34:54 +00:00
|
|
|
#ifndef __R_PICFORMATS__
|
|
|
|
#define __R_PICFORMATS__
|
2019-10-28 18:28:42 +00:00
|
|
|
|
|
|
|
#include "r_defs.h"
|
|
|
|
#include "doomdef.h"
|
|
|
|
|
2020-01-06 21:22:23 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
PICFMT_NONE = 0,
|
|
|
|
|
|
|
|
// Doom formats
|
|
|
|
PICFMT_PATCH,
|
|
|
|
PICFMT_FLAT,
|
2020-08-16 00:52:01 +00:00
|
|
|
PICFMT_DOOMPATCH,
|
2020-01-06 21:22:23 +00:00
|
|
|
|
|
|
|
// PNG
|
|
|
|
PICFMT_PNG,
|
|
|
|
|
|
|
|
// 16bpp
|
|
|
|
PICFMT_PATCH16,
|
|
|
|
PICFMT_FLAT16,
|
2020-08-16 00:52:01 +00:00
|
|
|
PICFMT_DOOMPATCH16,
|
2020-01-06 21:22:23 +00:00
|
|
|
|
|
|
|
// 32bpp
|
|
|
|
PICFMT_PATCH32,
|
2020-08-16 00:52:01 +00:00
|
|
|
PICFMT_FLAT32,
|
|
|
|
PICFMT_DOOMPATCH32
|
2020-01-06 21:22:23 +00:00
|
|
|
} pictureformat_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
2023-08-16 17:22:19 +00:00
|
|
|
PICFLAGS_XFLIP = 1,
|
|
|
|
PICFLAGS_YFLIP = 1<<1,
|
|
|
|
PICFLAGS_USE_TRANSPARENTPIXEL = 1<<2
|
2020-01-06 21:22:23 +00:00
|
|
|
} pictureflags_t;
|
|
|
|
|
2020-01-07 21:52:12 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PICDEPTH_NONE = 0,
|
|
|
|
PICDEPTH_8BPP = 8,
|
|
|
|
PICDEPTH_16BPP = 16,
|
|
|
|
PICDEPTH_32BPP = 32
|
|
|
|
};
|
|
|
|
|
2020-01-06 21:22:23 +00:00
|
|
|
void *Picture_Convert(
|
|
|
|
pictureformat_t informat, void *picture, pictureformat_t outformat,
|
|
|
|
size_t insize, size_t *outsize,
|
|
|
|
INT32 inwidth, INT32 inheight, INT32 inleftoffset, INT32 intopoffset,
|
|
|
|
pictureflags_t flags);
|
|
|
|
|
|
|
|
void *Picture_PatchConvert(
|
|
|
|
pictureformat_t informat, void *picture, pictureformat_t outformat,
|
2023-08-16 17:22:19 +00:00
|
|
|
size_t *outsize,
|
|
|
|
INT32 inwidth, INT32 inheight, INT32 inleftoffset, INT32 intopoffset,
|
2020-01-06 21:22:23 +00:00
|
|
|
pictureflags_t flags);
|
|
|
|
void *Picture_FlatConvert(
|
|
|
|
pictureformat_t informat, void *picture, pictureformat_t outformat,
|
2023-08-16 17:22:19 +00:00
|
|
|
size_t *outsize,
|
|
|
|
INT32 inwidth, INT32 inheight,
|
2020-01-06 21:22:23 +00:00
|
|
|
pictureflags_t flags);
|
|
|
|
void *Picture_GetPatchPixel(
|
|
|
|
patch_t *patch, pictureformat_t informat,
|
|
|
|
INT32 x, INT32 y,
|
|
|
|
pictureflags_t flags);
|
|
|
|
|
2023-07-30 23:56:28 +00:00
|
|
|
void *Picture_TextureToFlat(size_t texnum);
|
2020-01-06 23:16:48 +00:00
|
|
|
|
2020-01-06 21:22:23 +00:00
|
|
|
INT32 Picture_FormatBPP(pictureformat_t format);
|
|
|
|
boolean Picture_IsPatchFormat(pictureformat_t format);
|
2020-08-16 00:52:01 +00:00
|
|
|
boolean Picture_IsInternalPatchFormat(pictureformat_t format);
|
|
|
|
boolean Picture_IsDoomPatchFormat(pictureformat_t format);
|
2020-01-06 21:22:23 +00:00
|
|
|
boolean Picture_IsFlatFormat(pictureformat_t format);
|
2020-08-16 00:52:01 +00:00
|
|
|
boolean Picture_CheckIfDoomPatch(softwarepatch_t *patch, size_t size);
|
2020-01-06 21:22:23 +00:00
|
|
|
|
2019-12-04 18:26:51 +00:00
|
|
|
// Structs
|
2019-11-13 15:36:44 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2019-12-04 18:26:51 +00:00
|
|
|
ROTAXIS_X, // Roll (the default)
|
|
|
|
ROTAXIS_Y, // Pitch
|
|
|
|
ROTAXIS_Z // Yaw
|
2019-11-13 15:47:30 +00:00
|
|
|
} rotaxis_t;
|
2019-11-13 15:36:44 +00:00
|
|
|
|
2019-10-28 18:28:42 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
INT32 x, y;
|
|
|
|
} spriteframepivot_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2024-03-15 23:51:23 +00:00
|
|
|
spriteframepivot_t pivot[MAXFRAMENUM];
|
2019-10-28 18:28:42 +00:00
|
|
|
boolean available;
|
|
|
|
} spriteinfo_t;
|
|
|
|
|
2024-01-16 17:25:50 +00:00
|
|
|
// PNG support
|
|
|
|
#define PNG_HEADER_SIZE 8
|
|
|
|
|
2020-01-06 23:16:48 +00:00
|
|
|
boolean Picture_IsLumpPNG(const UINT8 *d, size_t s);
|
2019-12-04 18:26:51 +00:00
|
|
|
|
2019-10-28 18:28:42 +00:00
|
|
|
#ifndef NO_PNG_LUMPS
|
2020-01-06 23:16:48 +00:00
|
|
|
void *Picture_PNGConvert(
|
|
|
|
const UINT8 *png, pictureformat_t outformat,
|
|
|
|
INT32 *w, INT32 *h,
|
|
|
|
INT16 *topoffset, INT16 *leftoffset,
|
|
|
|
size_t insize, size_t *outsize,
|
|
|
|
pictureflags_t flags);
|
2020-10-02 22:48:13 +00:00
|
|
|
boolean Picture_PNGDimensions(UINT8 *png, INT32 *width, INT32 *height, INT16 *topoffset, INT16 *leftoffset, size_t size);
|
2019-10-28 18:28:42 +00:00
|
|
|
|
2020-09-10 05:10:31 +00:00
|
|
|
#define PICTURE_PNG_USELOOKUP
|
2021-09-04 00:13:12 +00:00
|
|
|
#endif
|
2020-09-10 05:10:31 +00:00
|
|
|
|
2019-12-04 18:26:51 +00:00
|
|
|
// SpriteInfo
|
|
|
|
extern spriteinfo_t spriteinfo[NUMSPRITES];
|
2019-10-28 18:28:42 +00:00
|
|
|
void R_LoadSpriteInfoLumps(UINT16 wadnum, UINT16 numlumps);
|
|
|
|
void R_ParseSPRTINFOLump(UINT16 wadNum, UINT16 lumpNum);
|
|
|
|
|
2020-08-15 23:48:28 +00:00
|
|
|
#endif // __R_PICFORMATS__
|