show item swf on preview
This commit is contained in:
parent
743ec4d910
commit
8f4ee6d5bf
1 changed files with 36 additions and 6 deletions
|
@ -22,7 +22,9 @@ PetType.prototype.load = function () {
|
||||||
$.getJSON(url, function (data) {
|
$.getJSON(url, function (data) {
|
||||||
pet_type.id = data.id;
|
pet_type.id = data.id;
|
||||||
pet_type.body_id = data.body_id;
|
pet_type.body_id = data.body_id;
|
||||||
|
Item.current.load();
|
||||||
$.getJSON('/pet_types/' + data.id + '/swf_assets.json', function (assets) {
|
$.getJSON('/pet_types/' + data.id + '/swf_assets.json', function (assets) {
|
||||||
|
log('pet type assets loaded');
|
||||||
pet_type.assets = assets;
|
pet_type.assets = assets;
|
||||||
Preview.update();
|
Preview.update();
|
||||||
});
|
});
|
||||||
|
@ -36,7 +38,7 @@ PetType.prototype.setAsCurrent = function () {
|
||||||
this.load();
|
this.load();
|
||||||
}
|
}
|
||||||
|
|
||||||
PetType.create_from_link = function (link) {
|
PetType.createFromLink = function (link) {
|
||||||
var pet_type = new PetType();
|
var pet_type = new PetType();
|
||||||
pet_type.color_id = link.attr('data-color-id');
|
pet_type.color_id = link.attr('data-color-id');
|
||||||
pet_type.species_id = link.attr('data-species-id');
|
pet_type.species_id = link.attr('data-species-id');
|
||||||
|
@ -44,6 +46,28 @@ PetType.create_from_link = function (link) {
|
||||||
return pet_type;
|
return pet_type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function Item() {
|
||||||
|
this.load = function () {
|
||||||
|
var url = '/' + this.id + '/swf_assets.json?body_id=' + PetType.current.body_id,
|
||||||
|
item = this;
|
||||||
|
$.getJSON(url, function (data) {
|
||||||
|
log('item assets loaded');
|
||||||
|
item.assets = data;
|
||||||
|
Preview.update();
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
this.setAsCurrent = function () {
|
||||||
|
Item.current = this;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Item.createFromLocation = function () {
|
||||||
|
var item = new Item();
|
||||||
|
item.id = parseInt(document.location.pathname.substr(1));
|
||||||
|
return item;
|
||||||
|
}
|
||||||
|
|
||||||
Preview = new function Preview() {
|
Preview = new function Preview() {
|
||||||
var assets = [], swf_id, swf, updateWhenFlashReady = false;
|
var assets = [], swf_id, swf, updateWhenFlashReady = false;
|
||||||
|
|
||||||
|
@ -54,12 +78,16 @@ Preview = new function Preview() {
|
||||||
}
|
}
|
||||||
|
|
||||||
this.update = function (assets) {
|
this.update = function (assets) {
|
||||||
var assets;
|
var assets = [];
|
||||||
log('want to update');
|
log('want to update');
|
||||||
if(swf) {
|
if(swf) {
|
||||||
log('got to update');
|
log('got to update');
|
||||||
log(PetType.current.assets);
|
log(assets);
|
||||||
assets = $.each(PetType.current.assets, function () {
|
$.each([PetType, Item], function () {
|
||||||
|
if(this.current.assets) assets = assets.concat(this.current.assets);
|
||||||
|
});
|
||||||
|
log(assets);
|
||||||
|
assets = $.each(assets, function () {
|
||||||
this.local_path = this.local_url;
|
this.local_path = this.local_url;
|
||||||
});
|
});
|
||||||
log(assets);
|
log(assets);
|
||||||
|
@ -86,11 +114,13 @@ Preview = new function Preview() {
|
||||||
|
|
||||||
Preview.embed(PREVIEW_SWF_ID);
|
Preview.embed(PREVIEW_SWF_ID);
|
||||||
|
|
||||||
PetType.create_from_link(speciesList.eq(Math.floor(Math.random()*speciesList.length))).setAsCurrent();
|
PetType.createFromLink(speciesList.eq(Math.floor(Math.random()*speciesList.length))).setAsCurrent();
|
||||||
|
|
||||||
|
Item.createFromLocation().setAsCurrent();
|
||||||
|
|
||||||
speciesList.click(function (e) {
|
speciesList.click(function (e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
PetType.create_from_link($(this)).setAsCurrent();
|
PetType.createFromLink($(this)).setAsCurrent();
|
||||||
});
|
});
|
||||||
|
|
||||||
MainWardrobe = { View: { Outfit: Preview } };
|
MainWardrobe = { View: { Outfit: Preview } };
|
||||||
|
|
Loading…
Reference in a new issue