OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:movevars
(Results
1 - 6
of
6
) sorted by null
/external/quake/quake/src/QW/client/
pmove.c
24
movevars_t
movevars
;
variable
346
friction =
movevars
.friction;
365
drop += speed*
movevars
.waterfriction*waterlevel*frametime;
368
control = speed <
movevars
.stopspeed ?
movevars
.stopspeed : speed;
467
if (wishspeed >
movevars
.maxspeed)
469
VectorScale (wishvel,
movevars
.maxspeed/wishspeed, wishvel);
470
wishspeed =
movevars
.maxspeed;
479
PM_Accelerate (wishdir, wishspeed,
movevars
.wateraccelerate);
530
if (wishspeed >
movevars
.maxspeed
[
all
...]
pmove.h
88
extern movevars_t
movevars
;
cl_demo.c
444
// send the
movevars
445
MSG_WriteFloat(&buf,
movevars
.gravity);
446
MSG_WriteFloat(&buf,
movevars
.stopspeed);
447
MSG_WriteFloat(&buf,
movevars
.maxspeed);
448
MSG_WriteFloat(&buf,
movevars
.spectatormaxspeed);
449
MSG_WriteFloat(&buf,
movevars
.accelerate);
450
MSG_WriteFloat(&buf,
movevars
.airaccelerate);
451
MSG_WriteFloat(&buf,
movevars
.wateraccelerate);
452
MSG_WriteFloat(&buf,
movevars
.friction);
453
MSG_WriteFloat(&buf,
movevars
.waterfriction)
[
all
...]
cl_parse.c
585
// get the
movevars
586
movevars
.gravity = MSG_ReadFloat();
587
movevars
.stopspeed = MSG_ReadFloat();
588
movevars
.maxspeed = MSG_ReadFloat();
589
movevars
.spectatormaxspeed = MSG_ReadFloat();
590
movevars
.accelerate = MSG_ReadFloat();
591
movevars
.airaccelerate = MSG_ReadFloat();
592
movevars
.wateraccelerate = MSG_ReadFloat();
593
movevars
.friction = MSG_ReadFloat();
594
movevars
.waterfriction = MSG_ReadFloat()
[
all
...]
/external/quake/quake/src/QW/server/
sv_phys.c
379
ent->v.velocity[2] -= scale *
movevars
.gravity * host_frametime;
797
if (ent->v.velocity[2] <
movevars
.gravity*-0.1)
937
movevars
.gravity = sv_gravity.value;
938
movevars
.stopspeed = sv_stopspeed.value;
939
movevars
.maxspeed = sv_maxspeed.value;
940
movevars
.spectatormaxspeed = sv_spectatormaxspeed.value;
941
movevars
.accelerate = sv_accelerate.value;
942
movevars
.airaccelerate = sv_airaccelerate.value;
943
movevars
.wateraccelerate = sv_wateraccelerate.value;
944
movevars
.friction = sv_friction.value;
[
all
...]
sv_user.c
98
// send the
movevars
99
MSG_WriteFloat(&host_client->netchan.message,
movevars
.gravity);
100
MSG_WriteFloat(&host_client->netchan.message,
movevars
.stopspeed);
101
MSG_WriteFloat(&host_client->netchan.message,
movevars
.maxspeed);
102
MSG_WriteFloat(&host_client->netchan.message,
movevars
.spectatormaxspeed);
103
MSG_WriteFloat(&host_client->netchan.message,
movevars
.accelerate);
104
MSG_WriteFloat(&host_client->netchan.message,
movevars
.airaccelerate);
105
MSG_WriteFloat(&host_client->netchan.message,
movevars
.wateraccelerate);
106
MSG_WriteFloat(&host_client->netchan.message,
movevars
.friction);
107
MSG_WriteFloat(&host_client->netchan.message,
movevars
.waterfriction)
[
all
...]
Completed in 83 milliseconds