Nuclide
Software Development Kit for id Tech
error.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2023 Vera Visions LLC.
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
13 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
14 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15*/
16
17var string g_lastDisconnectReason = "";
18
19
32bool
34{
35 string disconnectReason;
36
37 disconnectReason = cvar_string("_cl_disconnectreason");
38
39 /* still empty */
40 if (disconnectReason == "") {
41 return false;
42 }
43
44 /* save to cache */
45 g_lastDisconnectReason = disconnectReason;
46 cvar_set("_cl_disconnectreason", "");
47 return true;
48}
49
53string
55{
57}
58 // end of servererror
var string g_lastDisconnectReason
Definition: error.h:17
bool Error_ServerDisconnected(void)
Query if we've been disconnected from the server.
Definition: error.h:33
string Error_GetDisconnectReason(void)
Query the last reason for a server disconnect.
Definition: error.h:54