Skip to content
Snippets Groups Projects
Select Git revision
  • main
  • gl_gifs
  • jimita-thing
  • lj-srb2hp2
  • lj-srb2hp
  • connect-ip-textbox
  • lj-resendgamestate
  • thin-fixed
  • next
  • models
  • no-delayedpackets
  • thin-fps-offsets
  • thin-fps
  • orbital-camera
  • fps-offsets
  • fix-fixedrem
  • 2gb-maxsend
  • main-models
  • master default protected
  • fixed-string-colormaps
  • 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
  • SRB2_release_2.1.14
  • SRB2_release_2.1.12
  • SRB2_release_2.1.11
  • SRB2_release_2.1.10
  • SRB2_release_2.1.9
  • SRB2_release_2.1.8
  • SRB2_release_2.1.7
  • SRB2_release_2.1.6
  • SRB2_release_2.1.5
  • SRB2_release_2.1.4
40 results

hw_data.h

Blame
  • lua_hud.h NaN GiB
    // SONIC ROBO BLAST 2
    //-----------------------------------------------------------------------------
    // Copyright (C) 2014-2016 by John "JTE" Muniz.
    // Copyright (C) 2014-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  lua_hud.h
    /// \brief HUD enable/disable flags for Lua scripting
    
    #ifndef __LUA_HUD_H__
    #define __LUA_HUD_H__
    
    #include "lua_hudlib_drawlist.h"
    
    enum hud {
    	hud_stagetitle = 0,
    	hud_textspectator,
    	hud_crosshair,
    	// Singleplayer / Co-op
    	hud_score,
    	hud_time,
    	hud_rings,
    	hud_lives,
    	// Match / CTF / Tag / Ringslinger
    	hud_weaponrings,
    	hud_powerstones,
    	hud_teamscores,
    	// NiGHTS mode
    	hud_nightslink,
    	hud_nightsdrill,
    	hud_nightsspheres,
    	hud_nightsscore,
    	hud_nightstime,
    	hud_nightsrecords,
    	// TAB scores overlays
    	hud_rankings,
    	hud_coopemeralds,
    	hud_tokens,
    	hud_tabemblems,
    	// Intermission
    	hud_intermissiontally,
    	hud_intermissiontitletext,
    	hud_intermissionmessages,
    	hud_intermissionemeralds,
    	hud_MAX
    };
    
    extern boolean hud_running;
    
    boolean LUA_HudEnabled(enum hud option);
    
    void LUA_SetHudHook(int hook, huddrawlist_h list);
    
    #endif // __LUA_HUD_H__