aboutsummaryrefslogtreecommitdiffstats
path: root/Scripts/init.lua
blob: d2abb006f64e92f173348d142dded4c3cd484052 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
game.loadFont("default", "Assets/FreePixel.ttf", 16)

player = {
    Player = 0,
    EventListeners = {
        MoveLeftPressed = function(self)
            self.Velocity.x = self.Velocity.x - 3
            self.Render.flipx = true;
        end,
        MoveLeftReleased = function(self)
            game.puts("default", self.Position.x, self.Position.y, "Hey.")
            self.Velocity.x = self.Velocity.x + 3
        end,
        MoveRightPressed = function(self)
            self.Velocity.x = self.Velocity.x + 3
            self.Render.flipx = false;
        end,
        MoveRightReleased = function(self)
            self.Velocity.x = self.Velocity.x - 3
        end,
        JumpKeyPressed = function(self)
            if self.Physics.standing == true then
                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",
    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,
    PhysicsIdle = function(self)
        if self.Velocity.x < 0 then
            self.Render.flipx = true
        elseif self.Velocity.x > 0 then
            self.Render.flipx = false
        end
    end,
    visibleTick = 0
}

-- Create the world
dofile("Scripts/world.lua")

playerSpawn = game.spawn(player);

-------------------
--  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)