Jump to content
  • 0

И снова наследование


hedgehog
 Share

Question

Только начинаю осваивать JavaScript. Столкнулся с ситуацией, которую не знаю как разрулить правильней. Пишу анимацию на canvas, данные получаю через JSON в виде массива. Получаемые данные выглядят так:


{
"Options":{
"Width":123,
"Height":321
},
"Objects":[
{
"name":"xxx",
"x":123,
"y":123,
"image":"xxx.png"
},
{
"name":"xxx",
"x":123,
"y":123,
"image":"xxx.png"
}
]
}

Если я правильно понимаю, то свойство Objects содержит индексированный массив объектов со свойствами, с которыми я работаю. Хочется построить прототип, имеющий некоторые методы (например, draw) и который будут наследовать все полученные объекты. Например:

function pictures(name,x,y,image){
this.name=name;
this.x=x;
this.y=y;
this.image=image;

this.draw=function(){
ctx.drawImage(this.image,this.x,this.y);
}
}

Конечная цель:

- Получить объекты через JSON, где каждый объект содержит свойства: имя, координаты, имя файла

- Отрисовать на канвасе эти объекты (картинки).

Могу я заставить полученные из JSON объекты наследовать pictures? Или мне нужно для каждого из объектов вызывать конструктор pictures?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0


var JSON = {
"Options":{
"Width":123,
"Height":321
},
"Objects":[
{
"name":"xxx",
"x":123,
"y":123,
"image":"xxx.png"
},
{
"name":"xxx",
"x":123,
"y":123,
"image":"xxx.png"
}
]
};

function Picture(settings){
this.name = settings.name;
this.x = settings.x;
this.y = settings.y;
this.image = settings.image;

this.draw = function(){
ctx.drawImage(this.image, this.x, this.y);
}
}

var pics = [];

for (var i = 0; i < JSON.Objects.length; i++) {
var obj = JSON.Objects[i];
pics.push(new Picture(obj));
}

// в массиве pics будут лежать готовые объекты

Если нужно именно наследование, то как-то так:


function Picture(){
this.name = '';
this.x = 0;
this.y = 0;
this.image = null;
}

Picture.prototype.draw = function(ctx) {
if (this.image) {
ctx.drawImage(this.image, this.x, this.y);
}

return;
}

for (var i = 0; i < JSON.Objects.length; i++) {
JSON.Objects[i].prototype = new Picture();
}

// только конструктор будет у всех Picture

  • Like 1
Link to comment
Share on other sites

  • 0

Я пробовал второй вариант, в результате у JSON.Objects появляется свойство prototype (а не ссылка на прототип), которое содержит объект, наследующий Pictures. Вызов draw при этом возможен только так:

JSON.Objects.prototype.draw();

А за первый вариант - спасибо.

Link to comment
Share on other sites

  • 0

Если нужны прототипы, можно скрестить первый вариант со вторым:


var pics = [];

function Picture(settings){
this.name = settings.name;
this.x = settings.x;
this.y = settings.y;
this.image = settings.image;
}

Picture.prototype.draw = function(ctx) {
if (this.image) {
ctx.drawImage(this.image, this.x, this.y);
}

return;
}

for (var i = 0; i < JSON.Objects.length; i++) {
pics.push(new Picture(JSON.Objects[i]));
}

Или вот так сделать, но работать будет только в Firefox и вебкитных:


function Picture(){}

Picture.prototype.draw = function(ctx) {
if (this.image) {
ctx.drawImage(this.image, this.x, this.y);
}

return;
}

for (var i = 0; i < JSON.Objects.length; i++) {
JSON.Objects[i].__proto__ = Picture.prototype;
}

Edited by troll
  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy