2022-09-18 15:37:21 +00:00
|
|
|
#if !defined(vr_client_info_h)
|
|
|
|
#define vr_client_info_h
|
|
|
|
|
|
|
|
#define NUM_WEAPON_SAMPLES 10
|
|
|
|
#define WEAPON_RECOIL 15.0f;
|
|
|
|
|
|
|
|
typedef struct {
|
2022-09-19 21:46:47 +00:00
|
|
|
bool screen;
|
2022-09-18 15:37:21 +00:00
|
|
|
float fov;
|
2022-09-19 21:46:47 +00:00
|
|
|
bool weapon_stabilised;
|
|
|
|
bool right_handed;
|
|
|
|
bool player_moving;
|
|
|
|
bool visible_hud;
|
|
|
|
bool dualwield;
|
2022-09-18 15:37:21 +00:00
|
|
|
int weaponid;
|
|
|
|
int lastweaponid;
|
|
|
|
int backpackitemactive; //0 - nothing, 1 - grenades, 2 - knife, 3 - Binoculars
|
2022-09-19 21:46:47 +00:00
|
|
|
bool mountedgun;
|
2022-09-18 15:37:21 +00:00
|
|
|
|
|
|
|
vec3_t hmdposition;
|
|
|
|
vec3_t hmdposition_last; // Don't use this, it is just for calculating delta!
|
|
|
|
vec3_t hmdposition_delta;
|
|
|
|
|
|
|
|
vec3_t hmdorientation;
|
|
|
|
vec3_t hmdorientation_last; // Don't use this, it is just for calculating delta!
|
|
|
|
vec3_t hmdorientation_delta;
|
|
|
|
|
|
|
|
vec3_t weaponangles_knife;
|
|
|
|
vec3_t weaponangles;
|
|
|
|
vec3_t weaponangles_last; // Don't use this, it is just for calculating delta!
|
|
|
|
vec3_t weaponangles_delta;
|
|
|
|
|
|
|
|
float weapon_recoil; // recoil effect to improve the default
|
|
|
|
|
|
|
|
vec3_t current_weaponoffset;
|
|
|
|
vec3_t calculated_weaponoffset;
|
|
|
|
float current_weaponoffset_timestamp;
|
|
|
|
vec3_t weaponoffset_history[NUM_WEAPON_SAMPLES];
|
|
|
|
float weaponoffset_history_timestamp[NUM_WEAPON_SAMPLES];
|
|
|
|
|
2022-09-19 21:46:47 +00:00
|
|
|
bool pistol; // True if the weapon is a pistol
|
2022-09-18 15:37:21 +00:00
|
|
|
|
|
|
|
//Lots of scope weapon stuff
|
2022-09-19 21:46:47 +00:00
|
|
|
bool scopeengaged; // Scope has been engaged on a scoped weapon
|
|
|
|
bool scopedweapon; // Weapon scope is available
|
|
|
|
bool scopedetached; // Scope has been detached from weapon
|
|
|
|
bool detachablescope; // Scope can be detached from weapon
|
2022-09-18 15:37:21 +00:00
|
|
|
|
2022-09-19 21:46:47 +00:00
|
|
|
bool hasbinoculars;
|
2022-09-18 15:37:21 +00:00
|
|
|
|
2022-09-19 21:46:47 +00:00
|
|
|
bool velocitytriggered; // Weapon attack triggered by velocity (knife)
|
2022-09-18 15:37:21 +00:00
|
|
|
|
|
|
|
vec3_t offhandangles;
|
|
|
|
vec3_t offhandangles_last; // Don't use this, it is just for calculating delta!
|
|
|
|
vec3_t offhandangles_delta;
|
|
|
|
|
|
|
|
vec3_t offhandoffset;
|
|
|
|
|
|
|
|
//
|
|
|
|
// Teleport Stuff
|
|
|
|
//
|
2022-09-19 21:46:47 +00:00
|
|
|
bool teleportenabled;
|
|
|
|
bool teleportseek; // player looking to teleport
|
|
|
|
bool teleportready; // player pointing to a valid teleport location
|
2022-09-18 15:37:21 +00:00
|
|
|
vec3_t teleportdest; // teleport destination
|
2022-09-19 21:46:47 +00:00
|
|
|
bool teleportexecute; // execute the teleport
|
2022-09-18 15:37:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////
|
|
|
|
// Test stuff for weapon alignment
|
|
|
|
//////////////////////////////////////
|
|
|
|
|
|
|
|
char test_name[256];
|
|
|
|
float test_scale;
|
|
|
|
vec3_t test_angles;
|
|
|
|
vec3_t test_offset;
|
|
|
|
|
|
|
|
} vr_client_info_t;
|
|
|
|
|
|
|
|
#endif //vr_client_info_h
|