/* Copyright (C) 1997-2001 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 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ // cl_inv.c -- client inventory screen #include "client.h" /* ================ CL_ParseInventory ================ */ void CL_ParseInventory (void) { int i; for (i=0 ; ivalue, "inventory"); y += scaledHud(24); x += scaledHud(24); Inv_DrawString (x, y, S_COLOR_BOLD"hotkey ### item"); Inv_DrawString (x, y+scaledHud(8), S_COLOR_BOLD"------ --- ----"); y += scaledHud(16); for (i=top; i"S_COLOR_ITALIC"%3s %3i %7s", bind, cl.inventory[item], cl.configstrings[OLD_CS_ITEMS+item] ); } } else { if (item != selected) { Com_sprintf (string, sizeof(string), " "S_COLOR_BOLD S_COLOR_ALT"%3s %3i %7s", bind, cl.inventory[item], cl.configstrings[CS_ITEMS+item] ); } else // draw a blinky cursor by the selected item { Com_sprintf (string, sizeof(string), S_COLOR_BOLD">"S_COLOR_ITALIC"%3s %3i %7s", bind, cl.inventory[item], cl.configstrings[CS_ITEMS+item] ); } } Inv_DrawString (x, y, string); y += scaledHud(8); } }