Skip to content
Francisco Dias edited this page Feb 9, 2024 · 9 revisions

Cloud

The Steam Cloud provides an easy and transparent remote file storage system for your game. All files written to disk using the cloud functions will be replicated to the Steam servers after the game exits. If the user then changes computers, the files will then be downloaded to the new computer before the game launches, meaning that the game can then access the files by reading them using the appropriate Steam functions. The Steam Client does the work of ensuring that the files are kept synchronized across all computers the user may be accessing.

Note

By default, the Cloud is not enabled for a game on Steamworks. it must be enabled previously from the 'Cloud' tab of the Steamworks game admin, where you should set the byte and file quota. The next time you publish your games Steamworks configuration, the Cloud storage will be ready to use.

Functions

The following functions can be used to access the Steam Cloud from within GameMaker:

Structs

This module offers a collection of structs, which serve as custom data models for organizing and structuring data. Explore the provided structs to better understand the relationships between data elements and simplify your data manipulation tasks.

Constants

This module includes a set of predefined constants that can be utilized for various purposes. Browse through the available constants to find values relevant to your needs and enhance the efficiency of your code.



Back To Top

steam_is_cloud_enabled_for_app

With this function you can check to make sure that the Steam Cloud service is enabled for your game. It will return true if it is and false otherwise.

Warning

This does not automatically mean that you can use the Cloud functions as the user can switch off Cloud synchronization from their Steam Client. You can check this using the function steam_is_cloud_enabled_for_account, but, even if it is disabled for the user (and enabled for the game), the functions will still work to store and retrieve data from a local copy of all files, it will just not upload them to the cloud on the game end, nor synchronize on the game start.


Syntax:

steam_is_cloud_enabled_for_app()

Returns:

Boolean


Example:

if (steam_is_cloud_enabled_for_app())
{
    quota = steam_get_quota_total();
}

The above code checks to see if the Steam Cloud is enabled for the game and if so it gets the size of the storage quota and stores it in a variable.




Back To Top

steam_is_cloud_enabled_for_account

With this function you can check to make sure that the Steam Cloud service is enabled by the user in their Steam Client settings. It will return true if it is and false otherwise.

Warning

This does not automatically mean that you can store data to the Cloud, as it will also have to have been enabled for your game (you can check this using the function steam_is_cloud_enabled_for_app). If the Steam Cloud is enabled for your game, but the user has it switched off locally, you can still use the Cloud functions to store and retrieve data from a local copy of all files, it will just not upload them to the cloud on the game end, nor synchronize on the game start.


Syntax:

steam_is_cloud_enabled_for_account()

Returns:

Boolean


Example:

if (steam_is_cloud_enabled_for_account())
{
    steam_file_share("Save.txt");
}

The above code checks to see if the user has the Steam Cloud enabled and if it returns true, it will then synchronize the given file.




Back To Top

steam_get_quota_total

When using the Steam Cloud to store and synchronize files, you must set up the quota of space that your game will need. This quota is enforced on each Cloud-enabled game, on a per-user-per-game basis, so, for example, if the quota for Game X is 1 megabyte, then each Steam account that owns Game X may store, at most, 1 megabyte of data associated with that game in the Cloud. Any other Cloud-enabled games that the user owns (say, Game Y) will not be affected by the data stored by Game X. The default quota for new Steamworks games is one gigabyte, but you can change this from the Steamworks control panel for your game.

Note

Once the quota is exhausted file writes will fail. If you think it may be possible for the quota to be exhausted for the user of your game, you should create code to handle it, as by doing nothing you leave users in a situation where they are unable to fix things and that will lead to a poor experience of your game.


Syntax:

steam_get_quota_total()

Returns:

Real


Example:

if (steam_is_cloud_enabled_for_app())
{
    quota = steam_get_quota_total();
}

The above code checks to see if the Steam Cloud is enabled for the game and if so it gets the size of the storage quota and stores it in a variable.




Back To Top

steam_get_quota_free

With this function you can find out how much free space is left for the user of the Steam Cloud quota. The value returned is in bytes.


Syntax:

steam_get_quota_free()

Returns:

Real


Example:

if (steam_is_cloud_enabled_for_app())
{
    quota = steam_get_quota_free();
}

The above code checks to see if the Steam Cloud is enabled for the game and if so it gets the size of the free storage space and stores it in a variable.




Back To Top

steam_file_exists

With this function you can check to see if a file from the Steam Cloud exists or not, with a return value of true if it exists, or false otherwise.


Syntax:

steam_file_exists(filename)
Argument Type Description
filename String The name of the file to check for.

Returns:

Boolean


Example:

if (steam_file_exists("Save.txt"))
{
    save_str = steam_file_read("Save.txt");
}

The above code checks to see if a file exists on the Steam Cloud and if it does, it opens it and reads its contents into the variable "save_str".




Back To Top

steam_file_size

With this function you can check the size of a file stored on the Steam Cloud. The returned real number is the size, in bytes, of the file.


Syntax:

steam_file_size(filename)
Argument Type Description
filename String The name of the file to check the size of.

Returns:

Real


Example:

file_bytes = steam_file_size("Save.txt");

The above code stores the size of a file from the Steam Cloud in the variable "file_bytes".




Back To Top

steam_file_persisted

With this function you can check the given file to see if it has been synchronized with the Steam Cloud. A return value of true means that it is, while false means it is not.


Syntax:

steam_file_persisted(filename)
Argument Type Description
filename String The name of the file to check.

