aboutsummaryrefslogtreecommitdiffstats
path: root/Scripts/world.lua
blob: f87f1087ca262ada0639aabf937394395cd1c34a (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
world = {
    Seed = 5345345,
    Layers = 2,

    -- This is run when the world is registered and not after,
    -- although it is possible to register materials later
    Register = function(self)
        self:registerMaterial("grass", {
            texture = "Assets/grass.png",
            normal = "Assets/grass_normal"
        });
        self:registerMaterial("dirt", {
            texture = "Assets/dirt.png",
            normal = "Assets/dirt_normal.png"
        });
        self:registerMaterial("stone", {
            texture = "Assets/stone.png",
            normal = "Assets/dirt_normal.png"
        });
        self:registerMaterial("flower", {
            texture = "Assets/flower.png",
            normal = "Assets/flower_normal.png",
            passable = true
        });
    end,

    Generate = function(self)
        math.randomseed(self.Seed)
        xsize, ysize, zsize = self:setSize(250, 128, 3)
        --self.data = {}
        for Z = 0,zsize-1 do
            --self.data[Z] = {}
            for X = 0,xsize-1 do
                --self.data[Z][X] = {}
                YGen = math.floor(6*math.sin(X/20) + Z) + 64
                YDepth = math.random(2,5)
                for Y = 0,ysize-1 do
                    if Y == YGen then
                        --self.data[Z][X][Y] = 0
                        self:setData(X, Y, Z, "grass");
                    elseif Y < YGen and Y > (YGen - YDepth) then
                        --self.data[Z][X][Y] = 1
                        self:setData(X, Y, Z, "dirt");
                    elseif Y < YGen then
                        --self.data[Z][X][Y] = 2
                        self:setData(X, Y, Z, "stone");
                    end
                    --print(X..","..Y..","..Z);
                end
            end
        end
        self:setData(1000, 1345, 5, "grass"); -- Test error checking
        print("Done with world gen");
    end
}

--world:Generate()
game.worldRegister(world)