All Projects → gm-core → Gdash

gm-core / Gdash

Licence: mit
A functional utility library for GML/GameMaker: Studio - partials, map/reduce and more

Labels

Projects that are alternatives of or similar to Gdash

Smoldash
Smoldash, A tiny lodash alternative built for the modern web
Stars: ✭ 66 (-20.48%)
Mutual labels:  utility
Trickle
600 baud pipe and terminal.
Stars: ✭ 75 (-9.64%)
Mutual labels:  utility
Babel Plugin Captains Log
Babel plugin that injects helpful details into console statements
Stars: ✭ 80 (-3.61%)
Mutual labels:  utility
Poke
A powerful reflection module for powershell.
Stars: ✭ 66 (-20.48%)
Mutual labels:  utility
Schematics Utilities
🛠️ Useful exported utilities for working with Schematics
Stars: ✭ 73 (-12.05%)
Mutual labels:  utility
Go Parsefix
Fixes simple parse errors automatically. Works great in combination with goimports.
Stars: ✭ 77 (-7.23%)
Mutual labels:  utility
Zplutility
ZPL Utility, a .net tool library helping to generate ZPL string
Stars: ✭ 60 (-27.71%)
Mutual labels:  utility
Webhook Discord
A simple Javascript file for nicely formatting Discord webhooks
Stars: ✭ 81 (-2.41%)
Mutual labels:  utility
Karmabot
🤖 A Multipurpose Discord Bot with a Music System & Utility commands used by 160K+ users!
Stars: ✭ 73 (-12.05%)
Mutual labels:  utility
Minicache
📦 Python memory caching utilities
Stars: ✭ 79 (-4.82%)
Mutual labels:  utility
Str metrics
Ruby gem (native extension in Rust) providing implementations of various string metrics
Stars: ✭ 68 (-18.07%)
Mutual labels:  utility
Mixin Deep
Deeply mix the properties of objects into the first object, while also mixing-in child objects.
Stars: ✭ 72 (-13.25%)
Mutual labels:  utility
Archivemounter
Mounts archives like disk images (macOS)
Stars: ✭ 77 (-7.23%)
Mutual labels:  utility
Memorycache
LRU, type-safe, thread-safe memory cache class in Swift
Stars: ✭ 66 (-20.48%)
Mutual labels:  utility
Sift.js
Use Mongodb queries in JavaScript
Stars: ✭ 1,229 (+1380.72%)
Mutual labels:  utility
S3reverse
The format of various s3 buckets is convert in one format. for bugbounty and security testing.
Stars: ✭ 61 (-26.51%)
Mutual labels:  utility
With
Command prefixing for continuous workflow using a single tool.
Stars: ✭ 1,198 (+1343.37%)
Mutual labels:  utility
Is
Simple type checking.
Stars: ✭ 82 (-1.2%)
Mutual labels:  utility
Mini Throttle
A small JavaScript throttle & debounce implementation.
Stars: ✭ 81 (-2.41%)
Mutual labels:  utility
Vs2017offlinesetuputility
This utility allow downloading offline setup or deletion of old version Visual Studio 2017/2019 Offline Setup files and folder
Stars: ✭ 79 (-4.82%)
Mutual labels:  utility

gdash - GML Utility Library

Version 6.0.2

Introduction

gdash is a functional utility library for GML, inspired by lodash. It aims to add useful, broad-purposed functions to help aid in game development. If you are doing any kind of data manipulation in your game, gdash can help out.

Table of Contents

Install

Download the latest release and import the gml files into your project's scripts. For GameMaker: Studio 2, you can just drag and drop the files into the editor.

API

_and(valueA, valueB)

Returns the value of the provided arguments after a boolean and

@param {*} valueA Some first input
@param {*} valueB A value to && the first input with

@returns {Boolean} The value of the provided arguments after an &&

@example
_and(true, true);
// => true

_and(false, true);
// => false

_array_of(values...)

