2010-06-07 13:08:53 -07:00
|
|
|
// TODO: zones_restrict
|
|
|
|
|
2010-05-16 13:37:55 -07:00
|
|
|
var PREVIEW_SWF_ID = 'item-preview-swf',
|
2010-05-16 17:45:30 -07:00
|
|
|
PREVIEW_SWF = document.getElementById(PREVIEW_SWF_ID),
|
|
|
|
IMPRESS_HOST = PREVIEW_SWF.getAttribute('data-impress-host'),
|
2010-05-20 18:16:35 -07:00
|
|
|
speciesList = $('#item-preview a'),
|
|
|
|
MainWardrobe;
|
|
|
|
|
|
|
|
if(console === undefined || console.log === undefined) {
|
|
|
|
function log() {}
|
|
|
|
} else {
|
|
|
|
log = $.proxy(console, 'log');
|
|
|
|
}
|
2010-05-16 13:37:55 -07:00
|
|
|
|
2010-05-31 12:45:03 -07:00
|
|
|
String.prototype.capitalize = function () {
|
|
|
|
return this.charAt(0).toUpperCase() + this.substr(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
String.prototype.article = function () {
|
|
|
|
return 'aeiou'.indexOf(this.charAt(0).toLowerCase()) == -1 ? 'a' : 'an'
|
|
|
|
}
|
|
|
|
|
2010-05-16 17:45:30 -07:00
|
|
|
function impressUrl(path) {
|
|
|
|
return 'http://' + IMPRESS_HOST + path;
|
|
|
|
}
|
|
|
|
|
2010-05-31 12:45:03 -07:00
|
|
|
function LoadError(base_msg) {
|
|
|
|
this.render = function (args) {
|
|
|
|
var msg = base_msg, token, article_token;
|
|
|
|
for(var i in args) {
|
|
|
|
token = "$" + i;
|
|
|
|
article_token = token + "_article";
|
|
|
|
if(msg.indexOf(article_token) != -1) {
|
|
|
|
msg = msg.replace(article_token, args[i].article());
|
|
|
|
}
|
|
|
|
msg = msg.replace(token, args[i]);
|
|
|
|
}
|
|
|
|
return "Whoops - we've never seen " + msg + " before! If you have, please " +
|
|
|
|
"<a href='http://" + IMPRESS_HOST + "'>submit that pet's name</a> as soon as you " +
|
|
|
|
"get the chance! Thanks!";
|
|
|
|
}
|
2010-05-16 13:37:55 -07:00
|
|
|
}
|
|
|
|
|
2010-05-31 12:45:03 -07:00
|
|
|
function PetType() {
|
2010-06-04 18:09:19 -07:00
|
|
|
var pet_type = this, loaded_data = false, loaded_assets = false;
|
2010-05-31 12:45:03 -07:00
|
|
|
|
|
|
|
this.activated = true;
|
2010-06-04 18:09:19 -07:00
|
|
|
this.assets = true;
|
2010-05-31 12:45:03 -07:00
|
|
|
|
|
|
|
this.deactivate = function (error, args) {
|
|
|
|
var msg;
|
|
|
|
this.activated = false;
|
|
|
|
if(typeof args == 'undefined') args = {};
|
|
|
|
args.color = this.color_name.capitalize();
|
|
|
|
args.species = this.species_name.capitalize();
|
|
|
|
this.deactivation_msg = error.render(args);
|
|
|
|
if(this == PetType.current) showDeactivationMsg();
|
|
|
|
var img = this.link.children('img').get(0);
|
|
|
|
this.link.addClass('deactivated');
|
|
|
|
img.src = img.src.replace('/1/', '/2/');
|
|
|
|
}
|
|
|
|
|
|
|
|
this.load = function () {
|
2010-06-07 13:08:53 -07:00
|
|
|
Item.current.load(this);
|
|
|
|
loadAssets();
|
2010-05-31 12:45:03 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
this.setAsCurrent = function () {
|
|
|
|
PetType.current = this;
|
|
|
|
speciesList.filter('.current').removeClass('current');
|
|
|
|
this.link.addClass('current');
|
|
|
|
if(this.activated) {
|
|
|
|
Preview.enable();
|
|
|
|
this.load();
|
|
|
|
} else {
|
|
|
|
showDeactivationMsg();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-04 18:09:19 -07:00
|
|
|
function loadAssets() {
|
|
|
|
function onComplete() { if(pet_type == PetType.current) Preview.update(); }
|
|
|
|
if(!loaded_assets) {
|
|
|
|
$.getJSON('/pet_types/' + pet_type.id + '/swf_assets.json', function (assets) {
|
|
|
|
pet_type.assets = assets;
|
|
|
|
loaded_assets = true;
|
|
|
|
onComplete();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
onComplete();
|
|
|
|
}
|
|
|
|
|
2010-05-31 12:45:03 -07:00
|
|
|
function showDeactivationMsg() {
|
|
|
|
Preview.disable(pet_type.deactivation_msg);
|
|
|
|
}
|
2010-05-16 13:37:55 -07:00
|
|
|
}
|
|
|
|
|
2010-05-31 12:45:03 -07:00
|
|
|
PetType.all = [];
|
|
|
|
|
|
|
|
PetType.LOAD_ERROR = new LoadError("$color_article $color $species");
|
2010-06-07 13:08:53 -07:00
|
|
|
PetType.DASH_REGEX = /-/g;
|
2010-05-31 12:45:03 -07:00
|
|
|
|
2010-05-20 18:55:09 -07:00
|
|
|
PetType.createFromLink = function (link) {
|
2010-05-16 13:37:55 -07:00
|
|
|
var pet_type = new PetType();
|
2010-06-07 13:08:53 -07:00
|
|
|
$.each(link.get(0).attributes, function () {
|
|
|
|
if(this.name.substr(0, 5) == 'data-') {
|
|
|
|
pet_type[this.name.substr(5).replace(PetType.DASH_REGEX, '_')] = this.value;
|
|
|
|
}
|
|
|
|
});
|
2010-05-16 13:37:55 -07:00
|
|
|
pet_type.link = link;
|
2010-05-31 12:45:03 -07:00
|
|
|
PetType.all.push(pet_type);
|
2010-05-16 13:37:55 -07:00
|
|
|
return pet_type;
|
|
|
|
}
|
2010-05-16 12:01:38 -07:00
|
|
|
|
2010-05-20 18:55:09 -07:00
|
|
|
function Item() {
|
2010-06-04 18:09:19 -07:00
|
|
|
this.assets_by_body_id = {};
|
|
|
|
|
2010-05-31 12:45:03 -07:00
|
|
|
this.load = function (pet_type) {
|
|
|
|
var url = '/' + this.id + '/swf_assets.json?body_id=' + pet_type.body_id,
|
2010-05-20 18:55:09 -07:00
|
|
|
item = this;
|
2010-06-04 18:09:19 -07:00
|
|
|
function onComplete() { if(pet_type == PetType.current) Preview.update() }
|
|
|
|
if(this.getAssetsForPetType(pet_type).length) {
|
|
|
|
onComplete();
|
|
|
|
} else {
|
|
|
|
$.getJSON(url, function (data) {
|
|
|
|
if(data.length) {
|
|
|
|
item.assets_by_body_id[pet_type.body_id] = data;
|
|
|
|
onComplete();
|
|
|
|
} else {
|
|
|
|
pet_type.deactivate(Item.LOAD_ERROR, {
|
|
|
|
item: item.name
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.getAssetsForPetType = function (pet_type) {
|
|
|
|
return this.assets_by_body_id[pet_type.body_id] || [];
|
2010-05-20 18:55:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
this.setAsCurrent = function () {
|
|
|
|
Item.current = this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-31 12:45:03 -07:00
|
|
|
Item.LOAD_ERROR = new LoadError("$species_article $species wear a $item");
|
|
|
|
|
2010-05-20 18:55:09 -07:00
|
|
|
Item.createFromLocation = function () {
|
|
|
|
var item = new Item();
|
|
|
|
item.id = parseInt(document.location.pathname.substr(1));
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
2010-05-20 18:16:35 -07:00
|
|
|
Preview = new function Preview() {
|
2010-06-04 18:09:19 -07:00
|
|
|
var swf_id, swf, updateWhenFlashReady = false;
|
2010-05-20 18:16:35 -07:00
|
|
|
|
|
|
|
this.setFlashIsReady = function () {
|
|
|
|
swf = document.getElementById(swf_id);
|
|
|
|
if(updateWhenFlashReady) this.update();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.update = function (assets) {
|
2010-06-04 18:09:19 -07:00
|
|
|
var assets = [], asset_sources = [
|
|
|
|
PetType.current.assets,
|
|
|
|
Item.current.getAssetsForPetType(PetType.current)
|
|
|
|
];
|
2010-05-20 18:16:35 -07:00
|
|
|
if(swf) {
|
2010-06-04 18:09:19 -07:00
|
|
|
$.each(asset_sources, function () {
|
|
|
|
assets = assets.concat(this);
|
2010-05-20 18:55:09 -07:00
|
|
|
});
|
2010-06-04 18:09:19 -07:00
|
|
|
$.each(assets, function () {
|
2010-05-20 18:16:35 -07:00
|
|
|
this.local_path = this.local_url;
|
|
|
|
});
|
|
|
|
swf.setAssets(assets);
|
|
|
|
} else {
|
|
|
|
updateWhenFlashReady = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.embed = function (id) {
|
|
|
|
swf_id = id;
|
|
|
|
swfobject.embedSWF(
|
|
|
|
impressUrl('/assets/swf/preview.swf'), // URL
|
|
|
|
id, // ID
|
2010-05-20 19:05:13 -07:00
|
|
|
'100%', // width
|
|
|
|
'100%', // height
|
2010-05-20 18:16:35 -07:00
|
|
|
'9', // required version
|
|
|
|
impressUrl('/assets/js/swfobject/expressInstall.swf'), // express install URL
|
|
|
|
{'swf_assets_path': impressUrl('/assets')}, // flashvars
|
|
|
|
{'wmode': 'transparent', 'allowscriptaccess': 'always'} // params
|
|
|
|
);
|
|
|
|
}
|
2010-05-31 12:45:03 -07:00
|
|
|
|
|
|
|
this.disable = function (msg) {
|
|
|
|
$('#' + swf_id).hide();
|
|
|
|
$('#item-preview-error').html(msg).show();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.enable = function () {
|
|
|
|
$('#item-preview-error').hide();
|
|
|
|
$('#' + swf_id).show();
|
|
|
|
}
|
2010-05-20 18:16:35 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
Preview.embed(PREVIEW_SWF_ID);
|
2010-05-16 13:37:55 -07:00
|
|
|
|
2010-05-20 18:55:09 -07:00
|
|
|
Item.createFromLocation().setAsCurrent();
|
2010-05-31 12:45:03 -07:00
|
|
|
Item.current.name = $('#item-name').text();
|
2010-05-16 13:37:55 -07:00
|
|
|
|
2010-06-07 13:08:53 -07:00
|
|
|
PetType.createFromLink(speciesList.eq(Math.floor(Math.random()*speciesList.length))).setAsCurrent();
|
|
|
|
|
2010-05-31 12:45:03 -07:00
|
|
|
speciesList.each(function () {
|
|
|
|
var pet_type = PetType.createFromLink($(this));
|
|
|
|
$(this).click(function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
pet_type.setAsCurrent();
|
|
|
|
});
|
2010-05-16 13:37:55 -07:00
|
|
|
});
|
2010-05-20 18:16:35 -07:00
|
|
|
|
|
|
|
MainWardrobe = { View: { Outfit: Preview } };
|