HomeSort by relevance Sort by last modified time
    Searched refs:pr_global_struct (Results 1 - 22 of 22) sorted by null

  /external/quake/quake/src/WinQuake/
pr_cmds.cpp 65 ed = PROG_TO_EDICT(pr_global_struct->self);
89 ed = PROG_TO_EDICT(pr_global_struct->self);
108 AngleVectors (G_VECTOR(OFS_PARM0), pr_global_struct->v_forward, pr_global_struct->v_right, pr_global_struct->v_up);
623 pr_global_struct->trace_allsolid = trace.allsolid;
624 pr_global_struct->trace_startsolid = trace.startsolid;
625 pr_global_struct->trace_fraction = trace.fraction;
626 pr_global_struct->trace_inwater = trace.inwater;
627 pr_global_struct->trace_inopen = trace.inopen
    [all...]
sv_phys.cpp 139 pr_global_struct->time = thinktime;
140 pr_global_struct->self = EDICT_TO_PROG(ent);
141 pr_global_struct->other = EDICT_TO_PROG(sv.edicts);
157 old_self = pr_global_struct->self;
158 old_other = pr_global_struct->other;
160 pr_global_struct->time = sv.time;
163 pr_global_struct->self = EDICT_TO_PROG(e1);
164 pr_global_struct->other = EDICT_TO_PROG(e2);
170 pr_global_struct->self = EDICT_TO_PROG(e2);
171 pr_global_struct->other = EDICT_TO_PROG(e1)
    [all...]
host_cmd.cpp 128 if (pr_global_struct->deathmatch && !host_client->privileged)
146 if (pr_global_struct->deathmatch && !host_client->privileged)
166 if (pr_global_struct->deathmatch && !host_client->privileged)
198 if (pr_global_struct->deathmatch && !host_client->privileged)
1213 pr_global_struct->time = sv.time;
1214 pr_global_struct->self = EDICT_TO_PROG(sv_player);
1215 PR_ExecuteProgram (pr_global_struct->ClientKill);
1323 (&pr_global_struct->parm1)[i] = host_client->spawn_parms[i];
1327 pr_global_struct->time = sv.time;
1328 pr_global_struct->self = EDICT_TO_PROG(sv_player)
    [all...]
sv_main.cpp 287 PR_ExecuteProgram (pr_global_struct->SetNewParms);
289 client->spawn_parms[i] = (&pr_global_struct->parm1)[i];
634 items = (int)ent->u.v.items | ((int)pr_global_struct->serverflags << 28);
1019 svs.serverflags = (int) pr_global_struct->serverflags;
1027 pr_global_struct->self = EDICT_TO_PROG(host_client->edict);
1028 PR_ExecuteProgram (pr_global_struct->SetChangeParms);
1030 host_client->spawn_parms[j] = (&pr_global_struct->parm1)[j];
1166 pr_global_struct->coop = coop.value;
1168 pr_global_struct->deathmatch = deathmatch.value;
1170 pr_global_struct->mapname = sv.name - pr_strings
    [all...]
pr_exec.cpp 375 if (pr_global_struct->self)
376 ED_Print (PROG_TO_EDICT(pr_global_struct->self));
650 ed = PROG_TO_EDICT(pr_global_struct->self);
652 ed->u.v.nextthink = pr_global_struct->time + 0.05;
654 ed->u.v.nextthink = pr_global_struct->time + 0.1;
host.cpp 363 saveSelf = pr_global_struct->self;
364 pr_global_struct->self = EDICT_TO_PROG(host_client->edict);
365 PR_ExecuteProgram (pr_global_struct->ClientDisconnect);
366 pr_global_struct->self = saveSelf;
558 pr_global_struct->frametime = host_frametime;
575 pr_global_struct->frametime = host_frametime;
604 pr_global_struct->frametime = host_frametime;
progs.h 64 extern globalvars_t *pr_global_struct;
65 extern float *pr_globals; // same as pr_global_struct
world.cpp 299 old_self = pr_global_struct->self;
300 old_other = pr_global_struct->other;
302 pr_global_struct->self = EDICT_TO_PROG(touch);
303 pr_global_struct->other = EDICT_TO_PROG(ent);
304 pr_global_struct->time = sv.time;
307 pr_global_struct->self = old_self;
308 pr_global_struct->other = old_other;
pr_edict.cpp 30 globalvars_t *pr_global_struct; variable
31 float *pr_globals; // same as pr_global_struct
913 pr_global_struct->time = sv.time;
972 pr_global_struct->self = EDICT_TO_PROG(ent);
1018 pr_global_struct = (globalvars_t *)((byte *)progs + progs->ofs_globals);
1019 pr_globals = (float *)pr_global_struct;
sv_move.cpp 107 pr_global_struct->trace_normal is set to the normal of the blocking wall
401 ent = PROG_TO_EDICT(pr_global_struct->self);
net_dgrm.cpp 117 if (pr_global_struct->deathmatch && !host_client->privileged)
    [all...]
  /external/quake/quake/src/QW/server/