Returns an array of the given arguments.

@param {*) values... Values to put into an array

@returns {Array} An array of the given parameters

@example
_arrayOf(1, 2, 3);
// => [1, 2, 3];

_arrayOf('hello', 'world', 'i', 'am', 'an', 'array');
// => ['hello', 'world', 'i', 'am', 'an', 'array'];

_backward(array)

Creates a new array containing the elements of array in reverse order.

Note: To modify an array in-place, use _reverse

@param {Array} array The array to reverse

@returns {Array} The reversed array

@example
var myArray = [1, 2, 3];
var reverseArray = _backward(myArray);
// => [3, 2, 1]

_chunk(array, size)

Creates a two-dimensional array of elements split into groups of given length.

@param {Array} array The array to split
@param {Integer} size The size of each chunk

@returns {Array} The two-dimensional array of chunks

@example
var arr = [0, 1, 2, 3];
_chunk(arr, 2);
// => [[0, 1], [2, 3]];

var arr = [0, 1, 2, 3];
_chunk(arr, 3);
// => [[0, 1, 2], [3]];

_clone_array(array)

Clones a given input array, returning a deep copy.

@param {Array} array The array to clone

@returns {Array} A copy of the input array

@example
var myArray = [1, 2, 3];
var copyArray = _clone_array(myArray);
_is_equal(myArray, copyArray)
// => true

_collect(object)

Returns an array of all objects of the provided type

@param {ObjectType} objectType The object type to collect

@returns {Array} An array of all object IDs of the provided type in the room

@example

_collect(obj_character);
// => [10001, 10002, 10005]

_concat(arrayA, arrayB)

Appends the values of one array to another.

@param {Array} baseArray The array to append to
@param {Array} arrayToAppend The array to append

@returns {Array} The concatenated array

@example
_concat([0, 1, 2], [3, 4, 5]);
// => [0, 1, 2, 3, 4, 5]

_contains(collection, target [, fromIndex, dsType])

Returns true if the given array contains the given value, otherwise returns false

@param {String|Array|DS_Map|DS_List} collection The collection to search
@param {*} value The value to look for
@param {Real} optionalFromIndex [0] The index to begin looking from
@param {ds_type} optionalDSType [ds_type_list] The type of the ds, if this is a ds.

@returns {Boolean} True if the collection contains the target, otherwise false

@example
_contains([1, 2, 3], 1);
// => true

_contains([1, 2, 3], 1, 1);
// => false

_contains("hello", "ello");
// => true

_destroy(object)

Destroys the passed in instance

@param {Instance} instance The instance to destroy

@example
_destroy(obj_enemy);

// Destroy all obj_enemy with no health (hasNoHealth is a script)
_map(_filter(_collect(obj_enemy)), hasNoHealth), _destroy);

_difference_by(array, arrays..., iteratee)

Like _difference(), except that it accepts iteratee which is invoked for each element of each array to generate the criterion by which they are compared.

@param {Array} array The array to inspect
@param {Array} arrays... The arrays whose values are to be excluded
@param {Script} iteratee The script invoked on each element to generate comparison criteria

@returns {Array} The difference between the first and the remaining arrays

@example
// _floor(x)
return floor(x);

var arr0 = [0.5, 1, 2];
var arr1 = [0];
var arr2 = [0.1, 2.9];
_difference_by(arr0, arr1, arr2, _floor);
// => [1];

_difference(array, arrays...)

Creates an array of values from the first array not found in the other arrays.

@param {Array} array The array to inspect
@param {Array} arrays... The arrays whose values are to be excluded

@returns {Array} The difference between the first and the remaining arrays

@example
var arr0 = [0, 1, 2];
var arr1 = [0];
var arr2 = [0, 2];
_difference(arr0, arr1, arr2);
// => [1];

_drop_right(array, n)

Creates a slice of array with n elements dropped from the end.

@param {Array} array The array to inspect
@param {Integer} n The number of elements to drop

