2 Copyright (C) 1996-1997 Id Software, Inc.
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 See the GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 // cl_main.c -- client main loop
24 // we need to declare some mouse variables here, because the menu system
25 // references them even when on a unix system.
27 // these two are not intended to be set directly
28 cvar_t cl_name = {"_cl_name", "player", true};
29 cvar_t cl_color = {"_cl_color", "0", true};
30 cvar_t cl_pmodel = {"_cl_pmodel", "0", true};
32 cvar_t cl_shownet = {"cl_shownet","0"}; // can be 0, 1, or 2
33 cvar_t cl_nolerp = {"cl_nolerp","0"};
35 cvar_t lookspring = {"lookspring","0", true};
36 cvar_t lookstrafe = {"lookstrafe","0", true};
37 cvar_t sensitivity = {"sensitivity","3", true};
39 cvar_t m_pitch = {"m_pitch","0.022", true};
40 cvar_t m_yaw = {"m_yaw","0.022", true};
41 cvar_t m_forward = {"m_forward","1", true};
42 cvar_t m_side = {"m_side","0.8", true};
47 // FIXME: put these on hunk?
48 efrag_t cl_efrags[MAX_EFRAGS];
49 entity_t cl_entities[MAX_EDICTS];
50 entity_t cl_static_entities[MAX_STATIC_ENTITIES];
51 lightstyle_t cl_lightstyle[MAX_LIGHTSTYLES];
52 dlight_t cl_dlights[MAX_DLIGHTS];
55 entity_t *cl_visedicts[MAX_VISEDICTS];
63 void CL_ClearState (void)
70 // wipe the entire cl structure
71 memset (&cl, 0, sizeof(cl));
73 SZ_Clear (&cls.message);
76 memset (cl_efrags, 0, sizeof(cl_efrags));
77 memset (cl_entities, 0, sizeof(cl_entities));
78 memset (cl_dlights, 0, sizeof(cl_dlights));
79 memset (cl_lightstyle, 0, sizeof(cl_lightstyle));
80 memset (cl_temp_entities, 0, sizeof(cl_temp_entities));
81 memset (cl_beams, 0, sizeof(cl_beams));
82 // LordHavoc: have to set up the baseline info for alpha and other stuff
83 for (i = 0;i < MAX_EDICTS;i++)
85 cl_entities[i].baseline.alpha = 255;
86 cl_entities[i].baseline.scale = 16;
87 cl_entities[i].baseline.glowsize = 0;
88 cl_entities[i].baseline.glowcolor = 254;
89 cl_entities[i].baseline.colormod = 255;
93 // allocate the efrags and chain together into a free list
95 cl.free_efrags = cl_efrags;
96 for (i=0 ; i<MAX_EFRAGS-1 ; i++)
97 cl.free_efrags[i].entnext = &cl.free_efrags[i+1];
98 cl.free_efrags[i].entnext = NULL;
102 =====================
105 Sends a disconnect message to the server
106 This is also called on Host_Error, so it shouldn't cause any errors
107 =====================
109 void CL_Disconnect (void)
111 // stop sounds (especially looping!)
112 S_StopAllSounds (true);
114 // bring the console down and fade the colors back to normal
115 // SCR_BringDownConsole ();
117 // if running a local server, shut it down
118 if (cls.demoplayback)
120 else if (cls.state == ca_connected)
122 if (cls.demorecording)
125 Con_DPrintf ("Sending clc_disconnect\n");
126 SZ_Clear (&cls.message);
127 MSG_WriteByte (&cls.message, clc_disconnect);
128 NET_SendUnreliableMessage (cls.netcon, &cls.message);
129 SZ_Clear (&cls.message);
130 NET_Close (cls.netcon);
132 cls.state = ca_disconnected;
134 Host_ShutdownServer(false);
137 cls.demoplayback = cls.timedemo = false;
141 void CL_Disconnect_f (void)
145 Host_ShutdownServer (false);
152 =====================
153 CL_EstablishConnection
155 Host should be either "local" or a net address to be passed on
156 =====================
158 void CL_EstablishConnection (char *host)
160 if (cls.state == ca_dedicated)
163 if (cls.demoplayback)
168 cls.netcon = NET_Connect (host);
170 Host_Error ("CL_Connect: connect failed\n");
171 Con_DPrintf ("CL_EstablishConnection: connected to %s\n", host);
173 cls.demonum = -1; // not in the demo loop now
174 cls.state = ca_connected;
175 cls.signon = 0; // need all the signon messages before playing
178 extern int numgltextures;
182 =====================
185 An svc_signonnum has been received, perform a client side setup
186 =====================
188 void CL_SignonReply (void)
192 Con_DPrintf ("CL_SignonReply: %i\n", cls.signon);
197 MSG_WriteByte (&cls.message, clc_stringcmd);
198 MSG_WriteString (&cls.message, "prespawn");
202 MSG_WriteByte (&cls.message, clc_stringcmd);
203 MSG_WriteString (&cls.message, va("name \"%s\"\n", cl_name.string));
205 MSG_WriteByte (&cls.message, clc_stringcmd);
206 MSG_WriteString (&cls.message, va("color %i %i\n", ((int)cl_color.value)>>4, ((int)cl_color.value)&15));
210 MSG_WriteByte (&cls.message, clc_stringcmd);
211 MSG_WriteString (&cls.message, va("pmodel %f\n", cl_pmodel.value));
214 MSG_WriteByte (&cls.message, clc_stringcmd);
215 sprintf (str, "spawn %s", cls.spawnparms);
216 MSG_WriteString (&cls.message, str);
220 MSG_WriteByte (&cls.message, clc_stringcmd);
221 MSG_WriteString (&cls.message, "begin");
222 Cache_Report (); // print remaining memory
226 SCR_EndLoadingPlaque (); // allow normal screen updates
227 // LordHavoc: debugging purposes
228 Con_DPrintf("GLQuake texture slots in use: %i : %i : %i texels\n", texture_extension_number, numgltextures, texels);
234 =====================
237 Called to play the next demo in the demo loop
238 =====================
240 void CL_NextDemo (void)
244 if (cls.demonum == -1)
245 return; // don't play demos
247 SCR_BeginLoadingPlaque ();
249 if (!cls.demos[cls.demonum][0] || cls.demonum == MAX_DEMOS)
252 if (!cls.demos[cls.demonum][0])
254 Con_Printf ("No demos listed with startdemos\n");
260 sprintf (str,"playdemo %s\n", cls.demos[cls.demonum]);
261 Cbuf_InsertText (str);
270 void CL_PrintEntities_f (void)
275 for (i=0,ent=cl_entities ; i<cl.num_entities ; i++,ent++)
277 Con_Printf ("%3i:",i);
280 Con_Printf ("EMPTY\n");
283 Con_Printf ("%s:%2i (%5.1f,%5.1f,%5.1f) [%5.1f %5.1f %5.1f]\n"
284 ,ent->model->name,ent->frame, ent->origin[0], ent->origin[1], ent->origin[2], ent->angles[0], ent->angles[1], ent->angles[2]);
293 Debugging tool, just flashes the screen
308 VID_SetPalette (host_basepal);
311 for (c=0 ; c<768 ; c+=3)
317 VID_SetPalette (pal);
321 for (c=0 ; c<768 ; c+=3)
327 VID_SetPalette (pal);
338 dlight_t *CL_AllocDlight (int key)
343 // first look for an exact key match
347 for (i=0 ; i<MAX_DLIGHTS ; i++, dl++)
351 memset (dl, 0, sizeof(*dl));
358 // then look for anything else
360 for (i=0 ; i<MAX_DLIGHTS ; i++, dl++)
362 if (dl->die < cl.time)
364 memset (dl, 0, sizeof(*dl));
371 memset (dl, 0, sizeof(*dl));
383 void CL_DecayLights (void)
389 time = cl.time - cl.oldtime;
392 for (i=0 ; i<MAX_DLIGHTS ; i++, dl++)
394 if (dl->die < cl.time || !dl->radius)
397 dl->radius -= time*dl->decay;
408 Determines the fraction between the last two messages that the objects
412 float CL_LerpPoint (void)
416 f = cl.mtime[0] - cl.mtime[1];
418 if (!f || cl_nolerp.value || cls.timedemo || sv.active)
420 cl.time = cl.mtime[0];
425 { // dropped packet, or start of demo
426 cl.mtime[1] = cl.mtime[0] - 0.1;
429 frac = (cl.time - cl.mtime[1]) / f;
430 //Con_Printf ("frac: %f\n",frac);
436 cl.time = cl.mtime[1];
437 // Con_Printf ("low frac\n");
446 cl.time = cl.mtime[0];
447 // Con_Printf ("high frac\n");
463 void R_RocketTrail2 (vec3_t start, vec3_t end, int color, entity_t *ent);
464 void CL_RelinkEntities (void)
475 // determine partial update time
476 frac = CL_LerpPoint ();
481 // interpolate player info
483 for (i=0 ; i<3 ; i++)
484 cl.velocity[i] = cl.mvelocity[1][i] + frac * (cl.mvelocity[0][i] - cl.mvelocity[1][i]);
486 if (cls.demoplayback)
488 // interpolate the angles
489 for (j=0 ; j<3 ; j++)
491 d = cl.mviewangles[0][j] - cl.mviewangles[1][j];
496 cl.viewangles[j] = cl.mviewangles[1][j] + frac*d;
500 bobjrotate = anglemod(100*cl.time);
502 // start on the entity after the world
503 for (i=1,ent=cl_entities+1 ; i<cl.num_entities ; i++,ent++)
508 R_RemoveEfrags (ent); // just became empty
512 // if the object wasn't included in the last packet, remove it
513 if (ent->msgtime != cl.mtime[0])
519 VectorCopy (ent->origin, oldorg);
522 { // the entity was not updated in the last message
523 // so move to the final spot
524 VectorCopy (ent->msg_origins[0], ent->origin);
525 VectorCopy (ent->msg_angles[0], ent->angles);
528 { // if the delta is large, assume a teleport and don't lerp
530 for (j=0 ; j<3 ; j++)
532 delta[j] = ent->msg_origins[0][j] - ent->msg_origins[1][j];
533 // LordHavoc: increased lerp tolerance from 100 to 200
534 if (delta[j] > 200 || delta[j] < -200)
535 f = 1; // assume a teleportation, not a motion
538 // interpolate the origin and angles
539 for (j=0 ; j<3 ; j++)
541 ent->origin[j] = ent->msg_origins[1][j] + f*delta[j];
543 d = ent->msg_angles[0][j] - ent->msg_angles[1][j];
548 ent->angles[j] = ent->msg_angles[1][j] + f*d;
553 if (ent->effects & EF_BRIGHTFIELD)
554 R_EntityParticles (ent);
555 if (ent->effects & EF_MUZZLEFLASH)
559 dl = CL_AllocDlight (i);
560 VectorCopy (ent->origin, dl->origin);
562 AngleVectors (ent->angles, fv, rv, uv);
564 VectorMA (dl->origin, 18, fv, dl->origin);
565 dl->radius = 200 + (rand()&31);
567 dl->die = cl.time + 0.1;
568 dl->color[0] = 1.0;dl->color[1] = 1.0;dl->color[2] = 1.0;
570 if (ent->effects & EF_BRIGHTLIGHT)
572 dl = CL_AllocDlight (i);
573 VectorCopy (ent->origin, dl->origin);
575 dl->radius = 400 + (rand()&31);
576 dl->die = cl.time + 0.001;
577 dl->color[0] = 1.0;dl->color[1] = 1.0;dl->color[2] = 1.0;
579 if (ent->effects & EF_DIMLIGHT)
581 dl = CL_AllocDlight (i);
582 VectorCopy (ent->origin, dl->origin);
583 dl->radius = 200 + (rand()&31);
584 dl->die = cl.time + 0.001;
585 dl->color[0] = 1.0;dl->color[1] = 1.0;dl->color[2] = 1.0;
587 // LordHavoc: added EF_RED and EF_BLUE
588 if (ent->effects & EF_RED) // red
590 if (ent->effects & EF_BLUE) // magenta
592 dl = CL_AllocDlight (i);
593 VectorCopy (ent->origin, dl->origin);
594 dl->radius = 200 + (rand()&31);
595 dl->die = cl.time + 0.001;
596 dl->color[0] = 0.7;dl->color[1] = 0.07;dl->color[2] = 0.7;
600 dl = CL_AllocDlight (i);
601 VectorCopy (ent->origin, dl->origin);
602 dl->radius = 200 + (rand()&31);
603 dl->die = cl.time + 0.001;
604 dl->color[0] = 0.8;dl->color[1] = 0.05;dl->color[2] = 0.05;
607 else if (ent->effects & EF_BLUE) // blue
609 dl = CL_AllocDlight (i);
610 VectorCopy (ent->origin, dl->origin);
611 dl->radius = 200 + (rand()&31);
612 dl->die = cl.time + 0.001;
613 dl->color[0] = 0.05;dl->color[1] = 0.05;dl->color[2] = 0.8;
616 if (ent->model->flags) // LordHavoc: if the model has no flags, don't check each
618 // rotate binary objects locally
619 if (ent->model->flags & EF_ROTATE)
620 ent->angles[1] = bobjrotate;
621 if (ent->model->flags & EF_GIB)
622 R_RocketTrail (oldorg, ent->origin, 2, ent);
623 else if (ent->model->flags & EF_ZOMGIB)
624 R_RocketTrail (oldorg, ent->origin, 4, ent);
625 else if (ent->model->flags & EF_TRACER)
626 R_RocketTrail (oldorg, ent->origin, 3, ent);
627 else if (ent->model->flags & EF_TRACER2)
628 R_RocketTrail (oldorg, ent->origin, 5, ent);
629 else if (ent->model->flags & EF_ROCKET)
631 R_RocketTrail (oldorg, ent->origin, 0, ent);
632 dl = CL_AllocDlight (i);
633 VectorCopy (ent->origin, dl->origin);
635 dl->die = cl.time + 0.001;
636 dl->color[0] = 1.0;dl->color[1] = 0.8;dl->color[2] = 0.4;
638 else if (ent->model->flags & EF_GRENADE)
640 if (ent->alpha == -1) // LordHavoc: Nehahra dem compatibility
641 R_RocketTrail (oldorg, ent->origin, 7, ent);
643 R_RocketTrail (oldorg, ent->origin, 1, ent);
645 else if (ent->model->flags & EF_TRACER3)
646 R_RocketTrail (oldorg, ent->origin, 6, ent);
648 if (ent->glowsize) // LordHavoc: customizable glow
650 dl = CL_AllocDlight (i);
651 VectorCopy (ent->origin, dl->origin);
652 dl->dark = ent->glowsize < 0; // darklight
653 dl->radius = ent->glowsize;
656 if (ent->glowtrail) // LordHavoc: all darklights leave black trails
657 R_RocketTrail2 (oldorg, ent->origin, 0, ent);
658 dl->radius = -ent->glowsize;
660 else if (ent->glowtrail) // LordHavoc: customizable glow and trail
661 R_RocketTrail2 (oldorg, ent->origin, ent->glowcolor, ent);
662 dl->die = cl.time + 0.001;
663 tempcolor = (byte *)&d_8to24table[ent->glowcolor];
664 dl->color[0] = tempcolor[0]*(1.0/255.0);dl->color[1] = tempcolor[1]*(1.0/255.0);dl->color[2] = tempcolor[2]*(1.0/255.0);
666 else if (ent->glowtrail) // LordHavoc: customizable glow and trail
667 R_RocketTrail2 (oldorg, ent->origin, ent->glowcolor, ent);
669 ent->forcelink = false;
671 if (i == cl.viewentity && !chase_active.value)
674 // LordHavoc: enabled EF_NODRAW
675 if (!ent->model || ent->effects & EF_NODRAW)
677 if (cl_numvisedicts < MAX_VISEDICTS)
679 cl_visedicts[cl_numvisedicts] = ent;
691 Read all incoming data from the server
694 int CL_ReadFromServer (void)
698 cl.oldtime = cl.time;
699 cl.time += host_frametime;
703 ret = CL_GetMessage ();
705 Host_Error ("CL_ReadFromServer: lost server connection");
709 cl.last_received_message = realtime;
710 CL_ParseServerMessage ();
711 } while (ret && cls.state == ca_connected);
713 if (cl_shownet.value)
716 CL_RelinkEntities ();
720 // bring the links up to date
730 void CL_SendCmd (void)
734 if (cls.state != ca_connected)
737 if (cls.signon == SIGNONS)
739 // get basic movement from keyboard
742 // allow mice or other external controllers to add to the move
745 // send the unreliable message
750 if (cls.demoplayback)
752 SZ_Clear (&cls.message);
756 // send the reliable message
757 if (!cls.message.cursize)
758 return; // no message at all
760 if (!NET_CanSendMessage (cls.netcon))
762 Con_DPrintf ("CL_WriteToServer: can't send\n");
766 if (NET_SendMessage (cls.netcon, &cls.message) == -1)
767 Host_Error ("CL_WriteToServer: lost server connection");
769 SZ_Clear (&cls.message);
772 // LordHavoc: pausedemo command
773 void CL_PauseDemo_f (void)
775 cls.demopaused = !cls.demopaused;
777 Con_Printf("Demo paused\n");
779 Con_Printf("Demo unpaused\n");
783 ======================
785 LordHavoc: Intended for Nehahra, I personally think this is dumb, but Mindcrime won't listen.
786 ======================
788 void CL_PModel_f (void)
793 if (Cmd_Argc () == 1)
795 Con_Printf ("\"pmodel\" is \"%s\"\n", cl_pmodel.string);
798 i = atoi(Cmd_Argv(1));
800 if (cmd_source == src_command)
802 if (cl_pmodel.value == i)
804 Cvar_SetValue ("_cl_pmodel", i);
805 if (cls.state == ca_connected)
806 Cmd_ForwardToServer ();
810 host_client->pmodel = i;
811 if ((val = GETEDICTFIELDVALUE(host_client->edict, eval_pmodel)))
816 ======================
818 ======================
820 extern float fog_density, fog_red, fog_green, fog_blue;
823 if (Cmd_Argc () == 1)
825 Con_Printf ("\"fog\" is \"%f %f %f %f\"\n", fog_density, fog_red, fog_green, fog_blue);
828 fog_density = atof(Cmd_Argv(1));
829 fog_red = atof(Cmd_Argv(2));
830 fog_green = atof(Cmd_Argv(3));
831 fog_blue = atof(Cmd_Argv(4));
834 cvar_t demo_nehahra = {"demo_nehahra", "0"};
843 SZ_Alloc (&cls.message, 1024);
849 // register our commands
851 Cvar_RegisterVariable (&cl_name);
852 Cvar_RegisterVariable (&cl_color);
853 Cvar_RegisterVariable (&cl_pmodel);
854 Cvar_RegisterVariable (&cl_upspeed);
855 Cvar_RegisterVariable (&cl_forwardspeed);
856 Cvar_RegisterVariable (&cl_backspeed);
857 Cvar_RegisterVariable (&cl_sidespeed);
858 Cvar_RegisterVariable (&cl_movespeedkey);
859 Cvar_RegisterVariable (&cl_yawspeed);
860 Cvar_RegisterVariable (&cl_pitchspeed);
861 Cvar_RegisterVariable (&cl_anglespeedkey);
862 Cvar_RegisterVariable (&cl_shownet);
863 Cvar_RegisterVariable (&cl_nolerp);
864 Cvar_RegisterVariable (&lookspring);
865 Cvar_RegisterVariable (&lookstrafe);
866 Cvar_RegisterVariable (&sensitivity);
868 Cvar_RegisterVariable (&m_pitch);
869 Cvar_RegisterVariable (&m_yaw);
870 Cvar_RegisterVariable (&m_forward);
871 Cvar_RegisterVariable (&m_side);
873 // Cvar_RegisterVariable (&cl_autofire);
875 Cmd_AddCommand ("entities", CL_PrintEntities_f);
876 Cmd_AddCommand ("disconnect", CL_Disconnect_f);
877 Cmd_AddCommand ("record", CL_Record_f);
878 Cmd_AddCommand ("stop", CL_Stop_f);
879 Cmd_AddCommand ("playdemo", CL_PlayDemo_f);
880 Cmd_AddCommand ("timedemo", CL_TimeDemo_f);
882 Cmd_AddCommand ("fog", CL_Fog_f);
884 // LordHavoc: added pausedemo
885 Cmd_AddCommand ("pausedemo", CL_PauseDemo_f);
886 // LordHavoc: added pmodel command (like name, etc, only intended for Nehahra)
887 Cmd_AddCommand ("pmodel", CL_PModel_f);
888 // LordHavoc: added demo_nehahra cvar
889 Cvar_RegisterVariable (&demo_nehahra);
891 Cvar_SetValue("demo_nehahra", 1);