Asset - Extension Coding tools + extra data structures

B

barnack

Guest
Here's a little set of scripts which will help you working with variables. There are some extra type checks, extended type checking to arrays, plus two extra data structures (ds_set and ds_sorted_list) and an alternative array sorting algorithm.
Marketplace link: click here
My website with complete description: click here
Hope you enjoy!

Note: the programs and games you can find in my website use content from this library, plus from another complex library i will publish "soon", which is basically all-you-need for a default UI (like what you'd do with WinApi). If you're curious give a check to information: click here
 
B

barnack

Guest
UPDATE:
create an array with passed values
array_create(val1, val2, ...)

create an array from a string and vice-versa
string_to_array(string)
array_to_string(array)
also supports arrays containing reals and not only chars/strings)

Theese scripts will be added to the package asap, probably the 10th Genuary
 
B

barnack

Guest
UPDATE:
some bugs on data structures has been fixed
added arrays, strings, and queue extra scritps
 
B

barnack

Guest
going to add more array functions within tomorrow:
array_2d_to_1d
array_1d_to_2d
array_2d_to_string
ds_*_to_string

all "to string" things are supposed to be used only for debugging reasons to rapidly check spmething's content.
 
Top