File to map: Difference between revisions
Jump to navigation
Jump to search
imported>StDoodle mNo edit summary |
imported>StDoodle No edit summary |
||
Line 1: | Line 1: | ||
{{ | |||
#vardefine:name|file_to_map}}{{ | |||
#vardefine:return_type|boolean}}{{ | |||
FunctionPage| | |||
name={{#var:name}}| | |||
function_category=Miscellaneous| | |||
function1={{Function| | |||
name={{#var:name}}| | |||
aggregate={{#var:aggregate}}| | |||
return_type={{#var:return_type}}| | |||
return_also={{#var:return_also}}| | |||
parameter1={{Param|string|file_to_load}}| | |||
parameter2={{Param|aggregate|map_to_fill}}| | |||
}}| | |||
function2={{Function| | |||
name={{#var:name}}| | |||
aggregate={{#var:aggregate}}| | |||
return_type={{#var:return_type}}| | |||
return_also={{#var:return_also}}| | |||
parameter1={{Param|string|file_to_load}}| | |||
parameter2={{Param|aggregate|map_to_fill}}| | |||
parameter3={{Param|boolean|condition}}| | |||
p1desc={{Pspan|file_to_load}} is the filename to load from| | |||
p2desc={{Pspan|map_to_fill}} is the map to populate with data| | |||
p3desc={{Pspan|condition}} is an (optional) condition that must be met for the function to act| | |||
}}| | |||
function_description=Loads data to the {{pspan|map_to_fill}} from a saved {{pspan|file_to_load}} in your KoLmafia "data" directory. If {{pspan|condition}} is supplied, it must evalute to true in order for the function to proceed. This function returns the operations success (if {{pspan|condition}} is supplied, and evaluates to false, this function returns true). If {{pspan|map_to_fill}} has not been initialized, this function will abort (as oppossed to returning false).| | |||
code1={{CodeSample| | |||
string[int] | title=Code Sample| | ||
description=This sample loads a simple map that includes item names keyed by a number.| | |||
code= | |||
{ | <syntaxhighlight> | ||
print( " | string [int] my_list; | ||
file_to_map( "SavedList.txt" , my_list); | |||
foreach name in my_list { | |||
print( "We have a name: " , my_list[name] ); | |||
} | } | ||
</syntaxhighlight>| | |||
moreinfo= | |||
If the file "SavedList.txt" had the following: | |||
<pre> | |||
StDoodle 0 | |||
Grotfang 1 | |||
</pre> | |||
Then the results would be: | |||
blargh | |||
}}| | |||
see_also={{SeeAlso|map_to_file|}}| | |||
}} | |||
{{ |
Revision as of 00:55, 11 March 2010
Function Syntax
boolean file_to_map(string file_to_load ,aggregate map_to_fill )
boolean file_to_map(string file_to_load ,aggregate map_to_fill ,boolean condition )
- file_to_load is the filename to load from
- map_to_fill is the map to populate with data
- condition is an (optional) condition that must be met for the function to act
Loads data to the map_to_fill from a saved file_to_load in your KoLmafia "data" directory. If condition is supplied, it must evalute to true in order for the function to proceed. This function returns the operations success (if condition is supplied, and evaluates to false, this function returns true). If map_to_fill has not been initialized, this function will abort (as oppossed to returning false).
Code Sample
This sample loads a simple map that includes item names keyed by a number.
string [int] my_list;
file_to_map( "SavedList.txt" , my_list);
foreach name in my_list {
print( "We have a name: " , my_list[name] );
}
If the file "SavedList.txt" had the following:
StDoodle 0 Grotfang 1
Then the results would be:
blargh
See Also