@returns {Array} The slice of array

@example
var arr = [0, 1, 2, 3];
_drop_right(arr, 2);
// => [0, 1];

_drop(array, n)

Creates a slice of array with n elements dropped from the beginning.

@param {Array} array The array to inspect
@param {Integer} n The number of elements to drop

@returns {Array} The slice of array

@example
var arr = [0, 1, 2, 3];
_drop(arr, 2);
// => [2, 3];

_error(message [, fatal])

When running with the debugger, displays an error window. Otherwise, logs an error using _log.

Note: Only mark an error as fatal if you are okay with it ending your game

@param {String} message The message to error with
@param {Boolean} fatal [Optional] If true, will force a show_error() call with `abort` set to true

@example
_error("This is an error that will let the game continue");
_error("This is an error that will let the game continue", false);
_error("This is an error that will kill the game", true);

_fill(array, value [, start, end])

Fills elements of array with value from start up to, but not including, end.

Note: This method mutates array.

@param {Array} array The array to fill
@param {*} value The value with which to fill elements of array
@param {Integer} optionalStart The start index
@param {Integer} optionalEnd The end index

@returns {Array} The filled array

@example
var arr = [0, 1, 2, 3];
_fill(arr, 4, 1, 3);
// => [0, 4, 4, 3];

var arr = [0, 1, 2, 3];
_fill(arr, 0);
// => [0, 0, 0, 0];

_filter(collection, filterMethod)

Returns a collection where values of the input collection are truthy when run through the provided function.

@param {Array|ds_list} collection The collection to filter
@param {Method} filterMethod The method to filter with

@returns {Array|ds_list} The filtered collection

@example
_filter([0, 1, 2, 3], lessThanTwo)
// => [0, 1]

_find(array, findMethod)

Iterates over an array, returning the first element that the given script returns true for.

@param {Array} array The array to iterate over
@param {Method} findMethod The method to run on the given element

@returns {*} The first element that returns truthy from the script

@example
_find([0, 1, 2, 3], function(n) {return n == 3});
// => 3

_free(id [, ds_type])

Frees a partial function from memory

@param {Real} resource The partial ID to free
@param {DS_TYPE} optionalType The type of resource to free

@example
var __something = _partial(someScript, 1);
__something(2);
_free(__something);

_get(map, locationString)

Gets a nested value following a dot notation

@param {DS_Map} map The map to get data from
@param {String} locationString The location of the data to get

@returns {Mixed} The data found at the given location

@example
// someMap looks like:
// { nested: {three: {deep: 1}}}
_.get(someMap, 'nested.three.deep');
// => 1

_index_of(collection, value)

Returns the index of the given item in the given array, or -1

@param {Array|DS_List} collection The collection to search
@param {*} value The value to look for

@returns {Real} The index of the value, or -1

_intersection_by(arrays..., iteratee)

Like _intersection(), except that it accepts iteratee which is invoked for each element of each array to generate the criterion by which uniqueness is computed.

@param {Array} arrays... The arrays to be intersected
@param {Script} iteratee The script invoked on each element to generate uniqueness criteria

@returns {Array} The intersection of the given arrays

@example
// _floor(x)
return floor(x);

var arr0 = [0, 1.9];
var arr1 = [0.6, 3];
_intersection_by(arr0, arr1, _floor);
// => [0];

_intersection(arrays...)

Creates an array of unique values common to all given arrays in the order in which they originally appeared.

@param {Array} arrays... The arrays to be intersected

@returns {Array} The intersection of the given arrays

@example
var arr0 = [0, 1];
var arr1 = [0];
_intersection(arr0, arr1);
// => [0];

var arr0 = ['Sword', 'Potion'];
var arr1 = ['Shield', 'Potion', 'Sword'];
_intersection(arr0, arr1);
// => ['Sword', 'Potion'];

_is_equal(valueA, valueB [, dsType])

