2014-11-28 20:49:41 -05:00
|
|
|
{hslToHex} = require 'core/utils'
|
2014-03-02 15:43:21 -05:00
|
|
|
|
|
|
|
module.exports.teamDataFromLevel = (level) ->
|
2014-10-18 17:51:43 -04:00
|
|
|
alliedSystem = _.find level.get('systems', true), (value) -> value.config?.teams?
|
2014-03-02 15:43:21 -05:00
|
|
|
teamNames = (teamName for teamName, teamConfig of alliedSystem.config.teams when teamConfig.playable)
|
|
|
|
teamConfigs = alliedSystem.config.teams
|
|
|
|
|
|
|
|
teams = []
|
|
|
|
for team in teamNames or []
|
|
|
|
otherTeam = if team is 'ogres' then 'humans' else 'ogres'
|
|
|
|
color = teamConfigs[team].color
|
|
|
|
bgColor = hslToHex([color.hue, color.saturation, color.lightness + (1 - color.lightness) * 0.5])
|
|
|
|
primaryColor = hslToHex([color.hue, 0.5, 0.5])
|
|
|
|
teams.push({
|
|
|
|
id: team
|
|
|
|
name: _.string.titleize(team)
|
|
|
|
otherTeam: otherTeam
|
|
|
|
bgColor: bgColor
|
|
|
|
primaryColor: primaryColor
|
|
|
|
})
|
|
|
|
|
2014-06-30 22:16:26 -04:00
|
|
|
teams
|