screen.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. Copyright (C) 1996-1997 Id Software, Inc.
  3. This program is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU General Public License
  5. as published by the Free Software Foundation; either version 2
  6. of the License, or (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. See the GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program; if not, write to the Free Software
  13. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  14. */
  15. // screen.h
  16. void SCR_Init (void);
  17. void SCR_UpdateScreen (void);
  18. void SCR_SizeUp (void);
  19. void SCR_SizeDown (void);
  20. void SCR_BringDownConsole (void);
  21. void SCR_CenterPrint (char *str);
  22. void SCR_BeginLoadingPlaque (void);
  23. void SCR_EndLoadingPlaque (void);
  24. int SCR_ModalMessage (char *text);
  25. extern float scr_con_current;
  26. extern float scr_conlines; // lines of console to display
  27. extern int scr_fullupdate; // set to 0 to force full redraw
  28. extern int sb_lines;
  29. extern int clearnotify; // set to 0 whenever notify text is drawn
  30. extern qboolean scr_disabled_for_loading;
  31. extern qboolean scr_skipupdate;
  32. extern cvar_t scr_viewsize;
  33. extern cvar_t scr_viewsize;
  34. // only the refresh window will be updated unless these variables are flagged
  35. extern int scr_copytop;
  36. extern int scr_copyeverything;
  37. extern qboolean block_drawing;
  38. void SCR_UpdateWholeScreen (void);