2015-05-19 21:54:34 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Copyright (C) 1997, 2005 - 3D Realms Entertainment
|
|
|
|
|
|
|
|
This file is part of Shadow Warrior version 1.2
|
|
|
|
|
|
|
|
Shadow Warrior 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
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
Original Source: 1997 - Frank Maddin and Jim Norwood
|
|
|
|
Prepared for public release: 03/28/2005 - Charlie Wiederhold, 3D Realms
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
2019-10-09 16:09:05 +00:00
|
|
|
#include "ns.h"
|
2015-05-19 21:54:34 +00:00
|
|
|
#undef MAIN
|
|
|
|
#include "build.h"
|
|
|
|
|
|
|
|
#include "keys.h"
|
|
|
|
#include "names2.h"
|
|
|
|
#include "panel.h"
|
|
|
|
#include "lists.h"
|
|
|
|
#include "game.h"
|
|
|
|
#include "common_game.h"
|
|
|
|
#include "pal.h"
|
|
|
|
#include "text.h"
|
|
|
|
#include "menus.h"
|
|
|
|
|
2019-03-21 02:24:19 +00:00
|
|
|
#include "network.h"
|
2015-05-19 21:54:34 +00:00
|
|
|
|
2019-10-09 16:09:05 +00:00
|
|
|
BEGIN_SW_NS
|
|
|
|
|
2015-05-19 21:54:34 +00:00
|
|
|
#define PANEL_FONT_G 3636
|
|
|
|
#define PANEL_FONT_Y 3646
|
|
|
|
#define PANEL_FONT_R 3656
|
|
|
|
|
|
|
|
#define PANEL_SM_FONT_G 3601
|
|
|
|
#define PANEL_SM_FONT_Y 3613
|
|
|
|
#define PANEL_SM_FONT_R 3625
|
|
|
|
|
2019-04-08 06:25:22 +00:00
|
|
|
const char *KeyDoorMessage[MAX_KEYS] =
|
2015-05-19 21:54:34 +00:00
|
|
|
{
|
|
|
|
"You need a RED key for this door.",
|
|
|
|
"You need a BLUE key for this door.",
|
|
|
|
"You need a GREEN key for this door.",
|
|
|
|
"You need a YELLOW key for this door.",
|
|
|
|
"You need a GOLD key for this door.",
|
|
|
|
"You need a SILVER key for this door.",
|
|
|
|
"You need a BRONZE key for this door.",
|
|
|
|
"You need a RED key for this door."
|
|
|
|
};
|
|
|
|
|
2015-05-19 21:58:29 +00:00
|
|
|
void
|
2015-05-19 21:54:34 +00:00
|
|
|
DisplaySummaryString(PLAYERp pp, short xs, short ys, short color, short shade, const char *buffer)
|
|
|
|
{
|
|
|
|
short size,x;
|
|
|
|
const char *ptr;
|
|
|
|
char ch;
|
|
|
|
PANEL_SPRITEp nsp;
|
|
|
|
short font_pic;
|
|
|
|
static short font_base[] = {PANEL_SM_FONT_G, PANEL_SM_FONT_Y, PANEL_SM_FONT_R};
|
|
|
|
|
|
|
|
for (ptr = buffer, x = xs; *ptr; ptr++, x += size)
|
|
|
|
{
|
|
|
|
ch = *ptr;
|
|
|
|
if (ch == ' ')
|
|
|
|
{
|
|
|
|
size = 4;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (ch)
|
|
|
|
{
|
|
|
|
case '\\':
|
|
|
|
ch = '0' - 1; // one pic before 0
|
|
|
|
break;
|
|
|
|
case ':':
|
|
|
|
ch = '9' + 1; // one pic after nine
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ASSERT(color < 3);
|
|
|
|
font_pic = font_base[color] + (ch - '0');
|
|
|
|
nsp = pSpawnFullScreenSprite(pp, font_pic, PRI_FRONT_MAX, x, ys);
|
|
|
|
nsp->shade = shade;
|
2015-05-19 22:02:25 +00:00
|
|
|
size = tilesiz[font_pic].x + 1;
|
2015-05-19 21:54:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
PANEL_SPRITEp
|
|
|
|
pClearTextLineID(PLAYERp pp, short id, long y, short pri)
|
|
|
|
{
|
|
|
|
PANEL_SPRITEp nsp=NULL;
|
|
|
|
PANEL_SPRITEp psp=NULL, next;
|
|
|
|
|
|
|
|
TRAVERSE(&pp->PanelSpriteList, psp, next)
|
|
|
|
{
|
|
|
|
// early out
|
|
|
|
if (psp->priority > pri)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (psp->ID == id && psp->y == y && psp->priority == pri)
|
|
|
|
{
|
|
|
|
SetRedrawScreen(psp->PlayerP);
|
|
|
|
//SET(psp->flags, PANF_INVISIBLE);
|
|
|
|
pSetSuicide(psp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// only call this from menu code - it does a pKillSprite
|
|
|
|
PANEL_SPRITEp
|
|
|
|
pMenuClearTextLineID(PLAYERp pp, short id, long y, short pri)
|
|
|
|
{
|
|
|
|
PANEL_SPRITEp nsp=NULL;
|
|
|
|
PANEL_SPRITEp psp=NULL, next;
|
|
|
|
|
|
|
|
TRAVERSE(&pp->PanelSpriteList, psp, next)
|
|
|
|
{
|
|
|
|
// early out
|
|
|
|
if (psp->priority > pri)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (psp->ID == id && psp->y == y && psp->priority == pri)
|
|
|
|
{
|
|
|
|
SetRedrawScreen(psp->PlayerP);
|
|
|
|
pKillSprite(psp);
|
|
|
|
//pSetSuicide(psp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
pClearTextLine(PLAYERp pp, long y)
|
|
|
|
{
|
|
|
|
SetRedrawScreen(pp);
|
|
|
|
pClearTextLineID(pp, ID_TEXT, y, PRI_FRONT_MAX);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
StringTimer(PANEL_SPRITEp psp)
|
|
|
|
{
|
|
|
|
if ((psp->kill_tics -= synctics) <= 0)
|
|
|
|
{
|
|
|
|
SetRedrawScreen(psp->PlayerP);
|
|
|
|
//pSetSuicide(psp); // did not work here
|
|
|
|
pKillSprite(psp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
PutStringTimer(PLAYERp pp, short x, short y, const char *string, short seconds)
|
|
|
|
{
|
|
|
|
int ndx, offset;
|
|
|
|
char c;
|
|
|
|
PANEL_SPRITEp nsp;
|
|
|
|
extern unsigned short xlatfont[];
|
|
|
|
long kill_tics;
|
|
|
|
short id, ac;
|
2019-04-08 06:27:31 +00:00
|
|
|
PANEL_SPRITE_FUNCp func;
|
2015-05-19 21:54:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
offset = x;
|
|
|
|
|
|
|
|
if (seconds == 999)
|
|
|
|
{
|
|
|
|
pClearTextLineID(pp, ID_TEXT, y, PRI_FRONT_MAX);
|
|
|
|
func = NULL;
|
|
|
|
kill_tics = 0;
|
|
|
|
id = ID_TEXT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pClearTextLineID(pp, ID_TEXT, y, PRI_FRONT_MAX);
|
|
|
|
func = StringTimer;
|
|
|
|
kill_tics = seconds * 120;
|
|
|
|
id = ID_TEXT;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (ndx = 0; (c = string[ndx]) != 0; ndx++)
|
|
|
|
{
|
|
|
|
ac = c - '!' + STARTALPHANUM;
|
|
|
|
if ((ac < STARTALPHANUM || ac > ENDALPHANUM) && c != asc_Space)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (c > asc_Space && c < 127)
|
|
|
|
{
|
|
|
|
nsp = pSpawnFullViewSprite(pp, ac, PRI_FRONT_MAX, offset, y);
|
2019-04-08 06:27:31 +00:00
|
|
|
nsp->PanelSpriteFunc = func;
|
2015-05-19 21:54:34 +00:00
|
|
|
nsp->kill_tics = kill_tics;
|
|
|
|
nsp->ID = id;
|
2015-05-19 22:02:25 +00:00
|
|
|
offset += tilesiz[ac].x;
|
2015-05-19 21:54:34 +00:00
|
|
|
}
|
|
|
|
else if (c == asc_Space)
|
|
|
|
offset += 4; // Special case for space char
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
KillString(PLAYERp pp, short y)
|
|
|
|
{
|
|
|
|
pClearTextLineID(pp, ID_TEXT, y, PRI_FRONT_MAX);
|
|
|
|
}
|
|
|
|
|
|
|
|
PANEL_SPRITEp
|
|
|
|
pClearSpriteXY(PLAYERp pp, short x, short y)
|
|
|
|
{
|
|
|
|
PANEL_SPRITEp nsp=NULL;
|
|
|
|
PANEL_SPRITEp psp=NULL, next;
|
|
|
|
|
|
|
|
TRAVERSE(&pp->PanelSpriteList, psp, next)
|
|
|
|
{
|
|
|
|
if (psp->x == x && psp->y == y)
|
|
|
|
pSetSuicide(psp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
PANEL_SPRITEp
|
|
|
|
pClearSpriteID(PLAYERp pp, short id)
|
|
|
|
{
|
|
|
|
PANEL_SPRITEp nsp=NULL;
|
|
|
|
PANEL_SPRITEp psp=NULL, next;
|
|
|
|
|
|
|
|
TRAVERSE(&pp->PanelSpriteList, psp, next)
|
|
|
|
{
|
|
|
|
if (psp->ID == id)
|
|
|
|
pSetSuicide(psp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-19 21:58:29 +00:00
|
|
|
void
|
2015-05-19 21:54:34 +00:00
|
|
|
DisplayPanelNumber(PLAYERp pp, short xs, short ys, int number)
|
|
|
|
{
|
|
|
|
char buffer[32];
|
|
|
|
char *ptr;
|
|
|
|
short x, size;
|
|
|
|
|
|
|
|
sprintf(buffer, "%03d", number);
|
|
|
|
|
|
|
|
for (ptr = buffer, x = xs; *ptr; ptr++, x += size)
|
|
|
|
{
|
|
|
|
if (!isdigit(*ptr))
|
|
|
|
{
|
|
|
|
size = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
pSpawnFullScreenSprite(pp, PANEL_FONT_G + (*ptr - '0'), PRI_FRONT_MAX, x, ys);
|
|
|
|
|
2015-05-19 22:02:25 +00:00
|
|
|
size = tilesiz[PANEL_FONT_G + (*ptr - '0')].x + 1;
|
2015-05-19 21:54:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-19 21:58:29 +00:00
|
|
|
void
|
2015-05-19 21:54:34 +00:00
|
|
|
DisplayMiniBarNumber(PLAYERp pp, short xs, short ys, int number)
|
|
|
|
{
|
|
|
|
char buffer[32];
|
|
|
|
char *ptr;
|
|
|
|
short x, size;
|
|
|
|
short pic;
|
|
|
|
|
|
|
|
sprintf(buffer, "%03d", number);
|
|
|
|
|
|
|
|
for (ptr = buffer, x = xs; *ptr; ptr++, x += size)
|
|
|
|
{
|
|
|
|
if (!isdigit(*ptr))
|
|
|
|
{
|
|
|
|
size = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
pic = PANEL_FONT_G + (*ptr - '0');
|
|
|
|
|
|
|
|
rotatesprite((long)x << 16, (long)ys << 16, (1 << 16), 0,
|
|
|
|
pic, 0, 0,
|
|
|
|
ROTATE_SPRITE_SCREEN_CLIP | ROTATE_SPRITE_CORNER, 0, 0, xdim - 1, ydim - 1);
|
|
|
|
|
2015-05-19 22:02:25 +00:00
|
|
|
size = tilesiz[PANEL_FONT_G + (*ptr - '0')].x + 1;
|
2015-05-19 21:54:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-19 21:58:29 +00:00
|
|
|
void
|
2015-05-19 21:54:34 +00:00
|
|
|
DisplayMiniBarSmString(PLAYERp pp, short xs, short ys, short pal, const char *buffer)
|
|
|
|
{
|
|
|
|
short size=4,x;
|
|
|
|
const char *ptr;
|
|
|
|
PANEL_SPRITEp nsp;
|
|
|
|
short pic;
|
|
|
|
|
|
|
|
#define FRAG_FIRST_ASCII ('!') //exclamation point
|
|
|
|
#define FRAG_FIRST_TILE 2930 //exclamation point
|
|
|
|
|
|
|
|
for (ptr = buffer, x = xs; *ptr; ptr++, x += size)
|
|
|
|
{
|
|
|
|
if (*ptr == ' ')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ASSERT(*ptr >= '!' && *ptr <= '}');
|
|
|
|
|
|
|
|
pic = FRAG_FIRST_TILE + (*ptr - FRAG_FIRST_ASCII);
|
|
|
|
|
|
|
|
rotatesprite((long)x << 16, (long)ys << 16, (1 << 16), 0,
|
|
|
|
pic, 0, pal,
|
|
|
|
ROTATE_SPRITE_SCREEN_CLIP | ROTATE_SPRITE_CORNER, 0, 0, xdim - 1, ydim - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-19 21:58:29 +00:00
|
|
|
void
|
2015-05-19 21:54:34 +00:00
|
|
|
DisplaySmString(PLAYERp pp, short xs, short ys, short pal, const char *buffer)
|
|
|
|
{
|
|
|
|
short size=4,x;
|
|
|
|
const char *ptr;
|
|
|
|
PANEL_SPRITEp nsp;
|
|
|
|
// ID is base + (0-3)
|
|
|
|
//short id = ID_TEXT + MOD4(pp->pnum);
|
|
|
|
|
|
|
|
#define FRAG_FIRST_ASCII ('!') //exclamation point
|
|
|
|
#define FRAG_FIRST_TILE 2930 //exclamation point
|
|
|
|
|
|
|
|
for (ptr = buffer, x = xs; *ptr; ptr++, x += size)
|
|
|
|
{
|
|
|
|
if (*ptr == ' ')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ASSERT(*ptr >= '!' && *ptr <= '}');
|
|
|
|
|
|
|
|
nsp = pSpawnFullScreenSprite(pp, FRAG_FIRST_TILE + (*ptr - FRAG_FIRST_ASCII), PRI_FRONT_MAX, x, ys);
|
|
|
|
nsp->pal = pal;
|
|
|
|
//nsp->ID = id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-19 21:58:29 +00:00
|
|
|
void
|
2015-05-19 21:54:34 +00:00
|
|
|
DisplayFragString(PLAYERp pp, short xs, short ys, const char *buffer)
|
|
|
|
{
|
|
|
|
short size=4,x;
|
|
|
|
const char *ptr;
|
|
|
|
PANEL_SPRITEp nsp;
|
|
|
|
// ID is base + (0-3)
|
|
|
|
short id = ID_TEXT + MOD4(pp->pnum);
|
|
|
|
|
|
|
|
PLAYERp my_pp = Player + myconnectindex;
|
|
|
|
|
|
|
|
#define FRAG_FIRST_ASCII ('!') //exclamation point
|
|
|
|
#define FRAG_FIRST_TILE 2930 //exclamation point
|
|
|
|
|
|
|
|
//pClearTextLineID(my_pp, id, ys, PRI_FRONT_MAX);
|
|
|
|
|
|
|
|
for (ptr = buffer, x = xs; *ptr; ptr++, x += size)
|
|
|
|
{
|
|
|
|
if (*ptr == ' ')
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ASSERT(*ptr >= '!' && *ptr <= '}');
|
|
|
|
|
|
|
|
nsp = pSpawnFullScreenSprite(my_pp, FRAG_FIRST_TILE + (*ptr - FRAG_FIRST_ASCII), PRI_FRONT_MAX, x, ys);
|
|
|
|
nsp->ID = id;
|
|
|
|
//nsp->pal = PALETTE_PLAYER0 + pp->TeamColor;
|
|
|
|
//if (pp->SpriteP)
|
|
|
|
nsp->pal = User[pp->SpriteP - sprite]->spal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-19 21:58:29 +00:00
|
|
|
void
|
2015-05-19 21:54:34 +00:00
|
|
|
DisplayFragNumbers(PLAYERp pp)
|
|
|
|
{
|
|
|
|
char buffer[32];
|
|
|
|
char *ptr;
|
|
|
|
short x, xs, ys, size;
|
|
|
|
short frag_bar;
|
|
|
|
short pnum = pp - Player;
|
|
|
|
|
|
|
|
static int xoffs[] =
|
|
|
|
{
|
|
|
|
69, 147, 225, 303
|
|
|
|
};
|
|
|
|
|
|
|
|
PLAYERp my_pp = Player + myconnectindex;
|
|
|
|
|
|
|
|
// black tile to erase frag count
|
|
|
|
#define FRAG_ERASE_NAME 2375
|
|
|
|
#define FRAG_ERASE_NUMBER 2376
|
|
|
|
#define FRAG_YOFF 2
|
|
|
|
|
|
|
|
//xs = FRAG_XOFF;
|
|
|
|
ys = FRAG_YOFF;
|
|
|
|
|
|
|
|
// frag bar 0 or 1
|
|
|
|
frag_bar = ((pnum)/4);
|
|
|
|
// move y down according to frag bar number
|
2015-05-19 22:02:25 +00:00
|
|
|
ys = ys + (tilesiz[FRAG_BAR].y-2) * frag_bar;
|
2015-05-19 21:54:34 +00:00
|
|
|
|
|
|
|
// move x over according to the number of players
|
|
|
|
xs = xoffs[MOD4(pnum)];
|
|
|
|
|
|
|
|
sprintf(buffer, "%03d", pp->Kills);
|
|
|
|
|
|
|
|
// erase old kill count
|
|
|
|
pSpawnFullScreenSprite(my_pp, FRAG_ERASE_NUMBER, PRI_MID+1, xs-1, ys);
|
|
|
|
|
|
|
|
DisplayFragString(pp, xs, ys, buffer);
|
|
|
|
}
|
|
|
|
|
2015-05-19 21:58:29 +00:00
|
|
|
void
|
2015-05-19 21:54:34 +00:00
|
|
|
DisplayFragNames(PLAYERp pp)
|
|
|
|
{
|
|
|
|
char *ptr;
|
|
|
|
short x, xs, ys, size;
|
|
|
|
short frag_bar;
|
|
|
|
short pnum = pp - Player;
|
|
|
|
|
|
|
|
static int xoffs[] =
|
|
|
|
{
|
|
|
|
7, 85, 163, 241
|
|
|
|
};
|
|
|
|
|
|
|
|
PLAYERp my_pp = Player + myconnectindex;
|
|
|
|
|
|
|
|
//xs = FRAG_XOFF;
|
|
|
|
ys = FRAG_YOFF;
|
|
|
|
|
|
|
|
// frag bar 0 or 1
|
|
|
|
frag_bar = ((pnum)/4);
|
|
|
|
// move y down according to frag bar number
|
2015-05-19 22:02:25 +00:00
|
|
|
ys = ys + (tilesiz[FRAG_BAR].y-2) * frag_bar;
|
2015-05-19 21:54:34 +00:00
|
|
|
|
|
|
|
// move x over according to the number of players
|
|
|
|
xs = xoffs[MOD4(pnum)];
|
|
|
|
|
|
|
|
// erase old kill count
|
|
|
|
pSpawnFullScreenSprite(my_pp, FRAG_ERASE_NAME, PRI_MID+1, xs-1, ys);
|
|
|
|
|
|
|
|
DisplayFragString(pp, xs, ys, pp->PlayerName);
|
|
|
|
}
|
|
|
|
|
|
|
|
short GlobInfoStringTime = TEXT_INFO_TIME;
|
2015-05-19 21:58:29 +00:00
|
|
|
void PutStringInfo(PLAYERp pp, const char *string)
|
2015-05-19 21:54:34 +00:00
|
|
|
{
|
|
|
|
if (pp-Player != myconnectindex)
|
|
|
|
return;
|
|
|
|
|
2019-10-27 15:53:00 +00:00
|
|
|
if (!hud_messages)
|
2015-05-19 21:54:34 +00:00
|
|
|
return;
|
|
|
|
|
2019-04-10 01:00:15 +00:00
|
|
|
CON_ConMessage("%s", string); // Put it in the console too
|
2015-05-19 21:54:34 +00:00
|
|
|
PutStringInfoLine(pp, string);
|
|
|
|
}
|
|
|
|
|
2015-05-19 21:58:29 +00:00
|
|
|
void PutStringInfoLine(PLAYERp pp, const char *string)
|
2015-05-19 21:54:34 +00:00
|
|
|
{
|
|
|
|
short x,y;
|
|
|
|
short w,h;
|
|
|
|
|
|
|
|
if (pp-Player != myconnectindex)
|
|
|
|
return;
|
|
|
|
|
|
|
|
MNU_MeasureString(string, &w, &h);
|
|
|
|
|
|
|
|
x = TEXT_XCENTER(w);
|
|
|
|
y = TEXT_INFO_LINE(0);
|
|
|
|
|
|
|
|
// Move lower on this level because of boss meters
|
|
|
|
//if ((Level == 20 && numplayers > 1) || numplayers > 4)
|
|
|
|
// y += 20;
|
|
|
|
//if (numplayers > 1 && numplayers <= 4)
|
|
|
|
// y+= 10;
|
|
|
|
|
|
|
|
PutStringTimer(pp, x, y, string, GlobInfoStringTime);
|
|
|
|
// when printing info line clear the second line
|
|
|
|
//PutStringInfoLine2(pp, "");
|
|
|
|
}
|
|
|
|
|
2015-05-19 21:58:29 +00:00
|
|
|
void PutStringInfoLine2(PLAYERp pp, const char *string)
|
2015-05-19 21:54:34 +00:00
|
|
|
{
|
|
|
|
short x,y;
|
|
|
|
short w,h;
|
|
|
|
|
|
|
|
if (pp-Player != myconnectindex)
|
|
|
|
return;
|
|
|
|
|
|
|
|
MNU_MeasureString(string, &w, &h);
|
|
|
|
|
|
|
|
x = TEXT_XCENTER(w);
|
|
|
|
y = TEXT_INFO_LINE(1);
|
|
|
|
|
|
|
|
PutStringTimer(pp, x, y, string, GlobInfoStringTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pMenuClearTextLine(PLAYERp pp)
|
|
|
|
{
|
|
|
|
pMenuClearTextLineID(pp, ID_TEXT, TEXT_INFO_LINE(0), PRI_FRONT_MAX);
|
|
|
|
pMenuClearTextLineID(pp, ID_TEXT, TEXT_INFO_LINE(1), PRI_FRONT_MAX);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define TEXT_PLAYER_INFO_TIME (3)
|
|
|
|
#define TEXT_PLAYER_INFO_Y (200 - 40)
|
|
|
|
|
2015-05-19 21:58:29 +00:00
|
|
|
void PutStringPlayerInfo(PLAYERp pp, const char *string)
|
2015-05-19 21:54:34 +00:00
|
|
|
{
|
|
|
|
short x,y;
|
|
|
|
short w,h;
|
|
|
|
|
|
|
|
if (pp-Player != myconnectindex)
|
|
|
|
return;
|
|
|
|
|
2019-10-27 15:53:00 +00:00
|
|
|
if (!hud_messages)
|
2015-05-19 21:54:34 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
MNU_MeasureString(string, &w, &h);
|
|
|
|
|
|
|
|
x = TEXT_XCENTER(w);
|
|
|
|
y = TEXT_PLAYER_INFO_Y;
|
|
|
|
|
|
|
|
PutStringTimer(pp, x, y, string, GlobInfoStringTime);
|
|
|
|
}
|
2019-10-09 16:09:05 +00:00
|
|
|
END_SW_NS
|