// selectSubstance.js
(function() {
/*global adventurejs A*/
"use strict";
var p = adventurejs.Parser.prototype;
/**
* Exclude from a list of assets all assets that are not substances.
* @method adventurejs.Parser#selectSubstance
* @memberOf adventurejs.Parser
* @param {Array} list
* @returns {Array}
*/
p.selectSubstance = function Parser_selectSubstance(list)
{
if("string" === typeof list) list = [list];
if( !Array.isArray( list ) )
{
this.game.log( "warn", "critical", "selectSubstance.js > received non-array", 'Parser' );
return [];
}
var foundObjects = [];
for(var i = 0; i < list.length; i++)
{
var object = this.game.getAsset( list[i], {prefer_substance:true} );
if( object instanceof adventurejs.Substance )
{
foundObjects.push( list[i] );
}
}
return foundObjects;
}
}());