buffer_load_async

语法:

buffer_load_async(buffer, filename, offset, size);


参数 描述
buffer The index of the buffer to load.
filename 要加载的文件的名称。
偏移 The offset within the buffer to load to (in bytes).
大小 The size of the buffer area to load (in bytes).


返回: Real(实数)


描述

With this function you can load a file that you have created previously using the buffer_save function (or any of the other functions for saving buffers) into a buffer. The "offset" defines the start position within the buffer for loading (in bytes), and the "size" is the size of the buffer area to be loaded from that offset onwards (also in bytes). Note that the function will load from a "default" folder, which does not need to be included as part of the file path you provide. This folder will be created if it doesn't exist or when you save a file using buffer_save_async().

The function returns a unique ID value which can then be used to check the asynchronous event async_load ID value, as shown in the extended example below. The async_load map in the event will have the following two key/value pairs:

  1. "id": the ID of the async function as returned by the save function.
  2. "status": 如果正确保存/加载数据,则返回 true,否则返回 false
NOTE: On HTML5, this is the preferred method for loading a file if you are loading from a server and not local storage, as loading synchronously has been deprecated on most browsers and will eventually be obsoleted.




Extended 举例:

The buffer_load_async() function can be called from any event, and since it is asynchronous the callback can be almost instantaneous or could take several seconds. Calling the function is simple and would look something like this:

loadid = buffer_load_async(buff, "Player_Save.sav", 0, 16384);

The above code loads the contents of the file "Player_Save.sav" to the given buffer, storing the ID of the function call in the variable "loadid". When the load is complete, the asynchronous Save/Load event will be triggered and you can parse the async_load map for the correct ID of the function, like this:

if ds_map_find_value(async_load, "id") == loadid
   {
   if ds_map_find_value(async_load, "status") == false
      {
      show_debug_message("Load failed!");
      }
   }

The above code will first check the id of the ds_map that has been created, then check the status of the callback, posting a debug message if there has been any issues.