Skip to content
Snippets Groups Projects
Select Git revision
  • 1d5d6ead651174a10f554e5a27ae0caa6511e2c6
  • next default protected
  • personal-amalgamate
  • ogl-palette-update
  • rphys-update
  • overlay-fpcam
  • inputviewer-toggle
  • master
  • ogl-pal
  • trace
  • uncapped
  • personal
  • palette
  • shadernmus
  • missing-gcc-flags
  • g_findmap-lua
  • pictureformats
  • sprite-fof-plane-sorting-question-mark
  • opengl-skydome-fixes
  • patch-cache-refactor
  • video-refactor
  • SRB2_release_2.2.6
  • SRB2_release_2.2.5
  • SRB2_release_2.2.4
  • SRB2_release_2.2.3
  • SRB2_release_2.2.2
  • SRB2_release_2.2.1
  • SRB2_release_2.2.0
  • SRB2_release_2.1.25
  • SRB2_release_2.1.24
  • SRB2_release_2.1.23
  • SRB2_release_2.1.22
  • SRB2_release_2.1.21
  • SRB2_release_2.1.20
  • SRB2_release_2.1.19
  • SRB2_release_2.1.18
  • td-release-v1.0.0
  • SRB2_release_2.1.17
  • SRB2_release_2.1.16a
  • SRB2_release_2.1.16
  • SRB2_release_2.1.15
41 results

lua_hooklib.c

Blame
  • Forked from STJr / SRB2
    Source project has a limited visibility.
    d_netcmd.h 6.05 KiB
    // SONIC ROBO BLAST 2
    //-----------------------------------------------------------------------------
    // Copyright (C) 1998-2000 by DooM Legacy Team.
    // Copyright (C) 1999-2023 by Sonic Team Junior.
    //
    // This program is free software distributed under the
    // terms of the GNU General Public License, version 2.
    // See the 'LICENSE' file for more details.
    //-----------------------------------------------------------------------------
    /// \file  d_netcmd.h
    /// \brief host/client network commands
    ///        commands are executed through the command buffer
    ///        like console commands
    
    #ifndef __D_NETCMD__
    #define __D_NETCMD__
    
    #include "command.h"
    
    // console vars
    extern consvar_t cv_playername;
    extern consvar_t cv_playercolor;
    extern consvar_t cv_skin;
    // secondary splitscreen player
    extern consvar_t cv_playername2;
    extern consvar_t cv_playercolor2;
    extern consvar_t cv_skin2;
    // saved versions of the above six
    extern consvar_t cv_defaultplayercolor;
    extern consvar_t cv_defaultskin;
    extern consvar_t cv_defaultplayercolor2;
    extern consvar_t cv_defaultskin2;
    
    extern consvar_t cv_seenames, cv_allowseenames;
    extern consvar_t cv_usemouse;
    extern consvar_t cv_usejoystick;
    extern consvar_t cv_usejoystick2;
    #ifdef LJOYSTICK
    extern consvar_t cv_joyport;
    extern consvar_t cv_joyport2;
    #endif
    extern consvar_t cv_joyscale;
    extern consvar_t cv_joyscale2;
    
    // splitscreen with second mouse
    extern consvar_t cv_mouse2port;
    extern consvar_t cv_usemouse2;
    #if defined (__unix__) || defined (__APPLE__) || defined (UNIXCOMMON)
    extern consvar_t cv_mouse2opt;
    #endif
    
    // normally in p_mobj but the .h is not read
    extern consvar_t cv_itemrespawntime;
    extern consvar_t cv_itemrespawn;
    
    extern consvar_t cv_flagtime;
    
    extern consvar_t cv_touchtag;
    extern consvar_t cv_hidetime;
    
    extern consvar_t cv_friendlyfire;
    extern consvar_t cv_pointlimit;
    extern consvar_t cv_timelimit;
    extern consvar_t cv_numlaps;
    extern consvar_t cv_basenumlaps;
    extern UINT32 timelimitintics;
    extern consvar_t cv_allowexitlevel;
    
    extern consvar_t cv_hazardlog;