LoadMapData: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (add new example)
m (destory -> destroy)
 
Line 28: Line 28:
</syntaxhighlight>
</syntaxhighlight>


'''Example 2:''' This example will destory the loaded map data after 30 seconds.
'''Example 2:''' This example will destroy the loaded map data after 30 seconds.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function loadMapFile(fileName)
function loadMapFile(fileName)

Latest revision as of 13:36, 17 July 2025

This function is intended to load data from a loaded XML file into the element tree. This could be used for loading an external map, or part of another map.

Syntax

element loadMapData ( xmlnode node, element parent )  

Required Arguments

  • node: The node that you wish to load into the element tree.
  • parent: The node you wish to be the parent of the new map data.

Returns

Returns an element object that corresponds to the root of the new data added, i.e. an element that represents the node xmlnode passed to the function. Returns false if the arguments are invalid.

Example

Example 1: This example is a function that you could use to load an arbitary map file into the element tree.

function loadMapFile(fileName)
	local xmlNode = getResourceConfig(fileName)

	if (xmlNode) then -- check if the file was loaded ok
		loadMapData(xmlNode, root) -- load the loaded xml file into the element tree
		xmlUnloadFile(xmlNode) -- Unload the xml file
	end
end

Example 2: This example will destroy the loaded map data after 30 seconds.

function loadMapFile(fileName)
	local xmlNode = getResourceConfig(fileName)

	if (xmlNode) then -- check if the file was loaded ok
	    nodeElement = loadMapData(xmlNode, root) -- load the loaded xml file into the element tree
		xmlUnloadFile(xmlNode) -- Unload the xml file
	end
end

setTimer(function() 
    destroyElement(nodeElement)
end,30000,1)



See Also