--[[ Copyright (c) 2009 Edvin "Lego3" Linge 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. --]] local TH = require "TH" local object = {} object.id = "litter" object.thob = 62 -- previously unused object.name = _S.object.litter -- currently not shown anywhere object.tooltip = _S.tooltip.objects.litter -- currently not shown anywhere object.ticks = false object.class = "Litter" local litter_types = {} -- All types of "litter", i.e. small objects on the ground or walls. litter_types["pee"] = 2248 litter_types["dead_rat"] = 2242 litter_types["puke"] = 2060 litter_types["plastic"] = 1894 litter_types["banana"] = 1896 litter_types["paper"] = 1898 litter_types["bottle"] = 1900 litter_types["soot_floor"] = 3416 litter_types["soot_wall"] = 3408 litter_types["soot_window"] = 3412 -- When randomising litter, only these should come up. litter_types[1] = 1894 litter_types[2] = 1896 litter_types[3] = 1898 litter_types[4] = 1900 class "Litter" (Entity) function Litter:Litter(world, object_type, x, y, direction, etc) local th = TH.animation() self:Entity(th) self.object_type = object_type self.world = world self:setTile(x, y) end function Litter:setLitterType(anim_type, mirrored) local flag = mirrored and 1 or 0 if anim_type then local anim = litter_types[anim_type] if anim then self:setAnimation(anim, flag) else error "Unknown litter type" end end end function Litter:randomiseLitter() local anim = math.random(1, 4) self:setAnimation(litter_types[anim]) end return object