]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - cl_main.c
stop demo playback on connect command but do not disconnect
[xonotic/darkplaces.git] / cl_main.c
index 66029ab8294beed4d31b9247709cb4a700a94817..f41d1a1b5782da5c3ec40216547ebc6271ae3e40 100644 (file)
--- a/cl_main.c
+++ b/cl_main.c
@@ -30,7 +30,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 // we need to declare some mouse variables here, because the menu system
 // references them even when on a unix system.
 
-cvar_t csqc_progname = {0, "csqc_progname","csprogs.dat","name of csprogs.dat file to load"};  //[515]: csqc crc check and right csprogs name according to progs.dat
+cvar_t csqc_progname = {0, "csqc_progname","csprogs.dat","name of csprogs.dat file to load"};
 cvar_t csqc_progcrc = {CVAR_READONLY, "csqc_progcrc","-1","CRC of csprogs.dat file to load (-1 is none), only used during level changes and then reset to -1"};
 cvar_t csqc_progsize = {CVAR_READONLY, "csqc_progsize","-1","file size of csprogs.dat file to load (-1 is none), only used during level changes and then reset to -1"};
 
@@ -51,10 +51,8 @@ cvar_t m_side = {CVAR_SAVE, "m_side","0.8","mouse side speed multiplier"};
 
 cvar_t freelook = {CVAR_SAVE, "freelook", "1","mouse controls pitch instead of forward/back"};
 
-#ifdef AUTODEMO_BROKEN
-cvar_t cl_autodemo = {0, "cl_autodemo", "0", "records every game played, using the date/time and map name to name the demo file" };
-cvar_t cl_autodemo_nameformat = {0, "cl_autodemo_nameformat", "%Y-%m-%d_%H-%M", "The format of the cl_autodemo filename, followed by the map name" };
-#endif
+cvar_t cl_autodemo = {CVAR_SAVE, "cl_autodemo", "0", "records every game played, using the date/time and map name to name the demo file" };
+cvar_t cl_autodemo_nameformat = {CVAR_SAVE, "cl_autodemo_nameformat", "%Y-%m-%d_%H-%M", "The format of the cl_autodemo filename, followed by the map name" };
 
 cvar_t r_draweffects = {0, "r_draweffects", "1","renders temporary sprite effects"};
 
@@ -379,7 +377,8 @@ void CL_EstablishConnection(const char *host)
        cls.demonum = -1;
 
        // stop demo loop in case this fails
-       CL_Disconnect();
+       if (cls.demoplayback)
+               CL_StopPlayback();
 
        // if downloads are running, cancel their finishing action
        Curl_Clear_forthismap();
@@ -1856,15 +1855,18 @@ void CL_Locs_FreeNode(cl_locnode_t *node)
        Con_Printf("CL_Locs_FreeNode: no such node! (%p)\n", node);
 }
 
-void CL_Locs_AddNode(vec3_t mins, vec3_t maxs, const char *namestart, const char *nameend)
+void CL_Locs_AddNode(vec3_t mins, vec3_t maxs, const char *name)
 {
        cl_locnode_t *node, **pointer;
-       int namelen = (int)(nameend - namestart);
+       int namelen;
+       if (!name)
+               name = "";
+       namelen = strlen(name);
        node = Mem_Alloc(cls.levelmempool, sizeof(cl_locnode_t) + namelen + 1);
        VectorSet(node->mins, min(mins[0], maxs[0]), min(mins[1], maxs[1]), min(mins[2], maxs[2]));
        VectorSet(node->maxs, max(mins[0], maxs[0]), max(mins[1], maxs[1]), max(mins[2], maxs[2]));
        node->name = (char *)(node + 1);
-       memcpy(node->name, namestart, namelen);
+       memcpy(node->name, name, namelen);
        node->name[namelen] = 0;
        // link it into the tail of the list to preserve the order
        for (pointer = &cl.locnodes;*pointer;pointer = &(*pointer)->next)
@@ -1888,10 +1890,10 @@ void CL_Locs_Add_f(void)
                maxs[0] = atof(Cmd_Argv(4));
                maxs[1] = atof(Cmd_Argv(5));
                maxs[2] = atof(Cmd_Argv(6));
-               CL_Locs_AddNode(mins, maxs, Cmd_Argv(7), Cmd_Argv(7) + strlen(Cmd_Argv(7)));
+               CL_Locs_AddNode(mins, maxs, Cmd_Argv(7));
        }
        else
