X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=input.h;h=3f98f68d98014af88b4c1b2e8f8ddf5ec42b9c46;hb=c4e92b9982882076e7b35e55fb43bd1a0dbd340d;hp=f48aa9c4eec2ec13278d821b8f8d781d71b7c5b9;hpb=28620abb9561ae4dfd3626c69912af0aa2e941df;p=xonotic%2Fdarkplaces.git diff --git a/input.h b/input.h index f48aa9c4..3f98f68d 100644 --- a/input.h +++ b/input.h @@ -8,7 +8,7 @@ of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. @@ -26,26 +26,28 @@ extern cvar_t in_pitch_min; extern cvar_t in_pitch_max; extern qboolean in_client_mouse; +extern float in_windowmouse_x, in_windowmouse_y; extern float in_mouse_x, in_mouse_y; -//enum {input_game,input_message,input_menu} input_dest; +//enum input_dest_e {input_game,input_message,input_menu} input_dest; -void IN_Commands (void); -// oportunity for devices to stick commands on the script buffer - -// AK added to allow mouse movement for the menu -void IN_ProcessMove(usercmd_t *cmd); - -void IN_Move (usercmd_t *cmd); +void IN_Move (void); // add additional movement on top of the keyboard move cmd -void IN_PreMove(void); -void IN_PostMove(void); - -void IN_Mouse(usercmd_t *cmd, float mx, float my); - -void IN_ClearStates (void); -// restores all button and position states to defaults +#define IN_BESTWEAPON_MAX 32 +typedef struct +{ + char name[32]; + int impulse; + int activeweaponcode; + int weaponbit; + int ammostat; + int ammomin; + // TODO add a parameter for the picture to be used by the sbar, and use it there +} +in_bestweapon_info_t; +extern in_bestweapon_info_t in_bestweapon_info[IN_BESTWEAPON_MAX]; +void IN_BestWeapon_ResetData(void); // call before each map so QC can start from a clean state #endif