Returns:

Boolean


Example:

if (!steam_file_persisted("Save.txt"))
{
    steam_file_share("Save.txt");
}

The above code will check to see if a file has been stored to the Steam Cloud, and if it has not it will then synchronize it.




Back To Top

steam_file_write

You can use this function to write data to a file, which will then be synchronized with the Steam Cloud when the user exits the game. if the file does not exist, this function will create it for you, and if it does already exist, it will overwrite any data that is already stored within the file with the new data string. The function will return a value of 0 if it fails for whatever reason and a value greater than 0 if it succeeds.


Syntax:

steam_file_write(filename, data, size)
Argument Type Description
filename String The name of the file to write to.
data String The data to write (a string).
size Real the size of the data to be written.

Returns:

Real


Example:

var _fname = "SaveData.txt";
var _data = string(global.Level) + "|" + string(global.Points) + "|" + string(global.HP);
var _len = string_length(_data);
steam_file_write_file(_fname, _data, _len);

The above code will prepare a number of local variables and then use them to write to (or create) a file which will then be synchronized with the Steam Cloud.




Back To Top

steam_file_write_file

With this function you can copy the contents of a locally saved file to a file that is synchronized with the Steam Cloud. The local file must exist before using this function, and it will return a value of 0 if it fails for whatever reason and a value greater than 0 if it succeeds.


Syntax:

steam_file_write_file(steam_filename, local_filename)
Argument Type Description
steam_filename String The Steam Cloud file to copy over.
local_filename String The local file to use to copy from.

Returns:

Real


Example:

steam_file_write_file("rm_koala.png", "Koala2.png");

The above code will copy the contents of the file "Koala2.png" to the Steam Cloud file "rm_koala.png".




Back To Top

steam_file_read

This function will read the contents of the given file into a string which can later be parsed in your game.


Syntax:

steam_file_read(filename)
Argument Type Description
filename String The name of the file to read from.

Returns:

String


Example:

if steam_file_exists("Save.txt")
{
    save_str = steam_file_read("Save.txt");
}

The above code checks to see if a file exists on the Steam Cloud and if it does, it opens it and reads its contents into the variable "save_str".




Back To Top

steam_file_share

With this function you can force your game to synchronize the given file with the Steam Cloud. This is not normally necessary due to the fact that the game will synchronize automatically at the end of the player's session, nor is it recommended by Steam, but it can be useful to ensure sensitive information is synchronized immediately. The function will return a value of 0 if it fails for whatever reason and a value greater than 0 if it succeeds.


Syntax:

steam_file_share(filename)
Argument Type Description
filename String The name of the file synchronize.

Returns:

Real


Example:

if (!steam_file_persisted("Save.txt"))
{
    steam_file_share("Save.txt");
}

The above code will check to see if a file has been stored to the Steam Cloud, and if it has not it will then synchronize it.




Back To Top

steam_file_delete

This function will delete the given file from the Steam Cloud. The function will return a value of 0 if it fails for whatever reason and a value greater than 0 if it succeeds.


Syntax:

steam_file_delete(filename)
Argument Type Description
filename String The name of the file delete.

Returns:

Real


Example:

if (steam_file_exists("Save.txt"))
{
    steam_file_delete("Save.txt");
}

The above code will check to see if a file exists, and if it does, it deletes the file from the Steam Cloud.




Back To Top

steam_get_local_file_change

This function gets the changes in a local file.


Syntax:

steam_get_local_file_change()

Returns:

SteamLocalFileChange




Back To Top

steam_get_local_file_change_count

This function gets the number of changes in a local file change event.


Syntax:

steam_get_local_file_change_count()

Returns:

Real




Back To Top

steam_file_get_list

This function returns a list of all currently stored files in the user's cloud storage as an array, an empty array is returned on failure.


Syntax:

steam_file_get_list()

Returns:

Array of SteamCloudFileEntry


Example:

var _i = 0;
var files = steam_file_get_list();
for (var i = 0, len = array_length(files); i < len; ++i)
{
	var file = files[i];
	draw_text(50, 100 + _i++ * 30, file.file_name + " size is " + string(file.file_size));
	// steam_file_delete(file.file_name); // etc...
}

The above code will enumerate through all cloud files and draw their information on the screen.




Back To Top

steam_local_file_change

These constants are referenced by the following structs:


Member Description
steam_local_file_change_invalid impossible value
steam_local_file_change_updated file's contents were updated
steam_local_file_change_deleted the file was deleted


Back To Top

steam_local_file_path_type

These constants are referenced by the following structs:


Member Description
steam_local_file_path_type_invalid An impossible value
steam_local_file_path_type_absolute The absolute path to a file inside the Auto Cloud folder (should be your save folder, which means it should be already in the filesystem sandbox). Use buffer_load or any other function to read the file.
steam_local_file_path_type_api_filename A file for the steam_file_* functions. Pass name to the steam_file_* functions.


Back To Top

SteamLocalFileChange

This struct provides details on what happened in a local file change.

This struct is referenced by the following functions:


Member Type Description
local_file_change steam_local_file_change The type of change that happened to the file
file_path_type steam_local_file_path_type The type of file path
name String This is either a full path or an API filename.


Back To Top

SteamCloudFileEntry

This struct provides information about a file in a file list returned by the steam_file_get_list function

This struct is referenced by the following functions:


Member Type Description
file_name String The full name of the file
file_size Real The size of the file in bytes