2004-10-15 00:37:21 +00:00
|
|
|
#include "../plugin.h"
|
|
|
|
|
|
|
|
#define MAX_ELEMENTS 128
|
|
|
|
|
|
|
|
int K_UPARROW;
|
|
|
|
int K_DOWNARROW;
|
|
|
|
int K_LEFTARROW;
|
|
|
|
int K_RIGHTARROW;
|
|
|
|
int K_ESCAPE;
|
|
|
|
int K_MOUSE1;
|
|
|
|
int K_HOME;
|
|
|
|
int K_SHIFT;
|
|
|
|
|
|
|
|
|
|
|
|
#define MAX_CL_STATS 32
|
|
|
|
#define STAT_HEALTH 0
|
|
|
|
#define STAT_WEAPON 2
|
|
|
|
#define STAT_AMMO 3
|
|
|
|
#define STAT_ARMOR 4
|
|
|
|
#define STAT_WEAPONFRAME 5
|
|
|
|
#define STAT_SHELLS 6
|
|
|
|
#define STAT_NAILS 7
|
|
|
|
#define STAT_ROCKETS 8
|
|
|
|
#define STAT_CELLS 9
|
|
|
|
#define STAT_ACTIVEWEAPON 10
|
|
|
|
#define STAT_TOTALSECRETS 11
|
|
|
|
#define STAT_TOTALMONSTERS 12
|
|
|
|
#define STAT_SECRETS 13 // bumped on client side by svc_foundsecret
|
|
|
|
#define STAT_MONSTERS 14 // bumped by svc_killedmonster
|
|
|
|
#define STAT_ITEMS 15
|
|
|
|
|
|
|
|
//some engines can use more.
|
|
|
|
//any mod specific ones should be 31 and downwards rather than upwards.
|
|
|
|
|
|
|
|
|
|
|
|
#define IT_GUN1 (1<<0)
|
|
|
|
#define IT_GUN2 (1<<1) //the code assumes these are linear.
|
|
|
|
#define IT_GUN3 (1<<2) //be careful with strange mods.
|
|
|
|
#define IT_GUN4 (1<<3)
|
|
|
|
#define IT_GUN5 (1<<4)
|
|
|
|
#define IT_GUN6 (1<<5)
|
|
|
|
#define IT_GUN7 (1<<6)
|
|
|
|
#define IT_GUN8 (1<<7) //quake doesn't normally use this.
|
|
|
|
|
|
|
|
#define IT_AMMO1 (1<<8)
|
|
|
|
#define IT_AMMO2 (1<<9)
|
|
|
|
#define IT_AMMO3 (1<<10)
|
|
|
|
#define IT_AMMO4 (1<<11)
|
|
|
|
|
|
|
|
#define IT_GUN0 (1<<12)
|
|
|
|
|
|
|
|
#define IT_ARMOR1 (1<<13)
|
|
|
|
#define IT_ARMOR2 (1<<14)
|
|
|
|
#define IT_ARMOR3 (1<<15)
|
|
|
|
#define IT_SUPERHEALTH (1<<16)
|
|
|
|
|
|
|
|
#define IT_PUP1 (1<<17)
|
|
|
|
#define IT_PUP2 (1<<18)
|
|
|
|
#define IT_PUP3 (1<<19)
|
|
|
|
#define IT_PUP4 (1<<20)
|
|
|
|
#define IT_PUP5 (1<<21)
|
|
|
|
#define IT_PUP6 (1<<22)
|
|
|
|
|
|
|
|
#define IT_RUNE1 (1<<23)
|
|
|
|
#define IT_RUNE2 (1<<24)
|
|
|
|
#define IT_RUNE3 (1<<25)
|
|
|
|
#define IT_RUNE4 (1<<26)
|
|
|
|
|
|
|
|
//these are linear and treated the same
|
|
|
|
#define numpups 6
|
|
|
|
|
|
|
|
//the names of the cvars, as they will appear on the console
|
|
|
|
#define UI_NOSBAR "ui_defaultsbar"
|
|
|
|
#define UI_NOIBAR "ui_noibar"
|
|
|
|
#define UI_NOFLASH "ui_nosbarflash"
|
|
|
|
|
|
|
|
static char *weaponabbreviation[] = { //the postfix for the weapon anims
|
|
|
|
"shotgun",
|
|
|
|
"sshotgun",
|
|
|
|
"nailgun",
|
|
|
|
"snailgun",
|
|
|
|
"rlaunch", //grenades actually.
|
|
|
|
"srlaunch",
|
|
|
|
"lightng"
|
|
|
|
};
|
|
|
|
#define numweaps (sizeof(weaponabbreviation) / sizeof(char *))
|
|
|
|
|
|
|
|
static char *pupabbr[] = { //the postfix for the powerup anims
|
|
|
|
"key1",
|
|
|
|
"key2",
|
|
|
|
"invis",
|
|
|
|
"invul",
|
|
|
|
"suit",
|
|
|
|
"quad"
|
|
|
|
};
|
|
|
|
static char *pupabbr2[] = { //the postfix for the powerup anims
|
|
|
|
"key1",
|
|
|
|
"key2",
|
|
|
|
"invis",
|
|
|
|
"invuln",
|
|
|
|
"suit",
|
|
|
|
"quad"
|
|
|
|
};
|
|
|
|
|
|
|
|
//0 = owned, 1 selected, 2-7 flashing
|
|
|
|
static qhandle_t con_chars;
|
|
|
|
static qhandle_t pic_weapon[8][numweaps];
|
|
|
|
static qhandle_t sbarback, ibarback;
|
|
|
|
|
|
|
|
//0 = owned, 1-6 flashing
|
|
|
|
static qhandle_t pic_pup[7][numpups];
|
|
|
|
static qhandle_t pic_armour[3];
|
|
|
|
static qhandle_t pic_ammo[4];
|
|
|
|
static qhandle_t pic_rune[4];
|
|
|
|
static qhandle_t pic_num[13];
|
|
|
|
static qhandle_t pic_anum[11];
|
|
|
|
|
|
|
|
//faces
|
|
|
|
static qhandle_t pic_face[5];
|
|
|
|
static qhandle_t pic_facep[5];
|
|
|
|
static qhandle_t pic_facequad;
|
|
|
|
static qhandle_t pic_faceinvis;
|
|
|
|
static qhandle_t pic_faceinvisinvuln;
|
|
|
|
static qhandle_t pic_faceinvuln;
|
|
|
|
static qhandle_t pic_faceinvulnquad;
|
|
|
|
|
|
|
|
static int currenttime;
|
|
|
|
static int gotweapontime[numweaps];
|
|
|
|
static int gotpuptime[numpups];
|
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
float sbarminx;
|
|
|
|
float sbarminy;
|
|
|
|
float sbarscalex;
|
|
|
|
float sbarscaley;
|
|
|
|
float sbaralpha;
|
|
|
|
int sbartype;
|
2004-10-15 00:37:21 +00:00
|
|
|
|
|
|
|
static int hudedit;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
DZ_BOTTOMLEFT,
|
|
|
|
DZ_BOTTOMRIGHT
|
|
|
|
};
|
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
typedef void drawelementfnc_t(void);
|
2004-10-15 00:37:21 +00:00
|
|
|
typedef struct {
|
|
|
|
float defaultx; //used if couldn't load a config
|
|
|
|
float defaulty;
|
|
|
|
int defaultzone;
|
|
|
|
float defaultalpha;
|
2005-07-20 11:52:08 +00:00
|
|
|
drawelementfnc_t *DrawElement;
|
|
|
|
int subtype;
|
|
|
|
} huddefaultelement_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
drawelementfnc_t Hud_SBar;
|
|
|
|
drawelementfnc_t Hud_ArmourPic;
|
|
|
|
drawelementfnc_t Hud_ArmourBig;
|
|
|
|
drawelementfnc_t Hud_HealthPic;
|
|
|
|
drawelementfnc_t Hud_HealthBig;
|
|
|
|
drawelementfnc_t Hud_CurrentAmmoPic;
|
|
|
|
drawelementfnc_t Hud_CurrentAmmoBig;
|
|
|
|
drawelementfnc_t Hud_IBar;
|
|
|
|
drawelementfnc_t Hud_Weapon;
|
|
|
|
drawelementfnc_t Hud_W_Lightning;
|
|
|
|
drawelementfnc_t Hud_Powerup;
|
|
|
|
drawelementfnc_t Hud_Rune;
|
|
|
|
drawelementfnc_t Hud_Ammo;
|
|
|
|
drawelementfnc_t Hud_ScoreCard;
|
|
|
|
drawelementfnc_t Hud_Blackness;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
drawelementfnc_t *draw;
|
|
|
|
int width, height;
|
|
|
|
int maxsubtype;
|
|
|
|
} drawelement_t;
|
|
|
|
drawelement_t drawelement[] =
|
|
|
|
{
|
|
|
|
{Hud_SBar, 320, 24, 0},
|
|
|
|
{Hud_ArmourPic, 24, 24, 0},
|
|
|
|
{Hud_ArmourBig, 24*3, 24, 0},
|
|
|
|
{Hud_HealthPic, 24, 24, 0},
|
|
|
|
{Hud_HealthBig, 24*3, 24, 0},
|
|
|
|
{Hud_CurrentAmmoPic, 24, 24, 0},
|
|
|
|
{Hud_CurrentAmmoBig, 24*3, 24, 0},
|
|
|
|
{Hud_IBar, 320, 24, 0},
|
|
|
|
{Hud_Weapon, 24, 16, 0},
|
|
|
|
{Hud_W_Lightning, 24, 16, 0},
|
|
|
|
{Hud_Powerup, 16, 16, 5},
|
|
|
|
{Hud_Rune, 8, 16, 3},
|
|
|
|
{Hud_Ammo, 42, 11, 3},
|
|
|
|
{Hud_Blackness, 16, 16, 0},
|
|
|
|
{Hud_ScoreCard, 0, 0, 16}
|
|
|
|
};
|
|
|
|
|
|
|
|
huddefaultelement_t hedefaulttype[] = {
|
2004-10-15 00:37:21 +00:00
|
|
|
{
|
|
|
|
0, -24, DZ_BOTTOMLEFT,
|
|
|
|
0.3f,
|
|
|
|
Hud_SBar
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
0, -24, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
|
|
|
Hud_ArmourPic
|
|
|
|
},
|
|
|
|
{
|
|
|
|
24, -24, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
|
|
|
Hud_ArmourBig
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
112, -24, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
|
|
|
Hud_HealthPic
|
|
|
|
},
|
|
|
|
{
|
|
|
|
24*6, -24, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
|
|
|
Hud_HealthBig
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
224, -24, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
|
|
|
Hud_CurrentAmmoPic
|
|
|
|
},
|
|
|
|
{
|
|
|
|
248, -24, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
|
|
|
Hud_CurrentAmmoBig
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
0, -48, DZ_BOTTOMLEFT,
|
|
|
|
0.3f,
|
|
|
|
Hud_IBar
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
0, -40, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Weapon,
|
|
|
|
0
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
24, -40, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Weapon,
|
|
|
|
1
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
48, -40, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Weapon,
|
|
|
|
2
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
72, -40, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Weapon,
|
|
|
|
3
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
96, -40, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Weapon,
|
|
|
|
4
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
120, -40, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Weapon,
|
|
|
|
5
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
146, -40, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
|
|
|
Hud_W_Lightning
|
|
|
|
},
|
|
|
|
{
|
|
|
|
194, -40, DZ_BOTTOMLEFT,
|
|
|
|
0.3f,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Powerup,
|
|
|
|
0
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
208, -40, DZ_BOTTOMLEFT,
|
|
|
|
0.3f,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Powerup,
|
|
|
|
1
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
224, -40, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Powerup,
|
|
|
|
2
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
240, -40, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Powerup,
|
|
|
|
3
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
256, -40, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Powerup,
|
|
|
|
4
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
272, -40, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Powerup,
|
|
|
|
5
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
288, -40, DZ_BOTTOMLEFT,
|
|
|
|
0.3f,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Rune,
|
|
|
|
0
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
2005-07-20 11:52:08 +00:00
|
|
|
{
|
2004-10-15 00:37:21 +00:00
|
|
|
296, -40, DZ_BOTTOMLEFT,
|
|
|
|
0.3f,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Rune,
|
|
|
|
1
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
304, -40, DZ_BOTTOMLEFT,
|
|
|
|
0.3f,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Rune,
|
|
|
|
2
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
312, -40, DZ_BOTTOMLEFT,
|
|
|
|
0.3f,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Rune,
|
|
|
|
3
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
{
|
2005-07-20 11:52:08 +00:00
|
|
|
48*0+3, -48, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
|
|
|
Hud_Ammo,
|
|
|
|
0
|
|
|
|
},
|
|
|
|
{
|
|
|
|
48*1+3, -48, DZ_BOTTOMLEFT,
|
2004-10-15 00:37:21 +00:00
|
|
|
1,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Ammo,
|
|
|
|
1
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
|
|
|
{
|
2005-07-20 11:52:08 +00:00
|
|
|
48*2+3, -48, DZ_BOTTOMLEFT,
|
2004-10-15 00:37:21 +00:00
|
|
|
1,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Ammo,
|
|
|
|
2
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
|
|
|
{
|
2005-07-20 11:52:08 +00:00
|
|
|
48*3+3, -48, DZ_BOTTOMLEFT,
|
2004-10-15 00:37:21 +00:00
|
|
|
1,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_Ammo,
|
|
|
|
3
|
2004-10-15 00:37:21 +00:00
|
|
|
},
|
2005-07-20 11:52:08 +00:00
|
|
|
|
2004-10-15 00:37:21 +00:00
|
|
|
{
|
|
|
|
42*3, -48, DZ_BOTTOMLEFT,
|
|
|
|
1,
|
2005-07-20 11:52:08 +00:00
|
|
|
Hud_ScoreCard
|
2004-10-15 00:37:21 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
typedef struct {
|
|
|
|
int type;
|
2005-07-20 11:52:08 +00:00
|
|
|
int subtype;
|
2004-10-15 00:37:21 +00:00
|
|
|
|
|
|
|
float x, y;
|
|
|
|
float scalex;
|
|
|
|
float scaley;
|
|
|
|
float alpha;
|
|
|
|
} hudelement_t;
|
|
|
|
hudelement_t element[MAX_ELEMENTS]; //look - Spike used a constant - that's a turn up for the books!
|
|
|
|
int numelements;
|
|
|
|
|
|
|
|
void UI_DrawPic(qhandle_t pic, int x, int y, int width, int height)
|
|
|
|
{
|
|
|
|
Draw_Image((float)x*sbarscalex+sbarminx, (float)y*sbarscaley+sbarminy, (float)width*sbarscalex, (float)height*sbarscaley, 0, 0, 1, 1, pic);
|
|
|
|
}
|
|
|
|
void UI_DrawChar(unsigned int c, int x, int y)
|
|
|
|
{
|
|
|
|
static float size = 1.0f/16.0f;
|
|
|
|
float s1 = size * (c&15);
|
|
|
|
float t1 = size * (c>>4);
|
|
|
|
Draw_Image((float)x*sbarscalex+sbarminx, (float)y*sbarscaley+sbarminy, 8*sbarscalex, 8*sbarscaley, s1, t1, s1+size, t1+size, con_chars);
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_DrawBigNumber(int num, int x, int y, qboolean red)
|
|
|
|
{
|
|
|
|
char *s;
|
|
|
|
int len;
|
|
|
|
s = va("%i", num);
|
|
|
|
|
|
|
|
|
|
|
|
len = strlen(s);
|
|
|
|
if (len < 3)
|
|
|
|
x += 24*(3-len);
|
|
|
|
else
|
|
|
|
s += len-3;
|
|
|
|
|
|
|
|
if (red)
|
|
|
|
{
|
|
|
|
while(*s)
|
|
|
|
{
|
|
|
|
if (*s == '-')
|
|
|
|
UI_DrawPic (pic_anum[10], x, y, 24, 24);
|
|
|
|
else
|
|
|
|
UI_DrawPic (pic_anum[*s-'0'], x, y, 24, 24);
|
|
|
|
s++;
|
|
|
|
x+=24;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while(*s)
|
|
|
|
{
|
|
|
|
if (*s == '-')
|
|
|
|
UI_DrawPic (pic_num[10], x, y, 24, 24);
|
|
|
|
else
|
|
|
|
UI_DrawPic (pic_num[*s-'0'], x, y, 24, 24);
|
|
|
|
s++;
|
|
|
|
x+=24;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SBar_FlushAll(void)
|
|
|
|
{
|
|
|
|
numelements = 0;
|
|
|
|
}
|
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
static int idxforfunc(drawelementfnc_t *fnc)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < sizeof(drawelement)/sizeof(drawelement[0]); i++)
|
|
|
|
{
|
|
|
|
if (drawelement[i].draw == fnc)
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -10000; //try and crash
|
|
|
|
}
|
|
|
|
|
2004-10-15 00:37:21 +00:00
|
|
|
void SBar_ReloadDefaults(void)
|
|
|
|
{
|
|
|
|
int i;
|
2005-07-20 11:52:08 +00:00
|
|
|
for (i = 0; i < sizeof(hedefaulttype)/sizeof(hedefaulttype[0]); i++)
|
2004-10-15 00:37:21 +00:00
|
|
|
{
|
2005-07-20 11:52:08 +00:00
|
|
|
if (hedefaulttype[i].defaultalpha)
|
2004-10-15 00:37:21 +00:00
|
|
|
{
|
|
|
|
if (numelements >= MAX_ELEMENTS)
|
|
|
|
break;
|
2005-07-20 11:52:08 +00:00
|
|
|
element[numelements].type = idxforfunc(hedefaulttype[i].DrawElement);
|
|
|
|
element[numelements].alpha = hedefaulttype[i].defaultalpha;
|
2004-10-15 00:37:21 +00:00
|
|
|
element[numelements].scalex = 1;
|
|
|
|
element[numelements].scaley = 1;
|
2005-07-20 11:52:08 +00:00
|
|
|
element[numelements].subtype = hedefaulttype[i].subtype;
|
|
|
|
switch(hedefaulttype[i].defaultzone)
|
2004-10-15 00:37:21 +00:00
|
|
|
{
|
|
|
|
case DZ_BOTTOMLEFT:
|
2005-07-20 11:52:08 +00:00
|
|
|
element[numelements].x = hedefaulttype[i].defaultx;
|
|
|
|
element[numelements].y = 480+hedefaulttype[i].defaulty;
|
2004-10-15 00:37:21 +00:00
|
|
|
break;
|
|
|
|
case DZ_BOTTOMRIGHT:
|
2005-07-20 11:52:08 +00:00
|
|
|
element[numelements].x = 640+hedefaulttype[i].defaultx;
|
|
|
|
element[numelements].y = 480+hedefaulttype[i].defaulty;
|
2004-10-15 00:37:21 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
numelements++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void UI_SbarInit(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int j;
|
|
|
|
|
|
|
|
//main bar (add cvars later)
|
|
|
|
ibarback = Draw_LoadImage("ibar", true);
|
|
|
|
sbarback = Draw_LoadImage("sbar", true);
|
|
|
|
|
|
|
|
con_chars = Draw_LoadImage("conchars", true);
|
|
|
|
|
|
|
|
//load images.
|
|
|
|
for (i = 0; i < 10; i++)
|
|
|
|
{
|
|
|
|
pic_num[i] = Draw_LoadImage(va("num_%i", i), true);
|
|
|
|
pic_anum[i] = Draw_LoadImage(va("anum_%i", i), true);
|
|
|
|
}
|
|
|
|
pic_num[10] = Draw_LoadImage("num_minus", true);
|
|
|
|
pic_anum[10] = Draw_LoadImage("anum_minus", true);
|
|
|
|
pic_num[11] = Draw_LoadImage("num_colon", true);
|
|
|
|
pic_num[12] = Draw_LoadImage("num_slash", true);
|
|
|
|
|
|
|
|
for (i = 0; i < numweaps; i++)
|
|
|
|
{
|
|
|
|
gotweapontime[i] = 0;
|
|
|
|
pic_weapon[0][i] = Draw_LoadImage(va("inv_%s", weaponabbreviation[i]), true);
|
|
|
|
pic_weapon[1][i] = Draw_LoadImage(va("inv2_%s", weaponabbreviation[i]), true);
|
|
|
|
for (j = 0; j < 5; j++)
|
|
|
|
{
|
|
|
|
pic_weapon[2+j][i] = Draw_LoadImage(va("inva%i_%s", j+1, weaponabbreviation[i]), true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (i = 0; i < numpups; i++)
|
|
|
|
{
|
|
|
|
gotpuptime[i] = 0;
|
|
|
|
pic_pup[0][i] = Draw_LoadImage(va("sb_%s", pupabbr2[i]), true);
|
|
|
|
for (j = 0; j < 5; j++)
|
|
|
|
{
|
|
|
|
pic_pup[1+j][i] = Draw_LoadImage(va("sba%i_%s", j+1, pupabbr[i]), true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pic_armour[0] = Draw_LoadImage("sb_armor1", true);
|
|
|
|
pic_armour[1] = Draw_LoadImage("sb_armor2", true);
|
|
|
|
pic_armour[2] = Draw_LoadImage("sb_armor3", true);
|
|
|
|
|
|
|
|
pic_ammo[0] = Draw_LoadImage("sb_shells", true);
|
|
|
|
pic_ammo[1] = Draw_LoadImage("sb_nails", true);
|
|
|
|
pic_ammo[2] = Draw_LoadImage("sb_rocket", true);
|
|
|
|
pic_ammo[3] = Draw_LoadImage("sb_cells", true);
|
|
|
|
|
|
|
|
pic_rune[0] = Draw_LoadImage("sb_sigil1", true);
|
|
|
|
pic_rune[1] = Draw_LoadImage("sb_sigil2", true);
|
|
|
|
pic_rune[2] = Draw_LoadImage("sb_sigil3", true);
|
|
|
|
pic_rune[3] = Draw_LoadImage("sb_sigil4", true);
|
|
|
|
|
|
|
|
pic_face[0] = Draw_LoadImage("face1", true);
|
|
|
|
pic_face[1] = Draw_LoadImage("face2", true);
|
|
|
|
pic_face[2] = Draw_LoadImage("face3", true);
|
|
|
|
pic_face[3] = Draw_LoadImage("face4", true);
|
|
|
|
pic_face[4] = Draw_LoadImage("face5", true);
|
|
|
|
|
|
|
|
pic_facep[0] = Draw_LoadImage("face_p1", true);
|
|
|
|
pic_facep[1] = Draw_LoadImage("face_p2", true);
|
|
|
|
pic_facep[2] = Draw_LoadImage("face_p3", true);
|
|
|
|
pic_facep[3] = Draw_LoadImage("face_p4", true);
|
|
|
|
pic_facep[4] = Draw_LoadImage("face_p5", true);
|
|
|
|
|
|
|
|
pic_facequad = Draw_LoadImage("face_quad", true);
|
|
|
|
pic_faceinvis = Draw_LoadImage("face_invis", true);
|
|
|
|
pic_faceinvisinvuln = Draw_LoadImage("face_inv2", true);
|
|
|
|
pic_faceinvuln = Draw_LoadImage("face_invul1", true);
|
|
|
|
pic_faceinvulnquad = Draw_LoadImage("face_invul2", true);
|
|
|
|
|
|
|
|
SBar_FlushAll();
|
|
|
|
SBar_ReloadDefaults();
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int stats[MAX_CL_STATS];
|
|
|
|
|
|
|
|
void Hud_SBar(void)
|
|
|
|
{
|
|
|
|
UI_DrawPic(sbarback, 0, 0, 320, 24);
|
|
|
|
}
|
|
|
|
void Hud_ArmourPic(void)
|
|
|
|
{
|
|
|
|
if (stats[STAT_ITEMS] & IT_ARMOR3)
|
|
|
|
UI_DrawPic(pic_armour[2], 0, 0, 24, 24);
|
|
|
|
else if (stats[STAT_ITEMS] & IT_ARMOR2)
|
|
|
|
UI_DrawPic(pic_armour[1], 0, 0, 24, 24);
|
2005-07-20 11:52:08 +00:00
|
|
|
else if (stats[STAT_ITEMS] & IT_ARMOR1 || hudedit)
|
2004-10-15 00:37:21 +00:00
|
|
|
UI_DrawPic(pic_armour[0], 0, 0, 24, 24);
|
|
|
|
}
|
|
|
|
void Hud_ArmourBig(void)
|
|
|
|
{
|
|
|
|
int i = stats[STAT_ARMOR];
|
|
|
|
UI_DrawBigNumber(i, 0, 0, i < 25);
|
|
|
|
}
|
|
|
|
void Hud_HealthPic(void)
|
|
|
|
{
|
|
|
|
int hl;
|
|
|
|
|
|
|
|
if (stats[STAT_ITEMS] & IT_PUP3)
|
|
|
|
{ //invisability
|
|
|
|
if (stats[STAT_ITEMS] & IT_PUP4)
|
|
|
|
UI_DrawPic(pic_faceinvisinvuln, 0, 0, 24, 24);
|
|
|
|
else
|
|
|
|
UI_DrawPic(pic_faceinvis, 0, 0, 24, 24);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stats[STAT_ITEMS] & IT_PUP4)
|
|
|
|
{ //invuln
|
|
|
|
if (stats[STAT_ITEMS] & IT_PUP6)
|
|
|
|
UI_DrawPic(pic_faceinvulnquad, 0, 0, 24, 24);
|
|
|
|
else
|
|
|
|
UI_DrawPic(pic_faceinvuln, 0, 0, 24, 24);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (stats[STAT_ITEMS] & IT_PUP6)
|
|
|
|
{
|
|
|
|
UI_DrawPic(pic_facequad, 0, 0, 24, 24);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
hl = stats[STAT_HEALTH]/20;
|
|
|
|
if (hl > 4)
|
|
|
|
hl = 4;
|
|
|
|
if (hl < 0)
|
|
|
|
hl = 0;
|
|
|
|
// if (innpain)
|
|
|
|
// UI_DrawPic(pic_facep[4-hl], 0, 0, 24, 24);
|
|
|
|
// else
|
|
|
|
UI_DrawPic(pic_face[4-hl], 0, 0, 24, 24);
|
|
|
|
}
|
|
|
|
void Hud_HealthBig(void)
|
|
|
|
{
|
|
|
|
int i = stats[STAT_HEALTH];
|
|
|
|
UI_DrawBigNumber(i, 0, 0, i < 25);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Hud_CurrentAmmoPic(void)
|
|
|
|
{
|
2005-07-20 11:52:08 +00:00
|
|
|
if ((stats[STAT_ITEMS] & IT_AMMO1))
|
2004-10-15 00:37:21 +00:00
|
|
|
UI_DrawPic(pic_ammo[0], 0, 0, 24, 24);
|
|
|
|
else if (stats[STAT_ITEMS] & IT_AMMO2)
|
|
|
|
UI_DrawPic(pic_ammo[1], 0, 0, 24, 24);
|
|
|
|
else if (stats[STAT_ITEMS] & IT_AMMO3)
|
|
|
|
UI_DrawPic(pic_ammo[2], 0, 0, 24, 24);
|
2005-07-20 11:52:08 +00:00
|
|
|
else if (stats[STAT_ITEMS] & IT_AMMO4 || hudedit)
|
2004-10-15 00:37:21 +00:00
|
|
|
UI_DrawPic(pic_ammo[3], 0, 0, 24, 24);
|
|
|
|
}
|
|
|
|
void Hud_CurrentAmmoBig(void)
|
|
|
|
{
|
|
|
|
int i = stats[STAT_AMMO];
|
|
|
|
UI_DrawBigNumber(i, 0, 0, i < 25);
|
|
|
|
}
|
|
|
|
void Hud_IBar(void)
|
|
|
|
{
|
|
|
|
UI_DrawPic(ibarback, 0, 0, 320, 24);
|
|
|
|
}
|
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
void Hud_Weapon(void)
|
2004-10-15 00:37:21 +00:00
|
|
|
{
|
|
|
|
int flash;
|
2005-07-20 11:52:08 +00:00
|
|
|
if (!(stats[STAT_ITEMS] & (IT_GUN1 << sbartype)) && !hudedit)
|
2004-10-15 00:37:21 +00:00
|
|
|
return;
|
2005-07-20 11:52:08 +00:00
|
|
|
if (!gotweapontime[sbartype])
|
|
|
|
gotweapontime[sbartype] = currenttime;
|
|
|
|
flash = (currenttime - gotweapontime[sbartype])/100;
|
2004-10-15 00:37:21 +00:00
|
|
|
if (flash < 0) //errr... whoops...
|
|
|
|
flash = 0;
|
|
|
|
|
|
|
|
if (flash > 10)
|
|
|
|
{
|
2005-07-20 11:52:08 +00:00
|
|
|
if (stats[STAT_ACTIVEWEAPON] & (IT_GUN1 << sbartype))
|
2004-10-15 00:37:21 +00:00
|
|
|
flash = 1; //selected.
|
|
|
|
else
|
|
|
|
flash = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
flash = (flash%5) + 2;
|
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
UI_DrawPic(pic_weapon[flash][sbartype], 0, 0, 24, 16);
|
2004-10-15 00:37:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Hud_W_HalfLightning(void) //left half only (needed due to LG icon being twice as wide)
|
|
|
|
{
|
|
|
|
int flash;
|
|
|
|
int wnum = 6;
|
|
|
|
|
|
|
|
if (!(stats[STAT_ITEMS] & (IT_GUN1 << wnum)) && !hudedit)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!gotweapontime[wnum])
|
|
|
|
gotweapontime[wnum] = currenttime;
|
|
|
|
flash = (currenttime - gotweapontime[wnum])/100;
|
|
|
|
if (flash < 0) //errr... whoops...
|
|
|
|
flash = 0;
|
|
|
|
|
|
|
|
if (flash > 10)
|
|
|
|
{
|
|
|
|
if (stats[STAT_WEAPON] & (IT_GUN1 << wnum))
|
|
|
|
flash = 1; //selected.
|
|
|
|
else
|
|
|
|
flash = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
flash = (flash%5) + 2;
|
|
|
|
|
|
|
|
Draw_Image(sbarminx, sbarminy, (float)24*sbarscalex, (float)16*sbarscaley, 0, 0, 0.5, 1, pic_weapon[flash][wnum]);
|
|
|
|
}
|
|
|
|
void Hud_W_Lightning(void)
|
|
|
|
{
|
|
|
|
int flash;
|
|
|
|
int wnum = 6;
|
|
|
|
|
|
|
|
if (!(stats[STAT_ITEMS] & (IT_GUN1 << wnum)) && !hudedit)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!gotweapontime[wnum])
|
|
|
|
gotweapontime[wnum] = currenttime;
|
|
|
|
flash = (currenttime - gotweapontime[wnum])/100;
|
|
|
|
if (flash < 0) //errr... whoops...
|
|
|
|
flash = 0;
|
|
|
|
|
|
|
|
if (flash > 10)
|
|
|
|
{
|
|
|
|
if (stats[STAT_WEAPON] & (IT_GUN1 << wnum))
|
|
|
|
flash = 1; //selected.
|
|
|
|
else
|
|
|
|
flash = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
flash = (flash%5) + 2;
|
|
|
|
|
|
|
|
UI_DrawPic(pic_weapon[flash][wnum], 0, 0, 48, 16);
|
|
|
|
}
|
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
void Hud_Powerup(void)
|
2004-10-15 00:37:21 +00:00
|
|
|
{
|
|
|
|
int flash;
|
2005-07-20 11:52:08 +00:00
|
|
|
if (!(stats[STAT_ITEMS] & (IT_PUP1 << sbartype)) && !hudedit)
|
2004-10-15 00:37:21 +00:00
|
|
|
return;
|
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
if (!gotpuptime[sbartype])
|
|
|
|
gotpuptime[sbartype] = currenttime;
|
|
|
|
flash = (currenttime - gotpuptime[sbartype])/100;
|
2004-10-15 00:37:21 +00:00
|
|
|
if (flash < 0) //errr... whoops...
|
|
|
|
flash = 0;
|
|
|
|
|
|
|
|
if (flash > 10)
|
|
|
|
{
|
|
|
|
flash = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
flash = (flash%5) + 2;
|
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
UI_DrawPic(pic_pup[flash][sbartype], 0, 0, 16, 16);
|
2004-10-15 00:37:21 +00:00
|
|
|
}
|
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
void Hud_Rune(void)
|
2004-10-15 00:37:21 +00:00
|
|
|
{
|
2005-07-20 11:52:08 +00:00
|
|
|
if (!(stats[STAT_ITEMS] & (IT_RUNE1 << sbartype)) && !hudedit)
|
2004-10-15 00:37:21 +00:00
|
|
|
return;
|
2005-07-20 11:52:08 +00:00
|
|
|
UI_DrawPic(pic_rune[sbartype], 0, 0, 8, 16);
|
2004-10-15 00:37:21 +00:00
|
|
|
}
|
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
void Hud_Ammo(void)
|
2004-10-15 00:37:21 +00:00
|
|
|
{
|
|
|
|
int num;
|
2005-07-20 11:52:08 +00:00
|
|
|
Draw_Image(sbarminx, sbarminy, (float)42*sbarscalex, (float)11*sbarscaley, (3+(sbartype*48))/320.0f, 0, (3+(sbartype*48)+42)/320.0f, 11/24.0f, ibarback);
|
2004-10-15 00:37:21 +00:00
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
num = stats[STAT_SHELLS+sbartype];
|
2004-10-15 00:37:21 +00:00
|
|
|
UI_DrawChar(num%10+18, 19, 0);
|
|
|
|
num/=10;
|
2005-07-20 11:52:08 +00:00
|
|
|
if (num)
|
2004-10-15 00:37:21 +00:00
|
|
|
UI_DrawChar(num%10+18, 11, 0);
|
|
|
|
num/=10;
|
2005-07-20 11:52:08 +00:00
|
|
|
if (num)
|
2004-10-15 00:37:21 +00:00
|
|
|
UI_DrawChar(num%10+18, 3, 0);
|
|
|
|
}
|
2005-07-20 11:52:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
void Hud_ScoreCard(void)
|
2004-10-15 00:37:21 +00:00
|
|
|
{
|
|
|
|
}
|
2005-07-20 11:52:08 +00:00
|
|
|
|
|
|
|
//fixme: draw dark blobs
|
|
|
|
void Hud_Blackness(void)
|
2004-10-15 00:37:21 +00:00
|
|
|
{
|
2005-07-20 11:52:08 +00:00
|
|
|
|
2004-10-15 00:37:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//draw cody of sbar
|
|
|
|
//arg[0] is playernum
|
|
|
|
//arg[1]/arg[2] is x/y start of subwindow
|
|
|
|
//arg[3]/arg[4] is width/height of subwindow
|
|
|
|
int UI_StatusBar(int *arg)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
float vsx, vsy;
|
|
|
|
|
|
|
|
CL_GetStats(arg[0], stats, sizeof(stats)/sizeof(int));
|
|
|
|
|
|
|
|
vsx = arg[3]/640.0f;
|
|
|
|
vsy = arg[4]/480.0f;
|
|
|
|
for (i = 0; i < numelements; i++)
|
|
|
|
{
|
|
|
|
sbarminx = arg[1] + element[i].x*vsx;
|
|
|
|
sbarminy = arg[2] + element[i].y*vsy;
|
|
|
|
sbarscalex = element[i].scalex*vsx;
|
|
|
|
sbarscaley = element[i].scaley*vsy;
|
2005-07-20 11:52:08 +00:00
|
|
|
sbartype = element[i].subtype;
|
|
|
|
sbaralpha = element[i].alpha;
|
|
|
|
drawelement[element[i].type].draw();
|
2004-10-15 00:37:21 +00:00
|
|
|
}
|
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
int FS_Open(char *name, int *handle, int mode)
|
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
int len;
|
|
|
|
switch(mode)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
f = fopen(name, "rb");
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
f = fopen(name, "wb");
|
|
|
|
break;
|
|
|
|
}
|
2004-10-15 00:37:21 +00:00
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
*handle = (int)f;
|
2004-10-15 00:37:21 +00:00
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
if (!f)
|
|
|
|
return -1;
|
2004-10-15 00:37:21 +00:00
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
fseek(f, 0, SEEK_END);
|
|
|
|
len = ftell(f);
|
|
|
|
fseek(f, 0, SEEK_SET);
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
void FS_Close(int handle)
|
|
|
|
{
|
|
|
|
fclose((FILE*)handle);
|
|
|
|
}
|
2004-10-15 00:37:21 +00:00
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
void FS_Write(void *data, int len, int handle)
|
|
|
|
{
|
|
|
|
fwrite(data, 1, len, (FILE*)handle);
|
|
|
|
}
|
|
|
|
void FS_Read(void *data, int len, int handle)
|
|
|
|
{
|
|
|
|
fread(data, 1, len, (FILE*)handle);
|
|
|
|
}
|
2004-10-15 00:37:21 +00:00
|
|
|
|
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
#define HUD_VERSION 52345
|
|
|
|
void PutFloat(float f, char sep, int handle)
|
|
|
|
{
|
|
|
|
char *buffer;
|
|
|
|
buffer = va("%f%c", f, sep);
|
|
|
|
FS_Write(buffer, strlen(buffer), handle);
|
|
|
|
}
|
|
|
|
void PutInteger(int i, char sep, int handle)
|
|
|
|
{
|
|
|
|
char *buffer;
|
|
|
|
buffer = va("%i%c", i, sep);
|
|
|
|
FS_Write(buffer, strlen(buffer), handle);
|
|
|
|
}
|
2004-10-15 00:37:21 +00:00
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
void Hud_Save(char *fname)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int handle;
|
|
|
|
if (FS_Open(fname, &handle, 1)<0)
|
2004-10-15 00:37:21 +00:00
|
|
|
{
|
2005-07-20 11:52:08 +00:00
|
|
|
Con_Printf("Couldn't open %s\n", fname);
|
|
|
|
return;
|
2004-10-15 00:37:21 +00:00
|
|
|
}
|
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
PutInteger(HUD_VERSION, '\n', handle);
|
|
|
|
PutInteger(numelements, '\n', handle);
|
|
|
|
for (i = 0; i < numelements; i++)
|
2004-10-15 00:37:21 +00:00
|
|
|
{
|
2005-07-20 11:52:08 +00:00
|
|
|
PutFloat(element[i].x, ' ', handle);
|
|
|
|
PutFloat(element[i].y, ' ', handle);
|
|
|
|
PutFloat(element[i].scalex, ' ', handle);
|
|
|
|
PutFloat(element[i].scaley, ' ', handle);
|
|
|
|
PutInteger(element[i].type, '\n', handle);
|
2004-10-15 00:37:21 +00:00
|
|
|
}
|
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
FS_Close(handle);
|
|
|
|
}
|
|
|
|
float GetFloat(char **f, int handle)
|
|
|
|
{
|
|
|
|
char *ts;
|
|
|
|
while(**f < ' ' && **f != 0)
|
|
|
|
(*f)++;
|
|
|
|
while(*f[0] == '/' && *f[1] == '/')
|
2004-10-15 00:37:21 +00:00
|
|
|
{
|
2005-07-20 11:52:08 +00:00
|
|
|
while(**f != '\n' && **f != 0)
|
|
|
|
(*f)++;
|
|
|
|
while(**f < ' ' && **f != 0)
|
|
|
|
(*f)++;
|
|
|
|
}
|
|
|
|
ts = *f;
|
|
|
|
while (**f>' ')
|
|
|
|
(*f)++;
|
|
|
|
|
|
|
|
return (float)atof(ts);
|
|
|
|
}
|
|
|
|
int GetInteger(char **f, int handle)
|
|
|
|
{
|
|
|
|
char *ts;
|
|
|
|
while(**f < ' ' && **f != 0)
|
|
|
|
(*f)++;
|
|
|
|
while(*f[0] == '/' && *f[1] == '/')
|
|
|
|
{
|
|
|
|
while(**f != '\n' && **f != 0)
|
|
|
|
(*f)++;
|
|
|
|
while(**f < ' ' && **f != 0)
|
|
|
|
(*f)++;
|
|
|
|
}
|
|
|
|
ts = *f;
|
|
|
|
while (**f>' ')
|
|
|
|
(*f)++;
|
|
|
|
|
|
|
|
return atoi(ts);
|
|
|
|
}
|
|
|
|
void Hud_Load(char *fname)
|
|
|
|
{
|
|
|
|
char file[16384];
|
|
|
|
char *p;
|
|
|
|
int len;
|
|
|
|
int i;
|
|
|
|
int handle;
|
|
|
|
len = FS_Open(fname, &handle, 0);
|
|
|
|
if (len < 0)
|
|
|
|
{
|
|
|
|
Con_Printf("Couldn't load file\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (len > 16383)
|
|
|
|
len = 16383;
|
|
|
|
FS_Read(file, len, handle);
|
|
|
|
file[len] = 0;
|
|
|
|
FS_Close(handle);
|
2004-10-15 00:37:21 +00:00
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
p = file;
|
2004-10-15 00:37:21 +00:00
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
if (GetInteger(&p, handle) != HUD_VERSION)
|
|
|
|
{
|
|
|
|
Con_Printf("Hud version doesn't match\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
numelements = GetInteger(&p, handle);
|
|
|
|
if (numelements > MAX_ELEMENTS)
|
|
|
|
{
|
|
|
|
numelements = 0;
|
|
|
|
Con_Printf("Hud has too many elements\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (i = 0; i < numelements; i++)
|
|
|
|
{
|
|
|
|
element[i].x = GetFloat(&p, handle);
|
|
|
|
element[i].y = GetFloat(&p, handle);
|
|
|
|
element[i].scalex = GetFloat(&p, handle);
|
|
|
|
element[i].scaley = GetFloat(&p, handle);
|
2004-10-15 00:37:21 +00:00
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
element[i].type = GetInteger(&p, handle);
|
|
|
|
if (element[i].type<0 || element[i].type>=sizeof(drawelement)/sizeof(drawelement[0]))
|
2004-10-15 00:37:21 +00:00
|
|
|
{
|
2005-07-20 11:52:08 +00:00
|
|
|
numelements--;
|
|
|
|
i--;
|
2004-10-15 00:37:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int currentitem;
|
|
|
|
qboolean mousedown, shiftdown;
|
|
|
|
float mouseofsx, mouseofsy;
|
|
|
|
|
|
|
|
void UI_KeyPress(int key, int mx, int my)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
if (key == K_ESCAPE)
|
|
|
|
{
|
|
|
|
Menu_Control(0);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (key == K_MOUSE1)
|
|
|
|
{ //figure out which one our cursor is over...
|
|
|
|
mousedown = false;
|
|
|
|
|
|
|
|
for (i = 0; i < numelements; i++)
|
|
|
|
{
|
|
|
|
if (element[i].x < mx &&
|
|
|
|
element[i].y < my &&
|
2005-07-20 11:52:08 +00:00
|
|
|
element[i].x + element[i].scalex*drawelement[element[i].type].width > mx &&
|
|
|
|
element[i].y + element[i].scaley*drawelement[element[i].type].height > my)
|
2004-10-15 00:37:21 +00:00
|
|
|
{
|
|
|
|
mouseofsx = mx - element[i].x;
|
|
|
|
mouseofsy = my - element[i].y;
|
|
|
|
mousedown = true;
|
|
|
|
currentitem = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (key == 'i')
|
|
|
|
{
|
|
|
|
if (numelements==MAX_ELEMENTS)
|
|
|
|
return; //too many
|
|
|
|
|
|
|
|
element[numelements].scalex = 1;
|
|
|
|
element[numelements].scaley = 1;
|
|
|
|
element[numelements].alpha = 1;
|
|
|
|
numelements++;
|
|
|
|
}
|
|
|
|
else if (currentitem < numelements)
|
|
|
|
{
|
|
|
|
if (key == K_SHIFT)
|
|
|
|
shiftdown = true;
|
|
|
|
else if (key == 'd')
|
|
|
|
{
|
|
|
|
mousedown = false;
|
|
|
|
memcpy(element+currentitem, element+currentitem+1, sizeof(element[0]) * (numelements - currentitem-1));
|
|
|
|
numelements--;
|
|
|
|
currentitem = 0;
|
|
|
|
}
|
|
|
|
else if (key == 'q')
|
|
|
|
{
|
|
|
|
element[currentitem].type--;
|
|
|
|
if (element[currentitem].type < 0)
|
2005-07-20 11:52:08 +00:00
|
|
|
element[currentitem].type = sizeof(drawelement)/sizeof(drawelement[0])-1;
|
2004-10-15 00:37:21 +00:00
|
|
|
}
|
|
|
|
else if (key == 'w')
|
|
|
|
{
|
|
|
|
element[currentitem].type++;
|
2005-07-20 11:52:08 +00:00
|
|
|
if (element[currentitem].type >= sizeof(drawelement)/sizeof(drawelement[0]))
|
2004-10-15 00:37:21 +00:00
|
|
|
element[currentitem].type = 0;
|
|
|
|
}
|
2005-07-20 11:52:08 +00:00
|
|
|
else if (key == ',')
|
|
|
|
{
|
|
|
|
element[currentitem].subtype--;
|
|
|
|
if (element[currentitem].subtype < 0)
|
|
|
|
element[currentitem].subtype = drawelement[element[currentitem].type].maxsubtype;
|
|
|
|
}
|
|
|
|
else if (key == '.')
|
|
|
|
{
|
|
|
|
element[currentitem].subtype++;
|
|
|
|
if (element[currentitem].subtype > drawelement[element[currentitem].type].maxsubtype)
|
|
|
|
element[currentitem].subtype = 0;
|
|
|
|
}
|
2004-10-15 00:37:21 +00:00
|
|
|
else if (key == K_UPARROW)
|
|
|
|
{
|
|
|
|
element[currentitem].y-=shiftdown?8:1;
|
|
|
|
}
|
|
|
|
else if (key == K_DOWNARROW)
|
|
|
|
{
|
|
|
|
element[currentitem].y+=shiftdown?8:1;
|
|
|
|
}
|
|
|
|
else if (key == K_LEFTARROW)
|
|
|
|
{
|
|
|
|
element[currentitem].x-=shiftdown?8:1;
|
|
|
|
}
|
|
|
|
else if (key == K_RIGHTARROW)
|
|
|
|
{
|
|
|
|
element[currentitem].x+=shiftdown?8:1;
|
|
|
|
}
|
|
|
|
else if (key == K_HOME)
|
|
|
|
{
|
|
|
|
element[currentitem].scalex=1.0f;
|
|
|
|
element[currentitem].scaley=1.0f;
|
|
|
|
}
|
|
|
|
else if (key == '+')
|
|
|
|
{
|
|
|
|
element[currentitem].scalex*=1.1f;
|
|
|
|
element[currentitem].scaley*=1.1f;
|
|
|
|
}
|
|
|
|
else if (key == '-')
|
|
|
|
{
|
|
|
|
element[currentitem].scalex/=1.1f;
|
|
|
|
element[currentitem].scaley/=1.1f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int Plug_MenuEvent(int *args)
|
|
|
|
{
|
|
|
|
int altargs[5];
|
|
|
|
|
|
|
|
args[2]=(int)(args[2]*640.0f/vid.width);
|
|
|
|
args[3]=(int)(args[3]*480.0f/vid.height);
|
|
|
|
|
|
|
|
switch(args[0])
|
|
|
|
{
|
|
|
|
case 0: //draw
|
|
|
|
|
|
|
|
if (mousedown)
|
|
|
|
{
|
|
|
|
element[currentitem].x = args[2] - mouseofsx;
|
|
|
|
element[currentitem].y = args[3] - mouseofsy;
|
|
|
|
if (shiftdown)
|
|
|
|
{
|
|
|
|
element[currentitem].x -= (int)element[currentitem].x & 7;
|
|
|
|
element[currentitem].y -= (int)element[currentitem].y & 7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
hudedit = !!(currenttime/250)&3;
|
|
|
|
|
|
|
|
altargs[0] = 0;
|
|
|
|
altargs[1] = 0;
|
|
|
|
altargs[2] = 0;
|
|
|
|
altargs[3] = vid.width;
|
|
|
|
altargs[4] = vid.height;
|
|
|
|
UI_StatusBar(altargs); //draw it using the same function (we're lazy)
|
|
|
|
|
|
|
|
if ((currenttime/250)&1)
|
|
|
|
Draw_Fill( (int)element[currentitem].x, (int)element[currentitem].y,
|
2005-07-20 11:52:08 +00:00
|
|
|
(int)(element[currentitem].scalex*drawelement[element[currentitem].type].width),
|
|
|
|
(int)(element[currentitem].scaley*drawelement[element[currentitem].type].height));
|
2004-10-15 00:37:21 +00:00
|
|
|
break;
|
|
|
|
case 1: //keydown
|
|
|
|
UI_KeyPress(args[1], args[2], args[3]);
|
|
|
|
break;
|
|
|
|
case 2: //keyup
|
|
|
|
if (args[1] == K_MOUSE1)
|
|
|
|
mousedown = false;
|
|
|
|
else if (args[1] == K_SHIFT)
|
|
|
|
shiftdown = false;
|
|
|
|
break;
|
|
|
|
case 3: //menu closed (this is called even if we change it).
|
|
|
|
hudedit = false;
|
|
|
|
break;
|
|
|
|
case 4: //mousemove
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Plug_Tick(int *args)
|
|
|
|
{
|
|
|
|
currenttime = args[0];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Plug_ExecuteCommand(int *args)
|
|
|
|
{
|
|
|
|
char cmd[256];
|
|
|
|
Cmd_Argv(0, cmd, sizeof(cmd));
|
|
|
|
if (!strcmp("sbar_edit", cmd))
|
|
|
|
{
|
|
|
|
Menu_Control(1);
|
|
|
|
mousedown=false;
|
|
|
|
return 1;
|
|
|
|
}
|
2005-07-20 11:52:08 +00:00
|
|
|
if (!strcmp("sbar_save", cmd))
|
|
|
|
{
|
|
|
|
Cmd_Argv(1, cmd, sizeof(cmd));
|
|
|
|
Hud_Save(cmd);
|
|
|
|
mousedown=false;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (!strcmp("sbar_load", cmd))
|
|
|
|
{
|
|
|
|
Cmd_Argv(1, cmd, sizeof(cmd));
|
|
|
|
Hud_Load(cmd);
|
|
|
|
mousedown=false;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (!strcmp("sbar_defaults", cmd))
|
|
|
|
{
|
|
|
|
Cmd_Argv(1, cmd, sizeof(cmd));
|
|
|
|
SBar_FlushAll();
|
|
|
|
SBar_ReloadDefaults();
|
|
|
|
mousedown=false;
|
|
|
|
return 1;
|
|
|
|
}
|
2004-10-15 00:37:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Plug_Init(int *args)
|
|
|
|
{
|
|
|
|
if (Plug_Export("Tick", Plug_Tick) &&
|
|
|
|
Plug_Export("SbarBase", UI_StatusBar) &&
|
|
|
|
Plug_Export("ExecuteCommand", Plug_ExecuteCommand) &&
|
|
|
|
Plug_Export("MenuEvent", Plug_MenuEvent))
|
|
|
|
{
|
|
|
|
UI_SbarInit();
|
|
|
|
|
|
|
|
K_UPARROW = Key_GetKeyCode("uparrow");
|
|
|
|
K_DOWNARROW = Key_GetKeyCode("downarrow");
|
|
|
|
K_LEFTARROW = Key_GetKeyCode("leftarrow");
|
|
|
|
K_RIGHTARROW = Key_GetKeyCode("rightarrow");
|
|
|
|
K_ESCAPE = Key_GetKeyCode("escape");
|
|
|
|
K_HOME = Key_GetKeyCode("home");
|
|
|
|
K_MOUSE1 = Key_GetKeyCode("mouse1");
|
|
|
|
K_SHIFT = Key_GetKeyCode("shift");
|
|
|
|
|
2005-07-20 11:52:08 +00:00
|
|
|
Cmd_AddCommand("sbar_edit");
|
|
|
|
Cmd_AddCommand("sbar_save");
|
|
|
|
Cmd_AddCommand("sbar_load");
|
|
|
|
Cmd_AddCommand("sbar_defaults");
|
|
|
|
|
2004-10-15 00:37:21 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2005-05-17 22:05:45 +00:00
|
|
|
}
|