screen.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. Copyright (C) 1997-2001 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_CenterPrint (char *str);
  21. void SCR_BeginLoadingPlaque (void);
  22. void SCR_EndLoadingPlaque (void);
  23. void SCR_DebugGraph (float value, int color);
  24. void SCR_TouchPics (void);
  25. void SCR_RunConsole (void);
  26. extern float scr_con_current;
  27. extern float scr_conlines; // lines of console to display
  28. extern int sb_lines;
  29. extern cvar_t *scr_viewsize;
  30. extern cvar_t *crosshair;
  31. extern vrect_t scr_vrect; // position of render window
  32. extern char crosshair_pic[MAX_QPATH];
  33. extern int crosshair_width, crosshair_height;
  34. void SCR_AddDirtyPoint (int x, int y);
  35. void SCR_DirtyScreen (void);
  36. //
  37. // scr_cin.c
  38. //
  39. void SCR_PlayCinematic (char *name);
  40. qboolean SCR_DrawCinematic (void);
  41. void SCR_RunCinematic (void);
  42. void SCR_StopCinematic (void);
  43. void SCR_FinishCinematic (void);