Checks if two values are equal, being safe about type and checking first-level children of ds_lists and ds_maps. Returns false on type inequality rather than throwing an error.

@param {*} firstValue First value to compare
@param {*} secondValue Second value to compare
@param {ds_type} dsType [Optional] If specified, assumes this type instead of inferring the type. Only specify this if using _is_equal for a ds

@returns {Boolean} true if the values are equal, false otherwise

@example
_is_equal([1, 2, 3], [1, 2, 3]);
// => true

_is_equal("hello", 1);
// => false

var map = ds_map_create();
ds_map_add(map, 'hello', 6);
ds_map_add(map, 'world', 10);
var map2 = ds_map_create();
ds_map_add(map2, 'hello', 6);
ds_map_add(map2, 'world', 10);
_is_equal(map, map2, ds_type_map);
// => true

_join(array, joinChar)

Returns a string of the given array combined with the given joiner

@param {Array} array The array to join
@param {String} joinChar The character to join by

@returns {String} The joined array

@example
var arr = ['hello', 'world'];
_join(arr, ' ');
// => 'hello world'

var arr = ['Peter', 'Paul', 'Mary'];
_join(arr, ', ');
// => 'Peter, Paul, Mary';

_keys(map)

Returns an array contains all keys in a ds_map. Order is not guaranteed due to how ds_maps are stored.

@param {DS_Map} map The map to get the keys from

@returns {Array} An array of all keys in the map

@example
var map = ds_map_create();
ds_map_add(map, 'hello', 'world');
ds_map_add(map, 'health', 100);

_keys(map);
// => ['hello', 'health']

_length(collectionOrString)

Returns the length of the given array or ds_list

@param {Array|DS_List} collection The collection to determine the length of

@returns {Real} The length of the collection

@example
_length([1, 2, 3, 4]);
// => 4

_length(some_list_id_of_size_5);
// => 5

_list_of(values...)

Returns a DS_List containing the provided values. This DS_List should be destroyed as you would any other DS.

@param {*} values... As many starting values for the list as desired

@returns {DS_List} A new DS_List containing the provided values

@example

var list = _list_of(1, 2, 3, 4);
_log(list[| 2]) // logs 3

_log(values...)

Convenience method for show_debug_message(). Automatically convetrs arguments to strings.

@param {Mixed} Messages... The message or value to log

_map_of(values...)

Returns a DS_Map containing the provided values. Arguments are split into key/value pairs in the order they are provided.

Note: This script must take an even number of arguments. Keys can only be integers or strings.

@param {*} values... As many starting values for the map as desired

@returns {DS_Map} A new DS_Map containing the provided key/value pairs

@example

var map = _map_of(
    "health", 100,
    "mana", 20,
    "level", 1
);

map[? "health"] // = 100
map[? "mana"] // = 20
map[? "level"] // = 1

_map(collection, method [, ds_type])

Iterates over a given collection, running the provided method for each value in the collection. Returns an array of all method results at each index.

@param {Array|DS_Map|DS_List} collection The collection to map
@param {Method} method The method to map over the collection
@param {ds_type|String} optionalType ["array"] The type of collection. Only provide when using a DS

@returns {Array} An array of all mapped results

@example

var arr;
arr[0] = 1; arr[1] = 2;
_map(arr, doubleValue);
// => [2, 4];

var map = ds_map_create();
ds_map_add(map, 'hello', 6);
ds_map_add(map, 'world', 10);
_map(map, divideByTwo, ds_type_map);
// => [3, 5]

_nth(collection, index)

Returns the nth index of the given array or ds_list. If n is negative, the nth element from the end is returned.

@param collection
@param n

_or(valueA, valueB)

Returns the value of the provided arguments after a boolean OR

@param {*} valueA Some first input
@param {*} valueB A value to || the first input with

@returns {Boolean} The value of the provided arguments after an ||

@example
_or(true, true);
// => true

