summaryrefslogtreewikicommitdiff
path: root/src/main/java/net/tylermurphy/hideAndSeek/util/Location.java
blob: 606b64bfbcbb01c73fbf2cd795184575cec04be3 (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package net.tylermurphy.hideAndSeek.util;

import net.tylermurphy.hideAndSeek.Main;
import net.tylermurphy.hideAndSeek.world.VoidGenerator;
import org.bukkit.Bukkit;
import org.bukkit.World;
import org.bukkit.WorldCreator;
import org.bukkit.WorldType;
import org.bukkit.entity.Player;
import org.jetbrains.annotations.NotNull;

import java.io.File;

public class Location {

    private final String world;
    private final double x;
    private final double y;
    private final double z;

    public static Location getDefault() {
        return new Location(
                "",
                0.0,
                0.0,
                0.0
        );
    }

    public static Location from(Player player) {
        org.bukkit.Location location = player.getLocation();
        return new Location(
                player.getWorld().getName(),
                location.getX(),
                location.getY(),
                location.getZ()
        );
    }

    public Location(@NotNull String world, double x, double y, double z) {
        this.world = world;
        this.x = x;
        this.y = y;
        this.z = z;
    }

    public Location(@NotNull String world, @NotNull org.bukkit.Location location) {
        this.world = world;
        this.x = location.getX();
        this.y = location.getY();
        this.z = location.getZ();
    }

    public World load(WorldType type, World.Environment environment) {
        boolean mapSave = world.startsWith("hs_");
        World bukkitWorld = Bukkit.getWorld(world);
        if(bukkitWorld != null) return bukkitWorld;
        WorldCreator creator = new WorldCreator(world);
        if(type != null) {
            creator.type(type);
        }
        if(environment != null) {
            creator.environment(environment);
        }
        if(mapSave) {
            creator.generator(new VoidGenerator());
        }
        Bukkit.getServer().createWorld(creator).setAutoSave(!mapSave);
        return Bukkit.getWorld(world);
    }

    public World load() {
        if(!exists()) return null;
        if(!Main.getInstance().isLoaded()) return null;
        return load(null, null);
    }

    private org.bukkit.Location toBukkit() {
        return new org.bukkit.Location(
                Bukkit.getWorld(world),
                x,
                y,
                z
        );
    }

    public void teleport(Player player) {
        if(!exists()) return;
        if(load() == null) return;
        player.teleport(toBukkit());
    }

    public Location changeWorld(String world) {
        return new Location(
                world,
                x,
                y,
                z
        );
    }

    public String getWorld() {
        return world;
    }

    public double getX() {
        return x;
    }

    public double getY() {
        return y;
    }

    public double getZ() {
        return z;
    }

    public int getBlockX() {
        return (int)x;
    }

    public int getBlockY() {
        return (int)y;
    }

    public int getBlockZ() {
        return (int)z;
    }

    public boolean exists() {
        if(world.equals("")) return false;
        String path = Main.getInstance().getWorldContainer()+File.separator+world;
        File destination = new File(path);
        return destination.isDirectory();
    }

    public boolean isNotSetup() {
        return getBlockX() == 0 && getBlockY() == 0 && getBlockZ() == 0;
    }

    public boolean isNotInBounds(int xmin, int xmax, int zmin, int zmax) {
        return getBlockX() < xmin || getBlockX() > xmax || getBlockZ() < zmin || getBlockZ() > zmax;
    }

}