]> de.git.xonotic.org Git - xonotic/darkplaces.git/blob - draw.h
Disable the __int128 code path for lehmer 128bit RNG because it doesn't
[xonotic/darkplaces.git] / draw.h
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20
21 // draw.h -- these are the only functions outside the refresh allowed
22 // to touch the vid buffer
23
24 #ifndef DRAW_H
25 #define DRAW_H
26
27 // FIXME: move this stuff to cl_screen
28 typedef struct cachepic_s
29 {
30         // size of pic
31         int width, height;
32         // this flag indicates that it should be loaded and unloaded on demand
33         int autoload;
34         // texture flags to upload with
35         int texflags;
36         // texture may be freed after a while
37         int lastusedframe;
38         // renderer texture to use
39         rtexture_t *tex;
40         // used for hash lookups
41         struct cachepic_s *chain;
42         // flags - CACHEPICFLAG_NEWPIC for example
43         unsigned int flags;
44         // has alpha?
45         qboolean hasalpha;
46         // name of pic
47         char name[MAX_QPATH];
48         // allow to override/free the texture
49         qboolean allow_free_tex;
50 }
51 cachepic_t;
52
53 typedef enum cachepicflags_e
54 {
55         CACHEPICFLAG_NOTPERSISTENT = 1,
56         CACHEPICFLAG_QUIET = 2,
57         CACHEPICFLAG_NOCOMPRESSION = 4,
58         CACHEPICFLAG_NOCLAMP = 8,
59         CACHEPICFLAG_NEWPIC = 16, // disables matching texflags check, because a pic created with Draw_NewPic should not be subject to that
60         CACHEPICFLAG_MIPMAP = 32,
61         CACHEPICFLAG_NEAREST = 64 // force nearest filtering instead of linear
62 }
63 cachepicflags_t;
64
65 void Draw_Init (void);
66 void Draw_Frame (void);
67 cachepic_t *Draw_CachePic_Flags (const char *path, unsigned int cachepicflags);
68 cachepic_t *Draw_CachePic (const char *path); // standard function with no options, used throughout engine
69 // create or update a pic's image
70 cachepic_t *Draw_NewPic(const char *picname, int width, int height, int alpha, unsigned char *pixels);
71 // free the texture memory used by a pic
72 void Draw_FreePic(const char *picname);
73
74 // a triangle mesh..
75 // each vertex is 3 floats
76 // each texcoord is 2 floats
77 // each color is 4 floats
78 typedef struct drawqueuemesh_s
79 {
80         rtexture_t *texture;
81         int num_triangles;
82         int num_vertices;
83         int *data_element3i;
84         unsigned short *data_element3s;
85         float *data_vertex3f;
86         float *data_texcoord2f;
87         float *data_color4f;
88 }
89 drawqueuemesh_t;
90
91 enum drawqueue_drawflag_e {
92 DRAWFLAG_NORMAL,
93 DRAWFLAG_ADDITIVE,
94 DRAWFLAG_MODULATE,
95 DRAWFLAG_2XMODULATE,
96 DRAWFLAG_SCREEN,
97 DRAWFLAG_NUMFLAGS,
98 DRAWFLAG_MASK = 0xFF,   // ONLY R_BeginPolygon()
99 DRAWFLAG_MIPMAP = 0x100, // ONLY R_BeginPolygon()
100 DRAWFLAG_NOGAMMA = 0x200 // ONLY R_DrawQSuperPic()
101 };
102 #define DRAWFLAGS_BLEND 0xFF /* this matches all blending flags */
103
104 typedef struct ft2_settings_s
105 {
106         float scale, voffset;
107         // cvar parameters (only read on loadfont command)
108         int antialias, hinting;
109         float outline, blur, shadowx, shadowy, shadowz;
110 } ft2_settings_t;
111
112 #define MAX_FONT_SIZES 16
113 #define MAX_FONT_FALLBACKS 3
114 typedef struct dp_font_s
115 {
116         rtexture_t *tex;
117         float width_of[256]; // width_of[0] == max width of any char; 1.0f is base width (1/16 of texture width); therefore, all widths have to be <= 1 (does not include scale)
118         float maxwidth; // precalculated max width of the font (includes scale)
119         char texpath[MAX_QPATH];
120         char title[MAX_QPATH];
121
122         int req_face; // requested face index, usually 0
123         float req_sizes[MAX_FONT_SIZES]; // sizes to render the font with, 0 still defaults to 16 (backward compatibility when loadfont doesn't get a size parameter) and -1 = disabled
124         char fallbacks[MAX_FONT_FALLBACKS][MAX_QPATH];
125         int fallback_faces[MAX_FONT_FALLBACKS];
126         struct ft2_font_s *ft2;
127
128         ft2_settings_t settings;
129 }
130 dp_font_t;
131
132 typedef struct dp_fonts_s
133 {
134         dp_font_t *f;
135         int maxsize;
136 }
137 dp_fonts_t;
138 extern dp_fonts_t dp_fonts;
139
140 #define MAX_FONTS         16 // fonts at the start
141 #define FONTS_EXPAND       8  // fonts grow when no free slots
142 #define FONT_DEFAULT     (&dp_fonts.f[0]) // should be fixed width
143 #define FONT_CONSOLE     (&dp_fonts.f[1]) // REALLY should be fixed width (ls!)
144 #define FONT_SBAR        (&dp_fonts.f[2]) // must be fixed width
145 #define FONT_NOTIFY      (&dp_fonts.f[3]) // free
146 #define FONT_CHAT        (&dp_fonts.f[4]) // free
147 #define FONT_CENTERPRINT (&dp_fonts.f[5]) // free
148 #define FONT_INFOBAR     (&dp_fonts.f[6]) // free
149 #define FONT_MENU        (&dp_fonts.f[7]) // should be fixed width
150 #define FONT_USER(i)     (&dp_fonts.f[8+i]) // userdefined fonts
151 #define MAX_USERFONTS    (dp_fonts.maxsize - 8)
152
153 // shared color tag printing constants
154 #define STRING_COLOR_TAG                        '^'
155 #define STRING_COLOR_DEFAULT            7
156 #define STRING_COLOR_DEFAULT_STR        "^7"
157 #define STRING_COLOR_RGB_TAG_CHAR       'x'
158 #define STRING_COLOR_RGB_TAG            "^x"
159
160 // all of these functions will set r_defdef.draw2dstage if not in 2D rendering mode (and of course prepare for 2D rendering in that case)
161
162 // draw an image (or a filled rectangle if pic == NULL)
163 void DrawQ_Pic(float x, float y, cachepic_t *pic, float width, float height, float red, float green, float blue, float alpha, int flags);
164 // draw a rotated image
165 void DrawQ_RotPic(float x, float y, cachepic_t *pic, float width, float height, float org_x, float org_y, float angle, float red, float green, float blue, float alpha, int flags);
166 // draw a filled rectangle (slightly faster than DrawQ_Pic with pic = NULL)
167 void DrawQ_Fill(float x, float y, float width, float height, float red, float green, float blue, float alpha, int flags);
168 // draw a text string,
169 // with optional color tag support,
170 // returns final unclipped x coordinate
171 // if outcolor is provided the initial color is read from it, and it is updated at the end with the new value at the end of the text (not at the end of the clipped part)
172 // the color is tinted by the provided base color
173 // if r_textshadow is not zero, an additional instance of the text is drawn first at an offset with an inverted shade of gray (black text produces a white shadow, brightly colored text produces a black shadow)
174 extern float DrawQ_Color[4];
175 float DrawQ_String(float x, float y, const char *text, size_t maxlen, float scalex, float scaley, float basered, float basegreen, float baseblue, float basealpha, int flags, int *outcolor, qboolean ignorecolorcodes, const dp_font_t *fnt);
176 float DrawQ_String_Scale(float x, float y, const char *text, size_t maxlen, float sizex, float sizey, float scalex, float scaley, float basered, float basegreen, float baseblue, float basealpha, int flags, int *outcolor, qboolean ignorecolorcodes, const dp_font_t *fnt);
177 float DrawQ_TextWidth(const char *text, size_t maxlen, float w, float h, qboolean ignorecolorcodes, const dp_font_t *fnt);
178 float DrawQ_TextWidth_UntilWidth(const char *text, size_t *maxlen, float w, float h, qboolean ignorecolorcodes, const dp_font_t *fnt, float maxWidth);
179 float DrawQ_TextWidth_UntilWidth_TrackColors(const char *text, size_t *maxlen, float w, float h, int *outcolor, qboolean ignorecolorcodes, const dp_font_t *fnt, float maxwidth);
180 float DrawQ_TextWidth_UntilWidth_TrackColors_Scale(const char *text, size_t *maxlen, float w, float h, float sw, float sh, int *outcolor, qboolean ignorecolorcodes, const dp_font_t *fnt, float maxwidth);
181 // draw a very fancy pic (per corner texcoord/color control), the order is tl, tr, bl, br
182 void DrawQ_SuperPic(float x, float y, cachepic_t *pic, float width, float height, float s1, float t1, float r1, float g1, float b1, float a1, float s2, float t2, float r2, float g2, float b2, float a2, float s3, float t3, float r3, float g3, float b3, float a3, float s4, float t4, float r4, float g4, float b4, float a4, int flags);
183 // draw a triangle mesh
184 void DrawQ_Mesh(drawqueuemesh_t *mesh, int flags, qboolean hasalpha);
185 // set the clipping area
186 void DrawQ_SetClipArea(float x, float y, float width, float height);
187 // reset the clipping area
188 void DrawQ_ResetClipArea(void);
189 // draw a line
190 void DrawQ_Line(float width, float x1, float y1, float x2, float y2, float r, float g, float b, float alpha, int flags);
191 // draw a lot of lines (call R_Mesh_PrepareVertices_Generic first)
192 void DrawQ_Lines(float width, int numlines, int flags, qboolean hasalpha);
193 // draw a line loop
194 void DrawQ_LineLoop(drawqueuemesh_t *mesh, int flags);
195 // resets r_refdef.draw2dstage
196 void DrawQ_Finish(void);
197 void DrawQ_ProcessDrawFlag(int flags, qboolean alpha); // sets GL_DepthMask and GL_BlendFunc
198 void DrawQ_RecalcView(void); // use this when changing r_refdef.view.* from e.g. csqc
199
200 rtexture_t *Draw_GetPicTexture(cachepic_t *pic);
201
202 void R_DrawGamma(void);
203
204 extern rtexturepool_t *drawtexturepool; // used by ft2.c
205
206 #endif
207