summaryrefslogtreecommitdiff
path: root/mcmap/examples/emeraldfinder/main.go
blob: c437d416f0e6464867fdbe6ba287c22358395b79 (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
package main

import (
	"flag"
	"fmt"
	"github.com/kch42/gomcmap/mcmap"
	"os"
)

func main() {
	path := flag.String("path", "", "Path to region directory")
	flag.Parse()

	if *path == "" {
		flag.Usage()
		os.Exit(1)
	}

	region, err := mcmap.OpenRegion(*path)
	if err != nil {
		fmt.Fprintf(os.Stderr, "Could not open region: %s", err)
		os.Exit(1)
	}

chunkLoop:
	for chunkPos := range region.AllChunks() {
		cx, cz := chunkPos.X, chunkPos.Z
		chunk, err := region.Chunk(cx, cz)
		switch err {
		case nil:
		case mcmap.NotAvailable:
			continue chunkLoop
		default:
			fmt.Fprintf(os.Stderr, "Error while getting chunk (%d, %d): %s", cx, cz, err)
			os.Exit(1)
		}

		for y := 0; y < 256; y++ {
			for x := 0; x < 16; x++ {
				for z := 0; z < 16; z++ {
					blk := chunk.Block(x, y, z)
					if blk.ID == mcmap.BlkEmeraldOre {
						absx, absz := mcmap.ChunkToBlock(cx, cz, x, z)
						fmt.Printf("%d, %d, %d\n", absx, y, absz)
					}
				}
			}
		}

		chunk = nil
		region.UnloadChunk(cx, cz)
	}
}