Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to make a game engine with javascript so far I have

function gameEngine() {

    this.canvas = $('canvas')[0];
    this.ctx = this.canvas.getContext('2d');
    this.framerate = 20;

    this.resetCanvas = function() {
        this.ctx.fillStyle = 'red';
        this.ctx.fillRect(0, 0, this.canvas.width, this.canvas.height);
    };

    this.loop = function() {
        this.resetCanvas();
    };

    this.run = function() {
        setInterval(this.loop, this.framerate);
    };
}

new gameEngine();

But the canvas is not showing up, why is this?

share|improve this question

3 Answers

up vote 4 down vote accepted

this is becoming detached when passing this.loop to setInterval. Common solutions:

Function.bind:

this.run = function() {
    setInterval(this.loop.bind(this), this.framerate);
};

Or use a closure:

var self = this;
this.run = function() {
    setInterval(function () {
        self.loop();
    }, this.framerate);
};

Then you need to actually call the run method:

new gameEngine().run();

// or 

function gameEngine() {

    // snip...

    this.run();
}
share|improve this answer
Thanks for the link, this has helped alot :) will accept when I can! – Griff Feb 25 at 4:16
1  
Your Or use a closure: part is wrong – Musa Feb 25 at 4:19
I cannot accept yet I have 3 minutes ;) – Griff Feb 25 at 4:20
@Musa whoops, thanks. Fixed. – Matt Ball Feb 25 at 4:26
Would you use the bind method or the closure method? Does it matter and thanks again! – Griff Feb 25 at 4:33
show 1 more comment

You never call setInterval.

var ngin = new gameEngine();
ngin.run();
share|improve this answer

You need to call the run() function on your gameEngine after you initialize it. You may also want to store your gameEngine in a variable.

Example:

var myGameEngine = new gameEngine();
myGameEngine.run();

Or if you don't want to have to call run, stick this.run() at the end of your object definition. That eliminates the need to store a reference to your gameEngine object, although you probably still should for later reference.

share|improve this answer
I do not recommend having the constructor do any work other than initialize values (re: paragraph 2). JSLint will even complain about this – Explosion Pills Feb 25 at 4:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.