_or(false, true);
// => true

_or(false, false);
// => false

_partial(method, partialArgs...)

Creates a partial function identifier for use in place of raw scripts in gdash functions, or with the use of _run.

Note: Partials are to be treated as a data structure, and must be cleaned up with _free() when they are no longer of use.

@param {Method} method The script to create a partial of
@param {*} partialArguments... Arguments to bind to the partial

@returns {Real} The partial ID (a ds_map, internally)

@example
function lessThan(a, b) {
return b < a
}

// Meanwhile...
var lessThanTwo = _partial(lessThan, 2);
_run(lessThanTwo, 1);
// => true

_run(lessThanTwo, 10);
// => false

_push(array, value)

Adds a value to the end of an array

@param {Array} array The array to add the value to
@param {*} value The value to add

@returns {Array} The array with the value added

@example
_push([1, 2], 3);
// => [1, 2, 3]

_reduce(collection, reducer)

Reduces a collection by iterating over it with a function. Provided script should take 2 arguments: total, value.

@param {Array|ds_list} collection The collection to reduce
@param {Script} recuderScript The script to reduce with
@param {*} value [Optional] The default value to begin reducing with. If not provided, the default is `undefined`

@returns {*} The reduced value from the given script

@example
var arr = [1, 2, 3, 4, 5];
_reduce(arr, sum);
// => 15

var arr = ['hello', 'world'];
_reduce(arr, concat);
// => 'helloworld';

_reverse(array)

Reverses the order of elements in array.

Note: This method mutates the input array. To create a new array instead, use _backward

@param {Array} array The array to modify

@returns {Array} The reversed array

@example
var arr = [0, 1, 2];
_reverse(arr);
// => [2, 1, 0];

_run(methodOrPartial, arguments...)

Executes a method or partial with the provided arguments

@param {Method|Real} methodOrPartial The method to run or the ID of the partial to run
@param {*} arguments... Arguments to pass the method or partial

@returns {*} The return value of the execution

@example
_run(_add, 1, 2);
// => 3

var addTwo = _partial(_add, 2);
_run(addTwo, 1);
// => 3

_set(map, locationString, value)

Sets a nested value following a dot notation. Creates along the way if its not set.

@param {DS_Map} map The map to set data in
@param {String} locationString The location of the data to set
@param {Mixed} value The data to set
@param {ds_type_map|ds_type_list} optionalType Optional argument, pass in ds_type_map or ds_type_list to denote this value as a map or list

@example
// someMap looks like:
//  { nested: {three: {deep: 1}}}
_set(someMap, 'nested.three.deep', 2);
// => someMap now looks like:
// => {nested: {three: {deep: 2}}}

// some map looks like:
// { someKey: "someValue" }
_set(someMap, "newKey", ds_list_create(), ds_type_list);
// => someMap now looks like:
// => { someKey: "someValue"], newKey: [] }

_slice(array, start [, end])

Creates a slice of array from start up to, but not including, end.

@param {Array} array The array to slice
@param {Integer} start Index to start the slice
@param {Integer} end(optional) Index up to which to make the slice, defaults to end of array.

@returns {Array} The sliced array

@example
var myArray = [1, 2, 3, 4];
var slicedArray = _slice(myArray, 1, 3);
_is_equal([2, 3], slicedArray)
// => true

_split(string, splitChar)

Returns an array of strings represnting the given string separated by a given substring

@param {String} string The string to split
@param {String} splitChar The character to split by

@returns {Array} The split string

@example
_split('Hello, world', ',');
// => ['Hello', ' world']

_split('Dogs and cats and mice', ' and ');
// => ['Dogs', 'cats', 'mice']

_spread(method, argsArray)

Runs a method with the provided array as arguments

@param {Method} method The method to run
@param {Array} arrayOfArguments An array to provide as individual arguments

@return {*} The return value of the method

@example
_spread(add_to_list, [listId, 1, 2, 3, 4]);
// => List now contains 1, 2, 3, 4

