UFO: Alien Invasion
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
cl_screen.h
Go to the documentation of this file.
1 
6 /*
7 All original material Copyright (C) 2002-2020 UFO: Alien Invasion.
8 
9 Original file from Quake 2 v3.21: quake2-2.31/client/screen.h
10 Copyright (C) 1997-2001 Id Software, Inc.
11 
12 This program is free software; you can redistribute it and/or
13 modify it under the terms of the GNU General Public License
14 as published by the Free Software Foundation; either version 2
15 of the License, or (at your option) any later version.
16 
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20 
21 See the GNU General Public License for more details.
22 
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 
27 */
28 
29 #pragma once
30 
31 void SCR_Init(void);
32 void SCR_Shutdown(void);
33 void SCR_ChangeCursor(int cursor);
34 void SCR_UpdateScreen(void);
35 void SCR_DrawLoading(int percent);
36 void SCR_BeginLoadingPlaque(void);
37 void SCR_EndLoadingPlaque(void);
38 void SCR_RunConsole(void);
39 void SCR_DrawLoadingScreen(bool string, int percent);
void SCR_ChangeCursor(int cursor)
Definition: cl_screen.cpp:370
void SCR_EndLoadingPlaque(void)
Definition: cl_screen.cpp:277
void SCR_DrawLoadingScreen(bool string, int percent)
Precache and loading screen at startup.
Definition: cl_screen.cpp:100
void SCR_Shutdown(void)
Definition: cl_screen.cpp:397
void SCR_Init(void)
Definition: cl_screen.cpp:379
void SCR_UpdateScreen(void)
This is called every frame, and can also be called explicitly to flush text to the screen...
Definition: cl_screen.cpp:320
void SCR_RunConsole(void)
Scroll it up or down.
Definition: cl_screen.cpp:222
void SCR_BeginLoadingPlaque(void)
Definition: cl_screen.cpp:269
void SCR_DrawLoading(int percent)
Draws the current loading pic of the map from base/pics/maps/loading.
Definition: cl_screen.cpp:140