2001-05-09 18:42:37 +00:00
|
|
|
/*
|
|
|
|
skin.h
|
|
|
|
|
|
|
|
Client skin definitions
|
|
|
|
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SKIN_H
|
|
|
|
#define _SKIN_H
|
|
|
|
|
2001-05-10 06:01:11 +00:00
|
|
|
#include "QF/qtypes.h"
|
2012-01-23 07:16:30 +00:00
|
|
|
#include "QF/vid.h"
|
2001-05-10 06:01:11 +00:00
|
|
|
#include "QF/zone.h"
|
2001-05-09 18:42:37 +00:00
|
|
|
|
|
|
|
#define MAX_CACHED_SKINS 128
|
2004-04-04 02:34:05 +00:00
|
|
|
#define MAX_SKIN_LENGTH 32
|
2001-05-09 18:42:37 +00:00
|
|
|
|
2012-01-23 08:33:19 +00:00
|
|
|
#define TOP_RANGE 16 // soldier uniform colors
|
|
|
|
#define BOTTOM_RANGE 96
|
|
|
|
|
2001-05-09 18:42:37 +00:00
|
|
|
#define RSSHOT_WIDTH 320
|
|
|
|
#define RSSHOT_HEIGHT 200
|
|
|
|
|
2012-01-23 07:16:30 +00:00
|
|
|
typedef struct translation_s {
|
|
|
|
byte top[VID_GRADES][16];
|
|
|
|
byte bottom[VID_GRADES][16];
|
|
|
|
} translation_t;
|
|
|
|
|
2011-07-29 01:11:14 +00:00
|
|
|
typedef struct skin_s {
|
2012-01-23 07:16:30 +00:00
|
|
|
const char *name;
|
|
|
|
qboolean valid; // the skin was found
|
|
|
|
struct tex_s *texels;
|
|
|
|
byte *colormap;
|
|
|
|
int texnum;
|
|
|
|
int auxtex;
|
2001-05-09 18:42:37 +00:00
|
|
|
} skin_t;
|
|
|
|
|
2012-01-23 07:16:30 +00:00
|
|
|
skin_t *Skin_SetColormap (skin_t *skin, int cmap);
|
2012-01-23 10:24:12 +00:00
|
|
|
void Skin_SetColormap_ (skin_t *skin, int cmap);
|
2012-01-23 07:16:30 +00:00
|
|
|
void Skin_SetTranslation (int cmap, int top, int bottom);
|
2012-01-23 10:24:12 +00:00
|
|
|
void Skin_ProcessTranslation (int cmap, const byte *translation);
|
|
|
|
void Skin_InitTranslations (void);
|
2012-01-23 07:16:30 +00:00
|
|
|
|
2002-09-13 05:32:28 +00:00
|
|
|
extern byte player_8bit_texels[640 * 400];
|
2001-05-09 18:42:37 +00:00
|
|
|
extern skin_t skin_cache[MAX_CACHED_SKINS];
|
2001-05-21 22:25:35 +00:00
|
|
|
extern int skin_textures;
|
|
|
|
extern int skin_fb_textures;
|
|
|
|
|
2011-07-29 01:11:14 +00:00
|
|
|
extern int playercolor;
|
|
|
|
|
2001-05-09 18:42:37 +00:00
|
|
|
struct tex_s;
|
2001-08-25 02:47:11 +00:00
|
|
|
struct tex_s *Skin_Cache (skin_t *skin);
|
2001-05-09 18:42:37 +00:00
|
|
|
struct player_info_s;
|
2001-05-16 06:01:34 +00:00
|
|
|
struct model_s;
|
2001-05-09 18:42:37 +00:00
|
|
|
|
|
|
|
void Skin_Find (struct player_info_s *sc);
|
2001-05-11 22:47:15 +00:00
|
|
|
void Skin_Flush (void);
|
2001-05-21 22:25:35 +00:00
|
|
|
int Skin_Init_Textures (int base);
|
2001-05-09 18:42:37 +00:00
|
|
|
void Skin_Init (void);
|
|
|
|
void Skin_Init_Cvars (void);
|
|
|
|
void Skin_Init_Translation (void);
|
2012-01-23 07:16:30 +00:00
|
|
|
void Skin_Set_Translate (int top, int bottom, translation_t *trans);
|
2001-05-21 22:25:35 +00:00
|
|
|
void Skin_Do_Translation (skin_t *player_skin, int slot, skin_t *skin);
|
2001-08-25 02:47:11 +00:00
|
|
|
void Skin_Do_Translation_Model (struct model_s *model, int skinnum,
|
|
|
|
int slot, skin_t *skin);
|
2002-09-13 05:32:28 +00:00
|
|
|
void Skin_Player_Model (struct model_s *model);
|
2001-05-09 18:42:37 +00:00
|
|
|
void Skin_Process (skin_t *skin, struct tex_s *);
|
|
|
|
|
2001-05-21 22:25:35 +00:00
|
|
|
skin_t *Skin_NewTempSkin (void);
|
|
|
|
void Skin_ClearTempSkins (void);
|
|
|
|
|
2001-12-04 20:13:12 +00:00
|
|
|
int Skin_FbPercent (const char *skin_name); // * 10
|
|
|
|
|
2001-10-28 04:23:37 +00:00
|
|
|
extern char allskins[128];
|
|
|
|
|
2001-05-09 18:42:37 +00:00
|
|
|
#endif
|