2019-04-08 19:58:41 +02:00
|
|
|
-- baseworld.lua :: the base world object, that contain just a fast implementation
|
|
|
|
-- of a 2D world. It doesn't support collision and stuff.
|
|
|
|
|
|
|
|
--[[
|
|
|
|
Copyright © 2019 Kazhnuz
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
|
|
the Software without restriction, including without limitation the rights to
|
|
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
]]
|
|
|
|
|
2019-04-07 14:03:44 +02:00
|
|
|
local cwd = (...):gsub('%.baseworld$', '') .. "."
|
|
|
|
|
2019-04-01 08:08:54 +02:00
|
|
|
local BaseWorld = Object:extend()
|
|
|
|
|
2019-07-22 22:38:19 +02:00
|
|
|
local mapObjects = require(cwd .. "maps")
|
2019-04-29 11:21:41 +02:00
|
|
|
local CameraSystem = require(cwd .. "camera")
|
2019-04-07 14:03:44 +02:00
|
|
|
|
2019-06-16 10:00:05 +02:00
|
|
|
local PADDING_VALUE = 10/100
|
|
|
|
|
2019-04-07 13:22:23 +02:00
|
|
|
-- INIT FUNCTIONS
|
|
|
|
-- All functions to init the world and the map
|
|
|
|
|
2019-07-22 22:38:19 +02:00
|
|
|
function BaseWorld:new(scene, actorlist, mapfile, maptype)
|
2019-06-16 16:33:29 +02:00
|
|
|
self.scene = scene
|
|
|
|
self.actorlist = actorlist
|
|
|
|
self.mapfile = mapfile
|
2019-07-22 22:38:19 +02:00
|
|
|
self.mapObjects = mapObjects
|
2019-04-07 17:15:27 +02:00
|
|
|
|
2019-04-29 16:40:44 +02:00
|
|
|
self.cameras = CameraSystem(self)
|
2019-05-01 16:25:44 +02:00
|
|
|
self:initActors()
|
2019-04-29 11:21:41 +02:00
|
|
|
|
2019-04-07 17:15:27 +02:00
|
|
|
self:initPlayers()
|
2019-06-16 16:33:29 +02:00
|
|
|
self:setActorList(self.actorlist)
|
2019-07-22 22:38:19 +02:00
|
|
|
self:initMap(self.mapfile, maptype)
|
2019-05-02 19:51:43 +02:00
|
|
|
self:setGravity()
|
2019-05-28 19:28:05 +02:00
|
|
|
|
|
|
|
self:register()
|
2019-05-30 13:37:55 +02:00
|
|
|
|
|
|
|
self.isActive = true
|
2019-04-01 08:08:54 +02:00
|
|
|
end
|
|
|
|
|
2019-04-07 13:35:49 +02:00
|
|
|
function BaseWorld:setActorList(actorlist)
|
|
|
|
if actorlist == nil then
|
|
|
|
error("FATAL: You must set an actorlist to your world")
|
|
|
|
else
|
|
|
|
self.obj = require(actorlist)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-22 22:38:19 +02:00
|
|
|
function BaseWorld:initMap(mapfile, maptype)
|
|
|
|
if (mapfile ~= nil) then
|
|
|
|
self.maptype = maptype or "sti"
|
|
|
|
else
|
|
|
|
self.maptype = "empty"
|
|
|
|
end
|
|
|
|
|
2019-05-01 14:36:40 +02:00
|
|
|
self.mapfile = mapfile
|
2019-04-07 14:03:44 +02:00
|
|
|
end
|
|
|
|
|
2019-06-27 21:03:34 +02:00
|
|
|
function BaseWorld:setGravity(grav, isDefault)
|
|
|
|
local grav = grav or 0
|
|
|
|
local isDefault = isDefault or false
|
2019-05-02 19:51:43 +02:00
|
|
|
|
|
|
|
self.gravity = {}
|
2019-06-27 21:03:34 +02:00
|
|
|
self.gravity.grav = grav
|
2019-05-02 19:51:43 +02:00
|
|
|
self.gravity.isDefault = isDefault
|
|
|
|
end
|
|
|
|
|
2019-05-28 19:28:05 +02:00
|
|
|
function BaseWorld:register()
|
|
|
|
self.scene:registerWorld(self)
|
|
|
|
end
|
|
|
|
|
2019-06-16 16:33:29 +02:00
|
|
|
function BaseWorld:reset()
|
|
|
|
self:initActors()
|
|
|
|
self:initPlayers()
|
2019-07-22 22:38:19 +02:00
|
|
|
self:initMap(self.mapfile, self.maptype)
|
2019-06-16 16:33:29 +02:00
|
|
|
self.cameras:initViews()
|
|
|
|
collectgarbage()
|
|
|
|
|
|
|
|
self:loadMap()
|
|
|
|
end
|
|
|
|
|
2019-04-07 13:22:23 +02:00
|
|
|
-- ACTOR MANAGEMENT FUNCTIONS
|
|
|
|
-- Basic function to handle actors
|
|
|
|
|
2019-05-01 16:25:44 +02:00
|
|
|
function BaseWorld:initActors( )
|
|
|
|
self.actors = {}
|
2019-06-16 10:08:59 +02:00
|
|
|
self.currentCreationID = 0
|
2019-05-01 16:25:44 +02:00
|
|
|
end
|
|
|
|
|
2019-07-22 22:38:19 +02:00
|
|
|
function BaseWorld:newActor(name, x, y, z)
|
2019-07-24 11:21:32 +02:00
|
|
|
local debugstring = " at (" .. x .. ";" .. y .. ")."
|
|
|
|
core.debug:print("world2D", "adding actor " .. name .. debugstring)
|
2019-04-07 13:46:08 +02:00
|
|
|
self.obj.index[name](self, x, y)
|
|
|
|
end
|
|
|
|
|
2019-07-22 22:38:19 +02:00
|
|
|
function BaseWorld:newCollision(name, x, y, z, w, h, d)
|
2019-07-24 11:21:32 +02:00
|
|
|
local debugstringpos = "at (" .. x .. ";" .. y .. ")"
|
|
|
|
local debugstringsize = "size is (" .. w .. ";" .. h .. ")"
|
|
|
|
local debugstring = " " .. debugstringpos .. ". " .. debugstringsize .. "."
|
|
|
|
core.debug:print("world2D", "creating collision " .. name .. debugstring)
|
2019-04-29 16:40:44 +02:00
|
|
|
self.obj.collisions[name](self, x, y, w, h)
|
|
|
|
end
|
|
|
|
|
2019-04-01 13:09:21 +02:00
|
|
|
function BaseWorld:registerActor(actor)
|
2019-06-16 10:08:59 +02:00
|
|
|
actor.creationID = self.currentCreationID
|
|
|
|
self.currentCreationID = self.currentCreationID + 1
|
2019-04-01 13:09:21 +02:00
|
|
|
table.insert(self.actors, actor)
|
2019-04-01 08:08:54 +02:00
|
|
|
end
|
|
|
|
|
2019-04-07 13:36:21 +02:00
|
|
|
function BaseWorld:removeActor(actor)
|
2019-04-07 13:31:25 +02:00
|
|
|
for i,v in ipairs(self.actors) do
|
|
|
|
if v == actor then
|
|
|
|
table.remove(self.actors, i)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-01 13:09:21 +02:00
|
|
|
function BaseWorld:countActors()
|
|
|
|
return #self.actors
|
2019-04-01 12:47:08 +02:00
|
|
|
end
|
|
|
|
|
2019-04-07 13:36:21 +02:00
|
|
|
function BaseWorld:getActors()
|
2019-04-07 13:31:25 +02:00
|
|
|
return self.actors
|
|
|
|
end
|
|
|
|
|
2019-06-27 21:20:54 +02:00
|
|
|
function BaseWorld:getActorsInRect(x, y, w, h)
|
|
|
|
local query = {}
|
|
|
|
local x2, y2 = x + w, y + h
|
|
|
|
for i,v in ipairs(self.actors) do
|
|
|
|
if (v.x >= x) and (v.x + v.w >= x1) and
|
|
|
|
(v.y >= y) and (v.y + v.h >= y1) then
|
|
|
|
|
|
|
|
table.insert(query, v)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return v
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2019-06-16 10:00:05 +02:00
|
|
|
function BaseWorld:getVisibleActors(id)
|
2019-06-30 17:07:03 +02:00
|
|
|
local actors = {}
|
|
|
|
if (id ~= nil) then
|
|
|
|
local camx, camy, camw, camh = self.cameras:getViewCoordinate(id)
|
|
|
|
local paddingw = camw * PADDING_VALUE
|
|
|
|
local paddingh = camh * PADDING_VALUE
|
|
|
|
local x = camx - paddingw
|
|
|
|
local y = camy - paddingh
|
|
|
|
local w = camw + paddingw * 2
|
|
|
|
local h = camh + paddingh * 2
|
|
|
|
|
|
|
|
actors = self:getActorsInRect(x, y, w, h)
|
|
|
|
else
|
|
|
|
actors = self:getActors()
|
|
|
|
end
|
|
|
|
|
|
|
|
table.sort(actors, function(a,b)
|
|
|
|
if (a.depth == b.depth) then
|
|
|
|
return a.creationID < b.creationID
|
|
|
|
else
|
|
|
|
return a.depth > b.depth
|
|
|
|
end
|
|
|
|
end)
|
2019-06-22 19:27:31 +02:00
|
|
|
|
2019-06-30 17:07:03 +02:00
|
|
|
return actors
|
2019-06-16 10:00:05 +02:00
|
|
|
end
|
|
|
|
|
2019-06-23 15:39:57 +02:00
|
|
|
-- BODIES MANAGEMENT FUNCTIONS
|
|
|
|
-- Basic function to handle bodies. Empty function here as baseworld doesn't
|
|
|
|
-- handle bodies
|
|
|
|
|
|
|
|
function BaseWorld:registerBody(body)
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
|
|
|
|
function BaseWorld:updateBody(body)
|
|
|
|
return x, y, {}, 0
|
|
|
|
end
|
|
|
|
|
|
|
|
function BaseWorld:removeBody(body)
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
|
|
|
|
function BaseWorld:moveActor(actor, x, y, filter)
|
|
|
|
-- as the baseworld have no collision function, we return empty collision
|
|
|
|
-- datas, but from the same type than bump2D will return
|
|
|
|
return x, y, {}, 0
|
|
|
|
end
|
|
|
|
|
|
|
|
function BaseWorld:checkCollision(actor, x, y, filter)
|
|
|
|
-- as the baseworld have no collision function, we return empty collision
|
|
|
|
-- datas, but from the same type than bump2D will return
|
|
|
|
return x, y, {}, 0
|
|
|
|
end
|
|
|
|
|
2019-06-27 21:20:54 +02:00
|
|
|
function BaseWorld:getBodiesInRect(x, y, w, h)
|
|
|
|
return {}
|
2019-06-23 15:39:57 +02:00
|
|
|
end
|
|
|
|
|
2019-04-29 16:40:44 +02:00
|
|
|
-- INFO FUNCTIONS
|
|
|
|
-- Give infos about the world
|
|
|
|
|
|
|
|
function BaseWorld:isActorIndexed(name)
|
|
|
|
return (self.obj.index[name] ~= nil)
|
|
|
|
end
|
|
|
|
|
|
|
|
function BaseWorld:isCollisionIndexed(name)
|
|
|
|
return (self.obj.collisions[name] ~= nil)
|
|
|
|
end
|
|
|
|
|
2019-04-07 17:15:27 +02:00
|
|
|
-- PLAYER MANAGEMENT FUNCTIONS
|
|
|
|
-- Basic function to handle player actors
|
|
|
|
|
|
|
|
function BaseWorld:initPlayers()
|
|
|
|
self.players = {}
|
2019-05-01 17:21:38 +02:00
|
|
|
self.playerNumber = 1
|
|
|
|
end
|
|
|
|
|
|
|
|
function BaseWorld:setPlayerNumber(playerNumber)
|
|
|
|
self.playerNumber = playerNumber or 1
|
2019-04-07 17:15:27 +02:00
|
|
|
end
|
|
|
|
|
2019-07-22 22:38:19 +02:00
|
|
|
function BaseWorld:addPlayer(x, y, z, id)
|
2019-04-07 17:15:27 +02:00
|
|
|
local player = {}
|
2019-07-22 22:38:19 +02:00
|
|
|
if id <= self.playerNumber then
|
|
|
|
player.actor = self:newPlayer(x, y, z)
|
|
|
|
player.sourceid = sourceid or 1
|
2019-04-07 17:15:27 +02:00
|
|
|
|
2019-07-22 22:38:19 +02:00
|
|
|
table.insert(self.players, player)
|
2019-04-29 15:03:28 +02:00
|
|
|
|
2019-07-22 22:38:19 +02:00
|
|
|
self.cameras:addTarget(player.actor)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function BaseWorld:newPlayer(x, y, z)
|
|
|
|
return self.obj.Player(self, x, y)
|
2019-04-07 17:15:27 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function BaseWorld:sendInputToPlayers(actor)
|
|
|
|
for i,v in ipairs(self.players) do
|
|
|
|
--TODO: make the player get from a selected source inputs
|
2019-04-07 22:46:28 +02:00
|
|
|
local keys = self.scene.sources[v.sourceid].keys
|
|
|
|
v.actor:getInput(keys)
|
2019-04-07 17:15:27 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function BaseWorld:removePlayer(actor)
|
|
|
|
for i,v in ipairs(self.players) do
|
|
|
|
if (v.actor == actor) then
|
|
|
|
table.remove(self.players, i)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-07 14:03:44 +02:00
|
|
|
-- MAP FUNCTIONS
|
|
|
|
-- All map wrappers
|
|
|
|
|
2019-07-22 22:38:19 +02:00
|
|
|
function BaseWorld:loadMap()
|
|
|
|
self:createMapController()
|
|
|
|
self:loadMapObjects()
|
2019-04-29 16:40:44 +02:00
|
|
|
end
|
|
|
|
|
2019-07-22 22:38:19 +02:00
|
|
|
function BaseWorld:createMapController()
|
|
|
|
if (self.maptype == "empty") then
|
|
|
|
self.mapObjects.Base(self)
|
|
|
|
elseif (self.maptype == "sti") then
|
|
|
|
self.mapObjects.Sti(self, self.mapfile)
|
2019-04-29 16:40:44 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-22 22:38:19 +02:00
|
|
|
function BaseWorld:loadMapObjects()
|
|
|
|
if (self.map ~= nil) then
|
|
|
|
self.map:loadObjects()
|
2019-04-29 16:40:44 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-07 14:03:44 +02:00
|
|
|
function BaseWorld:getDimensions()
|
2019-07-22 22:38:19 +02:00
|
|
|
if (self.map ~= nil) then
|
|
|
|
return self.map:getDimensions()
|
2019-04-07 14:03:44 +02:00
|
|
|
else
|
|
|
|
return core.screen:getDimensions()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function BaseWorld:setBackgroundColor(r, g, b)
|
2019-07-22 22:38:19 +02:00
|
|
|
if (self.map ~= nil) then
|
|
|
|
self.map:setBackgroundColor(r, g, b)
|
|
|
|
end
|
2019-04-07 14:03:44 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function BaseWorld:removeBackgroundColor()
|
2019-07-22 22:38:19 +02:00
|
|
|
if (self.map ~= nil) then
|
|
|
|
self.map:setBackgroundColor()
|
|
|
|
end
|
2019-04-07 14:03:44 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function BaseWorld:getBackgroundColor()
|
2019-07-22 22:38:19 +02:00
|
|
|
if (self.map ~= nil) then
|
|
|
|
return self.map:getBackgroundColor()
|
|
|
|
else
|
|
|
|
return 0, 0, 0
|
|
|
|
end
|
2019-04-07 14:03:44 +02:00
|
|
|
end
|
|
|
|
|
2019-06-29 18:42:38 +02:00
|
|
|
function BaseWorld:resizeMap(w, h)
|
2019-07-22 22:38:19 +02:00
|
|
|
if (self.map ~= nil) then
|
2019-06-29 18:42:38 +02:00
|
|
|
local w, h = utils.math.floorCoord(w, h)
|
|
|
|
self.map:resize(w, h)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-30 13:37:55 +02:00
|
|
|
-- Lock MANAGEMENT FUNCTIONS
|
|
|
|
-- Basic function to handle the lock
|
|
|
|
|
|
|
|
function BaseWorld:setActivity(activity)
|
|
|
|
self.isActive = activity
|
|
|
|
end
|
|
|
|
|
|
|
|
function BaseWorld:switchActivity()
|
|
|
|
self.isActive = (self.isActive == false)
|
|
|
|
end
|
|
|
|
|
|
|
|
function BaseWorld:getActivity()
|
|
|
|
return self.isActive
|
|
|
|
end
|
|
|
|
|
2019-04-07 13:22:23 +02:00
|
|
|
-- UPDATE FUNCTIONS
|
|
|
|
-- All update functions
|
|
|
|
|
2019-04-01 08:08:54 +02:00
|
|
|
function BaseWorld:update(dt)
|
2019-04-07 14:03:44 +02:00
|
|
|
self:updateMap(dt)
|
2019-04-07 17:15:27 +02:00
|
|
|
self:sendInputToPlayers(dt)
|
2019-04-07 14:06:04 +02:00
|
|
|
self:updateActors(dt)
|
2019-04-29 15:03:28 +02:00
|
|
|
self.cameras:update(dt)
|
2019-04-07 14:06:04 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
function BaseWorld:updateActors(dt)
|
2019-04-22 09:36:29 +02:00
|
|
|
local actors = self:getActors()
|
|
|
|
for i,v in ipairs(actors) do
|
2019-04-01 08:08:54 +02:00
|
|
|
v:update(dt)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-07 14:03:44 +02:00
|
|
|
function BaseWorld:updateMap(dt)
|
2019-07-22 22:38:19 +02:00
|
|
|
if (self.map ~= nil) then
|
2019-04-07 14:03:44 +02:00
|
|
|
self.map:update(dt)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-07 13:22:23 +02:00
|
|
|
-- DRAW FUNCTIONS
|
|
|
|
-- All function to draw the map, world and actors
|
|
|
|
|
2019-04-01 08:08:54 +02:00
|
|
|
function BaseWorld:draw(dt)
|
2019-04-07 14:03:44 +02:00
|
|
|
self:drawBackgroundColor()
|
2019-04-29 11:21:41 +02:00
|
|
|
local camNumber = self.cameras:getViewNumber()
|
|
|
|
|
|
|
|
if (camNumber == 0) then
|
|
|
|
self:drawMap()
|
|
|
|
self:drawActors()
|
|
|
|
else
|
|
|
|
for i=1, camNumber do
|
2019-06-29 18:42:38 +02:00
|
|
|
self.cameras:attachView(i)
|
2019-07-14 18:51:00 +02:00
|
|
|
self:drawMap(i)
|
2019-04-29 11:21:41 +02:00
|
|
|
self:drawActors(i)
|
2019-05-02 17:21:48 +02:00
|
|
|
self.cameras:detachView(i)
|
2019-04-29 11:21:41 +02:00
|
|
|
end
|
|
|
|
end
|
2019-04-07 14:06:04 +02:00
|
|
|
end
|
|
|
|
|
2019-04-29 11:21:41 +02:00
|
|
|
function BaseWorld:drawActors(id)
|
2019-06-30 17:07:03 +02:00
|
|
|
local actors = self:getVisibleActors(id)
|
2019-06-16 10:24:30 +02:00
|
|
|
|
2019-04-22 09:36:29 +02:00
|
|
|
for i,v in ipairs(actors) do
|
2019-04-07 14:06:04 +02:00
|
|
|
v:draw()
|
2019-04-01 08:08:54 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-29 11:21:41 +02:00
|
|
|
function BaseWorld:drawMap(id)
|
2019-07-22 22:38:19 +02:00
|
|
|
if (self.map ~= nil) then
|
|
|
|
self.map:draw()
|
2019-04-07 14:03:44 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
function BaseWorld:drawBackgroundColor()
|
2019-07-22 22:38:19 +02:00
|
|
|
if (self.map ~= nil) then
|
|
|
|
self.map:drawBackgroundColor()
|
2019-04-07 14:03:44 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-01 08:08:54 +02:00
|
|
|
return BaseWorld
|