X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fclient%2Fmiscfunctions.qc;h=9bf0a855fa5375e53db412db0f7cae6d89e3efa0;hb=7b0290e8ce71067769672555e9233f720b463bdb;hp=d74a24a320142d35e7da242c19f24586ca1e08fe;hpb=99facb38338832f539cec7022c414f7a6de458c3;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/client/miscfunctions.qc b/qcsrc/client/miscfunctions.qc index d74a24a32..9bf0a855f 100644 --- a/qcsrc/client/miscfunctions.qc +++ b/qcsrc/client/miscfunctions.qc @@ -1,9 +1,16 @@ #include "miscfunctions.qh" +#include "_all.qh" -#include "../common/urllib.qh" +#include "hud.qh" #include "../common/command/generic.qh" +#include "../common/teams.qh" +#include "../common/util.qh" + +#include "../csqcmodellib/cl_model.qh" + + void AuditLists() { entity e; @@ -100,7 +107,7 @@ void RemoveTeam(entity Team) if(!tm) { - print(_("Trying to remove a team which is not in the teamlist!")); + LOG_INFO(_("Trying to remove a team which is not in the teamlist!")); return; } parent.sort_next = Team.sort_next; @@ -159,14 +166,6 @@ vector rotate(vector v, float a) return w; } -string ColorTranslateRGB(string s) -{ - if(ColorTranslateMode & 1) - return strdecolorize(s); - else - return s; -} - // decolorizes and team colors the player name when needed string playername(string thename, float teamid) { @@ -349,11 +348,11 @@ void PolyDrawModel(entity e) break; } -void DrawCircleClippedPic(vector centre, float radius, string pic, float f, vector rgb, float a, float drawflag) +void DrawCircleClippedPic(vector centre, float radi, string pic, float f, vector rgb, float a, float drawflag) { float x, y, q, d; vector ringsize, v, t; - ringsize = radius * '1 1 0'; + ringsize = radi * '1 1 0'; x = cos(f * 2 * M_PI); y = sin(f * 2 * M_PI); @@ -567,7 +566,7 @@ void URI_Get_Callback(int id, float status, string data) } else { - printf("Received HTTP request data for an invalid id %d.\n", id); + LOG_INFOF("Received HTTP request data for an invalid id %d.\n", id); } } @@ -592,7 +591,7 @@ void Accuracy_LoadLevels() if(acc_levels > MAX_ACCURACY_LEVELS) acc_levels = MAX_ACCURACY_LEVELS; if(acc_levels < 2) - print("Warning: accuracy_color_levels must contain at least 2 values\n"); + LOG_INFO("Warning: accuracy_color_levels must contain at least 2 values\n"); int i; for(i = 0; i < acc_levels; ++i)