game.loadFont("default", "Assets/FreePixel.ttf", 16) player = { Player = 0, EventListeners = { MoveLeftPressed = function(self) self.Velocity.x = self.Velocity.x - 3.0 self.Render.flipx = true; end, MoveLeftReleased = function(self) -- TODO can't put text at world coordinates right now --game.puts("default", self.Position.x, self.Position.y+100, "Hey. Hag?") self.Velocity.x = self.Velocity.x + 3.0 end, MoveRightPressed = function(self) self.Velocity.x = self.Velocity.x + 3.0 self.Render.flipx = false; end, MoveRightReleased = function(self) self.Velocity.x = self.Velocity.x - 3.0 end, JumpKeyPressed = function(self) if self.Physics.standing == true then game.play(self.Position, self.Audio) self.Velocity.y = self.Velocity.y + 9 end end, JumpKeyReleased = function(self) end }, Position = { x = 15, y = 75 }, Velocity = { x = 0.0, y = 0.0 }, Physics = 0, Name = "bord", Audio = { file = "Assets/jump.wav" }, hellotrue = true, hellofalse = false, Render = { texture = "Assets/player.png", visible = true }, Light = { r = 1.0, g = 1.0, b = 1.0, strength = 1.0 }, Idle = function(self) --if (self.visibleTick >= 20) then -- self.Render.visible = not self.Render.visible -- self.visibleTick = 0 --end --self.visibleTick = self.visibleTick + 1 end, visibleTick = 0 } ball = { Position = { x = 20, y = 100 }, Velocity = { x = 0.0, y = 0.0, }, Physics = 0, Render = { texture = "Assets/ball.png", normal = "Assets/ball_normal.png", visible = true, }, Idle = function(self) if self.Physics.standing == true then self.Velocity.y = self.Velocity.y + 15 self.Velocity.x = math.random(-1, 1); end end, } -- Create the world dofile("Scripts/world.lua") playerSpawn = game.spawn(player); game.spawn(ball); ------------------- -- SERIALIZING -- ------------------- --function serial (before_ser) -- binary = string.dump(before_ser) -- formatted_binary = "" -- for i = 1, string.len(binary) do -- dec, _ = ("\\%3d"):format(binary:sub(i, i):byte()):gsub(' ', '0') -- formatted_binary = formatted_binary .. dec -- end -- return formatted_binary --end -- --function hello(herro) -- print("Hello world ".. herro) --end -- ----print(serial(hello)) -- --local ser = string.dump(hello) --f2 = (loadstring or load)(ser) --f2("shite") -- --local testPut = string.dump(animalSpawn.TestMe) --testRun = (loadstring or load)(testPut) --testRun(animalSpawn)