]> de.git.xonotic.org Git - voretournament/voretournament.git/blobdiff - data/qcsrc/client/miscfunctions.qc
Revert back to old drawstring method. It's just some components that need a better...
[voretournament/voretournament.git] / data / qcsrc / client / miscfunctions.qc
index 885d1eda408a5d9e8cc89d6193175ef05e916059..0d72bfec0ec4d9be8e9326f88c87a083170455fb 100644 (file)
@@ -481,28 +481,6 @@ void drawpic_expanding_two(vector position, string pic, vector scale, vector rgb
        drawpic(position, pic, scale, rgb, alpha * fadelerp, flag);\r
 }\r
 \r
-// drawstring wrapper to draw a string as large as possible with preserved aspect ratio into a box\r
-void drawstring_aspect(vector pos, string text, vector sz, vector color, float alpha, float drawflag) {\r
-       vector textsize;\r
-       textsize = '1 0 0' * stringwidth(text, FALSE, '1 1 1' * sz_y) + '1 0 0' * sz_y;\r
-\r
-       float textaspect;\r
-       textaspect = textsize_x/textsize_y;\r
-\r
-       vector oldsz;\r
-       oldsz = sz;\r
-       float aspect;\r
-       aspect = sz_x/sz_y;\r
-\r
-       if(aspect > textaspect) {\r
-               sz_x = sz_y * textaspect;\r
-               drawstring(pos + '1 0 0' * (oldsz_x - sz_x) * 0.5, text, '1 1 0' * sz_y, color, alpha, drawflag);\r
-       } else {\r
-               sz_y = sz_x / textaspect; \r
-               drawstring(pos + '0 1 0' * (oldsz_y - sz_y) * 0.5, text, '1 1 0' * sz_y, color, alpha, drawflag);\r
-       }\r
-}\r
-\r
 vector drawfontscale;\r
 void drawstring_expanding(vector position, string text, vector scale, vector rgb, float alpha, float flag, float fadelerp)\r
 {\r