2005-12-15 19:41:11 +00:00
|
|
|
//included directly from plugin.c
|
|
|
|
//this is the client-only things.
|
|
|
|
|
|
|
|
static plugin_t *protocolclientplugin;
|
|
|
|
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static void PlugMenu_Close(menu_t *m)
|
|
|
|
{
|
|
|
|
Z_Free(m);
|
|
|
|
}
|
|
|
|
static qboolean PlugMenu_Event(menu_t *m, int eventtype, int keyparam, int unicodeparam) //eventtype = draw/keydown/keyup, param = time/key
|
|
|
|
{
|
|
|
|
plugin_t *oc=currentplug;
|
|
|
|
qboolean ret;
|
2005-12-15 19:41:11 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
currentplug = m->ctx;
|
|
|
|
ret = currentplug->menufunction(eventtype, keyparam, unicodeparam, mousecursor_x, mousecursor_y, vid.width, vid.height);
|
|
|
|
currentplug=oc;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
static qboolean PlugMenu_KeyEvent(menu_t *m, qboolean isdown, unsigned int devid, int key, int unicode)
|
|
|
|
{
|
|
|
|
return PlugMenu_Event(m, isdown?1:2, key, unicode);
|
|
|
|
}
|
|
|
|
static void PlugMenu_Draw(menu_t *m)
|
|
|
|
{
|
|
|
|
PlugMenu_Event (m, 0, (realtime*1000), 0);
|
|
|
|
}
|
|
|
|
static qboolean QDECL Plug_SetMenuFocus (qboolean wantkeyfocus, const char *cursorname, float hot_x, float hot_y, float scale) //null cursorname=relmouse, set/empty cursorname=absmouse
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
menu_t *m;
|
2010-02-06 01:25:04 +00:00
|
|
|
if (qrenderer == QR_NONE)
|
2019-09-04 07:59:40 +00:00
|
|
|
return false;
|
2006-01-02 23:01:54 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
m = Menu_FindContext(currentplug);
|
|
|
|
|
|
|
|
if (wantkeyfocus)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
if (!m)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
m = Z_Malloc(sizeof(*m));
|
|
|
|
m->ctx = currentplug;
|
|
|
|
m->cursor = &key_customcursor[kc_plugin];
|
|
|
|
m->release = PlugMenu_Close;
|
|
|
|
m->keyevent = PlugMenu_KeyEvent;
|
|
|
|
m->drawmenu = PlugMenu_Draw;
|
|
|
|
Menu_Push(m, false);
|
2005-12-15 19:41:11 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-04 07:59:40 +00:00
|
|
|
else if (m)
|
|
|
|
Menu_Unlink(m);
|
|
|
|
|
|
|
|
if (wantkeyfocus)
|
|
|
|
{
|
|
|
|
struct key_cursor_s *mc = &key_customcursor[kc_plugin];
|
2005-12-15 19:41:11 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
if (cursorname)
|
|
|
|
{
|
|
|
|
if (scale <= 0)
|
|
|
|
scale = 1;
|
|
|
|
if (strcmp(cursorname, mc->name) || mc->hotspot[0] != hot_x || mc->hotspot[1] != hot_y || mc->scale != scale)
|
|
|
|
{
|
|
|
|
Q_strncpyz(mc->name, cursorname, sizeof(mc->name));
|
|
|
|
mc->hotspot[0] = hot_x;
|
|
|
|
mc->hotspot[1] = hot_y;
|
|
|
|
mc->scale = scale;
|
|
|
|
mc->dirty = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
static qboolean QDECL Plug_HasMenuFocus(void)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
return topmenu&&topmenu->ctx==currentplug && Key_Dest_Has(kdm_menu);
|
2005-12-15 19:41:11 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static int QDECL Plug_Key_GetKeyCode(const char *keyname, int *modifier)
|
|
|
|
{
|
|
|
|
int modifier_;
|
|
|
|
if (!modifier)
|
|
|
|
modifier = &modifier_;
|
|
|
|
return Key_StringToKeynum(keyname, modifier);
|
|
|
|
}
|
|
|
|
static const char *QDECL Plug_Key_GetKeyName(int keycode, int modifier)
|
|
|
|
{
|
|
|
|
return Key_KeynumToString(keycode, modifier);
|
|
|
|
}
|
2005-12-15 19:41:11 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
const char *QDECL Plug_Key_GetKeyBind(int bindmap, int keynum, int modifier)
|
|
|
|
{
|
|
|
|
return Key_GetBinding(keynum, bindmap, modifier);
|
|
|
|
}
|
|
|
|
void QDECL Plug_Key_SetKeyBind(int bindmap, int keycode, int modifier, const char *newbinding)
|
|
|
|
{
|
|
|
|
if (bindmap && !modifier)
|
|
|
|
modifier = (bindmap-1) | KEY_MODIFIER_ALTBINDMAP;
|
|
|
|
Key_SetBinding (keycode, modifier, newbinding, RESTRICT_LOCAL);
|
|
|
|
}
|
2005-12-15 19:41:11 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
/*
|
2005-12-15 19:41:11 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static void QDECL Plug_SCR_CenterPrint(int seat, const char *text)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
if (qrenderer != QR_NONE)
|
|
|
|
SCR_CenterPrint(seat, text, true);
|
2005-12-15 19:41:11 +00:00
|
|
|
}
|
2019-09-04 07:59:40 +00:00
|
|
|
*/
|
2005-12-15 19:41:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
//Make SURE that the engine has resolved all cvar pointers into globals before this happens.
|
|
|
|
plugin_t *plugin;
|
|
|
|
char name[64];
|
2019-09-04 07:59:40 +00:00
|
|
|
int type; //cache, wad, shader, raw
|
2013-11-21 23:02:28 +00:00
|
|
|
char *script;
|
2005-12-15 19:41:11 +00:00
|
|
|
mpic_t *pic;
|
|
|
|
} pluginimagearray_t;
|
2019-09-04 07:59:40 +00:00
|
|
|
size_t pluginimagearraylen;
|
2005-12-15 19:41:11 +00:00
|
|
|
pluginimagearray_t *pluginimagearray;
|
|
|
|
|
2013-11-21 23:02:28 +00:00
|
|
|
#include "shader.h"
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static void Plug_Draw_UnloadImage(qhandle_t image)
|
|
|
|
{
|
|
|
|
size_t i = image-1;
|
|
|
|
if (i < 0 || i >= pluginimagearraylen)
|
|
|
|
return;
|
|
|
|
if (pluginimagearray[i].plugin == currentplug)
|
|
|
|
{
|
|
|
|
pluginimagearray[i].plugin = 0;
|
|
|
|
if (pluginimagearray[i].pic)
|
|
|
|
R_UnloadShader(pluginimagearray[i].pic);
|
|
|
|
pluginimagearray[i].pic = NULL;
|
|
|
|
pluginimagearray[i].name[0] = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static void Plug_FreePlugImages(plugin_t *plug)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < pluginimagearraylen; i++)
|
|
|
|
{
|
|
|
|
if (pluginimagearray[i].plugin == plug)
|
|
|
|
{
|
|
|
|
pluginimagearray[i].plugin = 0;
|
|
|
|
if (pluginimagearray[i].pic)
|
|
|
|
R_UnloadShader(pluginimagearray[i].pic);
|
|
|
|
pluginimagearray[i].pic = NULL;
|
|
|
|
pluginimagearray[i].name[0] = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static qhandle_t Plug_Draw_LoadImage(const char *name, int type, const char *script)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
mpic_t *pic;
|
|
|
|
|
2006-02-13 01:00:56 +00:00
|
|
|
if (!*name)
|
|
|
|
return 0;
|
|
|
|
|
2005-12-15 19:41:11 +00:00
|
|
|
for (i = 0; i < pluginimagearraylen; i++)
|
|
|
|
{
|
|
|
|
if (!pluginimagearray[i].plugin)
|
|
|
|
break;
|
|
|
|
if (pluginimagearray[i].plugin == currentplug)
|
|
|
|
{
|
|
|
|
if (!strcmp(name, pluginimagearray[i].name))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i == pluginimagearraylen)
|
|
|
|
{
|
|
|
|
pluginimagearraylen++;
|
|
|
|
pluginimagearray = BZ_Realloc(pluginimagearray, pluginimagearraylen*sizeof(pluginimagearray_t));
|
2008-05-09 14:22:37 +00:00
|
|
|
pluginimagearray[i].pic = NULL;
|
2005-12-15 19:41:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (pluginimagearray[i].pic)
|
2008-02-19 12:36:51 +00:00
|
|
|
return i+1; //already loaded.
|
2005-12-15 19:41:11 +00:00
|
|
|
|
2010-02-06 01:25:04 +00:00
|
|
|
if (qrenderer != QR_NONE)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
2013-11-21 23:02:28 +00:00
|
|
|
if (type == 3)
|
|
|
|
pic = NULL;
|
|
|
|
else if (type == 2)
|
|
|
|
pic = R_RegisterShader(name, SUF_NONE, script);
|
|
|
|
else if (type)
|
2011-03-31 01:14:01 +00:00
|
|
|
pic = R2D_SafePicFromWad(name);
|
2005-12-15 19:41:11 +00:00
|
|
|
else
|
2011-03-31 01:14:01 +00:00
|
|
|
pic = R2D_SafeCachePic(name);
|
2005-12-15 19:41:11 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
pic = NULL;
|
|
|
|
|
|
|
|
Q_strncpyz(pluginimagearray[i].name, name, sizeof(pluginimagearray[i].name));
|
2013-11-21 23:02:28 +00:00
|
|
|
pluginimagearray[i].type = type;
|
2005-12-15 19:41:11 +00:00
|
|
|
pluginimagearray[i].pic = pic;
|
|
|
|
pluginimagearray[i].plugin = currentplug;
|
2013-11-21 23:02:28 +00:00
|
|
|
pluginimagearray[i].script = script?Z_StrDup(script):NULL;
|
2006-02-13 01:00:56 +00:00
|
|
|
return i + 1;
|
2005-12-15 19:41:11 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static qhandle_t QDECL Plug_Draw_LoadImageData(const char *name, const char *mimetype, void *codeddata, size_t datalength)
|
2013-11-21 23:02:28 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
qhandle_t ret = 0;
|
2014-10-05 20:04:11 +00:00
|
|
|
image_t *t;
|
2013-11-21 23:02:28 +00:00
|
|
|
qbyte *rgbdata;
|
|
|
|
unsigned int width, height;
|
2018-09-29 17:31:58 +00:00
|
|
|
uploadfmt_t format;
|
2013-11-21 23:02:28 +00:00
|
|
|
|
2018-09-29 17:31:58 +00:00
|
|
|
if ((rgbdata = ReadRawImageFile(codeddata, datalength, &width, &height, &format, false, name)))
|
2013-11-21 23:02:28 +00:00
|
|
|
{
|
2015-04-14 23:12:17 +00:00
|
|
|
// name = va("%s", name);
|
2014-10-05 20:04:11 +00:00
|
|
|
|
2017-09-20 11:27:13 +00:00
|
|
|
t = Image_FindTexture(name, NULL, IF_PREMULTIPLYALPHA|IF_NOMIPMAP|IF_UIPIC|IF_CLAMP);
|
2013-11-21 23:02:28 +00:00
|
|
|
if (!TEXVALID(t))
|
2017-09-20 11:27:13 +00:00
|
|
|
t = Image_CreateTexture(name, NULL, IF_PREMULTIPLYALPHA|IF_NOMIPMAP|IF_UIPIC|IF_CLAMP);
|
2013-11-21 23:02:28 +00:00
|
|
|
if (TEXVALID(t))
|
|
|
|
{
|
2018-09-29 17:31:58 +00:00
|
|
|
Image_Upload(t, format, rgbdata, NULL, width, height, IF_PREMULTIPLYALPHA|IF_NOMIPMAP|IF_UIPIC|IF_CLAMP);
|
2013-11-21 23:02:28 +00:00
|
|
|
ret = Plug_Draw_LoadImage(name, 3, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
BZ_Free(rgbdata);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2019-09-04 07:59:40 +00:00
|
|
|
static qhandle_t QDECL Plug_Draw_LoadImageShader(const char *name, const char *script)
|
2013-11-21 23:02:28 +00:00
|
|
|
{
|
|
|
|
return Plug_Draw_LoadImage(name, 2, script);
|
|
|
|
}
|
2019-09-04 07:59:40 +00:00
|
|
|
static qhandle_t QDECL Plug_Draw_LoadImagePic(const char *name, qboolean type)
|
2013-11-21 23:02:28 +00:00
|
|
|
{
|
|
|
|
if (type != 0 && type != 1)
|
|
|
|
return 0;
|
|
|
|
return Plug_Draw_LoadImage(name, type, NULL);
|
|
|
|
}
|
|
|
|
|
2005-12-15 19:41:11 +00:00
|
|
|
void Plug_DrawReloadImages(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < pluginimagearraylen; i++)
|
|
|
|
{
|
|
|
|
if (!pluginimagearray[i].plugin)
|
|
|
|
{
|
|
|
|
pluginimagearray[i].pic = NULL;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-03-31 01:14:01 +00:00
|
|
|
pluginimagearray[i].pic = R2D_SafePicFromWad(pluginimagearray[i].name);
|
|
|
|
//pluginimagearray[i].pic = R2D_SafeCachePic(pluginimagearray[i].name);
|
|
|
|
//pluginimagearray[i].pic = NULL;
|
2005-12-15 19:41:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-21 04:12:00 +00:00
|
|
|
//int R2D_ImageSize (qhandle_t image, float *w, float *h)
|
2019-09-04 07:59:40 +00:00
|
|
|
static int QDECL Plug_Draw_ImageSize(qhandle_t image, float *w, float *h)
|
2015-04-21 04:12:00 +00:00
|
|
|
{
|
|
|
|
int iw, ih, ret;
|
|
|
|
mpic_t *pic;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
*w = 0;
|
|
|
|
*h = 0;
|
|
|
|
if (qrenderer == QR_NONE)
|
|
|
|
return 0;
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
i = image;
|
2015-04-21 04:12:00 +00:00
|
|
|
if (i <= 0 || i > pluginimagearraylen)
|
|
|
|
return -1; // you fool
|
|
|
|
i = i - 1;
|
|
|
|
if (pluginimagearray[i].plugin != currentplug)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (pluginimagearray[i].pic)
|
|
|
|
pic = pluginimagearray[i].pic;
|
|
|
|
else if (pluginimagearray[i].type == 1)
|
|
|
|
return 0; //wasn't loaded.
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pic = R2D_SafeCachePic(pluginimagearray[i].name);
|
|
|
|
if (!pic)
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = R_GetShaderSizes(pic, &iw, &ih, true);
|
|
|
|
*w = iw;
|
|
|
|
*h = ih;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static int QDECL Plug_Draw_Image(float x, float y, float w, float h, float s1, float t1, float s2, float t2, qhandle_t image)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
|
|
|
mpic_t *pic;
|
|
|
|
int i;
|
2010-02-06 01:25:04 +00:00
|
|
|
if (qrenderer == QR_NONE)
|
2005-12-15 19:41:11 +00:00
|
|
|
return 0;
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
i = image;
|
2006-02-13 01:00:56 +00:00
|
|
|
if (i <= 0 || i > pluginimagearraylen)
|
2005-12-15 19:41:11 +00:00
|
|
|
return -1; // you fool
|
2006-02-13 01:00:56 +00:00
|
|
|
i = i - 1;
|
2005-12-15 19:41:11 +00:00
|
|
|
if (pluginimagearray[i].plugin != currentplug)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (pluginimagearray[i].pic)
|
|
|
|
pic = pluginimagearray[i].pic;
|
2013-11-21 23:02:28 +00:00
|
|
|
else if (pluginimagearray[i].type == 1)
|
2005-12-15 19:41:11 +00:00
|
|
|
return 0; //wasn't loaded.
|
|
|
|
else
|
2006-01-21 00:06:49 +00:00
|
|
|
{
|
2011-03-31 01:14:01 +00:00
|
|
|
pic = R2D_SafeCachePic(pluginimagearray[i].name);
|
2006-01-21 00:06:49 +00:00
|
|
|
if (!pic)
|
|
|
|
return -1;
|
|
|
|
}
|
2005-12-15 19:41:11 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
R2D_Image(x, y, w, h, s1, t1, s2, t2, pic);
|
2005-12-15 19:41:11 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
//x1,y1,x2,y2
|
2019-09-04 07:59:40 +00:00
|
|
|
static void QDECL Plug_Draw_Line(float x1, float y1, float x2, float y2)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
R2D_Line(x1,y1, x2,y2, NULL);
|
2005-12-15 19:41:11 +00:00
|
|
|
}
|
2019-09-04 07:59:40 +00:00
|
|
|
static void QDECL Plug_Draw_Character(float x, float y, unsigned int character)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
int px, py;
|
2010-02-06 01:25:04 +00:00
|
|
|
if (qrenderer == QR_NONE)
|
2019-09-04 07:59:40 +00:00
|
|
|
return;
|
|
|
|
Font_BeginString(font_default, x, y, &px, &py);
|
|
|
|
Font_DrawChar(x, y, CON_WHITEMASK, character);
|
2013-12-29 22:48:28 +00:00
|
|
|
Font_EndString(font_default);
|
2005-12-15 19:41:11 +00:00
|
|
|
}
|
2019-09-04 07:59:40 +00:00
|
|
|
static void QDECL Plug_Draw_CharacterH(float x, float y, float h, unsigned int flags, unsigned int charc)
|
2015-06-17 13:05:20 +00:00
|
|
|
{
|
|
|
|
conchar_t cmask = CON_WHITEMASK;
|
|
|
|
if (qrenderer == QR_NONE)
|
2019-09-04 07:59:40 +00:00
|
|
|
return;
|
2015-06-17 13:05:20 +00:00
|
|
|
if (flags & 1)
|
|
|
|
cmask |= CON_2NDCHARSETTEXT;
|
|
|
|
if (!(flags & 2))
|
|
|
|
cmask |= 0xe000;
|
|
|
|
Font_BeginScaledString(font_default, x, y, h, h, &x, &y);
|
2015-07-14 14:47:00 +00:00
|
|
|
Font_DrawScaleChar(x, y, cmask, charc);
|
2015-06-17 13:05:20 +00:00
|
|
|
Font_EndString(font_default);
|
|
|
|
}
|
2019-09-04 07:59:40 +00:00
|
|
|
static void QDECL Plug_Draw_String(float x, float y, const char *string)
|
2013-11-21 23:02:28 +00:00
|
|
|
{
|
|
|
|
int ipx, px, py;
|
|
|
|
conchar_t buffer[2048], *str;
|
2015-07-14 14:47:00 +00:00
|
|
|
unsigned int codeflags, codepoint;
|
2013-11-21 23:02:28 +00:00
|
|
|
if (qrenderer == QR_NONE)
|
2019-09-04 07:59:40 +00:00
|
|
|
return;
|
|
|
|
COM_ParseFunString(CON_WHITEMASK, string, buffer, sizeof(buffer), false);
|
2013-11-21 23:02:28 +00:00
|
|
|
str = buffer;
|
2019-09-04 07:59:40 +00:00
|
|
|
Font_BeginString(font_default, x, y, &px, &py);
|
2013-11-21 23:02:28 +00:00
|
|
|
ipx = px;
|
|
|
|
while(*str)
|
|
|
|
{
|
2015-07-14 14:47:00 +00:00
|
|
|
str = Font_Decode(str, &codeflags, &codepoint);
|
|
|
|
if (codepoint == '\n')
|
2013-11-21 23:02:28 +00:00
|
|
|
py += Font_CharHeight();
|
2015-07-14 14:47:00 +00:00
|
|
|
else if (codepoint == '\r')
|
2013-11-21 23:02:28 +00:00
|
|
|
px = ipx;
|
|
|
|
else
|
2015-07-14 14:47:00 +00:00
|
|
|
px = Font_DrawChar(px, py, codeflags, codepoint);
|
2013-11-21 23:02:28 +00:00
|
|
|
}
|
2013-12-29 22:48:28 +00:00
|
|
|
Font_EndString(font_default);
|
2013-11-21 23:02:28 +00:00
|
|
|
}
|
2019-09-04 07:59:40 +00:00
|
|
|
static void QDECL Plug_Draw_StringH(float x, float y, float h, unsigned int flags, const char *instr)
|
2015-06-17 13:05:20 +00:00
|
|
|
{
|
|
|
|
float ipx;
|
|
|
|
conchar_t buffer[2048], *str, cmask = CON_WHITEMASK;
|
2015-07-14 14:47:00 +00:00
|
|
|
unsigned int codeflags, codepoint;
|
2015-06-17 13:05:20 +00:00
|
|
|
unsigned int parseflags = 0;
|
|
|
|
if (qrenderer == QR_NONE)
|
2019-09-04 07:59:40 +00:00
|
|
|
return;
|
2015-06-17 13:05:20 +00:00
|
|
|
if (flags & 1)
|
|
|
|
cmask |= CON_2NDCHARSETTEXT;
|
|
|
|
if (flags & 2)
|
|
|
|
parseflags |= PFS_FORCEUTF8;
|
|
|
|
COM_ParseFunString(CON_WHITEMASK, instr, buffer, sizeof(buffer), parseflags);
|
|
|
|
str = buffer;
|
|
|
|
Font_BeginScaledString(font_default, x, y, h, h, &x, &y);
|
|
|
|
ipx = x;
|
|
|
|
while(*str)
|
|
|
|
{
|
2015-07-14 14:47:00 +00:00
|
|
|
str = Font_Decode(str, &codeflags, &codepoint);
|
|
|
|
if (codepoint == '\n')
|
2015-06-17 13:05:20 +00:00
|
|
|
y += Font_CharScaleHeight();
|
2015-07-14 14:47:00 +00:00
|
|
|
else if (codepoint == '\r')
|
2015-06-17 13:05:20 +00:00
|
|
|
x = ipx;
|
|
|
|
else
|
2015-07-14 14:47:00 +00:00
|
|
|
x = Font_DrawScaleChar(x, y, codeflags, codepoint);
|
2015-06-17 13:05:20 +00:00
|
|
|
}
|
|
|
|
Font_EndString(font_default);
|
|
|
|
}
|
2011-03-31 01:14:01 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static float QDECL Plug_Draw_StringWidth(float h, unsigned int flags, const char *instr)
|
2015-10-27 15:20:15 +00:00
|
|
|
{
|
|
|
|
conchar_t buffer[2048], *str, cmask = CON_WHITEMASK;
|
|
|
|
unsigned int parseflags = 0;
|
|
|
|
float px,py;
|
|
|
|
if (qrenderer == QR_NONE)
|
|
|
|
return 0;
|
|
|
|
if (flags & 1)
|
|
|
|
cmask |= CON_2NDCHARSETTEXT;
|
|
|
|
if (flags & 2)
|
|
|
|
parseflags |= PFS_FORCEUTF8;
|
|
|
|
str = COM_ParseFunString(CON_WHITEMASK, instr, buffer, sizeof(buffer), parseflags);
|
|
|
|
|
|
|
|
Font_BeginScaledString(font_default, 0, 0, h, h, &px, &py);
|
|
|
|
px = Font_LineScaleWidth(buffer, str);
|
|
|
|
Font_EndString(NULL);
|
|
|
|
|
|
|
|
//put it back in virtual space
|
2019-09-04 07:59:40 +00:00
|
|
|
return (px*(float)vid.width) / (float)vid.rotpixelwidth;
|
2015-10-27 15:20:15 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static void QDECL Plug_Draw_Fill(float x, float y, float width, float height)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
if (qrenderer != QR_NONE)
|
|
|
|
R2D_FillBlock(x, y, width, height);
|
2005-12-15 19:41:11 +00:00
|
|
|
}
|
2019-09-04 07:59:40 +00:00
|
|
|
static void QDECL Plug_Draw_ColourP(int palcol, float a)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
if (palcol>=0 && palcol<=255)
|
|
|
|
R2D_ImagePaletteColour(palcol, a);
|
2005-12-15 19:41:11 +00:00
|
|
|
}
|
2019-09-04 07:59:40 +00:00
|
|
|
static void QDECL Plug_Draw_Colour4f(float r, float g, float b, float a)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
R2D_ImageColours(r,g,b,a);
|
2005-12-15 19:41:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static void QDECL Plug_LocalSound(const char *soundname, int channel, float volume)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
if (qrenderer != QR_NONE)
|
|
|
|
S_LocalSound(soundname);
|
2005-12-15 19:41:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static int QDECL Plug_CL_GetStats(int pnum, unsigned int *stats, int maxstats)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
2016-08-25 00:12:14 +00:00
|
|
|
int i = 0;
|
2005-12-15 19:41:11 +00:00
|
|
|
int max;
|
|
|
|
|
2013-03-31 04:21:08 +00:00
|
|
|
if (qrenderer == QR_NONE || !cls.state)
|
|
|
|
return 0;
|
2006-01-02 23:01:54 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
max = maxstats;
|
2005-12-15 19:41:11 +00:00
|
|
|
if (max > MAX_CL_STATS)
|
|
|
|
max = MAX_CL_STATS;
|
2016-08-25 00:12:14 +00:00
|
|
|
if (pnum < 0)
|
|
|
|
{
|
|
|
|
pnum = -pnum-1;
|
|
|
|
if (pnum < MAX_CLIENTS)
|
|
|
|
{
|
|
|
|
for (i = 0; i < max; i++)
|
|
|
|
stats[i] = cl.players[pnum].stats[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (pnum < cl.splitclients)
|
|
|
|
{
|
|
|
|
for (i = 0; i < max; i++)
|
|
|
|
{ //fill stats with the right player's stats
|
|
|
|
stats[i] = cl.playerview[pnum].stats[i];
|
|
|
|
}
|
2005-12-15 19:41:11 +00:00
|
|
|
}
|
2016-08-25 00:12:14 +00:00
|
|
|
|
|
|
|
max = i;
|
2019-09-04 07:59:40 +00:00
|
|
|
for (; i < maxstats; i++) //plugin has too many stats (wow)
|
2005-12-15 19:41:11 +00:00
|
|
|
stats[i] = 0; //fill the rest.
|
|
|
|
return max;
|
|
|
|
}
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static void QDECL Plug_GetPlayerInfo(int playernum, plugclientinfo_t *out)
|
2006-01-21 00:06:49 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
int i;
|
2006-01-21 00:06:49 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
if (playernum < -cl.splitclients || playernum >= MAX_CLIENTS)
|
|
|
|
return;
|
2006-01-21 00:06:49 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
i = playernum;
|
2007-10-05 10:46:26 +00:00
|
|
|
if (out)
|
2006-01-21 00:06:49 +00:00
|
|
|
{
|
2013-06-23 02:17:02 +00:00
|
|
|
if (i < 0)
|
2006-01-21 00:06:49 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
i = cl.playerview[-i-1].playernum;
|
2007-10-05 10:46:26 +00:00
|
|
|
if (i < 0)
|
|
|
|
{
|
|
|
|
memset(out, 0, sizeof(*out));
|
2019-09-04 07:59:40 +00:00
|
|
|
return;
|
2007-10-05 10:46:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
out->bottomcolour = cl.players[i].rbottomcolor;
|
|
|
|
out->topcolour = cl.players[i].rtopcolor;
|
|
|
|
out->frags = cl.players[i].frags;
|
|
|
|
Q_strncpyz(out->name, cl.players[i].name, PLUGMAX_SCOREBOARDNAME);
|
|
|
|
out->ping = cl.players[i].ping;
|
|
|
|
out->pl = cl.players[i].pl;
|
2015-06-24 17:59:57 +00:00
|
|
|
out->activetime = realtime - cl.players[i].realentertime;
|
2007-10-05 10:46:26 +00:00
|
|
|
out->userid = cl.players[i].userid;
|
|
|
|
out->spectator = cl.players[i].spectator;
|
2018-07-05 16:21:44 +00:00
|
|
|
InfoBuf_ToString(&cl.players[i].userinfo, out->userinfo, sizeof(out->userinfo), basicuserinfos, NULL, NULL, NULL, NULL);
|
2007-10-05 10:46:26 +00:00
|
|
|
Q_strncpyz(out->team, cl.players[i].team, sizeof(out->team));
|
2006-01-21 00:06:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static size_t QDECL Plug_GetLocalPlayerNumbers(size_t first, size_t count, int *playernums, int *spectracks)
|
2007-02-23 00:21:33 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
size_t i;
|
2015-04-21 04:12:00 +00:00
|
|
|
if (count < 0 || count > 1000) count = 0;
|
|
|
|
if (first > cl.splitclients) first = cl.splitclients;
|
|
|
|
if (first+count > cl.splitclients) count = cl.splitclients-first;
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
playernums[i] = cl.playerview[first+i].playernum;
|
|
|
|
spectracks[i] = Cam_TrackNum(&cl.playerview[first+i]);
|
2015-04-21 04:12:00 +00:00
|
|
|
}
|
|
|
|
return count;
|
|
|
|
}
|
2007-02-23 00:21:33 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static void QDECL Plug_GetServerInfo(char *outptr, size_t outlen)
|
2007-02-23 00:21:33 +00:00
|
|
|
{
|
2015-04-21 04:12:00 +00:00
|
|
|
extern float demtime;
|
2007-02-23 00:21:33 +00:00
|
|
|
|
2018-07-05 16:21:44 +00:00
|
|
|
InfoBuf_ToString(&cl.serverinfo, outptr, outlen, NULL, NULL, NULL, NULL, NULL);
|
2015-09-01 04:45:15 +00:00
|
|
|
Q_strncatz(outptr, va("\\intermission\\%i", cl.intermissionmode), outlen);
|
2015-04-21 04:12:00 +00:00
|
|
|
switch(cls.demoplayback)
|
|
|
|
{
|
|
|
|
case DPB_NONE:
|
|
|
|
break;
|
|
|
|
case DPB_MVD:
|
|
|
|
case DPB_EZTV:
|
|
|
|
Q_strncatz(outptr, "\\demotype\\mvd", outlen);
|
|
|
|
break;
|
|
|
|
case DPB_QUAKEWORLD:
|
|
|
|
Q_strncatz(outptr, "\\demotype\\qw", outlen);
|
|
|
|
break;
|
|
|
|
#ifdef NQPROT
|
|
|
|
case DPB_NETQUAKE:
|
|
|
|
Q_strncatz(outptr, "\\demotype\\nq", outlen);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
#ifdef Q2CLIENT
|
|
|
|
case DPB_QUAKE2:
|
|
|
|
Q_strncatz(outptr, "\\demotype\\q2", outlen);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
Q_strncatz(outptr, va("\\demotime\\%f", demtime-cls.demostarttime), outlen);
|
2007-02-23 00:21:33 +00:00
|
|
|
|
2015-09-01 04:45:15 +00:00
|
|
|
#ifdef QUAKEHUD
|
2015-06-17 13:05:20 +00:00
|
|
|
if (cl.playerview[0].statsf[STAT_MATCHSTARTTIME])
|
2015-07-04 02:04:46 +00:00
|
|
|
Q_strncatz(outptr, va("\\matchstart\\%f", cl.playerview[0].statsf[STAT_MATCHSTARTTIME]/1000), outlen);
|
2015-09-01 04:45:15 +00:00
|
|
|
else
|
|
|
|
#endif
|
2015-06-17 13:05:20 +00:00
|
|
|
Q_strncatz(outptr, va("\\matchstart\\%f", cl.matchgametimestart), outlen);
|
2007-02-23 00:21:33 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static void QDECL Plug_SetUserInfo(int seat, const char *key, const char *value)
|
2007-02-23 00:21:33 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
CL_SetInfo(seat, key, value);
|
|
|
|
}
|
2007-02-23 00:21:33 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static qboolean QDECL Plug_GetLastInputFrame(int seat, usercmd_t *outcmd)
|
|
|
|
{
|
|
|
|
unsigned int curframe = (cl.movesequence-1u) & UPDATE_MASK;
|
|
|
|
if (!cl.movesequence || seat < 0 || seat >= cl.splitclients)
|
|
|
|
return false;
|
|
|
|
*outcmd = cl.outframes[curframe].cmd[seat];
|
2007-02-23 00:21:33 +00:00
|
|
|
return true;
|
|
|
|
}
|
2005-12-15 19:41:11 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
#define has(x) (((quintptr_t)&((plugnetinfo_t*)NULL)->x + sizeof(((plugnetinfo_t*)NULL)->x)) <= outlen)
|
2015-04-21 04:12:00 +00:00
|
|
|
//aka: misc other hud timing crap
|
2019-09-04 07:59:40 +00:00
|
|
|
static size_t QDECL Plug_GetNetworkInfo(plugnetinfo_t *outptr, size_t outlen)
|
2015-04-21 04:12:00 +00:00
|
|
|
{
|
2015-06-12 14:44:50 +00:00
|
|
|
if (has(capturing))
|
|
|
|
{
|
2017-02-21 20:22:07 +00:00
|
|
|
#ifdef HAVE_MEDIA_ENCODER
|
dpp7: Treat 'dropped' c2s packets as choked when using dpp7 protocols. This is because the protocol provides no way to disambiguate, and I don't like false reports of packetloss (only reliables loss can be detected, and that's not frequent enough to be meaningful). Pings can still be determined with dpp7, for those few packets which are acked.
package manager: reworked to enable/disable plugins when downloaded, which can also be present-but-disabled.
package manager: display a confirmation prompt before applying changes. do not allow other changes to be made while applying. prompt may be skipped with 'pkg apply' in dedicated servers.
sv: downloads are no longer forced to lower case.
sv: added sv_demoAutoCompress cvar. set to 1 to directly record to *.mvd.gz
cl: properly support directly playing .mvd.gz files
menus: reworked to separate mouse and keyboard focus. mouse focus becomes keyboard focus only on mouse clicks. tooltips follow mouse cursors.
menus: cleaned up menu heirachy a little. now simpler.
server browser: changed 'hide *' filters to 'show *' instead. I felt it was more logical.
deluxmapping: changed to disabled, load, generate, like r_loadlit is.
render targets api now supports negative formats to mean nearest filtering, where filtering is part of texture state.
drawrotpic fixed, now batches and interacts with drawpic correctly.
drawline fixed, no interacts with draw* correctly, but still does not batch.
fixed saving games.
provide proper userinfo to nq clients, where supported.
qcc: catch string table overflows safely, giving errors instead of crashes. switch to 32bit statements if some over-sized function requires it.
qtv: some bigcoords support tweaks
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5073 fc73d0e0-1445-4013-8a0c-d673dee63da5
2017-03-21 05:27:07 +00:00
|
|
|
outptr->capturing = Media_Capturing();
|
2015-06-12 14:44:50 +00:00
|
|
|
#else
|
2017-02-21 20:22:07 +00:00
|
|
|
outptr->capturing = 0;
|
2015-06-12 14:44:50 +00:00
|
|
|
#endif
|
|
|
|
}
|
2015-04-21 04:12:00 +00:00
|
|
|
|
|
|
|
if (has(seats))
|
|
|
|
outptr->seats = cl.splitclients;
|
|
|
|
if (has(ping))
|
2015-06-12 14:44:50 +00:00
|
|
|
CL_CalcNet2 (&outptr->ping.s_avg, &outptr->ping.s_mn, &outptr->ping.s_mx, &outptr->ping.ms_stddev, &outptr->ping.fr_avg, &outptr->ping.fr_mn, &outptr->ping.fr_mx, &outptr->loss.dropped, &outptr->loss.choked, &outptr->loss.invalid);
|
2015-04-21 04:12:00 +00:00
|
|
|
|
|
|
|
if (has(mlatency))
|
|
|
|
outptr->mlatency = 0;
|
|
|
|
if (has(mrate))
|
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
|
|
|
outptr->mrate = IN_DetermineMouseRate();
|
2015-04-21 04:12:00 +00:00
|
|
|
if (has(vlatency))
|
|
|
|
outptr->vlatency = 0;
|
|
|
|
|
|
|
|
if (has(speed))
|
|
|
|
VectorCopy(outptr->speed, r_refdef.playerview->simvel);
|
|
|
|
|
|
|
|
if (has(clrate))
|
|
|
|
NET_GetRates(cls.sockets, &outptr->clrate.in_pps, &outptr->clrate.out_pps, &outptr->clrate.in_bps, &outptr->clrate.out_bps);
|
|
|
|
if (has(svrate))
|
|
|
|
{
|
|
|
|
memset(&outptr->svrate, 0, sizeof(outptr->svrate));
|
|
|
|
#ifndef CLIENTONLY
|
|
|
|
NET_GetRates(svs.sockets, &outptr->svrate.in_pps, &outptr->svrate.out_pps, &outptr->svrate.in_bps, &outptr->svrate.out_bps);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
return min(outlen,sizeof(*outptr));
|
2015-04-21 04:12:00 +00:00
|
|
|
}
|
|
|
|
#undef has
|
|
|
|
|
2018-04-27 16:40:50 +00:00
|
|
|
#ifdef QUAKEHUD
|
2019-09-04 07:59:40 +00:00
|
|
|
static float QDECL Plug_GetTrackerOwnFrags(int seat, char *outptr, size_t outlen)
|
2015-11-18 07:37:39 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
if (!outlen)
|
|
|
|
return 0;
|
2015-11-18 07:37:39 +00:00
|
|
|
else
|
2019-09-04 07:59:40 +00:00
|
|
|
return Stats_GetLastOwnFrag(seat, outptr, outlen);
|
2015-11-18 07:37:39 +00:00
|
|
|
}
|
2018-04-27 16:40:50 +00:00
|
|
|
#endif
|
2015-11-18 07:37:39 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static void QDECL Plug_GetLocationName(const float *locpoint, char *outbuffer, size_t bufferlen)
|
2007-10-05 10:46:26 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
const char *result = TP_LocationName(locpoint);
|
|
|
|
Q_strncpyz(outbuffer, result, bufferlen);
|
2007-10-05 10:46:26 +00:00
|
|
|
}
|
|
|
|
|
2015-09-01 04:45:15 +00:00
|
|
|
#ifdef QUAKEHUD
|
2019-09-04 07:59:40 +00:00
|
|
|
static size_t QDECL Plug_GetTeamInfo(teamplayerinfo_t *players, size_t maxplayers, qboolean showenemies, int seat)
|
2015-06-29 23:46:31 +00:00
|
|
|
{
|
|
|
|
int count = 0;
|
|
|
|
int i;
|
|
|
|
int self;
|
|
|
|
lerpents_t *le;
|
|
|
|
player_info_t *pl;
|
|
|
|
|
|
|
|
maxplayers = min(maxplayers, cl.allocated_client_slots);
|
|
|
|
|
|
|
|
Cvar_Get("ti", "1", CVAR_USERINFO, "Hacks because ktx sucks. Must be 1 in order to receive team information in ktx.");
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
if (seat >= 0)
|
|
|
|
{
|
|
|
|
self = cl.playerview[seat].playernum;
|
|
|
|
if (cl.playerview[seat].cam_state != CAM_FREECAM)
|
|
|
|
self = cl.playerview[seat].cam_spec_track;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
self = -1;
|
2015-06-29 23:46:31 +00:00
|
|
|
|
|
|
|
for (i = 0; i < cl.allocated_client_slots && maxplayers > 0; i++)
|
|
|
|
{
|
|
|
|
if (!*cl.players[i].name) //empty slot
|
|
|
|
continue;
|
|
|
|
if (cl.players[i].spectator) //shoo!
|
|
|
|
continue;
|
2019-09-04 07:59:40 +00:00
|
|
|
if (i == self)
|
2015-06-29 23:46:31 +00:00
|
|
|
continue;
|
|
|
|
if (!showenemies && strcmp(cl.players[i].team, cl.players[self].team))
|
|
|
|
continue;
|
|
|
|
players->client = i;
|
2015-06-30 14:05:45 +00:00
|
|
|
|
2015-06-29 23:46:31 +00:00
|
|
|
pl = &cl.players[i];
|
|
|
|
if (pl->tinfo.time > cl.time)
|
|
|
|
{ //mod is explicitly telling us this junk
|
|
|
|
players->items = pl->tinfo.items;
|
|
|
|
players->health = pl->tinfo.health;
|
|
|
|
players->armor = pl->tinfo.armour;
|
|
|
|
VectorCopy(pl->tinfo.org, players->org);
|
|
|
|
Q_strncpyz(players->nick, pl->tinfo.nick, sizeof(players->nick));
|
|
|
|
}
|
|
|
|
else if (i == self)
|
|
|
|
{ //oh hey look, its me.
|
2019-09-04 07:59:40 +00:00
|
|
|
players->items = cl.playerview[seat].stats[STAT_ITEMS];
|
|
|
|
players->armor = cl.playerview[seat].statsf[STAT_ARMOR];
|
|
|
|
players->health = cl.playerview[seat].statsf[STAT_HEALTH];
|
2015-06-29 23:46:31 +00:00
|
|
|
Q_strncpyz(players->nick, "", sizeof(players->nick));
|
|
|
|
}
|
2015-06-30 14:05:45 +00:00
|
|
|
else if (cls.demoplayback == DPB_MVD || cls.demoplayback == DPB_EZTV)
|
2015-06-29 23:46:31 +00:00
|
|
|
{ //scrape it from the mvd (assuming there is one...
|
|
|
|
players->items = cl.players[i].stats[STAT_ITEMS];
|
|
|
|
players->armor = cl.players[i].statsf[STAT_ARMOR];
|
|
|
|
players->health = cl.players[i].statsf[STAT_HEALTH];
|
|
|
|
Q_strncpyz(players->nick, "", sizeof(players->nick));
|
|
|
|
|
|
|
|
VectorClear(players->org);
|
|
|
|
}
|
2015-06-30 14:05:45 +00:00
|
|
|
else
|
|
|
|
continue; //no stats, don't bother telling the plugin.
|
|
|
|
|
2015-06-29 23:46:31 +00:00
|
|
|
//scrape origin from interpolation, if its more valid.
|
|
|
|
if (i+1 < cl.maxlerpents && cl.lerpentssequence && cl.lerpents[i+1].sequence == cl.lerpentssequence)
|
|
|
|
{
|
|
|
|
le = &cl.lerpents[i+1];
|
|
|
|
VectorCopy(le->origin, players->org);
|
|
|
|
}
|
|
|
|
else if (cl.lerpentssequence && cl.lerpplayers[i].sequence == cl.lerpentssequence)
|
|
|
|
{
|
|
|
|
le = &cl.lerpplayers[i];
|
|
|
|
VectorCopy(le->origin, players->org);
|
|
|
|
}
|
|
|
|
|
|
|
|
players++;
|
|
|
|
maxplayers--;
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
return count;
|
2015-06-29 23:46:31 +00:00
|
|
|
}
|
2015-09-01 04:45:15 +00:00
|
|
|
#endif
|
2015-10-27 15:20:15 +00:00
|
|
|
#ifdef QUAKEHUD
|
2019-09-04 07:59:40 +00:00
|
|
|
static int QDECL Plug_GetWeaponStats(int self, struct wstats_s *result, size_t maxresults)
|
2015-10-27 15:20:15 +00:00
|
|
|
{
|
|
|
|
//FIXME: we should support some way to clear this to 0 again, other than nosave.
|
|
|
|
Cvar_Get("wpsx", "1", CVAR_USERINFO|CVAR_NOSAVE, "Hacks because ktx sucks. Must be 1 in order to receive weapon stats information in ktx.");
|
|
|
|
|
|
|
|
if (self < 0)
|
|
|
|
{
|
|
|
|
unsigned int seat = (unsigned)(-self-1)%MAX_SPLITS;
|
|
|
|
self = cl.playerview[seat].playernum;
|
|
|
|
if (cl.playerview[seat].cam_state != CAM_FREECAM)
|
|
|
|
self = cl.playerview[seat].cam_spec_track;
|
|
|
|
}
|
|
|
|
if (self < 0)
|
|
|
|
return 0;
|
|
|
|
|
2016-08-25 00:12:14 +00:00
|
|
|
if (maxresults > countof(cl.players[self].weaponstats))
|
|
|
|
maxresults = countof(cl.players[self].weaponstats);
|
2015-10-27 15:20:15 +00:00
|
|
|
memcpy(result, cl.players[self].weaponstats, sizeof(*result) * maxresults);
|
2019-09-04 07:59:40 +00:00
|
|
|
return maxresults;
|
2015-10-27 15:20:15 +00:00
|
|
|
}
|
|
|
|
#endif
|
2015-06-29 23:46:31 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static qboolean QDECL Plug_Con_SubPrint(const char *name, const char *text)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
|
|
|
console_t *con;
|
2013-06-23 02:17:02 +00:00
|
|
|
if (!name)
|
|
|
|
name = "";
|
2006-01-02 23:01:54 +00:00
|
|
|
|
2010-02-06 01:25:04 +00:00
|
|
|
if (qrenderer == QR_NONE)
|
2013-07-13 12:14:32 +00:00
|
|
|
{
|
|
|
|
if (!*name)
|
|
|
|
{
|
|
|
|
Con_Printf("%s", text);
|
2019-09-04 07:59:40 +00:00
|
|
|
return true;
|
2013-07-13 12:14:32 +00:00
|
|
|
}
|
2006-01-02 23:01:54 +00:00
|
|
|
return false;
|
2013-07-13 12:14:32 +00:00
|
|
|
}
|
2006-01-02 23:01:54 +00:00
|
|
|
|
2005-12-15 19:41:11 +00:00
|
|
|
con = Con_FindConsole(name);
|
|
|
|
if (!con)
|
|
|
|
{
|
2011-06-16 02:03:57 +00:00
|
|
|
con = Con_Create(name, 0);
|
2005-12-20 23:34:06 +00:00
|
|
|
Con_SetActive(con);
|
2005-12-15 19:41:11 +00:00
|
|
|
|
|
|
|
if (currentplug->conexecutecommand)
|
|
|
|
{
|
2013-06-29 21:08:09 +00:00
|
|
|
con->notif_x = 0;
|
|
|
|
con->notif_y = 8*4;
|
|
|
|
con->notif_w = vid.width;
|
|
|
|
con->notif_t = 8;
|
|
|
|
con->notif_l = 4;
|
|
|
|
con->flags |= CONF_NOTIFY;
|
2005-12-15 19:41:11 +00:00
|
|
|
con->userdata = currentplug;
|
|
|
|
con->linebuffered = Plug_SubConsoleCommand;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-05 20:04:11 +00:00
|
|
|
Con_PrintCon(con, text, con->parseflags);
|
2005-12-15 19:41:11 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
return true;
|
2005-12-15 19:41:11 +00:00
|
|
|
}
|
2019-09-04 07:59:40 +00:00
|
|
|
static qboolean QDECL Plug_Con_RenameSub(const char *oldname, const char *newname)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
|
|
|
console_t *con;
|
2010-02-06 01:25:04 +00:00
|
|
|
if (qrenderer == QR_NONE)
|
2006-01-02 23:01:54 +00:00
|
|
|
return false;
|
2019-09-04 07:59:40 +00:00
|
|
|
con = Con_FindConsole(oldname);
|
2005-12-15 19:41:11 +00:00
|
|
|
if (!con)
|
2019-09-04 07:59:40 +00:00
|
|
|
return false;
|
2005-12-15 19:41:11 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
Q_strncpyz(con->name, newname, sizeof(con->name));
|
2005-12-15 19:41:11 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
return true;
|
2005-12-15 19:41:11 +00:00
|
|
|
}
|
2019-09-04 07:59:40 +00:00
|
|
|
static qboolean QDECL Plug_Con_IsActive(const char *conname)
|
2005-12-20 23:34:06 +00:00
|
|
|
{
|
|
|
|
console_t *con;
|
2010-02-06 01:25:04 +00:00
|
|
|
if (qrenderer == QR_NONE)
|
2006-01-02 23:01:54 +00:00
|
|
|
return false;
|
2019-09-04 07:59:40 +00:00
|
|
|
con = Con_FindConsole(conname);
|
2005-12-20 23:34:06 +00:00
|
|
|
if (!con)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return Con_IsActive(con);
|
|
|
|
}
|
2019-09-04 07:59:40 +00:00
|
|
|
static qboolean QDECL Plug_Con_SetActive(const char *conname)
|
2005-12-20 23:34:06 +00:00
|
|
|
{
|
|
|
|
console_t *con;
|
2010-02-06 01:25:04 +00:00
|
|
|
if (qrenderer == QR_NONE)
|
2006-01-02 23:01:54 +00:00
|
|
|
return false;
|
2019-09-04 07:59:40 +00:00
|
|
|
con = Con_FindConsole(conname);
|
2005-12-20 23:34:06 +00:00
|
|
|
if (!con)
|
2019-09-04 07:59:40 +00:00
|
|
|
con = Con_Create(conname, 0);
|
2005-12-15 19:41:11 +00:00
|
|
|
|
2005-12-20 23:34:06 +00:00
|
|
|
Con_SetActive(con);
|
|
|
|
return true;
|
|
|
|
}
|
2019-09-04 07:59:40 +00:00
|
|
|
static qboolean QDECL Plug_Con_Destroy(const char *conname)
|
2005-12-20 23:34:06 +00:00
|
|
|
{
|
|
|
|
console_t *con;
|
2010-02-06 01:25:04 +00:00
|
|
|
if (qrenderer == QR_NONE)
|
2006-01-02 23:01:54 +00:00
|
|
|
return false;
|
2019-09-04 07:59:40 +00:00
|
|
|
con = Con_FindConsole(conname);
|
2005-12-20 23:34:06 +00:00
|
|
|
if (!con)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
Con_Destroy(con);
|
|
|
|
return true;
|
|
|
|
}
|
2019-09-04 07:59:40 +00:00
|
|
|
static qboolean QDECL Plug_Con_NameForNum(qintptr_t connum, char *outconname, size_t connamesize)
|
2005-12-20 23:34:06 +00:00
|
|
|
{
|
2010-02-06 01:25:04 +00:00
|
|
|
if (qrenderer == QR_NONE)
|
2006-01-02 23:01:54 +00:00
|
|
|
return false;
|
2005-12-20 23:34:06 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
return Con_NameForNum(connum, outconname, connamesize);
|
2005-12-20 23:34:06 +00:00
|
|
|
}
|
2005-12-15 19:41:11 +00:00
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static float QDECL Plug_Con_GetConsoleFloat(const char *conname, const char *attrib)
|
2015-04-14 23:12:17 +00:00
|
|
|
{
|
|
|
|
float ret;
|
|
|
|
console_t *con = Con_FindConsole(conname);
|
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
if (!con)
|
|
|
|
ret = -1;
|
|
|
|
else if (!strcmp(attrib, "unseen"))
|
|
|
|
ret = con->unseentext;
|
|
|
|
else if (!strcmp(attrib, "markup"))
|
|
|
|
{
|
|
|
|
if (con->parseflags & PFS_NOMARKUP)
|
|
|
|
ret = 0;
|
|
|
|
else if (con->parseflags & PFS_KEEPMARKUP)
|
|
|
|
ret = 2;
|
|
|
|
else
|
|
|
|
ret = 1;
|
|
|
|
}
|
|
|
|
else if (!strcmp(attrib, "forceutf8"))
|
|
|
|
ret = (con->parseflags&PFS_FORCEUTF8)?true:false;
|
|
|
|
else if (!strcmp(attrib, "hidden"))
|
|
|
|
ret = (con->flags & CONF_HIDDEN)?true:false;
|
|
|
|
else if (!strcmp(attrib, "iswindow"))
|
|
|
|
ret = (con->flags & CONF_ISWINDOW)?true:false;
|
2016-07-12 00:40:13 +00:00
|
|
|
else if (!strcmp(attrib, "maxlines"))
|
|
|
|
ret = con->maxlines;
|
2015-04-14 23:12:17 +00:00
|
|
|
else if (!strcmp(attrib, "wnd_x"))
|
|
|
|
ret = con->wnd_x;
|
|
|
|
else if (!strcmp(attrib, "wnd_y"))
|
|
|
|
ret = con->wnd_y;
|
|
|
|
else if (!strcmp(attrib, "wnd_w"))
|
|
|
|
ret = con->wnd_w;
|
|
|
|
else if (!strcmp(attrib, "wnd_h"))
|
|
|
|
ret = con->wnd_h;
|
|
|
|
else if (!strcmp(attrib, "linecount"))
|
|
|
|
ret = con->linecount;
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
return ret;
|
2015-04-14 23:12:17 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static qboolean QDECL Plug_Con_SetConsoleFloat(const char *conname, const char *attrib, float val)
|
2015-04-14 23:12:17 +00:00
|
|
|
{
|
|
|
|
console_t *con = Con_FindConsole(conname);
|
|
|
|
|
|
|
|
if (!con)
|
|
|
|
{
|
|
|
|
con = Con_Create(conname, 0);
|
|
|
|
if (!con)
|
2019-09-04 07:59:40 +00:00
|
|
|
return false;
|
2015-04-14 23:12:17 +00:00
|
|
|
con->userdata = currentplug;
|
|
|
|
con->linebuffered = Plug_SubConsoleCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(attrib, "unseen"))
|
|
|
|
con->unseentext = !!val;
|
|
|
|
else if (!strcmp(attrib, "markup"))
|
|
|
|
{
|
|
|
|
int cur = val;
|
|
|
|
con->parseflags &= ~(PFS_NOMARKUP|PFS_KEEPMARKUP);
|
|
|
|
if (cur == 0)
|
|
|
|
con->parseflags |= PFS_NOMARKUP;
|
|
|
|
else if (cur == 2)
|
|
|
|
con->parseflags |= PFS_KEEPMARKUP;
|
|
|
|
}
|
|
|
|
else if (!strcmp(attrib, "forceutf8"))
|
|
|
|
con->parseflags = (con->parseflags & ~PFS_FORCEUTF8) | (val?PFS_FORCEUTF8:0);
|
|
|
|
else if (!strcmp(attrib, "hidden"))
|
|
|
|
con->flags = (con->flags & ~CONF_HIDDEN) | (val?CONF_HIDDEN:0);
|
|
|
|
else if (!strcmp(attrib, "iswindow"))
|
|
|
|
{
|
|
|
|
con->flags = (con->flags & ~CONF_ISWINDOW) | (val?CONF_ISWINDOW:0);
|
2016-07-12 00:40:13 +00:00
|
|
|
con->flags = (con->flags & ~CONF_NOTIFY) | (val>1?CONF_NOTIFY:0);
|
2015-04-14 23:12:17 +00:00
|
|
|
if (con_curwindow == con && !(con->flags & CONF_ISWINDOW))
|
|
|
|
con_curwindow = NULL;
|
|
|
|
else if (!con_curwindow && (con->flags & CONF_ISWINDOW))
|
|
|
|
con_curwindow = con;
|
|
|
|
}
|
2016-07-12 00:40:13 +00:00
|
|
|
else if (!strcmp(attrib, "maxlines"))
|
|
|
|
con->maxlines = val;
|
2015-04-14 23:12:17 +00:00
|
|
|
else if (!strcmp(attrib, "wnd_x"))
|
|
|
|
con->wnd_x = val;
|
|
|
|
else if (!strcmp(attrib, "wnd_y"))
|
|
|
|
con->wnd_y = val;
|
|
|
|
else if (!strcmp(attrib, "wnd_w"))
|
|
|
|
con->wnd_w = val;
|
|
|
|
else if (!strcmp(attrib, "wnd_h"))
|
|
|
|
con->wnd_h = val;
|
|
|
|
else if (!strcmp(attrib, "linebuffered"))
|
|
|
|
{
|
|
|
|
con->userdata = currentplug;
|
2016-07-12 00:40:13 +00:00
|
|
|
if (val == 2)
|
|
|
|
con->linebuffered = NULL;//Con_Navigate;
|
|
|
|
else if (val == 1)
|
|
|
|
con->linebuffered = Plug_SubConsoleCommand;
|
|
|
|
else
|
|
|
|
con->linebuffered = NULL;
|
2015-04-14 23:12:17 +00:00
|
|
|
}
|
|
|
|
else if (!strcmp(attrib, "linecount"))
|
|
|
|
{
|
|
|
|
if (val == 0)
|
2016-07-12 00:40:13 +00:00
|
|
|
{
|
|
|
|
int pfl = con->parseflags;
|
2015-04-14 23:12:17 +00:00
|
|
|
Con_ClearCon(con);
|
2016-07-12 00:40:13 +00:00
|
|
|
con->parseflags = pfl;
|
|
|
|
}
|
2015-04-14 23:12:17 +00:00
|
|
|
else
|
2019-09-04 07:59:40 +00:00
|
|
|
return false;
|
2015-04-14 23:12:17 +00:00
|
|
|
}
|
|
|
|
else
|
2019-09-04 07:59:40 +00:00
|
|
|
return false;
|
2015-04-14 23:12:17 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static qboolean QDECL Plug_Con_GetConsoleString(const char *conname, const char *attrib, char *value, size_t size)
|
2015-04-14 23:12:17 +00:00
|
|
|
{
|
|
|
|
console_t *con = Con_FindConsole(conname);
|
|
|
|
|
|
|
|
if (!con)
|
2019-09-04 07:59:40 +00:00
|
|
|
return false;
|
2015-04-14 23:12:17 +00:00
|
|
|
else if (!strcmp(attrib, "footer"))
|
|
|
|
;
|
2015-08-22 02:59:01 +00:00
|
|
|
else if (!strcmp(attrib, "title"))
|
|
|
|
{
|
|
|
|
Q_strncpyz(value, con->title, size);
|
|
|
|
}
|
2017-09-20 11:27:13 +00:00
|
|
|
else if (!strcmp(attrib, "icon"))
|
|
|
|
{
|
|
|
|
Q_strncpyz(value, con->icon, size);
|
|
|
|
}
|
2016-07-12 00:40:13 +00:00
|
|
|
else if (!strcmp(attrib, "prompt"))
|
|
|
|
{
|
|
|
|
Q_strncpyz(value, con->prompt, size);
|
|
|
|
}
|
2015-08-22 02:59:01 +00:00
|
|
|
else if (!strcmp(attrib, "backimage"))
|
|
|
|
{
|
|
|
|
if (con->backshader)
|
|
|
|
Q_strncpyz(value, con->backshader->name, size);
|
|
|
|
else
|
|
|
|
Q_strncpyz(value, con->backimage, size);
|
|
|
|
}
|
2019-09-04 07:59:40 +00:00
|
|
|
else
|
|
|
|
return false;
|
|
|
|
return true;
|
2015-04-14 23:12:17 +00:00
|
|
|
}
|
2019-09-04 07:59:40 +00:00
|
|
|
static qboolean QDECL Plug_Con_SetConsoleString(const char *conname, const char *attrib, const char *value)
|
2015-04-14 23:12:17 +00:00
|
|
|
{
|
|
|
|
console_t *con = Con_FindConsole(conname);
|
|
|
|
|
|
|
|
if (!con)
|
|
|
|
{
|
|
|
|
con = Con_Create(conname, 0);
|
|
|
|
if (!con)
|
2019-09-04 07:59:40 +00:00
|
|
|
return false;
|
2015-04-14 23:12:17 +00:00
|
|
|
con->userdata = currentplug;
|
|
|
|
con->linebuffered = Plug_SubConsoleCommand;
|
|
|
|
}
|
|
|
|
if (!con)
|
2019-09-04 07:59:40 +00:00
|
|
|
return false;
|
2015-04-14 23:12:17 +00:00
|
|
|
else if (!strcmp(attrib, "footer"))
|
|
|
|
Con_Footerf(con, false, "%s", value);
|
|
|
|
else if (!strcmp(attrib, "title"))
|
|
|
|
Q_strncpyz(con->title, value, sizeof(con->title));
|
2017-09-20 11:27:13 +00:00
|
|
|
else if (!strcmp(attrib, "icon"))
|
|
|
|
Q_strncpyz(con->icon, value, sizeof(con->icon));
|
2016-07-12 00:40:13 +00:00
|
|
|
else if (!strcmp(attrib, "prompt"))
|
|
|
|
Q_strncpyz(con->prompt, value, sizeof(con->prompt));
|
2015-08-22 02:59:01 +00:00
|
|
|
else if (!strcmp(attrib, "backimage"))
|
|
|
|
{
|
|
|
|
Q_strncpyz(con->backimage, value, sizeof(con->backimage));
|
|
|
|
if (con->backshader)
|
|
|
|
R_UnloadShader(con->backshader);
|
|
|
|
}
|
|
|
|
else if (!strcmp(attrib, "backvideomap"))
|
|
|
|
{
|
|
|
|
Q_strncpyz(con->backimage, "", sizeof(con->backimage));
|
|
|
|
if (con->backshader)
|
|
|
|
R_UnloadShader(con->backshader);
|
2016-07-12 00:40:13 +00:00
|
|
|
if (qrenderer != QR_NONE)
|
|
|
|
con->backshader = R_RegisterCustom(va("consolevid_%s", con->name), SUF_NONE, Shader_DefaultCinematic, value);
|
|
|
|
else
|
|
|
|
con->backshader = NULL;
|
2015-08-22 02:59:01 +00:00
|
|
|
}
|
2015-04-14 23:12:17 +00:00
|
|
|
else
|
2013-05-03 04:28:08 +00:00
|
|
|
return false;
|
2019-09-04 07:59:40 +00:00
|
|
|
return true;
|
2014-03-30 08:55:06 +00:00
|
|
|
}
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
static void QDECL Plug_S_RawAudio(int sourceid, void *data, int speed, int samples, int channels, int width, float volume)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
S_RawAudio(sourceid, data, speed, samples, channels, width, volume);
|
2005-12-15 19:41:11 +00:00
|
|
|
}
|
|
|
|
|
2018-10-11 10:31:23 +00:00
|
|
|
static void Plug_Client_Close(plugin_t *plug)
|
2005-12-15 19:41:11 +00:00
|
|
|
{
|
2019-09-04 07:59:40 +00:00
|
|
|
menu_t *m = Menu_FindContext(currentplug);
|
2005-12-15 19:41:11 +00:00
|
|
|
Plug_FreePlugImages(plug);
|
|
|
|
|
2019-09-04 07:59:40 +00:00
|
|
|
if (m)
|
|
|
|
Menu_Unlink(m);
|
2005-12-15 19:41:11 +00:00
|
|
|
if (protocolclientplugin == plug)
|
|
|
|
{
|
|
|
|
protocolclientplugin = NULL;
|
|
|
|
if (cls.protocol == CP_PLUGIN)
|
|
|
|
cls.protocol = CP_UNKNOWN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-11 10:31:23 +00:00
|
|
|
static void Plug_Client_Shutdown(void)
|
2013-03-31 04:21:08 +00:00
|
|
|
{
|
|
|
|
BZ_Free(pluginimagearray);
|
|
|
|
pluginimagearray = NULL;
|
|
|
|
pluginimagearraylen = 0;
|
|
|
|
}
|
2005-12-15 19:41:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|