0ad/binaries/data/mods/public/simulation/ai/common-api/technology.js
wraitii bd22432fe8 Rename common-api-v3 to common-api.
Fix warnings with the new AI.
Fix an error with the per-player gatherer counts.

This was SVN commit r14559.
2014-01-10 17:46:48 +00:00

146 lines
3.1 KiB
JavaScript

var API3 = function(m)
{
// Wrapper around a technology template
m.Technology = function(allTemplates, templateName)
{
this._templateName = templateName;
var template = allTemplates[templateName];
// check if this is one of two paired technologies.
this._isPair = template.pair === undefined ? false : true;
if (this._isPair)
{
if (allTemplates[template.pair].top == templateName)
this._pairedWith = allTemplates[template.pair].bottom;
else
this._pairedWith = allTemplates[template.pair].top;
}
// check if it only defines a pair:
this._definesPair = template.top === undefined ? false : true;
this._template = template;
this._techTemplates = allTemplates;
}
// returns generic, or specific if civ provided.
m.Technology.prototype.name = function(civ)
{
if (civ === undefined)
{
return this._template.genericName;
}
else
{
if (this._template.specificName === undefined || this._template.specificName[civ] === undefined)
return undefined;
return this._template.specificName[civ];
}
};
m.Technology.prototype.pairDef = function()
{
return this._definesPair;
};
// in case this defines a pair only, returns the two paired technologies.
m.Technology.prototype.getPairedTechs = function()
{
if (!this._definesPair)
return undefined;
var techOne = new m.Technology(this._techTemplates, this._template.top);
var techTwo = new m.Technology(this._techTemplates, this._template.bottom);
return [techOne,techTwo];
};
m.Technology.prototype.pair = function()
{
if (!this._isPair)
return undefined;
return this._template.pair;
};
m.Technology.prototype.pairedWith = function()
{
if (!this._isPair)
return undefined;
return this._pairedWith;
};
m.Technology.prototype.cost = function()
{
if (!this._template.cost)
return undefined;
return this._template.cost;
};
// seconds
m.Technology.prototype.researchTime = function()
{
if (!this._template.researchTime)
return undefined;
return this._template.researchTime;
};
m.Technology.prototype.requirements = function()
{
if (!this._template.requirements)
return undefined;
return this._template.requirements;
};
m.Technology.prototype.autoResearch = function()
{
if (!this._template.autoResearch)
return undefined;
return this._template.autoResearch;
};
m.Technology.prototype.supersedes = function()
{
if (!this._template.supersedes)
return undefined;
return this._template.supersedes;
};
m.Technology.prototype.modifications = function()
{
if (!this._template.modifications)
return undefined;
return this._template.modifications;
};
m.Technology.prototype.affects = function()
{
if (!this._template.affects)
return undefined;
return this._template.affects;
};
m.Technology.prototype.isAffected = function(classes)
{
if (!this._template.affects)
return false;
for (var index in this._template.affects)
{
var reqClasses = this._template.affects[index].split(" ");
var fitting = true;
for (var i in reqClasses)
{
if (classes.indexOf(reqClasses[i]) === -1)
{
fitting = false;
break;
}
}
if (fitting === true)
return true;
}
return false;
};
return m;
}(API3);