Mapbase/Docs/Autocubemap

From Valve Developer Community
< Mapbase‎ | Docs
Jump to navigation Jump to search

Autocubemap is a utility in Mapbase Mapbase which automatically builds LDR and HDR cubemaps for one or multiple levels. It can be invoked via console commands or through a unique launch parameter.

Normally, building cubemaps requires you to enter multiple console commands in phases. Autocubemap runs these commands automatically as these phases occur, effectively combining them into one continuous process. Once Autocubemap is initiated, you will not need to run any further commands.

Tip.pngTip:Before building cubemaps, Autocubemap runs cfg/buildcubemaps_prep.cfg if it exists. Use this to invoke any commands before building cubemaps.

Building cubemaps for one level

You can invoke Autocubemap for the currently loaded level by typing autocubemap_start into the console.

Alternatively, you can invoke Autocubemap immediately after the game loads by using -autocubemap as an additional game launch parameter. You can use this in the compile window in Hammer to automatically build cubemaps after compiling a map.

Building cubemaps for multiple levels

Autocubemap can also extend its process between multiple levels, automatically hopping from one level to the next without further input. This is useful for when you need to build cubemaps on several levels all at once.

In order to feed Autocubemap multiple levels, you need an external KeyValues file which contains a list of levels. For example, let's say the following text is from scripts/autocubemap_my_levels.txt:

"autocubemap.txt"
{
	"my_level_01"	"1"
	"my_level_02"	"1"
	"my_level_03"	"1"
}

Autocubemap will go through each of the levels specified in the keyvalue names. The "1" value is not currently used.

To give this list to Autocubemap, use the autocubemap_init [file] command, with [file] being the file containing the list of levels you want to build cubemaps on. In the case of the file above, you would run autocubemap_init "scripts/autocubemap_my_levels.txt".

After running this command, you can run autocubemap_print to confirm that the level list was read properly. For the file above, this command would print the following into the console:

=== CUBEMAPPER MAP LIST ===
my_level_01
my_level_02
my_level_03
========================

Once a map list is loaded, running autocubemap_start will build cubemaps on each of the levels specified instead of just the currently loaded map.

Console commands

Here's a full list of console commands related to Autocubemap:

autocubemap_start
Begins Autocubemap. If a map list has been loaded, then Autocubemap will load the first listed map and build cubemaps on it. If no map list has been loaded, Autocubemap will build cubemaps on the currently loaded level.
autocubemap_init <string>
Loads the specified map list into Autocubemap.
autocubemap_print
Prints the contents of any currently loaded map list to the console.
autocubemap_clear
Clears any currently loaded map list.
autocubemap_hdr_do_both <boolean>
Specifies whether to build both HDR and LDR cubemaps. Default is 1.
autocubemap_hdr_value <integer>
What HDR level to use when building HDR cubemaps. Default is 2.