LoadMapData: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
 
 
(9 intermediate revisions by 6 users not shown)
Line 1: Line 1:
[[Category:Incomplete]]
{{Server function}}
 
__NOTOC__
__NOTOC__  
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.
This fake function is for use with blah & blah and does blahblahblabhalbhl


==Syntax==  
==Syntax==  
Line 10: Line 9:


===Required Arguments===  
===Required Arguments===  
*'''argumentName:''' description
*'''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.
===Optional Arguments===
{{OptionalArg}}
*'''argumentName2:''' descriptiona
*'''argumentName3:''' description


===Returns===
===Returns===
Returns ''true'' if blah, ''false'' otherwise.
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==  
This example does...
This example is a function that you could use to load an arbitary [https://forum.mtasa.com/topic/126081-map-files map file] into the [[element tree]].
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
--This line does...
function loadMapFile(fileName)
blabhalbalhb --abababa
local xmlNode = getResourceConfig(fileName)
--This line does this...
 
mooo
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
</syntaxhighlight>
</syntaxhighlight>


==See Also==
==See Also==
{{FunctionArea_Functions}}
{{Map_functions}}

Latest revision as of 16:50, 20 January 2024

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

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

See Also