Some background, I normally use JavaScript and this crazy, new and exciting world without arrays and stuff is a harsh adjustment!
Basically, what I like to do in JS is init an instance of my game class (if we can say 'class' with JS) and on it's initialization I create an array on anonymous enemies or objects etc to use later. In lua, I have no idea how to go about doing this.
For example:
Code: Select all
Game = {}
function Game:new()
newObj = {
y = love.graphics.getHeight() - 200,
objects = self:generateWorld()
}
self.__index = self
return setmetatable(newObj, self)
end
function Game:generateWorld(arr)
return {Enemy:new(400, 400, 200, 600)} --ideally would loop this with as many enemies as I want
end
function Game:draw()
love.graphics.setColor(200, 100, 255)
self.objects[i]:draw()
end
Enemy = {}
function Enemy:new(x, y, w, h)
newObj = {
x = x,
y = y,
w = w,
h = h
}
self.__index = self
return setmetatable(newObj, self)
end
function Enemy:draw()
rect('fill', self.x, self.y, self.w, self.h)
end
Code: Select all
//game 'class'
var Game = function() {
this.enemies = this.generateEnemies([]);
}
Game.prototype.generateEnemies = function(enemies) {
for (var i = 0; i < ROWS; i++) {
var newRow = [];
for (var y = 0; y < COLS; y++) {
var randNo = random(0,2);
var type;
if(randNo > 1) {
type = invader
} else {
type = invader2
}
newRow.push(new Enemy(y * 40 + 40, 40 + i * 35, type));
}
enemies.push(newRow);
}
return enemies;
}