pr_cmds.c 65 ed = PROG_TO_EDICT(pr_global_struct->self);
88 ed = PROG_TO_EDICT(pr_global_struct->self);
107 AngleVectors (G_VECTOR(OFS_PARM0), pr_global_struct->v_forward, pr_global_struct->v_right, pr_global_struct->v_up);
531 pr_global_struct->trace_allsolid = trace.allsolid;
532 pr_global_struct->trace_startsolid = trace.startsolid;
533 pr_global_struct->trace_fraction = trace.fraction;
534 pr_global_struct->trace_inwater = trace.inwater;
535 pr_global_struct->trace_inopen = trace.inopen
    [all...]
sv_phys.c 143 pr_global_struct->time = thinktime;
144 pr_global_struct->self = EDICT_TO_PROG(ent);
145 pr_global_struct->other = EDICT_TO_PROG(sv.edicts);
166 old_self = pr_global_struct->self;
167 old_other = pr_global_struct->other;
169 pr_global_struct->time = sv.time;
172 pr_global_struct->self = EDICT_TO_PROG(e1);
173 pr_global_struct->other = EDICT_TO_PROG(e2);
179 pr_global_struct->self = EDICT_TO_PROG(e2);
180 pr_global_struct->other = EDICT_TO_PROG(e1)
    [all...]
sv_user.c 372 ClientReliableWrite_Long (host_client, pr_global_struct->total_secrets);
376 ClientReliableWrite_Long (host_client, pr_global_struct->total_monsters);
380 ClientReliableWrite_Long (host_client, pr_global_struct->found_secrets);
384 ClientReliableWrite_Long (host_client, pr_global_struct->killed_monsters);
450 (&pr_global_struct->parm1)[i] = host_client->spawn_parms[i];
453 pr_global_struct->time = sv.time;
454 pr_global_struct->self = EDICT_TO_PROG(sv_player);
462 (&pr_global_struct->parm1)[i] = host_client->spawn_parms[i];
465 pr_global_struct->time = sv.time;
466 pr_global_struct->self = EDICT_TO_PROG(sv_player)
    [all...]
sv_init.c 158 svs.serverflags = pr_global_struct->serverflags;
169 pr_global_struct->self = EDICT_TO_PROG(host_client->edict);
170 PR_ExecuteProgram (pr_global_struct->SetChangeParms);
172 host_client->spawn_parms[j] = (&pr_global_struct->parm1)[j];
379 pr_global_struct->mapname = PR_SetString(sv.name);
381 pr_global_struct->serverflags = svs.serverflags;
progs.h 59 extern globalvars_t *pr_global_struct;
60 extern float *pr_globals; // same as pr_global_struct
world.c 289 old_self = pr_global_struct->self;
290 old_other = pr_global_struct->other;
292 pr_global_struct->self = EDICT_TO_PROG(touch);
293 pr_global_struct->other = EDICT_TO_PROG(ent);
294 pr_global_struct->time = sv.time;
297 pr_global_struct->self = old_self;
298 pr_global_struct->other = old_other;
pr_exec.c 375 if (pr_global_struct->self)
376 ED_Print (PROG_TO_EDICT(pr_global_struct->self));
650 ed = PROG_TO_EDICT(pr_global_struct->self);
651 ed->v.nextthink = pr_global_struct->time + 0.1;
pr_edict.c 30 globalvars_t *pr_global_struct; variable
31 float *pr_globals; // same as pr_global_struct
896 pr_global_struct->time = sv.time;
944 pr_global_struct->self = EDICT_TO_PROG(ent);
996 pr_global_struct = (globalvars_t *)((byte *)progs + progs->ofs_globals);
997 pr_globals = (float *)pr_global_struct;
sv_main.c 193 pr_global_struct->self = EDICT_TO_PROG(drop->edict);
194 PR_ExecuteProgram (pr_global_struct->ClientDisconnect);
200 pr_global_struct->self = EDICT_TO_PROG(drop->edict);
701 PR_ExecuteProgram (pr_global_struct->SetNewParms);
703 newcl->spawn_parms[i] = (&pr_global_struct->parm1)[i];
    [all...]
sv_move.c 107 pr_global_struct->trace_normal is set to the normal of the blocking wall
398 ent = PROG_TO_EDICT(pr_global_struct->self);
sv_send.c 543 stats[STAT_ITEMS] = (int)ent->v.items | ((int)pr_global_struct->serverflags << 28);

Completed in 1012 milliseconds