-               CL_Locs_AddNode(mins, mins, Cmd_Argv(4), Cmd_Argv(4) + strlen(Cmd_Argv(4)));
+               CL_Locs_AddNode(mins, mins, Cmd_Argv(4));
 }
 
 void CL_Locs_RemoveNearest_f(void)
@@ -1948,7 +1950,36 @@ void CL_Locs_Save_f(void)
        for (loc = cl.locnodes;loc;loc = loc->next)
        {
                if (VectorCompare(loc->mins, loc->maxs))
-                       FS_Printf(outfile, "%.0f %.0f %.0f %s\n", loc->mins[0]*8, loc->mins[1]*8, loc->mins[2]*8, loc->name);
+               {
+                       int len;
+                       const char *s;
+                       const char *in = loc->name;
+                       char name[MAX_INPUTLINE];
+                       for (len = 0;len < (int)sizeof(name) - 1 && *in;)
+                       {
+                               if (*in == ' ') {s = "$loc_name_separator";in++;}
+                               else if (!strncmp(in, "SSG", 3)) {s = "$loc_name_ssg";in += 3;}
+                               else if (!strncmp(in, "NG", 2)) {s = "$loc_name_ng";in += 2;}
+                               else if (!strncmp(in, "SNG", 3)) {s = "$loc_name_sng";in += 3;}
+                               else if (!strncmp(in, "GL", 2)) {s = "$loc_name_gl";in += 2;}
+                               else if (!strncmp(in, "RL", 2)) {s = "$loc_name_rl";in += 2;}
+                               else if (!strncmp(in, "LG", 2)) {s = "$loc_name_lg";in += 2;}
+                               else if (!strncmp(in, "GA", 2)) {s = "$loc_name_ga";in += 2;}
+                               else if (!strncmp(in, "YA", 2)) {s = "$loc_name_ya";in += 2;}
+                               else if (!strncmp(in, "RA", 2)) {s = "$loc_name_ra";in += 2;}
+                               else if (!strncmp(in, "MEGA", 4)) {s = "$loc_name_mh";in += 4;}
+                               else s = NULL;
+                               if (s)
+                               {
+                                       while (len < (int)sizeof(name) - 1 && *s)
+                                               name[len++] = *s++;
+                                       continue;
+                               }
+                               name[len++] = *in++;
+                       }
+                       name[len] = 0;
+                       FS_Printf(outfile, "%.0f %.0f %.0f %s\n", loc->mins[0]*8, loc->mins[1]*8, loc->mins[2]*8, name);
+               }
                else
                        FS_Printf(outfile, "%.1f,%.1f,%.1f,%.1f,%.1f,%.1f,\"%s\"\n", loc->mins[0], loc->mins[1], loc->mins[2], loc->maxs[0], loc->maxs[1], loc->maxs[2], loc->name);
        }
