Skip to content
Snippets Groups Projects
Select Git revision
  • 8608ded317c46e435dcfa2fb1936bfd963e1ec18
  • next default protected
  • fix-1277
  • fix-1258
  • delfile2
  • cleanupmusic
  • gametype-refactor-1
  • custom-map-names
  • extra-textures
  • clipmidtex
  • optimize-storewallrange
  • increase-maxconditionsets
  • acs
  • softcode-info
  • lua-gfx-2
  • better-player-states
  • lua-debug-library
  • any-resolution
  • gametype-refactor-player-spawns
  • custom-teams
  • action-args
  • SRB2_release_2.2.13
  • SRB2_release_2.2.12
  • SRB2_release_2.2.11
  • SRB2_release_2.2.10
  • SRB2_release_2.2.9
  • SRB2_release_2.2.8
  • SRB2_release_2.2.7
  • 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
41 results

lua_consolelib.c

Blame
  • Forked from STJr / SRB2
    Source project has a limited visibility.
    lua_hud.h NaN GiB
    // SONIC ROBO BLAST 2
    //-----------------------------------------------------------------------------
    // Copyright (C) 2014-2016 by John "JTE" Muniz.
    // Copyright (C) 2014-2016 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  lua_hud.h
    /// \brief HUD enable/disable flags for Lua scripting
    
    enum hud {
    	hud_stagetitle = 0,
    	hud_textspectator,
    	// Singleplayer / Co-op
    	hud_score,
    	hud_time,
    	hud_rings,
    	hud_lives,
    	// Match
    	hud_weaponrings,
    	hud_powerstones,
    	// NiGHTS mode
    	hud_nightslink,
    	hud_nightsdrill,
    	hud_nightsrings,
    	hud_nightsscore,
    	hud_nightstime,
    	hud_nightsrecords,
    	// TAB scores overlays
    	hud_rankings,
    	hud_coopemeralds,
    	hud_tokens,
    	hud_tabemblems,
    	hud_MAX
    };
    
    extern boolean hud_running;
    
    boolean LUA_HudEnabled(enum hud option);
    
    void LUAh_GameHUD(player_t *stplyr);
    void LUAh_ScoresHUD(void);