_times(executeCount, method)

Returns an array of the result of a function run the given number of times

@param {Real} executeCount The number of times to execute the function
@param {Method} method The method to execute

@returns {Array} An array of the script results

@example
_times(3, returnTheValue5);
// => [5, 5, 5];

_to_array(list)

Converts the given ds_list to an array

Note: If the given list is of size 0, this will return undefined.

@param list

_to_list(array)

Converts the given array to a new ds_list

@param array

@example
var input = ["hello", "world", 10];
var list = _to_list(input);
list[| 0]; // "hello"
list[| 1]; // "world"
list[| 2]; // 10

_type_of(value)

Returns the variable type of the given argument as a string.

Note: Works exactly as the native typeof(), though refers to number as real to be more consistent with GM:S terminology

@param {*} value A variable to check the type of

@returns {String} The type of the variable as a human readable string

@example

_type_of(1);
// => "real"

_type_of("hello");
// => "string"

var arr;
arr[0] = 1; arr[1] = 2;
_type_of(arr);
// => "array"

_type_of(undefined);
// => "undefined";

_type_of(sprite_get_texture(spr_player, 1));
// => "ptr";

_union_by(arrays..., iteratee)

Like _union(), except that it accepts iteratee which is invoked for each element of each array to generate the criterion by which uniqueness is computed.

@param {Array} arrays... The arrays to be unioned
@param {Script} iteratee The script invoked on each element to generate uniqueness criteria

@returns {Array} The union of the given arrays

@example
// _floor(x)
return floor(x);

var arr0 = [0.5, 1.2];
var arr1 = [0, 1.9];
_union_by(arr0, arr1, _floor);
// => [0.5, 1.2];

_union(arrays...)

Creates an array of unique values, in the order in which they originally appeared, from all given arrays.

@param {Array} arrays... The arrays to be unioned

@returns {Array} The union of the given arrays

@example
var arr0 = _array_of(0, 1);
var arr1 = _array_of(0);
_union(arr0, arr1);
// => [0, 1];

var arr0 = _array_of('Sword', 'Potion');
var arr1 = _array_of('Shield', 'Sword');
_union(arr0, arr1);
// => ['Sword', 'Potion', 'Shield'];

_uniq(array)

Returns an array with all duplicate values removed

@param {Array} array An array with duplicate values

@returns {Array} An array with the duplicate values removed

@example
_uniq([1, 1, 2, 3]);
// => [1, 2, 3]

_unzip(array)

From a zipped two-dimensional array, creates a collection of grouped elements by regrouping the elements to their pre-zipped configuration

@param {Array} array The zipped two-dimensional array

@returns {Array} The two-dimensional array of regrouped elements

@example
var arr0 = [0, 1, 2];
var arr1 = [3, 4, 5];
var arr2 =_zip(arr0, arr1);
_unzip(arr2);
// => [[0, 1, 2], [3, 4, 5]];

_without(array, values...)

Creates an array excluding all given values from amongst the elements of the given array

@param {Array} array The array to inspect
@param {*} values... The values to exclude

@returns {Array} The array of filtered elements

@example
var arr = [0, 1, 0, 2];
_without(arr, 0, 1);
// => [2];

_zip(arrays...)

Creates a two-dimensional array of grouped elements, the first of which contains the first elements of the given arrays, the second of which contains the second elements of the given arrays, and so on.

@param {Array} arrays... The remaining arrays

@returns {Array} The array of elements grouped in arrays

@example
var arr0 = [0, 1];
var arr1 = ['Sword', 'Shield'];
var arr2 = [true, false];
_zip(arr0, arr1, arr2);
// => [[0, 'Sword', true], [1, 'Shield', false]];

var arr0 = [0, 1, 2];
var arr1 = [3, 4, 5];
_zip(arr0, arr1);
// => [[0, 3], [1, 4], [2, 5]];
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].