@@ -1957,11 +1988,13 @@ void CL_Locs_Save_f(void)
 
 void CL_Locs_Reload_f(void)
 {
-       int i, linenumber, limit;
+       int i, linenumber, limit, len;
+       const char *s;
        char *filedata, *text, *textend, *linestart, *linetext, *lineend;
        fs_offset_t filesize;
        vec3_t mins, maxs;
        char locfilename[MAX_QPATH];
+       char name[MAX_INPUTLINE];
 
        if (cls.state != ca_connected || !cl.worldmodel)
        {
@@ -2022,36 +2055,72 @@ void CL_Locs_Reload_f(void)
                        // advance through whitespace
                        if (linetext < lineend)
                        {
-                               if (*linetext <= ' ')
-                                       linetext++;
-                               else if (*linetext == ',')
+                               if (*linetext == ',')
                                {
                                        linetext++;
                                        limit = 6;
+                                       // note: comma can be followed by whitespace
+                               }
+                               if (*linetext <= ' ')
+                               {
+                                       // skip whitespace
+                                       while (linetext < lineend && *linetext <= ' ')
+                                               linetext++;
                                }
                        }
                }
                // if this is a quoted name, remove the quotes
-               if (linetext < lineend && *linetext == '"')
+               if (i == 6)
                {
+                       if (linetext >= lineend || *linetext != '"')
+                               continue; // proquake location names are always quoted
                        lineend--;
                        linetext++;
+                       len = min(lineend - linetext, (int)sizeof(name) - 1);
+                       memcpy(name, linetext, len);
+                       name[len] = 0;
+                       // add the box to the list
+                       CL_Locs_AddNode(mins, maxs, name);
                }
-               // valid line parsed
-               if (i == 3 || i == 6)
+               // if a point was parsed, it needs to be scaled down by 8 (since
+               // point-based loc files were invented by a proxy which dealt
+               // directly with quake protocol coordinates, which are *8), turn
+               // it into a box
+               else if (i == 3)
                {
-                       // if a point was parsed, it needs to be scaled down by 8 (since
-                       // point-based loc files were invented by a proxy which dealt
-                       // directly with quake protocol coordinates, which are *8), turn
-                       // it into a box
-                       if (i == 3)
+                       // interpret silly fuhquake macros
+                       for (len = 0;len < (int)sizeof(name) - 1 && linetext < lineend;)
                        {
-                               VectorScale(mins, (1.0 / 8.0), mins);
-                               VectorCopy(mins, maxs);
+                               if (*linetext == '$')
+                               {
+                                       if (linetext + 18 <= lineend && !strncmp(linetext, "$loc_name_separator", 19)) {s = " ";linetext += 19;}
+                                       else if (linetext + 13 <= lineend && !strncmp(linetext, "$loc_name_ssg", 13)) {s = "SSG";linetext += 13;}
+                                       else if (linetext + 12 <= lineend && !strncmp(linetext, "$loc_name_ng", 12)) {s = "NG";linetext += 12;}
+                                       else if (linetext + 13 <= lineend && !strncmp(linetext, "$loc_name_sng", 13)) {s = "SNG";linetext += 13;}
+                                       else if (linetext + 12 <= lineend && !strncmp(linetext, "$loc_name_gl", 12)) {s = "GL";linetext += 12;}
+                                       else if (linetext + 12 <= lineend && !strncmp(linetext, "$loc_name_rl", 12)) {s = "RL";linetext += 12;}
+                                       else if (linetext + 12 <= lineend && !strncmp(linetext, "$loc_name_lg", 12)) {s = "LG";linetext += 12;}
+                                       else if (linetext + 12 <= lineend && !strncmp(linetext, "$loc_name_ga", 12)) {s = "GA";linetext += 12;}
+                                       else if (linetext + 12 <= lineend && !strncmp(linetext, "$loc_name_ya", 12)) {s = "YA";linetext += 12;}
+                                       else if (linetext + 12 <= lineend && !strncmp(linetext, "$loc_name_ra", 12)) {s = "RA";linetext += 12;}
+                                       else if (linetext + 12 <= lineend && !strncmp(linetext, "$loc_name_mh", 12)) {s = "MEGA";linetext += 12;}
+                                       else s = NULL;
+                                       if (s)
+                                       {
+                                               while (len < (int)sizeof(name) - 1 && *s)
+                                                       name[len++] = *s++;
+                                               continue;
+                                       }
+                               }
+                               name[len++] = *linetext++;
                        }
-                       // add the point or box to the list
-                       CL_Locs_AddNode(mins, maxs, linetext, lineend);
+                       name[len] = 0;
+                       // add the point to the list
+                       VectorScale(mins, (1.0 / 8.0), mins);
+                       CL_Locs_AddNode(mins, mins, name);
                }
+               else
+                       continue;
        }
 }
 
@@ -2119,10 +2188,8 @@ void CL_Init (void)
        Cmd_AddCommand ("playdemo", CL_PlayDemo_f, "watch a demo file");
        Cmd_AddCommand ("timedemo", CL_TimeDemo_f, "play back a demo as fast as possible and save statistics to benchmark.log");
 
-#ifdef AUTODEMO_BROKEN
        Cvar_RegisterVariable (&cl_autodemo);
        Cvar_RegisterVariable (&cl_autodemo_nameformat);
-#endif
 
        Cmd_AddCommand ("fog", CL_Fog_f, "set global fog parameters (density red green blue)");